Whamcloud - gitweb
66c1ccc255daeaaf1276c0dbeb97b224f4675725
[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 5188
12 ALWAYS_EXCEPT="                42a  42b  42c  42d  45   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 LU-8139
17 ALWAYS_EXCEPT="                 76      101g    $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 #                                  5              12          (min)"
79 [ "$SLOW" = "no" ] && EXCEPT_SLOW="24D 27m 64b 68 71 115 300o"
80
81 if [ $(facet_fstype $SINGLEMDS) = "zfs" ]; then
82         # bug number for skipped test: LU-4536 LU-1957 LU-2805
83         ALWAYS_EXCEPT="$ALWAYS_EXCEPT  65ic    180     184c"
84         #                                               4   13    (min)"
85         [ "$SLOW" = "no" ] && EXCEPT_SLOW="$EXCEPT_SLOW 51b 51ba"
86 fi
87
88 FAIL_ON_ERROR=false
89
90 cleanup() {
91         echo -n "cln.."
92         pgrep ll_sa > /dev/null && { echo "There are ll_sa thread not exit!"; exit 20; }
93         cleanupall ${FORCE} $* || { echo "FAILed to clean up"; exit 20; }
94 }
95 setup() {
96         echo -n "mnt.."
97         load_modules
98         setupall || exit 10
99         echo "done"
100 }
101
102 check_swap_layouts_support()
103 {
104         $LCTL get_param -n llite.*.sbi_flags | grep -q layout ||
105                 { skip "Does not support layout lock."; return 0; }
106         return 1
107 }
108
109 check_and_setup_lustre
110 DIR=${DIR:-$MOUNT}
111 assert_DIR
112
113 MDT0=$($LCTL get_param -n mdc.*.mds_server_uuid |
114         awk '{ gsub(/_UUID/,""); print $1 }' | head -n1)
115 MAXFREE=${MAXFREE:-$((200000 * $OSTCOUNT))}
116
117 [ -f $DIR/d52a/foo ] && chattr -a $DIR/d52a/foo
118 [ -f $DIR/d52b/foo ] && chattr -i $DIR/d52b/foo
119 rm -rf $DIR/[Rdfs][0-9]*
120
121 # $RUNAS_ID may get set incorrectly somewhere else
122 [ $UID -eq 0 -a $RUNAS_ID -eq 0 ] && error "\$RUNAS_ID set to 0, but \$UID is also 0!"
123
124 check_runas_id $RUNAS_ID $RUNAS_GID $RUNAS
125
126 build_test_filter
127
128 if [ "${ONLY}" = "MOUNT" ] ; then
129         echo "Lustre is up, please go on"
130         exit
131 fi
132
133 echo "preparing for tests involving mounts"
134 EXT2_DEV=${EXT2_DEV:-$TMP/SANITY.LOOP}
135 touch $EXT2_DEV
136 mke2fs -j -F $EXT2_DEV 8000 > /dev/null
137 echo # add a newline after mke2fs.
138
139 umask 077
140
141 OLDDEBUG=$(lctl get_param -n debug 2> /dev/null)
142 lctl set_param debug=-1 2> /dev/null || true
143 test_0a() {
144         touch $DIR/$tfile
145         $CHECKSTAT -t file $DIR/$tfile || error "$tfile is not a file"
146         rm $DIR/$tfile
147         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
148 }
149 run_test 0a "touch; rm ====================="
150
151 test_0b() {
152         chmod 0755 $DIR || error "chmod 0755 $DIR failed"
153         $CHECKSTAT -p 0755 $DIR || error "$DIR permission is not 0755"
154 }
155 run_test 0b "chmod 0755 $DIR ============================="
156
157 test_0c() {
158         $LCTL get_param mdc.*.import | grep "state: FULL" ||
159                 error "import not FULL"
160         $LCTL get_param mdc.*.import | grep "target: $FSNAME-MDT" ||
161                 error "bad target"
162 }
163 run_test 0c "check import proc ============================="
164
165 test_1() {
166         test_mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
167         test_mkdir -p $DIR/$tdir/d2 || error "mkdir $tdir/d2 failed"
168         test_mkdir $DIR/$tdir/d2 && error "we expect EEXIST, but not returned"
169         $CHECKSTAT -t dir $DIR/$tdir/d2 || error "$tdir/d2 is not a dir"
170         rmdir $DIR/$tdir/d2
171         rmdir $DIR/$tdir
172         $CHECKSTAT -a $DIR/$tdir || error "$tdir was not removed"
173 }
174 run_test 1 "mkdir; remkdir; rmdir =============================="
175
176 test_2() {
177         test_mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
178         touch $DIR/$tdir/$tfile || error "touch $tdir/$tfile failed"
179         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "$tdir/$tfile not a file"
180         rm -r $DIR/$tdir
181         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$file is not removed"
182 }
183 run_test 2 "mkdir; touch; rmdir; check file ===================="
184
185 test_3() {
186         test_mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
187         $CHECKSTAT -t dir $DIR/$tdir || error "$tdir is not a directory"
188         touch $DIR/$tdir/$tfile
189         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "$tdir/$tfile not a file"
190         rm -r $DIR/$tdir
191         $CHECKSTAT -a $DIR/$tdir || error "$tdir is not removed"
192 }
193 run_test 3 "mkdir; touch; rmdir; check dir ====================="
194
195 # LU-4471 - failed rmdir on remote directories still removes directory on MDT0
196 test_4() {
197         local MDTIDX=1
198
199         test_mkdir $DIR/$tdir ||
200                 error "Create remote directory failed"
201
202         touch $DIR/$tdir/$tfile ||
203                 error "Create file under remote directory failed"
204
205         rmdir $DIR/$tdir &&
206                 error "Expect error removing in-use dir $DIR/$tdir"
207
208         test -d $DIR/$tdir || error "Remote directory disappeared"
209
210         rm -rf $DIR/$tdir || error "remove remote dir error"
211 }
212 run_test 4 "mkdir; touch dir/file; rmdir; checkdir (expect error)"
213
214 test_5() {
215         test_mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
216         test_mkdir $DIR/$tdir/d2 || error "mkdir $tdir/d2 failed"
217         chmod 0707 $DIR/$tdir/d2 || error "chmod 0707 $tdir/d2 failed"
218         $CHECKSTAT -t dir -p 0707 $DIR/$tdir/d2 || error "$tdir/d2 not mode 707"
219         $CHECKSTAT -t dir $DIR/$tdir/d2 || error "$tdir/d2 is not a directory"
220 }
221 run_test 5 "mkdir .../d5 .../d5/d2; chmod .../d5/d2 ============"
222
223 test_6a() {
224         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
225         chmod 0666 $DIR/$tfile || error "chmod 0666 $tfile failed"
226         $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/$tfile ||
227                 error "$tfile does not have perm 0666 or UID $UID"
228         $RUNAS chmod 0444 $DIR/$tfile && error "chmod $tfile worked on UID $UID"
229         $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/$tfile ||
230                 error "$tfile should be 0666 and owned by UID $UID"
231 }
232 run_test 6a "touch f6a; chmod f6a; $RUNAS chmod f6a (should return error) =="
233
234 test_6c() {
235         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
236         touch $DIR/$tfile
237         chown $RUNAS_ID $DIR/$tfile || error "chown $RUNAS_ID $file failed"
238         $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/$tfile ||
239                 error "$tfile should be owned by UID $RUNAS_ID"
240         $RUNAS chown $UID $DIR/$tfile && error "chown $UID $file succeeded"
241         $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/$tfile ||
242                 error "$tfile should be owned by UID $RUNAS_ID"
243 }
244 run_test 6c "touch f6c; chown f6c; $RUNAS chown f6c (should return error) =="
245
246 test_6e() {
247         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
248         touch $DIR/$tfile
249         chgrp $RUNAS_ID $DIR/$tfile || error "chgrp $RUNAS_ID $file failed"
250         $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/$tfile ||
251                 error "$tfile should be owned by GID $UID"
252         $RUNAS chgrp $UID $DIR/$tfile && error "chgrp $UID $file succeeded"
253         $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/$tfile ||
254                 error "$tfile should be owned by UID $UID and GID $RUNAS_ID"
255 }
256 run_test 6e "touch f6e; chgrp f6e; $RUNAS chgrp f6e (should return error) =="
257
258 test_6g() {
259         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
260         test_mkdir $DIR/$tdir || error "mkdir $tfile failed"
261         chmod 777 $DIR/$tdir || error "chmod 0777 $tdir failed"
262         $RUNAS mkdir $DIR/$tdir/d || error "mkdir $tdir/d failed"
263         chmod g+s $DIR/$tdir/d || error "chmod g+s $tdir/d failed"
264         test_mkdir $DIR/$tdir/d/subdir || error "mkdir $tdir/d/subdir failed"
265         $CHECKSTAT -g \#$RUNAS_GID $DIR/$tdir/d/subdir ||
266                 error "$tdir/d/subdir should be GID $RUNAS_GID"
267 }
268 run_test 6g "Is new dir in sgid dir inheriting group?"
269
270 test_6h() { # bug 7331
271         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
272         touch $DIR/$tfile || error "touch failed"
273         chown $RUNAS_ID:$RUNAS_GID $DIR/$tfile || error "initial chown failed"
274         $RUNAS -G$RUNAS_GID chown $RUNAS_ID:0 $DIR/$tfile &&
275                 error "chown $RUNAS_ID:0 $tfile worked as GID $RUNAS_GID"
276         $CHECKSTAT -t file -u \#$RUNAS_ID -g \#$RUNAS_GID $DIR/$tfile ||
277                 error "$tdir/$tfile should be UID $RUNAS_UID GID $RUNAS_GID"
278 }
279 run_test 6h "$RUNAS chown RUNAS_ID.0 .../f6h (should return error)"
280
281 test_7a() {
282         test_mkdir $DIR/$tdir
283         $MCREATE $DIR/$tdir/$tfile
284         chmod 0666 $DIR/$tdir/$tfile
285         $CHECKSTAT -t file -p 0666 $DIR/$tdir/$tfile ||
286                 error "$tdir/$tfile should be mode 0666"
287 }
288 run_test 7a "mkdir .../d7; mcreate .../d7/f; chmod .../d7/f ===="
289
290 test_7b() {
291         if [ ! -d $DIR/$tdir ]; then
292                 test_mkdir $DIR/$tdir
293         fi
294         $MCREATE $DIR/$tdir/$tfile
295         echo -n foo > $DIR/$tdir/$tfile
296         [ "$(cat $DIR/$tdir/$tfile)" = "foo" ] || error "$tdir/$tfile not 'foo'"
297         $CHECKSTAT -t file -s 3 $DIR/$tdir/$tfile || error "$tfile size not 3"
298 }
299 run_test 7b "mkdir .../d7; mcreate d7/f2; echo foo > d7/f2 ====="
300
301 test_8() {
302         test_mkdir $DIR/$tdir
303         touch $DIR/$tdir/$tfile
304         chmod 0666 $DIR/$tdir/$tfile
305         $CHECKSTAT -t file -p 0666 $DIR/$tdir/$tfile ||
306                 error "$tfile mode not 0666"
307 }
308 run_test 8 "mkdir .../d8; touch .../d8/f; chmod .../d8/f ======="
309
310 test_9() {
311         test_mkdir $DIR/$tdir
312         test_mkdir $DIR/$tdir/d2
313         test_mkdir $DIR/$tdir/d2/d3
314         $CHECKSTAT -t dir $DIR/$tdir/d2/d3 || error "$tdir/d2/d3 not a dir"
315 }
316 run_test 9 "mkdir .../d9 .../d9/d2 .../d9/d2/d3 ================"
317
318 test_10() {
319         test_mkdir $DIR/$tdir
320         test_mkdir $DIR/$tdir/d2
321         touch $DIR/$tdir/d2/$tfile
322         $CHECKSTAT -t file $DIR/$tdir/d2/$tfile ||
323                 error "$tdir/d2/$tfile not a file"
324 }
325 run_test 10 "mkdir .../d10 .../d10/d2; touch .../d10/d2/f ======"
326
327 test_11() {
328         test_mkdir $DIR/$tdir
329         test_mkdir $DIR/$tdir/d2
330         chmod 0666 $DIR/$tdir/d2
331         chmod 0705 $DIR/$tdir/d2
332         $CHECKSTAT -t dir -p 0705 $DIR/$tdir/d2 ||
333                 error "$tdir/d2 mode not 0705"
334 }
335 run_test 11 "mkdir .../d11 d11/d2; chmod .../d11/d2 ============"
336
337 test_12() {
338         test_mkdir $DIR/$tdir
339         touch $DIR/$tdir/$tfile
340         chmod 0666 $DIR/$tdir/$tfile
341         chmod 0654 $DIR/$tdir/$tfile
342         $CHECKSTAT -t file -p 0654 $DIR/$tdir/$tfile ||
343                 error "$tdir/d2 mode not 0654"
344 }
345 run_test 12 "touch .../d12/f; chmod .../d12/f .../d12/f ========"
346
347 test_13() {
348         test_mkdir $DIR/$tdir
349         dd if=/dev/zero of=$DIR/$tdir/$tfile count=10
350         >  $DIR/$tdir/$tfile
351         $CHECKSTAT -t file -s 0 $DIR/$tdir/$tfile ||
352                 error "$tdir/$tfile size not 0 after truncate"
353 }
354 run_test 13 "creat .../d13/f; dd .../d13/f; > .../d13/f ========"
355
356 test_14() {
357         test_mkdir $DIR/$tdir
358         touch $DIR/$tdir/$tfile
359         rm $DIR/$tdir/$tfile
360         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$tfile not removed"
361 }
362 run_test 14 "touch .../d14/f; rm .../d14/f; rm .../d14/f ======="
363
364 test_15() {
365         test_mkdir $DIR/$tdir
366         touch $DIR/$tdir/$tfile
367         mv $DIR/$tdir/$tfile $DIR/$tdir/${tfile}_2
368         $CHECKSTAT -t file $DIR/$tdir/${tfile}_2 ||
369                 error "$tdir/${tfile_2} not a file after rename"
370         rm $DIR/$tdir/${tfile}_2 || error "unlink failed after rename"
371 }
372 run_test 15 "touch .../d15/f; mv .../d15/f .../d15/f2 =========="
373
374 test_16() {
375         test_mkdir $DIR/$tdir
376         touch $DIR/$tdir/$tfile
377         rm -rf $DIR/$tdir/$tfile
378         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$tfile not removed"
379 }
380 run_test 16 "touch .../d16/f; rm -rf .../d16/f ================="
381
382 test_17a() {
383         test_mkdir -p $DIR/$tdir
384         touch $DIR/$tdir/$tfile
385         ln -s $DIR/$tdir/$tfile $DIR/$tdir/l-exist
386         ls -l $DIR/$tdir
387         $CHECKSTAT -l $DIR/$tdir/$tfile $DIR/$tdir/l-exist ||
388                 error "$tdir/l-exist not a symlink"
389         $CHECKSTAT -f -t f $DIR/$tdir/l-exist ||
390                 error "$tdir/l-exist not referencing a file"
391         rm -f $DIR/$tdir/l-exist
392         $CHECKSTAT -a $DIR/$tdir/l-exist || error "$tdir/l-exist not removed"
393 }
394 run_test 17a "symlinks: create, remove (real) =================="
395
396 test_17b() {
397         test_mkdir -p $DIR/$tdir
398         ln -s no-such-file $DIR/$tdir/l-dangle
399         ls -l $DIR/$tdir
400         $CHECKSTAT -l no-such-file $DIR/$tdir/l-dangle ||
401                 error "$tdir/l-dangle not referencing no-such-file"
402         $CHECKSTAT -fa $DIR/$tdir/l-dangle ||
403                 error "$tdir/l-dangle not referencing non-existent file"
404         rm -f $DIR/$tdir/l-dangle
405         $CHECKSTAT -a $DIR/$tdir/l-dangle || error "$tdir/l-dangle not removed"
406 }
407 run_test 17b "symlinks: create, remove (dangling) =============="
408
409 test_17c() { # bug 3440 - don't save failed open RPC for replay
410         test_mkdir -p $DIR/$tdir
411         ln -s foo $DIR/$tdir/$tfile
412         cat $DIR/$tdir/$tfile && error "opened non-existent symlink" || true
413 }
414 run_test 17c "symlinks: open dangling (should return error) ===="
415
416 test_17d() {
417         test_mkdir -p $DIR/$tdir
418         ln -s foo $DIR/$tdir/$tfile
419         touch $DIR/$tdir/$tfile || error "creating to new symlink"
420 }
421 run_test 17d "symlinks: create dangling ========================"
422
423 test_17e() {
424         test_mkdir -p $DIR/$tdir
425         local foo=$DIR/$tdir/$tfile
426         ln -s $foo $foo || error "create symlink failed"
427         ls -l $foo || error "ls -l failed"
428         ls $foo && error "ls not failed" || true
429 }
430 run_test 17e "symlinks: create recursive symlink (should return error) ===="
431
432 test_17f() {
433         test_mkdir -p $DIR/$tdir
434         ln -s 1234567890/2234567890/3234567890/4234567890 $DIR/$tdir/111
435         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890 $DIR/$tdir/222
436         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890 $DIR/$tdir/333
437         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890 $DIR/$tdir/444
438         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890/c234567890/d234567890/f234567890 $DIR/$tdir/555
439         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
440         ls -l  $DIR/$tdir
441 }
442 run_test 17f "symlinks: long and very long symlink name ========================"
443
444 # str_repeat(S, N) generate a string that is string S repeated N times
445 str_repeat() {
446         local s=$1
447         local n=$2
448         local ret=''
449         while [ $((n -= 1)) -ge 0 ]; do
450                 ret=$ret$s
451         done
452         echo $ret
453 }
454
455 # Long symlinks and LU-2241
456 test_17g() {
457         test_mkdir -p $DIR/$tdir
458         local TESTS="59 60 61 4094 4095"
459
460         # Fix for inode size boundary in 2.1.4
461         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.1.4) ] &&
462                 TESTS="4094 4095"
463
464         # Patch not applied to 2.2 or 2.3 branches
465         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
466         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.3.55) ] &&
467                 TESTS="4094 4095"
468
469         # skip long symlink name for rhel6.5.
470         # rhel6.5 has a limit (PATH_MAX - sizeof(struct filename))
471         grep -q '6.5' /etc/redhat-release &>/dev/null &&
472                 TESTS="59 60 61 4062 4063"
473
474         for i in $TESTS; do
475                 local SYMNAME=$(str_repeat 'x' $i)
476                 ln -s $SYMNAME $DIR/$tdir/f$i || error "failed $i-char symlink"
477                 readlink $DIR/$tdir/f$i || error "failed $i-char readlink"
478         done
479 }
480 run_test 17g "symlinks: really long symlink name and inode boundaries"
481
482 test_17h() { #bug 17378
483         remote_mds_nodsh && skip "remote MDS with nodsh" && return
484         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
485         local mdt_idx
486         test_mkdir -p $DIR/$tdir
487         if [[ $MDSCOUNT -gt 1 ]]; then
488                 mdt_idx=$($LFS getdirstripe -i $DIR/$tdir)
489         else
490                 mdt_idx=0
491         fi
492         $SETSTRIPE -c -1 $DIR/$tdir
493 #define OBD_FAIL_MDS_LOV_PREP_CREATE 0x141
494         do_facet mds$((mdt_idx + 1)) lctl set_param fail_loc=0x80000141
495         touch $DIR/$tdir/$tfile || true
496 }
497 run_test 17h "create objects: lov_free_memmd() doesn't lbug"
498
499 test_17i() { #bug 20018
500         remote_mds_nodsh && skip "remote MDS with nodsh" && return
501         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
502         test_mkdir -c1 $DIR/$tdir
503         local foo=$DIR/$tdir/$tfile
504         local mdt_idx
505         if [[ $MDSCOUNT -gt 1 ]]; then
506                 mdt_idx=$($LFS getdirstripe -i $DIR/$tdir)
507         else
508                 mdt_idx=0
509         fi
510         ln -s $foo $foo || error "create symlink failed"
511 #define OBD_FAIL_MDS_READLINK_EPROTO     0x143
512         do_facet mds$((mdt_idx + 1)) lctl set_param fail_loc=0x80000143
513         ls -l $foo && error "error not detected"
514         return 0
515 }
516 run_test 17i "don't panic on short symlink"
517
518 test_17k() { #bug 22301
519         [[ -z "$(which rsync 2>/dev/null)" ]] &&
520                 skip "no rsync command" && return 0
521         rsync --help | grep -q xattr ||
522                 skip_env "$(rsync --version | head -n1) does not support xattrs"
523         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return 0
524         test_mkdir -p $DIR/$tdir
525         test_mkdir -p $DIR/$tdir.new
526         touch $DIR/$tdir/$tfile
527         ln -s $DIR/$tdir/$tfile $DIR/$tdir/$tfile.lnk
528         rsync -av -X $DIR/$tdir/ $DIR/$tdir.new ||
529                 error "rsync failed with xattrs enabled"
530 }
531 run_test 17k "symlinks: rsync with xattrs enabled ========================="
532
533 test_17l() { # LU-279
534         [[ -z "$(which getfattr 2>/dev/null)" ]] &&
535                 skip "no getfattr command" && return 0
536         test_mkdir -p $DIR/$tdir
537         touch $DIR/$tdir/$tfile
538         ln -s $DIR/$tdir/$tfile $DIR/$tdir/$tfile.lnk
539         for path in "$DIR/$tdir" "$DIR/$tdir/$tfile" "$DIR/$tdir/$tfile.lnk"; do
540                 # -h to not follow symlinks. -m '' to list all the xattrs.
541                 # grep to remove first line: '# file: $path'.
542                 for xattr in `getfattr -hm '' $path 2>/dev/null | grep -v '^#'`;
543                 do
544                         lgetxattr_size_check $path $xattr ||
545                                 error "lgetxattr_size_check $path $xattr failed"
546                 done
547         done
548 }
549 run_test 17l "Ensure lgetxattr's returned xattr size is consistent ========"
550
551 # LU-1540
552 test_17m() {
553         local short_sym="0123456789"
554         local WDIR=$DIR/${tdir}m
555         local i
556
557         remote_mds_nodsh && skip "remote MDS with nodsh" && return
558         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
559         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.2.93) ] &&
560                 skip "MDS 2.2.0-2.2.93 do not NUL-terminate symlinks" && return
561
562         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
563                 skip "only for ldiskfs MDT" && return 0
564
565         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
566
567         test_mkdir -p $WDIR
568         long_sym=$short_sym
569         # create a long symlink file
570         for ((i = 0; i < 4; ++i)); do
571                 long_sym=${long_sym}${long_sym}
572         done
573
574         echo "create 512 short and long symlink files under $WDIR"
575         for ((i = 0; i < 256; ++i)); do
576                 ln -sf ${long_sym}"a5a5" $WDIR/long-$i
577                 ln -sf ${short_sym}"a5a5" $WDIR/short-$i
578         done
579
580         echo "erase them"
581         rm -f $WDIR/*
582         sync
583         wait_delete_completed
584
585         echo "recreate the 512 symlink files with a shorter string"
586         for ((i = 0; i < 512; ++i)); do
587                 # rewrite the symlink file with a shorter string
588                 ln -sf ${long_sym} $WDIR/long-$i || error "long_sym failed"
589                 ln -sf ${short_sym} $WDIR/short-$i || error "short_sym failed"
590         done
591
592         local mds_index=$(($($LFS getstripe -M $WDIR) + 1))
593         local devname=$(mdsdevname $mds_index)
594
595         echo "stop and checking mds${mds_index}:"
596         # e2fsck should not return error
597         stop mds${mds_index}
598         run_e2fsck $(facet_active_host mds${mds_index}) $devname -n
599         rc=$?
600
601         start mds${mds_index} $devname $MDS_MOUNT_OPTS || error "start failed"
602         df $MOUNT > /dev/null 2>&1
603         [ $rc -eq 0 ] ||
604                 error "e2fsck detected error for short/long symlink: rc=$rc"
605 }
606 run_test 17m "run e2fsck against MDT which contains short/long symlink"
607
608 check_fs_consistency_17n() {
609         local mdt_index
610         local rc=0
611
612         # create/unlink in 17n only change 2 MDTs(MDT1/MDT2),
613         # so it only check MDT1/MDT2 instead of all of MDTs.
614         for mdt_index in 1 2; do
615                 local devname=$(mdsdevname $mdt_index)
616                 # e2fsck should not return error
617                 stop mds${mdt_index}
618                 run_e2fsck $(facet_active_host mds$mdt_index) $devname -n ||
619                         rc=$((rc + $?))
620
621                 start mds${mdt_index} $devname $MDS_MOUNT_OPTS ||
622                         error "mount mds$mdt_index failed"
623                 df $MOUNT > /dev/null 2>&1
624         done
625         return $rc
626 }
627
628 test_17n() {
629         local i
630
631         remote_mds_nodsh && skip "remote MDS with nodsh" && return
632         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
633         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.2.93) ] &&
634                 skip "MDS 2.2.0-2.2.93 do not NUL-terminate symlinks" && return
635
636         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
637                 skip "only for ldiskfs MDT" && return 0
638
639         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
640
641         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
642
643         test_mkdir $DIR/$tdir
644         for ((i=0; i<10; i++)); do
645                 $LFS mkdir -i1 -c2 $DIR/$tdir/remote_dir_${i} ||
646                         error "create remote dir error $i"
647                 createmany -o $DIR/$tdir/remote_dir_${i}/f 10 ||
648                         error "create files under remote dir failed $i"
649         done
650
651         check_fs_consistency_17n ||
652                 error "e2fsck report error after create files under remote dir"
653
654         for ((i = 0; i < 10; i++)); do
655                 rm -rf $DIR/$tdir/remote_dir_${i} ||
656                         error "destroy remote dir error $i"
657         done
658
659         check_fs_consistency_17n ||
660                 error "e2fsck report error after unlink files under remote dir"
661
662         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.50) ] &&
663                 skip "lustre < 2.4.50 does not support migrate mv " && return
664
665         for ((i = 0; i < 10; i++)); do
666                 mkdir -p $DIR/$tdir/remote_dir_${i}
667                 createmany -o $DIR/$tdir/remote_dir_${i}/f 10 ||
668                         error "create files under remote dir failed $i"
669                 $LFS migrate --mdt-index 1 $DIR/$tdir/remote_dir_${i} ||
670                         error "migrate remote dir error $i"
671         done
672         check_fs_consistency_17n || error "e2fsck report error after migration"
673
674         for ((i = 0; i < 10; i++)); do
675                 rm -rf $DIR/$tdir/remote_dir_${i} ||
676                         error "destroy remote dir error $i"
677         done
678
679         check_fs_consistency_17n || error "e2fsck report error after unlink"
680 }
681 run_test 17n "run e2fsck against master/slave MDT which contains remote dir"
682
683 test_17o() {
684         remote_mds_nodsh && skip "remote MDS with nodsh" && return
685         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.64) ] &&
686                 skip "Need MDS version at least 2.3.64" && return
687
688         local WDIR=$DIR/${tdir}o
689         local mdt_index
690         local rc=0
691
692         test_mkdir -p $WDIR
693         mdt_index=$($LFS getstripe -M $WDIR)
694         mdt_index=$((mdt_index+1))
695
696         touch $WDIR/$tfile
697
698         #fail mds will wait the failover finish then set
699         #following fail_loc to avoid interfer the recovery process.
700         fail mds${mdt_index}
701
702         #define OBD_FAIL_OSD_LMA_INCOMPAT 0x194
703         do_facet mds${mdt_index} lctl set_param fail_loc=0x194
704         ls -l $WDIR/$tfile && rc=1
705         do_facet mds${mdt_index} lctl set_param fail_loc=0
706         [[ $rc -ne 0 ]] && error "stat file should fail"
707         true
708 }
709 run_test 17o "stat file with incompat LMA feature"
710
711 test_18() {
712         touch $DIR/$tfile || error "Failed to touch $DIR/$tfile: $?"
713         ls $DIR || error "Failed to ls $DIR: $?"
714 }
715 run_test 18 "touch .../f ; ls ... =============================="
716
717 test_19a() {
718         touch $DIR/$tfile
719         ls -l $DIR
720         rm $DIR/$tfile
721         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
722 }
723 run_test 19a "touch .../f19 ; ls -l ... ; rm .../f19 ==========="
724
725 test_19b() {
726         ls -l $DIR/$tfile && error "ls -l $tfile failed"|| true
727 }
728 run_test 19b "ls -l .../f19 (should return error) =============="
729
730 test_19c() {
731         [ $RUNAS_ID -eq $UID ] &&
732                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
733         $RUNAS touch $DIR/$tfile && error "create non-root file failed" || true
734 }
735 run_test 19c "$RUNAS touch .../f19 (should return error) =="
736
737 test_19d() {
738         cat $DIR/f19 && error || true
739 }
740 run_test 19d "cat .../f19 (should return error) =============="
741
742 test_20() {
743         touch $DIR/$tfile
744         rm $DIR/$tfile
745         log "1 done"
746         touch $DIR/$tfile
747         rm $DIR/$tfile
748         log "2 done"
749         touch $DIR/$tfile
750         rm $DIR/$tfile
751         log "3 done"
752         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
753 }
754 run_test 20 "touch .../f ; ls -l ... ==========================="
755
756 test_21() {
757         test_mkdir -p $DIR/$tdir
758         [ -f $DIR/$tdir/dangle ] && rm -f $DIR/$tdir/dangle
759         ln -s dangle $DIR/$tdir/link
760         echo foo >> $DIR/$tdir/link
761         cat $DIR/$tdir/dangle
762         $CHECKSTAT -t link $DIR/$tdir/link || error "$tdir/link not a link"
763         $CHECKSTAT -f -t file $DIR/$tdir/link ||
764                 error "$tdir/link not linked to a file"
765 }
766 run_test 21 "write to dangling link ============================"
767
768 test_22() {
769         WDIR=$DIR/$tdir
770         test_mkdir -p $DIR/$tdir
771         chown $RUNAS_ID:$RUNAS_GID $WDIR
772         (cd $WDIR || error "cd $WDIR failed";
773         $RUNAS tar cf - /etc/hosts /etc/sysconfig/network | \
774         $RUNAS tar xf -)
775         ls -lR $WDIR/etc || error "ls -lR $WDIR/etc failed"
776         $CHECKSTAT -t dir $WDIR/etc || error "checkstat -t dir failed"
777         $CHECKSTAT -u \#$RUNAS_ID -g \#$RUNAS_GID $WDIR/etc || error "checkstat -u failed"
778 }
779 run_test 22 "unpack tar archive as non-root user ==============="
780
781 # was test_23
782 test_23a() {
783         test_mkdir -p $DIR/$tdir
784         local file=$DIR/$tdir/$tfile
785
786         openfile -f O_CREAT:O_EXCL $file || error "$file create failed"
787         openfile -f O_CREAT:O_EXCL $file &&
788                 error "$file recreate succeeded" || true
789 }
790 run_test 23a "O_CREAT|O_EXCL in subdir =========================="
791
792 test_23b() { # bug 18988
793         test_mkdir -p $DIR/$tdir
794         local file=$DIR/$tdir/$tfile
795
796         rm -f $file
797         echo foo > $file || error "write filed"
798         echo bar >> $file || error "append filed"
799         $CHECKSTAT -s 8 $file || error "wrong size"
800         rm $file
801 }
802 run_test 23b "O_APPEND check =========================="
803
804 # rename sanity
805 test_24a() {
806         echo '-- same directory rename'
807         test_mkdir $DIR/$tdir
808         touch $DIR/$tdir/$tfile.1
809         mv $DIR/$tdir/$tfile.1 $DIR/$tdir/$tfile.2
810         $CHECKSTAT -t file $DIR/$tdir/$tfile.2 || error "$tfile.2 not a file"
811 }
812 run_test 24a "rename file to non-existent target"
813
814 test_24b() {
815         test_mkdir $DIR/$tdir
816         touch $DIR/$tdir/$tfile.{1,2}
817         mv $DIR/$tdir/$tfile.1 $DIR/$tdir/$tfile.2
818         $CHECKSTAT -a $DIR/$tdir/$tfile.1 || error "$tfile.1 exists"
819         $CHECKSTAT -t file $DIR/$tdir/$tfile.2 || error "$tfile.2 not a file"
820 }
821 run_test 24b "rename file to existing target"
822
823 test_24c() {
824         test_mkdir $DIR/$tdir
825         test_mkdir $DIR/$tdir/d$testnum.1
826         mv $DIR/$tdir/d$testnum.1 $DIR/$tdir/d$testnum.2
827         $CHECKSTAT -a $DIR/$tdir/d$testnum.1 || error "d$testnum.1 exists"
828         $CHECKSTAT -t dir $DIR/$tdir/d$testnum.2 || error "d$testnum.2 not dir"
829 }
830 run_test 24c "rename directory to non-existent target"
831
832 test_24d() {
833         test_mkdir -c1 $DIR/$tdir
834         test_mkdir -c1 $DIR/$tdir/d$testnum.1
835         test_mkdir -c1 $DIR/$tdir/d$testnum.2
836         mrename $DIR/$tdir/d$testnum.1 $DIR/$tdir/d$testnum.2
837         $CHECKSTAT -a $DIR/$tdir/d$testnum.1 || error "d$testnum.1 exists"
838         $CHECKSTAT -t dir $DIR/$tdir/d$testnum.2 || error "d$testnum.2 not dir"
839 }
840 run_test 24d "rename directory to existing target"
841
842 test_24e() {
843         echo '-- cross directory renames --'
844         test_mkdir $DIR/R5a
845         test_mkdir $DIR/R5b
846         touch $DIR/R5a/f
847         mv $DIR/R5a/f $DIR/R5b/g
848         $CHECKSTAT -a $DIR/R5a/f || error
849         $CHECKSTAT -t file $DIR/R5b/g || error
850 }
851 run_test 24e "touch .../R5a/f; rename .../R5a/f .../R5b/g ======"
852
853 test_24f() {
854         test_mkdir $DIR/R6a
855         test_mkdir $DIR/R6b
856         touch $DIR/R6a/f $DIR/R6b/g
857         mv $DIR/R6a/f $DIR/R6b/g
858         $CHECKSTAT -a $DIR/R6a/f || error
859         $CHECKSTAT -t file $DIR/R6b/g || error
860 }
861 run_test 24f "touch .../R6a/f R6b/g; mv .../R6a/f .../R6b/g ===="
862
863 test_24g() {
864         test_mkdir $DIR/R7a
865         test_mkdir $DIR/R7b
866         test_mkdir $DIR/R7a/d
867         mv $DIR/R7a/d $DIR/R7b/e
868         $CHECKSTAT -a $DIR/R7a/d || error
869         $CHECKSTAT -t dir $DIR/R7b/e || error
870 }
871 run_test 24g "mkdir .../R7{a,b}/d; mv .../R7a/d .../R7b/e ======"
872
873 test_24h() {
874         test_mkdir -c1 $DIR/R8a
875         test_mkdir -c1 $DIR/R8b
876         test_mkdir -c1 $DIR/R8a/d
877         test_mkdir -c1 $DIR/R8b/e
878         mrename $DIR/R8a/d $DIR/R8b/e
879         $CHECKSTAT -a $DIR/R8a/d || error
880         $CHECKSTAT -t dir $DIR/R8b/e || error
881 }
882 run_test 24h "mkdir .../R8{a,b}/{d,e}; rename .../R8a/d .../R8b/e"
883
884 test_24i() {
885         echo "-- rename error cases"
886         test_mkdir $DIR/R9
887         test_mkdir $DIR/R9/a
888         touch $DIR/R9/f
889         mrename $DIR/R9/f $DIR/R9/a
890         $CHECKSTAT -t file $DIR/R9/f || error
891         $CHECKSTAT -t dir  $DIR/R9/a || error
892         $CHECKSTAT -a $DIR/R9/a/f || error
893 }
894 run_test 24i "rename file to dir error: touch f ; mkdir a ; rename f a"
895
896 test_24j() {
897         test_mkdir $DIR/R10
898         mrename $DIR/R10/f $DIR/R10/g
899         $CHECKSTAT -t dir $DIR/R10 || error
900         $CHECKSTAT -a $DIR/R10/f || error
901         $CHECKSTAT -a $DIR/R10/g || error
902 }
903 run_test 24j "source does not exist ============================"
904
905 test_24k() {
906         test_mkdir $DIR/R11a
907         test_mkdir $DIR/R11a/d
908         touch $DIR/R11a/f
909         mv $DIR/R11a/f $DIR/R11a/d
910         $CHECKSTAT -a $DIR/R11a/f || error
911         $CHECKSTAT -t file $DIR/R11a/d/f || error
912 }
913 run_test 24k "touch .../R11a/f; mv .../R11a/f .../R11a/d ======="
914
915 # bug 2429 - rename foo foo foo creates invalid file
916 test_24l() {
917         f="$DIR/f24l"
918         $MULTIOP $f OcNs || error
919 }
920 run_test 24l "Renaming a file to itself ========================"
921
922 test_24m() {
923         f="$DIR/f24m"
924         $MULTIOP $f OcLN ${f}2 ${f}2 || error "link ${f}2 ${f}2 failed"
925         # on ext3 this does not remove either the source or target files
926         # though the "expected" operation would be to remove the source
927         $CHECKSTAT -t file ${f} || error "${f} missing"
928         $CHECKSTAT -t file ${f}2 || error "${f}2 missing"
929 }
930 run_test 24m "Renaming a file to a hard link to itself ========="
931
932 test_24n() {
933     f="$DIR/f24n"
934     # this stats the old file after it was renamed, so it should fail
935     touch ${f}
936     $CHECKSTAT ${f}
937     mv ${f} ${f}.rename
938     $CHECKSTAT ${f}.rename
939     $CHECKSTAT -a ${f}
940 }
941 run_test 24n "Statting the old file after renaming (Posix rename 2)"
942
943 test_24o() {
944         test_mkdir -p $DIR/d24o
945         rename_many -s random -v -n 10 $DIR/d24o
946 }
947 run_test 24o "rename of files during htree split ==============="
948
949 test_24p() {
950         test_mkdir $DIR/R12a
951         test_mkdir $DIR/R12b
952         DIRINO=`ls -lid $DIR/R12a | awk '{ print $1 }'`
953         mrename $DIR/R12a $DIR/R12b
954         $CHECKSTAT -a $DIR/R12a || error
955         $CHECKSTAT -t dir $DIR/R12b || error
956         DIRINO2=`ls -lid $DIR/R12b | awk '{ print $1 }'`
957         [ "$DIRINO" = "$DIRINO2" ] || error "R12a $DIRINO != R12b $DIRINO2"
958 }
959 run_test 24p "mkdir .../R12{a,b}; rename .../R12a .../R12b"
960
961 cleanup_multiop_pause() {
962         trap 0
963         kill -USR1 $MULTIPID
964 }
965
966 test_24q() {
967         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
968         test_mkdir $DIR/R13a
969         test_mkdir $DIR/R13b
970         local DIRINO=$(ls -lid $DIR/R13a | awk '{ print $1 }')
971         multiop_bg_pause $DIR/R13b D_c || error "multiop failed to start"
972         MULTIPID=$!
973
974         trap cleanup_multiop_pause EXIT
975         mrename $DIR/R13a $DIR/R13b
976         $CHECKSTAT -a $DIR/R13a || error "R13a still exists"
977         $CHECKSTAT -t dir $DIR/R13b || error "R13b does not exist"
978         local DIRINO2=$(ls -lid $DIR/R13b | awk '{ print $1 }')
979         [ "$DIRINO" = "$DIRINO2" ] || error "R13a $DIRINO != R13b $DIRINO2"
980         cleanup_multiop_pause
981         wait $MULTIPID || error "multiop close failed"
982 }
983 run_test 24q "mkdir .../R13{a,b}; open R13b rename R13a R13b ==="
984
985 test_24r() { #bug 3789
986         test_mkdir $DIR/R14a
987         test_mkdir $DIR/R14a/b
988         mrename $DIR/R14a $DIR/R14a/b && error "rename to subdir worked!"
989         $CHECKSTAT -t dir $DIR/R14a || error "$DIR/R14a missing"
990         $CHECKSTAT -t dir $DIR/R14a/b || error "$DIR/R14a/b missing"
991 }
992 run_test 24r "mkdir .../R14a/b; rename .../R14a .../R14a/b ====="
993
994 test_24s() {
995         test_mkdir $DIR/R15a
996         test_mkdir $DIR/R15a/b
997         test_mkdir $DIR/R15a/b/c
998         mrename $DIR/R15a $DIR/R15a/b/c && error "rename to sub-subdir worked!"
999         $CHECKSTAT -t dir $DIR/R15a || error "$DIR/R15a missing"
1000         $CHECKSTAT -t dir $DIR/R15a/b/c || error "$DIR/R15a/b/c missing"
1001 }
1002 run_test 24s "mkdir .../R15a/b/c; rename .../R15a .../R15a/b/c ="
1003 test_24t() {
1004         test_mkdir $DIR/R16a
1005         test_mkdir $DIR/R16a/b
1006         test_mkdir $DIR/R16a/b/c
1007         mrename $DIR/R16a/b/c $DIR/R16a && error "rename to sub-subdir worked!"
1008         $CHECKSTAT -t dir $DIR/R16a || error "$DIR/R16a missing"
1009         $CHECKSTAT -t dir $DIR/R16a/b/c || error "$DIR/R16a/b/c missing"
1010 }
1011 run_test 24t "mkdir .../R16a/b/c; rename .../R16a/b/c .../R16a ="
1012
1013 test_24u() { # bug12192
1014         $MULTIOP $DIR/$tfile C2w$((2048 * 1024))c || error
1015         $CHECKSTAT -s $((2048 * 1024)) $DIR/$tfile || error "wrong file size"
1016 }
1017 run_test 24u "create stripe file"
1018
1019 page_size() {
1020         getconf PAGE_SIZE
1021 }
1022
1023 simple_cleanup_common() {
1024         trap 0
1025         rm -rf $DIR/$tdir
1026         wait_delete_completed
1027 }
1028
1029 max_pages_per_rpc() {
1030         $LCTL get_param -n mdc.*.max_pages_per_rpc | head -n1
1031 }
1032
1033 test_24v() {
1034         local NRFILES=100000
1035         local FREE_INODES=$(mdt_free_inodes 0)
1036         [[ $FREE_INODES -lt $NRFILES ]] &&
1037                 skip "not enough free inodes $FREE_INODES required $NRFILES" &&
1038                 return
1039
1040         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1041         trap simple_cleanup_common EXIT
1042
1043         # Performance issue on ZFS see LU-4072 (c.f. LU-2887)
1044         [ $(facet_fstype $SINGLEMDS) = "zfs" ] && NRFILES=10000
1045
1046         test_mkdir -p $DIR/$tdir
1047         createmany -m $DIR/$tdir/$tfile $NRFILES
1048
1049         cancel_lru_locks mdc
1050         lctl set_param mdc.*.stats clear
1051
1052         ls $DIR/$tdir >/dev/null || error "error in listing large dir"
1053
1054         # LU-5 large readdir
1055         # DIRENT_SIZE = 32 bytes for sizeof(struct lu_dirent) +
1056         #               8 bytes for name(filename is mostly 5 in this test) +
1057         #               8 bytes for luda_type
1058         # take into account of overhead in lu_dirpage header and end mark in
1059         # each page, plus one in RPC_NUM calculation.
1060         DIRENT_SIZE=48
1061         RPC_SIZE=$(($(max_pages_per_rpc) * $(page_size)))
1062         RPC_NUM=$(((NRFILES * DIRENT_SIZE + RPC_SIZE - 1) / RPC_SIZE + 1))
1063         mds_readpage=$(lctl get_param mdc.*MDT0000*.stats |
1064                                 awk '/^mds_readpage/ {print $2}')
1065         [[ $mds_readpage -gt $RPC_NUM ]] &&
1066                 error "large readdir doesn't take effect"
1067
1068         simple_cleanup_common
1069 }
1070 run_test 24v "list directory with large files (handle hash collision, bug: 17560)"
1071
1072 test_24w() { # bug21506
1073         SZ1=234852
1074         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=4096 || return 1
1075         dd if=/dev/zero bs=$SZ1 count=1 >> $DIR/$tfile || return 2
1076         dd if=$DIR/$tfile of=$DIR/${tfile}_left bs=1M skip=4097 || return 3
1077         SZ2=`ls -l $DIR/${tfile}_left | awk '{print $5}'`
1078         [[ "$SZ1" -eq "$SZ2" ]] ||
1079                 error "Error reading at the end of the file $tfile"
1080 }
1081 run_test 24w "Reading a file larger than 4Gb"
1082
1083 test_24x() {
1084         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
1085
1086         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.56) ]] &&
1087                 skip "Need MDS version at least 2.7.56" && return
1088
1089         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1090         local MDTIDX=1
1091         local remote_dir=$DIR/$tdir/remote_dir
1092
1093         test_mkdir -p $DIR/$tdir
1094         $LFS mkdir -i $MDTIDX $remote_dir ||
1095                 error "create remote directory failed"
1096
1097         test_mkdir -p $DIR/$tdir/src_dir
1098         touch $DIR/$tdir/src_file
1099         test_mkdir -p $remote_dir/tgt_dir
1100         touch $remote_dir/tgt_file
1101
1102         mrename $DIR/$tdir/src_dir $remote_dir/tgt_dir ||
1103                 error "rename dir cross MDT failed!"
1104
1105         mrename $DIR/$tdir/src_file $remote_dir/tgt_file ||
1106                 error "rename file cross MDT failed!"
1107
1108         touch $DIR/$tdir/ln_file
1109         ln $DIR/$tdir/ln_file $remote_dir/ln_name ||
1110                 error "ln file cross MDT failed"
1111
1112         rm -rf $DIR/$tdir || error "Can not delete directories"
1113 }
1114 run_test 24x "cross MDT rename/link"
1115
1116 test_24y() {
1117         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
1118         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1119         local MDTIDX=1
1120         local remote_dir=$DIR/$tdir/remote_dir
1121
1122         test_mkdir -p $DIR/$tdir
1123         $LFS mkdir -i $MDTIDX $remote_dir ||
1124                    error "create remote directory failed"
1125
1126         test_mkdir -p $remote_dir/src_dir
1127         touch $remote_dir/src_file
1128         test_mkdir -p $remote_dir/tgt_dir
1129         touch $remote_dir/tgt_file
1130
1131         mrename $remote_dir/src_dir $remote_dir/tgt_dir ||
1132                 error "rename subdir in the same remote dir failed!"
1133
1134         mrename $remote_dir/src_file $remote_dir/tgt_file ||
1135                 error "rename files in the same remote dir failed!"
1136
1137         ln $remote_dir/tgt_file $remote_dir/tgt_file1 ||
1138                 error "link files in the same remote dir failed!"
1139
1140         rm -rf $DIR/$tdir || error "Can not delete directories"
1141 }
1142 run_test 24y "rename/link on the same dir should succeed"
1143
1144 test_24A() { # LU-3182
1145         local NFILES=5000
1146
1147         rm -rf $DIR/$tdir
1148         test_mkdir -p $DIR/$tdir
1149         createmany -m $DIR/$tdir/$tfile $NFILES
1150         local t=$(ls $DIR/$tdir | wc -l)
1151         local u=$(ls $DIR/$tdir | sort -u | wc -l)
1152         local v=$(ls -ai $DIR/$tdir | sort -u | wc -l)
1153         if [ $t -ne $NFILES -o $u -ne $NFILES -o $v -ne $((NFILES + 2)) ] ; then
1154                 error "Expected $NFILES files, got $t ($u unique $v .&..)"
1155         fi
1156
1157         rm -rf $DIR/$tdir || error "Can not delete directories"
1158 }
1159 run_test 24A "readdir() returns correct number of entries."
1160
1161 test_24B() { # LU-4805
1162         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
1163         local count
1164
1165         test_mkdir $DIR/$tdir
1166         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir ||
1167                 error "create striped dir failed"
1168
1169         count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1170         [ $count -eq 2 ] || error "Expected 2, got $count"
1171
1172         touch $DIR/$tdir/striped_dir/a
1173
1174         count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1175         [ $count -eq 3 ] || error "Expected 3, got $count"
1176
1177         touch $DIR/$tdir/striped_dir/.f
1178
1179         count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1180         [ $count -eq 4 ] || error "Expected 4, got $count"
1181
1182         rm -rf $DIR/$tdir || error "Can not delete directories"
1183 }
1184 run_test 24B "readdir for striped dir return correct number of entries"
1185
1186 test_24C() {
1187         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
1188
1189         mkdir $DIR/$tdir
1190         mkdir $DIR/$tdir/d0
1191         mkdir $DIR/$tdir/d1
1192
1193         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/d0/striped_dir ||
1194                 error "create striped dir failed"
1195
1196         cd $DIR/$tdir/d0/striped_dir
1197
1198         local d0_ino=$(ls -i -l -a $DIR/$tdir | grep "d0" | awk '{print $1}')
1199         local d1_ino=$(ls -i -l -a $DIR/$tdir | grep "d1" | awk '{print $1}')
1200         local parent_ino=$(ls -i -l -a | grep "\.\." | awk '{print $1}')
1201
1202         [ "$d0_ino" = "$parent_ino" ] ||
1203                 error ".. wrong, expect $d0_ino, get $parent_ino"
1204
1205         mv $DIR/$tdir/d0/striped_dir $DIR/$tdir/d1/ ||
1206                 error "mv striped dir failed"
1207
1208         parent_ino=$(ls -i -l -a | grep "\.\." | awk '{print $1}')
1209
1210         [ "$d1_ino" = "$parent_ino" ] ||
1211                 error ".. wrong after mv, expect $d1_ino, get $parent_ino"
1212 }
1213 run_test 24C "check .. in striped dir"
1214
1215 test_24D() { # LU-6101
1216         local NFILES=50000
1217
1218         rm -rf $DIR/$tdir
1219         mkdir -p $DIR/$tdir
1220         createmany -m $DIR/$tdir/$tfile $NFILES
1221         local t=$(ls $DIR/$tdir | wc -l)
1222         local u=$(ls $DIR/$tdir | sort -u | wc -l)
1223         local v=$(ls -ai $DIR/$tdir | sort -u | wc -l)
1224         if [ $t -ne $NFILES -o $u -ne $NFILES -o $v -ne $((NFILES + 2)) ] ; then
1225                 error "Expected $NFILES files, got $t ($u unique $v .&..)"
1226         fi
1227
1228         rm -rf $DIR/$tdir || error "Can not delete directories"
1229 }
1230 run_test 24D "readdir() returns correct number of entries after cursor reload"
1231
1232 test_24E() {
1233         [[ $MDSCOUNT -lt 4 ]] && skip "needs >= 4 MDTs" && return
1234         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1235
1236         mkdir -p $DIR/$tdir
1237         mkdir $DIR/$tdir/src_dir
1238         $LFS mkdir -i 1 $DIR/$tdir/src_dir/src_child ||
1239                 error "create remote source failed"
1240
1241         touch $DIR/$tdir/src_dir/src_child/a
1242
1243         $LFS mkdir -i 2 $DIR/$tdir/tgt_dir ||
1244                 error "create remote target dir failed"
1245
1246         $LFS mkdir -i 3 $DIR/$tdir/tgt_dir/tgt_child ||
1247                 error "create remote target child failed"
1248
1249         mrename $DIR/$tdir/src_dir/src_child $DIR/$tdir/tgt_dir/tgt_child ||
1250                 error "rename dir cross MDT failed!"
1251
1252         find $DIR/$tdir
1253
1254         $CHECKSTAT -t dir $DIR/$tdir/src_dir/src_child &&
1255                 error "src_child still exists after rename"
1256
1257         $CHECKSTAT -t file $DIR/$tdir/tgt_dir/tgt_child/a ||
1258                 error "missing file(a) after rename"
1259
1260         rm -rf $DIR/$tdir || error "Can not delete directories"
1261 }
1262 run_test 24E "cross MDT rename/link"
1263
1264 test_25a() {
1265         echo '== symlink sanity ============================================='
1266
1267         test_mkdir $DIR/d25
1268         ln -s d25 $DIR/s25
1269         touch $DIR/s25/foo || error
1270 }
1271 run_test 25a "create file in symlinked directory ==============="
1272
1273 test_25b() {
1274         [ ! -d $DIR/d25 ] && test_25a
1275         $CHECKSTAT -t file $DIR/s25/foo || error
1276 }
1277 run_test 25b "lookup file in symlinked directory ==============="
1278
1279 test_26a() {
1280         test_mkdir $DIR/d26
1281         test_mkdir $DIR/d26/d26-2
1282         ln -s d26/d26-2 $DIR/s26
1283         touch $DIR/s26/foo || error
1284 }
1285 run_test 26a "multiple component symlink ======================="
1286
1287 test_26b() {
1288         test_mkdir -p $DIR/d26b/d26-2
1289         ln -s d26b/d26-2/foo $DIR/s26-2
1290         touch $DIR/s26-2 || error
1291 }
1292 run_test 26b "multiple component symlink at end of lookup ======"
1293
1294 test_26c() {
1295         test_mkdir $DIR/d26.2
1296         touch $DIR/d26.2/foo
1297         ln -s d26.2 $DIR/s26.2-1
1298         ln -s s26.2-1 $DIR/s26.2-2
1299         ln -s s26.2-2 $DIR/s26.2-3
1300         chmod 0666 $DIR/s26.2-3/foo
1301 }
1302 run_test 26c "chain of symlinks ================================"
1303
1304 # recursive symlinks (bug 439)
1305 test_26d() {
1306         ln -s d26-3/foo $DIR/d26-3
1307 }
1308 run_test 26d "create multiple component recursive symlink ======"
1309
1310 test_26e() {
1311         [ ! -h $DIR/d26-3 ] && test_26d
1312         rm $DIR/d26-3
1313 }
1314 run_test 26e "unlink multiple component recursive symlink ======"
1315
1316 # recursive symlinks (bug 7022)
1317 test_26f() {
1318         test_mkdir -p $DIR/$tdir
1319         test_mkdir $DIR/$tdir/$tfile   || error "mkdir $DIR/$tdir/$tfile failed"
1320         cd $DIR/$tdir/$tfile           || error "cd $DIR/$tdir/$tfile failed"
1321         test_mkdir -p lndir/bar1      || error "mkdir lndir/bar1 failed"
1322         test_mkdir $DIR/$tdir/$tfile/$tfile   || error "mkdir $tfile failed"
1323         cd $tfile                || error "cd $tfile failed"
1324         ln -s .. dotdot          || error "ln dotdot failed"
1325         ln -s dotdot/lndir lndir || error "ln lndir failed"
1326         cd $DIR/$tdir                 || error "cd $DIR/$tdir failed"
1327         output=`ls $tfile/$tfile/lndir/bar1`
1328         [ "$output" = bar1 ] && error "unexpected output"
1329         rm -r $tfile             || error "rm $tfile failed"
1330         $CHECKSTAT -a $DIR/$tfile || error "$tfile not gone"
1331 }
1332 run_test 26f "rm -r of a directory which has recursive symlink ="
1333
1334 test_27a() {
1335         echo '== stripe sanity =============================================='
1336         test_mkdir -p $DIR/d27 || error "mkdir failed"
1337         $GETSTRIPE $DIR/d27
1338         $SETSTRIPE -c 1 $DIR/d27/f0 || error "setstripe failed"
1339         $CHECKSTAT -t file $DIR/d27/f0 || error "checkstat failed"
1340         log "== test_27a: write to one stripe file ========================="
1341         cp /etc/hosts $DIR/d27/f0 || error
1342 }
1343 run_test 27a "one stripe file =================================="
1344
1345 test_27b() {
1346         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping 2-stripe test" && return
1347         test_mkdir -p $DIR/d27
1348         $SETSTRIPE -c 2 $DIR/d27/f01 || error "setstripe failed"
1349         $GETSTRIPE -c $DIR/d27/f01
1350         [ $($GETSTRIPE -c $DIR/d27/f01) -eq 2 ] ||
1351                 error "two-stripe file doesn't have two stripes"
1352
1353         dd if=/dev/zero of=$DIR/d27/f01 bs=4k count=4 || error "dd failed"
1354 }
1355 run_test 27b "create and write to two stripe file"
1356
1357 test_27d() {
1358         test_mkdir -p $DIR/d27
1359         $SETSTRIPE -c 0 -i -1 -S 0 $DIR/d27/fdef || error "setstripe failed"
1360         $CHECKSTAT -t file $DIR/d27/fdef || error "checkstat failed"
1361         dd if=/dev/zero of=$DIR/d27/fdef bs=4k count=4 || error
1362 }
1363 run_test 27d "create file with default settings ================"
1364
1365 test_27e() {
1366         # LU-5839 adds check for existed layout before setting it
1367         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.56) ]] &&
1368                 skip "Need MDS version at least 2.7.56" && return
1369         test_mkdir -p $DIR/d27
1370         $SETSTRIPE -c 2 $DIR/d27/f12 || error "setstripe failed"
1371         $SETSTRIPE -c 2 $DIR/d27/f12 && error "setstripe succeeded twice"
1372         $CHECKSTAT -t file $DIR/d27/f12 || error "checkstat failed"
1373 }
1374 run_test 27e "setstripe existing file (should return error) ======"
1375
1376 test_27f() {
1377         test_mkdir $DIR/$tdir
1378         $SETSTRIPE -S 100 -i 0 -c 1 $DIR/$tdir/$tfile &&
1379                 error "$SETSTRIPE $DIR/$tdir/$tfile failed"
1380         $CHECKSTAT -t file $DIR/$tdir/$tfile &&
1381                 error "$CHECKSTAT -t file $DIR/$tdir/$tfile should fail"
1382         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=4k count=4 || error "dd failed"
1383         $GETSTRIPE $DIR/$tdir/$tfile || error "$GETSTRIPE failed"
1384 }
1385 run_test 27f "setstripe with bad stripe size (should return error)"
1386
1387 test_27g() {
1388         test_mkdir -p $DIR/d27
1389         $MCREATE $DIR/d27/fnone || error "mcreate failed"
1390         $GETSTRIPE $DIR/d27/fnone 2>&1 | grep "no stripe info" ||
1391                 error "$DIR/d27/fnone has object"
1392 }
1393 run_test 27g "$GETSTRIPE with no objects"
1394
1395 test_27i() {
1396         test_mkdir $DIR/$tdir
1397         touch $DIR/$tdir/$tfile || error "touch failed"
1398         [[ $($GETSTRIPE -c $DIR/$tdir/$tfile) -gt 0 ]] ||
1399                 error "missing objects"
1400 }
1401 run_test 27i "$GETSTRIPE with some objects"
1402
1403 test_27j() {
1404         test_mkdir -p $DIR/d27
1405         $SETSTRIPE -i $OSTCOUNT $DIR/d27/f27j && error "setstripe failed"||true
1406 }
1407 run_test 27j "setstripe with bad stripe offset (should return error)"
1408
1409 test_27k() { # bug 2844
1410         test_mkdir -p $DIR/d27
1411         FILE=$DIR/d27/f27k
1412         LL_MAX_BLKSIZE=$((4 * 1024 * 1024))
1413         [ ! -d $DIR/d27 ] && test_mkdir -p $DIR d27
1414         $SETSTRIPE -S 67108864 $FILE || error "setstripe failed"
1415         BLKSIZE=`stat $FILE | awk '/IO Block:/ { print $7 }'`
1416         [ $BLKSIZE -le $LL_MAX_BLKSIZE ] || error "1:$BLKSIZE > $LL_MAX_BLKSIZE"
1417         dd if=/dev/zero of=$FILE bs=4k count=1
1418         BLKSIZE=`stat $FILE | awk '/IO Block:/ { print $7 }'`
1419         [ $BLKSIZE -le $LL_MAX_BLKSIZE ] || error "2:$BLKSIZE > $LL_MAX_BLKSIZE"
1420 }
1421 run_test 27k "limit i_blksize for broken user apps ============="
1422
1423 test_27l() {
1424         test_mkdir -p $DIR/d27
1425         mcreate $DIR/f27l || error "creating file"
1426         $RUNAS $SETSTRIPE -c 1 $DIR/f27l && \
1427                 error "setstripe should have failed" || true
1428 }
1429 run_test 27l "check setstripe permissions (should return error)"
1430
1431 test_27m() {
1432         [[ $OSTCOUNT -lt 2 ]] && skip_env "$OSTCOUNT < 2 OSTs -- skipping" &&
1433                 return
1434
1435         ORIGFREE=$($LCTL get_param -n lov.$FSNAME-clilov-*.kbytesavail |
1436                    head -n1)
1437         if [[ $ORIGFREE -gt $MAXFREE ]]; then
1438                 skip "$ORIGFREE > $MAXFREE skipping out-of-space test on OST0"
1439                 return
1440         fi
1441         trap simple_cleanup_common EXIT
1442         test_mkdir -p $DIR/$tdir
1443         $SETSTRIPE -i 0 -c 1 $DIR/$tdir/f27m_1
1444         dd if=/dev/zero of=$DIR/$tdir/f27m_1 bs=1024 count=$MAXFREE &&
1445                 error "dd should fill OST0"
1446         i=2
1447         while $SETSTRIPE -i 0 -c 1 $DIR/$tdir/f27m_$i; do
1448                 i=$((i + 1))
1449                 [ $i -gt 256 ] && break
1450         done
1451         i=$((i + 1))
1452         touch $DIR/$tdir/f27m_$i
1453         [ `$GETSTRIPE $DIR/$tdir/f27m_$i | grep -A 10 obdidx | awk '{print $1}'| grep -w "0"` ] &&
1454                 error "OST0 was full but new created file still use it"
1455         i=$((i + 1))
1456         touch $DIR/$tdir/f27m_$i
1457         [ `$GETSTRIPE $DIR/$tdir/f27m_$i | grep -A 10 obdidx | awk '{print $1}'| grep -w "0"` ] &&
1458                 error "OST0 was full but new created file still use it"
1459         simple_cleanup_common
1460 }
1461 run_test 27m "create file while OST0 was full =================="
1462
1463 sleep_maxage() {
1464         local DELAY=$(do_facet $SINGLEMDS lctl get_param -n lov.*.qos_maxage | head -n 1 | awk '{print $1 * 2}')
1465         sleep $DELAY
1466 }
1467
1468 # OSCs keep a NOSPC flag that will be reset after ~5s (qos_maxage)
1469 # if the OST isn't full anymore.
1470 reset_enospc() {
1471         local OSTIDX=${1:-""}
1472
1473         local list=$(comma_list $(osts_nodes))
1474         [ "$OSTIDX" ] && list=$(facet_host ost$((OSTIDX + 1)))
1475
1476         do_nodes $list lctl set_param fail_loc=0
1477         sync    # initiate all OST_DESTROYs from MDS to OST
1478         sleep_maxage
1479 }
1480
1481 exhaust_precreations() {
1482         local OSTIDX=$1
1483         local FAILLOC=$2
1484         local FAILIDX=${3:-$OSTIDX}
1485         local ofacet=ost$((OSTIDX + 1))
1486
1487         test_mkdir -p -c1 $DIR/$tdir
1488         local mdtidx=$($LFS getstripe -M $DIR/$tdir)
1489         local mfacet=mds$((mdtidx + 1))
1490         echo OSTIDX=$OSTIDX MDTIDX=$mdtidx
1491
1492         local OST=$(ostname_from_index $OSTIDX)
1493
1494         # on the mdt's osc
1495         local mdtosc_proc1=$(get_mdtosc_proc_path $mfacet $OST)
1496         local last_id=$(do_facet $mfacet lctl get_param -n \
1497                         osc.$mdtosc_proc1.prealloc_last_id)
1498         local next_id=$(do_facet $mfacet lctl get_param -n \
1499                         osc.$mdtosc_proc1.prealloc_next_id)
1500
1501         local mdtosc_proc2=$(get_mdtosc_proc_path $mfacet)
1502         do_facet $mfacet lctl get_param osc.$mdtosc_proc2.prealloc*
1503
1504         test_mkdir -p $DIR/$tdir/${OST}
1505         $SETSTRIPE -i $OSTIDX -c 1 $DIR/$tdir/${OST}
1506 #define OBD_FAIL_OST_ENOSPC              0x215
1507         do_facet $ofacet lctl set_param fail_val=$FAILIDX fail_loc=0x215
1508         echo "Creating to objid $last_id on ost $OST..."
1509         createmany -o $DIR/$tdir/${OST}/f $next_id $((last_id - next_id + 2))
1510         do_facet $mfacet lctl get_param osc.$mdtosc_proc2.prealloc*
1511         do_facet $ofacet lctl set_param fail_loc=$FAILLOC
1512         sleep_maxage
1513 }
1514
1515 exhaust_all_precreations() {
1516         local i
1517         for (( i=0; i < OSTCOUNT; i++ )) ; do
1518                 exhaust_precreations $i $1 -1
1519         done
1520 }
1521
1522 test_27n() {
1523         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
1524         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1525         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1526         remote_ost_nodsh && skip "remote OST with nodsh" && return
1527
1528         reset_enospc
1529         rm -f $DIR/$tdir/$tfile
1530         exhaust_precreations 0 0x80000215
1531         $SETSTRIPE -c -1 $DIR/$tdir
1532         touch $DIR/$tdir/$tfile || error
1533         $GETSTRIPE $DIR/$tdir/$tfile
1534         reset_enospc
1535 }
1536 run_test 27n "create file with some full OSTs =================="
1537
1538 test_27o() {
1539         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
1540         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1541         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1542         remote_ost_nodsh && skip "remote OST with nodsh" && return
1543
1544         reset_enospc
1545         rm -f $DIR/$tdir/$tfile
1546         exhaust_all_precreations 0x215
1547
1548         touch $DIR/$tdir/$tfile && error "able to create $DIR/$tdir/$tfile"
1549
1550         reset_enospc
1551         rm -rf $DIR/$tdir/*
1552 }
1553 run_test 27o "create file with all full OSTs (should error) ===="
1554
1555 test_27p() {
1556         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
1557         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1558         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1559         remote_ost_nodsh && skip "remote OST with nodsh" && return
1560
1561         reset_enospc
1562         rm -f $DIR/$tdir/$tfile
1563         test_mkdir -p $DIR/$tdir
1564
1565         $MCREATE $DIR/$tdir/$tfile || error "mcreate failed"
1566         $TRUNCATE $DIR/$tdir/$tfile 80000000 || error "truncate failed"
1567         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1568
1569         exhaust_precreations 0 0x80000215
1570         echo foo >> $DIR/$tdir/$tfile || error "append failed"
1571         $CHECKSTAT -s 80000004 $DIR/$tdir/$tfile || error "checkstat failed"
1572         $GETSTRIPE $DIR/$tdir/$tfile
1573
1574         reset_enospc
1575 }
1576 run_test 27p "append to a truncated file with some full OSTs ==="
1577
1578 test_27q() {
1579         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
1580         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1581         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1582         remote_ost_nodsh && skip "remote OST with nodsh" && return
1583
1584         reset_enospc
1585         rm -f $DIR/$tdir/$tfile
1586
1587         test_mkdir -p $DIR/$tdir
1588         $MCREATE $DIR/$tdir/$tfile || error "mcreate $DIR/$tdir/$tfile failed"
1589         $TRUNCATE $DIR/$tdir/$tfile 80000000 ||error "truncate $DIR/$tdir/$tfile failed"
1590         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1591
1592         exhaust_all_precreations 0x215
1593
1594         echo foo >> $DIR/$tdir/$tfile && error "append succeeded"
1595         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat 2 failed"
1596
1597         reset_enospc
1598 }
1599 run_test 27q "append to truncated file with all OSTs full (should error) ==="
1600
1601 test_27r() {
1602         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
1603         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1604         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1605         remote_ost_nodsh && skip "remote OST with nodsh" && return
1606
1607         reset_enospc
1608         rm -f $DIR/$tdir/$tfile
1609         exhaust_precreations 0 0x80000215
1610
1611         $SETSTRIPE -i 0 -c 2 $DIR/$tdir/$tfile # && error
1612
1613         reset_enospc
1614 }
1615 run_test 27r "stripe file with some full OSTs (shouldn't LBUG) ="
1616
1617 test_27s() { # bug 10725
1618         test_mkdir -p $DIR/$tdir
1619         local stripe_size=$((4096 * 1024 * 1024))       # 2^32
1620         local stripe_count=0
1621         [ $OSTCOUNT -eq 1 ] || stripe_count=2
1622         $SETSTRIPE -S $stripe_size -c $stripe_count $DIR/$tdir &&
1623                 error "stripe width >= 2^32 succeeded" || true
1624
1625 }
1626 run_test 27s "lsm_xfersize overflow (should error) (bug 10725)"
1627
1628 test_27t() { # bug 10864
1629         WDIR=$(pwd)
1630         WLFS=$(which lfs)
1631         cd $DIR
1632         touch $tfile
1633         $WLFS getstripe $tfile
1634         cd $WDIR
1635 }
1636 run_test 27t "check that utils parse path correctly"
1637
1638 test_27u() { # bug 4900
1639         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
1640         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1641         local index
1642         local list=$(comma_list $(mdts_nodes))
1643
1644 #define OBD_FAIL_MDS_OSC_PRECREATE      0x139
1645         do_nodes $list $LCTL set_param fail_loc=0x139
1646         test_mkdir -p $DIR/$tdir
1647         rm -rf $DIR/$tdir/*
1648         createmany -o $DIR/$tdir/t- 1000
1649         do_nodes $list $LCTL set_param fail_loc=0
1650
1651         TLOG=$DIR/$tfile.getstripe
1652         $GETSTRIPE $DIR/$tdir > $TLOG
1653         OBJS=$(awk -vobj=0 '($1 == 0) { obj += 1 } END { print obj; }' $TLOG)
1654         unlinkmany $DIR/$tdir/t- 1000
1655         [[ $OBJS -gt 0 ]] &&
1656                 error "$OBJS objects created on OST-0. See $TLOG" || pass
1657 }
1658 run_test 27u "skip object creation on OSC w/o objects =========="
1659
1660 test_27v() { # bug 4900
1661         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
1662         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1663         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1664         remote_ost_nodsh && skip "remote OST with nodsh" && return
1665
1666         exhaust_all_precreations 0x215
1667         reset_enospc
1668
1669         test_mkdir -p $DIR/$tdir
1670         $SETSTRIPE -c 1 $DIR/$tdir         # 1 stripe / file
1671
1672         touch $DIR/$tdir/$tfile
1673         #define OBD_FAIL_TGT_DELAY_PRECREATE     0x705
1674         # all except ost1
1675         for (( i=1; i < OSTCOUNT; i++ )); do
1676                 do_facet ost$i lctl set_param fail_loc=0x705
1677         done
1678         local START=`date +%s`
1679         createmany -o $DIR/$tdir/$tfile 32
1680
1681         local FINISH=`date +%s`
1682         local TIMEOUT=`lctl get_param -n timeout`
1683         local PROCESS=$((FINISH - START))
1684         [ $PROCESS -ge $((TIMEOUT / 2)) ] && \
1685                error "$FINISH - $START >= $TIMEOUT / 2"
1686         sleep $((TIMEOUT / 2 - PROCESS))
1687         reset_enospc
1688 }
1689 run_test 27v "skip object creation on slow OST ================="
1690
1691 test_27w() { # bug 10997
1692         test_mkdir -p $DIR/$tdir || error "mkdir failed"
1693         $SETSTRIPE -S 65536 $DIR/$tdir/f0 || error "setstripe failed"
1694         [ $($GETSTRIPE -S $DIR/$tdir/f0) -ne 65536 ] &&
1695                 error "stripe size $size != 65536" || true
1696         [ $($GETSTRIPE -d $DIR/$tdir | grep -c "stripe_count") -ne 1 ] &&
1697                 error "$GETSTRIPE -d $DIR/$tdir failed" || true
1698 }
1699 run_test 27w "check $SETSTRIPE -S option"
1700
1701 test_27wa() {
1702         [[ $OSTCOUNT -lt 2 ]] &&
1703                 skip_env "skipping multiple stripe count/offset test" && return
1704
1705         test_mkdir -p $DIR/$tdir || error "mkdir failed"
1706         for i in $(seq 1 $OSTCOUNT); do
1707                 offset=$((i - 1))
1708                 $SETSTRIPE -c $i -i $offset $DIR/$tdir/f$i ||
1709                         error "setstripe -c $i -i $offset failed"
1710                 count=$($GETSTRIPE -c $DIR/$tdir/f$i)
1711                 index=$($GETSTRIPE -i $DIR/$tdir/f$i)
1712                 [ $count -ne $i ] && error "stripe count $count != $i" || true
1713                 [ $index -ne $offset ] &&
1714                         error "stripe offset $index != $offset" || true
1715         done
1716 }
1717 run_test 27wa "check $SETSTRIPE -c -i options"
1718
1719 test_27x() {
1720         remote_ost_nodsh && skip "remote OST with nodsh" && return
1721         [[ $OSTCOUNT -lt 2 ]] && skip_env "$OSTCOUNT < 2 OSTs" && return
1722         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1723         OFFSET=$(($OSTCOUNT - 1))
1724         OSTIDX=0
1725         local OST=$(ostname_from_index $OSTIDX)
1726
1727         test_mkdir -p $DIR/$tdir
1728         $SETSTRIPE -c 1 $DIR/$tdir      # 1 stripe per file
1729         do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 1
1730         sleep_maxage
1731         createmany -o $DIR/$tdir/$tfile $OSTCOUNT
1732         for i in `seq 0 $OFFSET`; do
1733                 [ `$GETSTRIPE $DIR/$tdir/$tfile$i | grep -A 10 obdidx | awk '{print $1}' | grep -w "$OSTIDX"` ] &&
1734                 error "OST0 was degraded but new created file still use it"
1735         done
1736         do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 0
1737 }
1738 run_test 27x "create files while OST0 is degraded"
1739
1740 test_27y() {
1741         [[ $OSTCOUNT -lt 2 ]] &&
1742                 skip_env "$OSTCOUNT < 2 OSTs -- skipping" && return
1743         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1744         remote_ost_nodsh && skip "remote OST with nodsh" && return
1745         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1746
1747         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS $FSNAME-OST0000)
1748         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
1749             osc.$mdtosc.prealloc_last_id)
1750         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
1751             osc.$mdtosc.prealloc_next_id)
1752         local fcount=$((last_id - next_id))
1753         [[ $fcount -eq 0 ]] && skip "not enough space on OST0" && return
1754         [[ $fcount -gt $OSTCOUNT ]] && fcount=$OSTCOUNT
1755
1756         local MDS_OSCS=$(do_facet $SINGLEMDS lctl dl |
1757                          awk '/[oO][sS][cC].*md[ts]/ { print $4 }')
1758         local OST_DEACTIVE_IDX=-1
1759         local OSC
1760         local OSTIDX
1761         local OST
1762
1763         for OSC in $MDS_OSCS; do
1764                 OST=$(osc_to_ost $OSC)
1765                 OSTIDX=$(index_from_ostuuid $OST)
1766                 if [ $OST_DEACTIVE_IDX == -1 ]; then
1767                         OST_DEACTIVE_IDX=$OSTIDX
1768                 fi
1769                 if [ $OSTIDX != $OST_DEACTIVE_IDX ]; then
1770                         echo $OSC "is Deactivated:"
1771                         do_facet $SINGLEMDS lctl --device  %$OSC deactivate
1772                 fi
1773         done
1774
1775         OSTIDX=$(index_from_ostuuid $OST)
1776         test_mkdir -p $DIR/$tdir
1777         $SETSTRIPE -c 1 $DIR/$tdir      # 1 stripe / file
1778
1779         for OSC in $MDS_OSCS; do
1780                 OST=$(osc_to_ost $OSC)
1781                 OSTIDX=$(index_from_ostuuid $OST)
1782                 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
1783                         echo $OST "is degraded:"
1784                         do_facet ost$((OSTIDX+1)) lctl set_param -n \
1785                                                 obdfilter.$OST.degraded=1
1786                 fi
1787         done
1788
1789         sleep_maxage
1790         createmany -o $DIR/$tdir/$tfile $fcount
1791
1792         for OSC in $MDS_OSCS; do
1793                 OST=$(osc_to_ost $OSC)
1794                 OSTIDX=$(index_from_ostuuid $OST)
1795                 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
1796                         echo $OST "is recovered from degraded:"
1797                         do_facet ost$((OSTIDX+1)) lctl set_param -n \
1798                                                 obdfilter.$OST.degraded=0
1799                 else
1800                         do_facet $SINGLEMDS lctl --device %$OSC activate
1801                 fi
1802         done
1803
1804         # all osp devices get activated, hence -1 stripe count restored
1805         local stripecnt=0
1806
1807         # sleep 2*lod_qos_maxage seconds waiting for lod qos to notice osp
1808         # devices get activated.
1809         sleep_maxage
1810         $SETSTRIPE -c -1 $DIR/$tfile
1811         stripecnt=$($GETSTRIPE -c $DIR/$tfile)
1812         rm -f $DIR/$tfile
1813         [ $stripecnt -ne $OSTCOUNT ] &&
1814                 error "Of $OSTCOUNT OSTs, only $stripecnt is available"
1815         return 0
1816 }
1817 run_test 27y "create files while OST0 is degraded and the rest inactive"
1818
1819 check_seq_oid()
1820 {
1821         log "check file $1"
1822
1823         lmm_count=$($GETSTRIPE -c $1)
1824         lmm_seq=$($GETSTRIPE -v $1 | awk '/lmm_seq/ { print $2 }')
1825         lmm_oid=$($GETSTRIPE -v $1 | awk '/lmm_object_id/ { print $2 }')
1826
1827         local old_ifs="$IFS"
1828         IFS=$'[:]'
1829         fid=($($LFS path2fid $1))
1830         IFS="$old_ifs"
1831
1832         log "FID seq ${fid[1]}, oid ${fid[2]} ver ${fid[3]}"
1833         log "LOV seq $lmm_seq, oid $lmm_oid, count: $lmm_count"
1834
1835         # compare lmm_seq and lu_fid->f_seq
1836         [ $lmm_seq = ${fid[1]} ] || { error "SEQ mismatch"; return 1; }
1837         # compare lmm_object_id and lu_fid->oid
1838         [ $lmm_oid = ${fid[2]} ] || { error "OID mismatch"; return 2; }
1839
1840         # check the trusted.fid attribute of the OST objects of the file
1841         local have_obdidx=false
1842         local stripe_nr=0
1843         $GETSTRIPE $1 | while read obdidx oid hex seq; do
1844                 # skip lines up to and including "obdidx"
1845                 [ -z "$obdidx" ] && break
1846                 [ "$obdidx" = "obdidx" ] && have_obdidx=true && continue
1847                 $have_obdidx || continue
1848
1849                 local ost=$((obdidx + 1))
1850                 local dev=$(ostdevname $ost)
1851                 local oid_hex
1852
1853                 log "want: stripe:$stripe_nr ost:$obdidx oid:$oid/$hex seq:$seq"
1854
1855                 seq=$(echo $seq | sed -e "s/^0x//g")
1856                 if [ $seq == 0 ] || [ $(facet_fstype ost$ost) == zfs ]; then
1857                         oid_hex=$(echo $oid)
1858                 else
1859                         oid_hex=$(echo $hex | sed -e "s/^0x//g")
1860                 fi
1861                 local obj_file="O/$seq/d$((oid %32))/$oid_hex"
1862
1863                 local ff
1864                 #
1865                 # Don't unmount/remount the OSTs if we don't need to do that.
1866                 # LU-2577 changes filter_fid to be smaller, so debugfs needs
1867                 # update too, until that use mount/ll_decode_filter_fid/mount.
1868                 # Re-enable when debugfs will understand new filter_fid.
1869                 #
1870                 if false && [ $(facet_fstype ost$ost) == ldiskfs ]; then
1871                         ff=$(do_facet ost$ost "$DEBUGFS -c -R 'stat $obj_file' \
1872                                 $dev 2>/dev/null" | grep "parent=")
1873                 else
1874                         stop ost$ost
1875                         mount_fstype ost$ost
1876                         ff=$(do_facet ost$ost $LL_DECODE_FILTER_FID \
1877                                 $(facet_mntpt ost$ost)/$obj_file)
1878                         unmount_fstype ost$ost
1879                         start ost$ost $dev $OST_MOUNT_OPTS
1880                         clients_up
1881                 fi
1882
1883                 [ -z "$ff" ] && error "$obj_file: no filter_fid info"
1884
1885                 echo "$ff" | sed -e 's#.*objid=#got: objid=#'
1886
1887                 # /mnt/O/0/d23/23: objid=23 seq=0 parent=[0x200000400:0x1e:0x1]
1888                 # fid: objid=23 seq=0 parent=[0x200000400:0x1e:0x0] stripe=1
1889                 local ff_parent=$(echo $ff|sed -e 's/.*parent=.//')
1890                 local ff_pseq=$(echo $ff_parent | cut -d: -f1)
1891                 local ff_poid=$(echo $ff_parent | cut -d: -f2)
1892                 local ff_pstripe
1893                 if echo $ff_parent | grep -q 'stripe='; then
1894                         ff_pstripe=$(echo $ff_parent | sed -e 's/.*stripe=//')
1895                 else
1896                         #
1897                         # $LL_DECODE_FILTER_FID does not print "stripe="; look
1898                         # into f_ver in this case.  See the comment on
1899                         # ff_parent.
1900                         #
1901                         ff_pstripe=$(echo $ff_parent | cut -d: -f3 |
1902                                 sed -e 's/\]//')
1903                 fi
1904
1905                 # compare lmm_seq and filter_fid->ff_parent.f_seq
1906                 [ $ff_pseq = $lmm_seq ] ||
1907                         error "FF parent SEQ $ff_pseq != $lmm_seq"
1908                 # compare lmm_object_id and filter_fid->ff_parent.f_oid
1909                 [ $ff_poid = $lmm_oid ] ||
1910                         error "FF parent OID $ff_poid != $lmm_oid"
1911                 (($ff_pstripe == $stripe_nr)) ||
1912                         error "FF stripe $ff_pstripe != $stripe_nr"
1913
1914                 stripe_nr=$((stripe_nr + 1))
1915         done
1916 }
1917
1918 test_27z() {
1919         remote_ost_nodsh && skip "remote OST with nodsh" && return
1920         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1921         test_mkdir -p $DIR/$tdir
1922
1923         $SETSTRIPE -c 1 -i 0 -S 64k $DIR/$tdir/$tfile-1 ||
1924                 { error "setstripe -c -1 failed"; return 1; }
1925         # We need to send a write to every object to get parent FID info set.
1926         # This _should_ also work for setattr, but does not currently.
1927         # touch $DIR/$tdir/$tfile-1 ||
1928         dd if=/dev/zero of=$DIR/$tdir/$tfile-1 bs=1M count=1 ||
1929                 { error "dd $tfile-1 failed"; return 2; }
1930         $SETSTRIPE -c -1 -i $((OSTCOUNT - 1)) -S 1M $DIR/$tdir/$tfile-2 ||
1931                 { error "setstripe -c -1 failed"; return 3; }
1932         dd if=/dev/zero of=$DIR/$tdir/$tfile-2 bs=1M count=$OSTCOUNT ||
1933                 { error "dd $tfile-2 failed"; return 4; }
1934
1935         # make sure write RPCs have been sent to OSTs
1936         sync; sleep 5; sync
1937
1938         check_seq_oid $DIR/$tdir/$tfile-1 || return 5
1939         check_seq_oid $DIR/$tdir/$tfile-2 || return 6
1940 }
1941 run_test 27z "check SEQ/OID on the MDT and OST filesystems"
1942
1943 test_27A() { # b=19102
1944         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1945         local restore_size=$($GETSTRIPE -S $MOUNT)
1946         local restore_count=$($GETSTRIPE -c $MOUNT)
1947         local restore_offset=$($GETSTRIPE -i $MOUNT)
1948         $SETSTRIPE -c 0 -i -1 -S 0 $MOUNT
1949         wait_update $HOSTNAME "$GETSTRIPE -c $MOUNT | sed 's/  *//g'" "1" 20 ||
1950                 error "stripe count $($GETSTRIPE -c $MOUNT) != 1"
1951         local default_size=$($GETSTRIPE -S $MOUNT)
1952         local default_offset=$($GETSTRIPE -i $MOUNT)
1953         local dsize=$((1024 * 1024))
1954         [ $default_size -eq $dsize ] ||
1955                 error "stripe size $default_size != $dsize"
1956         [ $default_offset -eq -1 ] ||error "stripe offset $default_offset != -1"
1957         $SETSTRIPE -c $restore_count -i $restore_offset -S $restore_size $MOUNT
1958 }
1959 run_test 27A "check filesystem-wide default LOV EA values"
1960
1961 test_27B() { # LU-2523
1962         test_mkdir -p $DIR/$tdir
1963         rm -f $DIR/$tdir/f0 $DIR/$tdir/f1
1964         touch $DIR/$tdir/f0
1965         # open f1 with O_LOV_DELAY_CREATE
1966         # rename f0 onto f1
1967         # call setstripe ioctl on open file descriptor for f1
1968         # close
1969         multiop $DIR/$tdir/f1 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:nB1c \
1970                 $DIR/$tdir/f0
1971
1972         rm -f $DIR/$tdir/f1
1973         # open f1 with O_LOV_DELAY_CREATE
1974         # unlink f1
1975         # call setstripe ioctl on open file descriptor for f1
1976         # close
1977         multiop $DIR/$tdir/f1 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:uB1c
1978
1979         # Allow multiop to fail in imitation of NFS's busted semantics.
1980         true
1981 }
1982 run_test 27B "call setstripe on open unlinked file/rename victim"
1983
1984 test_27C() { #LU-2871
1985         [[ $OSTCOUNT -lt 2 ]] && skip "needs >= 2 OSTs" && return
1986
1987         declare -a ost_idx
1988         local index
1989         local found
1990         local i
1991         local j
1992
1993         test_mkdir -p $DIR/$tdir
1994         cd $DIR/$tdir
1995         for i in $(seq 0 $((OSTCOUNT - 1))); do
1996                 # set stripe across all OSTs starting from OST$i
1997                 $SETSTRIPE -i $i -c -1 $tfile$i
1998                 # get striping information
1999                 ost_idx=($($GETSTRIPE $tfile$i |
2000                          tail -n $((OSTCOUNT + 1)) | awk '{print $1}'))
2001                 echo ${ost_idx[@]}
2002
2003                 # check the layout
2004                 [ ${#ost_idx[@]} -eq $OSTCOUNT ] ||
2005                         error "${#ost_idx[@]} != $OSTCOUNT"
2006
2007                 for index in $(seq 0 $((OSTCOUNT - 1))); do
2008                         found=0
2009                         for j in $(echo ${ost_idx[@]}); do
2010                                 if [ $index -eq $j ]; then
2011                                         found=1
2012                                         break
2013                                 fi
2014                         done
2015                         [ $found = 1 ] ||
2016                                 error "Can not find $index in ${ost_idx[@]}"
2017                 done
2018         done
2019 }
2020 run_test 27C "check full striping across all OSTs"
2021
2022 test_27D() {
2023         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
2024         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
2025         local POOL=${POOL:-testpool}
2026         local first_ost=0
2027         local last_ost=$(($OSTCOUNT - 1))
2028         local ost_step=1
2029         local ost_list=$(seq $first_ost $ost_step $last_ost)
2030         local ost_range="$first_ost $last_ost $ost_step"
2031
2032         test_mkdir -p $DIR/$tdir
2033         pool_add $POOL || error "pool_add failed"
2034         pool_add_targets $POOL $ost_range || error "pool_add_targets failed"
2035         llapi_layout_test -d$DIR/$tdir -p$POOL -o$OSTCOUNT ||
2036                 error "llapi_layout_test failed"
2037         cleanup_pools || error "cleanup_pools failed"
2038 }
2039 run_test 27D "validate llapi_layout API"
2040
2041 # Verify that default_easize is increased from its initial value after
2042 # accessing a widely striped file.
2043 test_27E() {
2044         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
2045         [ $(lustre_version_code client) -lt $(version_code 2.5.57) ] &&
2046                 skip "client does not have LU-3338 fix" && return
2047
2048         # 72 bytes is the minimum space required to store striping
2049         # information for a file striped across one OST:
2050         # (sizeof(struct lov_user_md_v3) +
2051         #  sizeof(struct lov_user_ost_data_v1))
2052         local min_easize=72
2053         $LCTL set_param -n llite.*.default_easize $min_easize ||
2054                 error "lctl set_param failed"
2055         local easize=$($LCTL get_param -n llite.*.default_easize)
2056
2057         [ $easize -eq $min_easize ] ||
2058                 error "failed to set default_easize"
2059
2060         $LFS setstripe -c $OSTCOUNT $DIR/$tfile ||
2061                 error "setstripe failed"
2062         cat $DIR/$tfile
2063         rm $DIR/$tfile
2064
2065         easize=$($LCTL get_param -n llite.*.default_easize)
2066
2067         [ $easize -gt $min_easize ] ||
2068                 error "default_easize not updated"
2069 }
2070 run_test 27E "check that default extended attribute size properly increases"
2071
2072 test_27F() { # LU-5346/LU-7975
2073
2074         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2075
2076         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.51) ]] &&
2077                 skip "Need MDS version at least 2.8.51" && return
2078
2079         test_mkdir -p $DIR/$tdir
2080         rm -f $DIR/$tdir/f0
2081         $SETSTRIPE -c 2 $DIR/$tdir
2082
2083         # stop all OSTs to reproduce situation for LU-7975 ticket
2084         for num in $(seq $OSTCOUNT); do
2085                 stop ost$num
2086         done
2087
2088         # open/create f0 with O_LOV_DELAY_CREATE
2089         # truncate f0 to a non-0 size
2090         # close
2091         multiop $DIR/$tdir/f0 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:T1050000c
2092
2093         $CHECKSTAT -s 1050000 $DIR/$tdir/f0 || error "checkstat failed"
2094         # open/write it again to force delayed layout creation
2095         cat /etc/hosts > $DIR/$tdir/f0 &
2096         catpid=$!
2097
2098         # restart OSTs
2099         for num in $(seq $OSTCOUNT); do
2100                 start ost$num $(ostdevname $num) $OST_MOUNT_OPTS ||
2101                         error "ost$num failed to start"
2102         done
2103
2104         wait $catpid || error "cat failed"
2105
2106         cmp /etc/hosts $DIR/$tdir/f0 || error "cmp failed"
2107         [[ $($GETSTRIPE -c $DIR/$tdir/f0) == 2 ]] || error "wrong stripecount"
2108
2109 }
2110 run_test 27F "Client resend delayed layout creation with non-zero size"
2111
2112 # createtest also checks that device nodes are created and
2113 # then visible correctly (#2091)
2114 test_28() { # bug 2091
2115         test_mkdir $DIR/d28
2116         $CREATETEST $DIR/d28/ct || error
2117 }
2118 run_test 28 "create/mknod/mkdir with bad file types ============"
2119
2120 test_29() {
2121         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return 0
2122         sync; sleep 1; sync # flush out any dirty pages from previous tests
2123         cancel_lru_locks
2124         test_mkdir $DIR/d29
2125         touch $DIR/d29/foo
2126         log 'first d29'
2127         ls -l $DIR/d29
2128
2129         declare -i LOCKCOUNTORIG=0
2130         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
2131                 let LOCKCOUNTORIG=$LOCKCOUNTORIG+$lock_count
2132         done
2133         [ $LOCKCOUNTORIG -eq 0 ] && error "No mdc lock count" && return 1
2134
2135         declare -i LOCKUNUSEDCOUNTORIG=0
2136         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
2137                 let LOCKUNUSEDCOUNTORIG=$LOCKUNUSEDCOUNTORIG+$unused_count
2138         done
2139
2140         log 'second d29'
2141         ls -l $DIR/d29
2142         log 'done'
2143
2144         declare -i LOCKCOUNTCURRENT=0
2145         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
2146                 let LOCKCOUNTCURRENT=$LOCKCOUNTCURRENT+$lock_count
2147         done
2148
2149         declare -i LOCKUNUSEDCOUNTCURRENT=0
2150         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
2151                 let LOCKUNUSEDCOUNTCURRENT=$LOCKUNUSEDCOUNTCURRENT+$unused_count
2152         done
2153
2154         if [[ $LOCKCOUNTCURRENT -gt $LOCKCOUNTORIG ]]; then
2155                 $LCTL set_param -n ldlm.dump_namespaces ""
2156                 error "CURRENT: $LOCKCOUNTCURRENT > $LOCKCOUNTORIG"
2157                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
2158                 log "dumped log to $TMP/test_29.dk (bug 5793)"
2159                 return 2
2160         fi
2161         if [[ $LOCKUNUSEDCOUNTCURRENT -gt $LOCKUNUSEDCOUNTORIG ]]; then
2162                 error "UNUSED: $LOCKUNUSEDCOUNTCURRENT > $LOCKUNUSEDCOUNTORIG"
2163                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
2164                 log "dumped log to $TMP/test_29.dk (bug 5793)"
2165                 return 3
2166         fi
2167 }
2168 run_test 29 "IT_GETATTR regression  ============================"
2169
2170 test_30a() { # was test_30
2171         cp $(which ls) $DIR || cp /bin/ls $DIR
2172         $DIR/ls / || error
2173         rm $DIR/ls
2174 }
2175 run_test 30a "execute binary from Lustre (execve) =============="
2176
2177 test_30b() {
2178         cp `which ls` $DIR || cp /bin/ls $DIR
2179         chmod go+rx $DIR/ls
2180         $RUNAS $DIR/ls / || error
2181         rm $DIR/ls
2182 }
2183 run_test 30b "execute binary from Lustre as non-root ==========="
2184
2185 test_30c() { # b=22376
2186         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2187         cp `which ls` $DIR || cp /bin/ls $DIR
2188         chmod a-rw $DIR/ls
2189         cancel_lru_locks mdc
2190         cancel_lru_locks osc
2191         $RUNAS $DIR/ls / || error
2192         rm -f $DIR/ls
2193 }
2194 run_test 30c "execute binary from Lustre without read perms ===="
2195
2196 test_31a() {
2197         $OPENUNLINK $DIR/f31 $DIR/f31 || error
2198         $CHECKSTAT -a $DIR/f31 || error
2199 }
2200 run_test 31a "open-unlink file =================================="
2201
2202 test_31b() {
2203         touch $DIR/f31 || error
2204         ln $DIR/f31 $DIR/f31b || error
2205         $MULTIOP $DIR/f31b Ouc || error
2206         $CHECKSTAT -t file $DIR/f31 || error
2207 }
2208 run_test 31b "unlink file with multiple links while open ======="
2209
2210 test_31c() {
2211         touch $DIR/f31 || error
2212         ln $DIR/f31 $DIR/f31c || error
2213         multiop_bg_pause $DIR/f31 O_uc || return 1
2214         MULTIPID=$!
2215         $MULTIOP $DIR/f31c Ouc
2216         kill -USR1 $MULTIPID
2217         wait $MULTIPID
2218 }
2219 run_test 31c "open-unlink file with multiple links ============="
2220
2221 test_31d() {
2222         opendirunlink $DIR/d31d $DIR/d31d || error
2223         $CHECKSTAT -a $DIR/d31d || error
2224 }
2225 run_test 31d "remove of open directory ========================="
2226
2227 test_31e() { # bug 2904
2228         openfilleddirunlink $DIR/d31e || error
2229 }
2230 run_test 31e "remove of open non-empty directory ==============="
2231
2232 test_31f() { # bug 4554
2233         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2234         set -vx
2235         test_mkdir $DIR/d31f
2236         $SETSTRIPE -S 1048576 -c 1 $DIR/d31f
2237         cp /etc/hosts $DIR/d31f
2238         ls -l $DIR/d31f
2239         $GETSTRIPE $DIR/d31f/hosts
2240         multiop_bg_pause $DIR/d31f D_c || return 1
2241         MULTIPID=$!
2242
2243         rm -rv $DIR/d31f || error "first of $DIR/d31f"
2244         test_mkdir $DIR/d31f
2245         $SETSTRIPE -S 1048576 -c 1 $DIR/d31f
2246         cp /etc/hosts $DIR/d31f
2247         ls -l $DIR/d31f
2248         $GETSTRIPE $DIR/d31f/hosts
2249         multiop_bg_pause $DIR/d31f D_c || return 1
2250         MULTIPID2=$!
2251
2252         kill -USR1 $MULTIPID || error "first opendir $MULTIPID not running"
2253         wait $MULTIPID || error "first opendir $MULTIPID failed"
2254
2255         sleep 6
2256
2257         kill -USR1 $MULTIPID2 || error "second opendir $MULTIPID not running"
2258         wait $MULTIPID2 || error "second opendir $MULTIPID2 failed"
2259         set +vx
2260 }
2261 run_test 31f "remove of open directory with open-unlink file ==="
2262
2263 test_31g() {
2264         echo "-- cross directory link --"
2265         test_mkdir -c1 $DIR/${tdir}ga
2266         test_mkdir -c1 $DIR/${tdir}gb
2267         touch $DIR/${tdir}ga/f
2268         ln $DIR/${tdir}ga/f $DIR/${tdir}gb/g
2269         $CHECKSTAT -t file $DIR/${tdir}ga/f || error "source"
2270         [ `stat -c%h $DIR/${tdir}ga/f` == '2' ] || error "source nlink"
2271         $CHECKSTAT -t file $DIR/${tdir}gb/g || error "target"
2272         [ `stat -c%h $DIR/${tdir}gb/g` == '2' ] || error "target nlink"
2273 }
2274 run_test 31g "cross directory link==============="
2275
2276 test_31h() {
2277         echo "-- cross directory link --"
2278         test_mkdir -c1 $DIR/${tdir}
2279         test_mkdir -c1 $DIR/${tdir}/dir
2280         touch $DIR/${tdir}/f
2281         ln $DIR/${tdir}/f $DIR/${tdir}/dir/g
2282         $CHECKSTAT -t file $DIR/${tdir}/f || error "source"
2283         [ `stat -c%h $DIR/${tdir}/f` == '2' ] || error "source nlink"
2284         $CHECKSTAT -t file $DIR/${tdir}/dir/g || error "target"
2285         [ `stat -c%h $DIR/${tdir}/dir/g` == '2' ] || error "target nlink"
2286 }
2287 run_test 31h "cross directory link under child==============="
2288
2289 test_31i() {
2290         echo "-- cross directory link --"
2291         test_mkdir -c1 $DIR/$tdir
2292         test_mkdir -c1 $DIR/$tdir/dir
2293         touch $DIR/$tdir/dir/f
2294         ln $DIR/$tdir/dir/f $DIR/$tdir/g
2295         $CHECKSTAT -t file $DIR/$tdir/dir/f || error "source"
2296         [ `stat -c%h $DIR/$tdir/dir/f` == '2' ] || error "source nlink"
2297         $CHECKSTAT -t file $DIR/$tdir/g || error "target"
2298         [ `stat -c%h $DIR/$tdir/g` == '2' ] || error "target nlink"
2299 }
2300 run_test 31i "cross directory link under parent==============="
2301
2302 test_31j() {
2303         test_mkdir -c1 -p $DIR/$tdir
2304         test_mkdir -c1 -p $DIR/$tdir/dir1
2305         ln $DIR/$tdir/dir1 $DIR/$tdir/dir2 && error "ln for dir"
2306         link $DIR/$tdir/dir1 $DIR/$tdir/dir3 && error "link for dir"
2307         mlink $DIR/$tdir/dir1 $DIR/$tdir/dir4 && error "mlink for dir"
2308         mlink $DIR/$tdir/dir1 $DIR/$tdir/dir1 && error "mlink to the same dir"
2309         return 0
2310 }
2311 run_test 31j "link for directory==============="
2312
2313 test_31k() {
2314         test_mkdir -c1 -p $DIR/$tdir
2315         touch $DIR/$tdir/s
2316         touch $DIR/$tdir/exist
2317         mlink $DIR/$tdir/s $DIR/$tdir/t || error "mlink"
2318         mlink $DIR/$tdir/s $DIR/$tdir/exist && error "mlink to exist file"
2319         mlink $DIR/$tdir/s $DIR/$tdir/s && error "mlink to the same file"
2320         mlink $DIR/$tdir/s $DIR/$tdir && error "mlink to parent dir"
2321         mlink $DIR/$tdir $DIR/$tdir/s && error "mlink parent dir to target"
2322         mlink $DIR/$tdir/not-exist $DIR/$tdir/foo && error "mlink non-existing to new"
2323         mlink $DIR/$tdir/not-exist $DIR/$tdir/s && error "mlink non-existing to exist"
2324         return 0
2325 }
2326 run_test 31k "link to file: the same, non-existing, dir==============="
2327
2328 test_31m() {
2329         mkdir $DIR/d31m
2330         touch $DIR/d31m/s
2331         mkdir $DIR/d31m2
2332         touch $DIR/d31m2/exist
2333         mlink $DIR/d31m/s $DIR/d31m2/t || error "mlink"
2334         mlink $DIR/d31m/s $DIR/d31m2/exist && error "mlink to exist file"
2335         mlink $DIR/d31m/s $DIR/d31m2 && error "mlink to parent dir"
2336         mlink $DIR/d31m2 $DIR/d31m/s && error "mlink parent dir to target"
2337         mlink $DIR/d31m/not-exist $DIR/d31m2/foo && error "mlink non-existing to new"
2338         mlink $DIR/d31m/not-exist $DIR/d31m2/s && error "mlink non-existing to exist"
2339         return 0
2340 }
2341 run_test 31m "link to file: the same, non-existing, dir==============="
2342
2343 test_31n() {
2344         touch $DIR/$tfile || error "cannot create '$DIR/$tfile'"
2345         nlink=$(stat --format=%h $DIR/$tfile)
2346         [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
2347         local fd=$(free_fd)
2348         local cmd="exec $fd<$DIR/$tfile"
2349         eval $cmd
2350         cmd="exec $fd<&-"
2351         trap "eval $cmd" EXIT
2352         nlink=$(stat --dereference --format=%h /proc/self/fd/$fd)
2353         [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
2354         rm $DIR/$tfile || error "cannot remove '$DIR/$tfile'"
2355         nlink=$(stat --dereference --format=%h /proc/self/fd/$fd)
2356         [ ${nlink:--1} -eq 0 ] || error "nlink is $nlink, expected 0"
2357         eval $cmd
2358 }
2359 run_test 31n "check link count of unlinked file"
2360
2361 link_one() {
2362         local TEMPNAME=$(mktemp $1_XXXXXX)
2363         mlink $TEMPNAME $1 2> /dev/null &&
2364                 echo "$BASHPID: link $TEMPNAME to $1 succeeded"
2365         munlink $TEMPNAME
2366 }
2367
2368 test_31o() { # LU-2901
2369         test_mkdir -p $DIR/$tdir
2370         for LOOP in $(seq 100); do
2371                 rm -f $DIR/$tdir/$tfile*
2372                 for THREAD in $(seq 8); do
2373                         link_one $DIR/$tdir/$tfile.$LOOP &
2374                 done
2375                 wait
2376                 local LINKS=$(ls -1 $DIR/$tdir | grep -c $tfile.$LOOP)
2377                 [[ $LINKS -gt 1 ]] && ls $DIR/$tdir &&
2378                         error "$LINKS duplicate links to $tfile.$LOOP" &&
2379                         break || true
2380         done
2381 }
2382 run_test 31o "duplicate hard links with same filename"
2383
2384 test_31p() {
2385         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2386
2387         test_mkdir $DIR/$tdir
2388         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2389         $LFS setdirstripe -D -c2 -t all_char $DIR/$tdir/striped_dir
2390
2391         opendirunlink $DIR/$tdir/striped_dir/test1 ||
2392                 error "open unlink test1 failed"
2393         opendirunlink $DIR/$tdir/striped_dir/test2 ||
2394                 error "open unlink test2 failed"
2395
2396         $CHECKSTAT -a $DIR/$tdir/striped_dir/test1 ||
2397                 error "test1 still exists"
2398         $CHECKSTAT -a $DIR/$tdir/striped_dir/test2 ||
2399                 error "test2 still exists"
2400 }
2401 run_test 31p "remove of open striped directory"
2402
2403 cleanup_test32_mount() {
2404         trap 0
2405         $UMOUNT $DIR/$tdir/ext2-mountpoint
2406 }
2407
2408 test_32a() {
2409         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2410         echo "== more mountpoints and symlinks ================="
2411         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2412         trap cleanup_test32_mount EXIT
2413         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2414         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2415         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/.. || error
2416         cleanup_test32_mount
2417 }
2418 run_test 32a "stat d32a/ext2-mountpoint/.. ====================="
2419
2420 test_32b() {
2421         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2422         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2423         trap cleanup_test32_mount EXIT
2424         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2425         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2426         ls -al $DIR/$tdir/ext2-mountpoint/.. || error
2427         cleanup_test32_mount
2428 }
2429 run_test 32b "open d32b/ext2-mountpoint/.. ====================="
2430
2431 test_32c() {
2432         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2433         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2434         trap cleanup_test32_mount EXIT
2435         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2436         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2437         test_mkdir -p $DIR/$tdir/d2/test_dir
2438         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/../d2/test_dir || error
2439         cleanup_test32_mount
2440 }
2441 run_test 32c "stat d32c/ext2-mountpoint/../d2/test_dir ========="
2442
2443 test_32d() {
2444         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2445         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2446         trap cleanup_test32_mount EXIT
2447         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2448         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2449         test_mkdir -p $DIR/$tdir/d2/test_dir
2450         ls -al $DIR/$tdir/ext2-mountpoint/../d2/test_dir || error
2451         cleanup_test32_mount
2452 }
2453 run_test 32d "open d32d/ext2-mountpoint/../d2/test_dir ========="
2454
2455 test_32e() {
2456         [ -e $DIR/d32e ] && rm -fr $DIR/d32e
2457         test_mkdir -p $DIR/d32e/tmp
2458         TMP_DIR=$DIR/d32e/tmp
2459         ln -s $DIR/d32e $TMP_DIR/symlink11
2460         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2461         $CHECKSTAT -t link $DIR/d32e/tmp/symlink11 || error
2462         $CHECKSTAT -t link $DIR/d32e/symlink01 || error
2463 }
2464 run_test 32e "stat d32e/symlink->tmp/symlink->lustre-subdir ===="
2465
2466 test_32f() {
2467         [ -e $DIR/d32f ] && rm -fr $DIR/d32f
2468         test_mkdir -p $DIR/d32f/tmp
2469         TMP_DIR=$DIR/d32f/tmp
2470         ln -s $DIR/d32f $TMP_DIR/symlink11
2471         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2472         ls $DIR/d32f/tmp/symlink11  || error
2473         ls $DIR/d32f/symlink01 || error
2474 }
2475 run_test 32f "open d32f/symlink->tmp/symlink->lustre-subdir ===="
2476
2477 test_32g() {
2478         TMP_DIR=$DIR/$tdir/tmp
2479         test_mkdir -p $DIR/$tdir/tmp
2480         test_mkdir $DIR/${tdir}2
2481         ln -s $DIR/${tdir}2 $TMP_DIR/symlink12
2482         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2483         $CHECKSTAT -t link $TMP_DIR/symlink12 || error
2484         $CHECKSTAT -t link $DIR/$tdir/symlink02 || error
2485         $CHECKSTAT -t dir -f $TMP_DIR/symlink12 || error
2486         $CHECKSTAT -t dir -f $DIR/$tdir/symlink02 || error
2487 }
2488 run_test 32g "stat d32g/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2489
2490 test_32h() {
2491         rm -fr $DIR/$tdir $DIR/${tdir}2
2492         TMP_DIR=$DIR/$tdir/tmp
2493         test_mkdir -p $DIR/$tdir/tmp
2494         test_mkdir $DIR/${tdir}2
2495         ln -s $DIR/${tdir}2 $TMP_DIR/symlink12
2496         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2497         ls $TMP_DIR/symlink12 || error
2498         ls $DIR/$tdir/symlink02  || error
2499 }
2500 run_test 32h "open d32h/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2501
2502 test_32i() {
2503         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2504         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2505         trap cleanup_test32_mount EXIT
2506         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2507         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2508         touch $DIR/$tdir/test_file
2509         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../test_file || error
2510         cleanup_test32_mount
2511 }
2512 run_test 32i "stat d32i/ext2-mountpoint/../test_file ==========="
2513
2514 test_32j() {
2515         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2516         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2517         trap cleanup_test32_mount EXIT
2518         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2519         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2520         touch $DIR/$tdir/test_file
2521         cat $DIR/$tdir/ext2-mountpoint/../test_file || error
2522         cleanup_test32_mount
2523 }
2524 run_test 32j "open d32j/ext2-mountpoint/../test_file ==========="
2525
2526 test_32k() {
2527         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2528         rm -fr $DIR/$tdir
2529         trap cleanup_test32_mount EXIT
2530         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2531         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint
2532         test_mkdir -p $DIR/$tdir/d2
2533         touch $DIR/$tdir/d2/test_file || error
2534         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../d2/test_file || error
2535         cleanup_test32_mount
2536 }
2537 run_test 32k "stat d32k/ext2-mountpoint/../d2/test_file ========"
2538
2539 test_32l() {
2540         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2541         rm -fr $DIR/$tdir
2542         trap cleanup_test32_mount EXIT
2543         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2544         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2545         test_mkdir -p $DIR/$tdir/d2
2546         touch $DIR/$tdir/d2/test_file
2547         cat  $DIR/$tdir/ext2-mountpoint/../d2/test_file || error
2548         cleanup_test32_mount
2549 }
2550 run_test 32l "open d32l/ext2-mountpoint/../d2/test_file ========"
2551
2552 test_32m() {
2553         rm -fr $DIR/d32m
2554         test_mkdir -p $DIR/d32m/tmp
2555         TMP_DIR=$DIR/d32m/tmp
2556         ln -s $DIR $TMP_DIR/symlink11
2557         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2558         $CHECKSTAT -t link $DIR/d32m/tmp/symlink11 || error
2559         $CHECKSTAT -t link $DIR/d32m/symlink01 || error
2560 }
2561 run_test 32m "stat d32m/symlink->tmp/symlink->lustre-root ======"
2562
2563 test_32n() {
2564         rm -fr $DIR/d32n
2565         test_mkdir -p $DIR/d32n/tmp
2566         TMP_DIR=$DIR/d32n/tmp
2567         ln -s $DIR $TMP_DIR/symlink11
2568         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2569         ls -l $DIR/d32n/tmp/symlink11  || error
2570         ls -l $DIR/d32n/symlink01 || error
2571 }
2572 run_test 32n "open d32n/symlink->tmp/symlink->lustre-root ======"
2573
2574 test_32o() {
2575         touch $DIR/$tfile
2576         test_mkdir -p $DIR/d32o/tmp
2577         TMP_DIR=$DIR/d32o/tmp
2578         ln -s $DIR/$tfile $TMP_DIR/symlink12
2579         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2580         $CHECKSTAT -t link $DIR/d32o/tmp/symlink12 || error
2581         $CHECKSTAT -t link $DIR/d32o/symlink02 || error
2582         $CHECKSTAT -t file -f $DIR/d32o/tmp/symlink12 || error
2583         $CHECKSTAT -t file -f $DIR/d32o/symlink02 || error
2584 }
2585 run_test 32o "stat d32o/symlink->tmp/symlink->lustre-root/$tfile"
2586
2587 test_32p() {
2588     log 32p_1
2589         rm -fr $DIR/d32p
2590     log 32p_2
2591         rm -f $DIR/$tfile
2592     log 32p_3
2593         touch $DIR/$tfile
2594     log 32p_4
2595         test_mkdir -p $DIR/d32p/tmp
2596     log 32p_5
2597         TMP_DIR=$DIR/d32p/tmp
2598     log 32p_6
2599         ln -s $DIR/$tfile $TMP_DIR/symlink12
2600     log 32p_7
2601         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2602     log 32p_8
2603         cat $DIR/d32p/tmp/symlink12 || error
2604     log 32p_9
2605         cat $DIR/d32p/symlink02 || error
2606     log 32p_10
2607 }
2608 run_test 32p "open d32p/symlink->tmp/symlink->lustre-root/$tfile"
2609
2610 cleanup_testdir_mount() {
2611         trap 0
2612         $UMOUNT $DIR/$tdir
2613 }
2614
2615 test_32q() {
2616         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2617         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2618         trap cleanup_testdir_mount EXIT
2619         test_mkdir -p $DIR/$tdir
2620         touch $DIR/$tdir/under_the_mount
2621         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir
2622         ls $DIR/$tdir | grep "\<under_the_mount\>" && error
2623         cleanup_testdir_mount
2624 }
2625 run_test 32q "stat follows mountpoints in Lustre (should return error)"
2626
2627 test_32r() {
2628         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2629         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2630         trap cleanup_testdir_mount EXIT
2631         test_mkdir -p $DIR/$tdir
2632         touch $DIR/$tdir/under_the_mount
2633         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir
2634         ls $DIR/$tdir | grep -q under_the_mount && error || true
2635         cleanup_testdir_mount
2636 }
2637 run_test 32r "opendir follows mountpoints in Lustre (should return error)"
2638
2639 test_33aa() {
2640         rm -f $DIR/$tfile
2641         touch $DIR/$tfile
2642         chmod 444 $DIR/$tfile
2643         chown $RUNAS_ID $DIR/$tfile
2644         log 33_1
2645         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
2646         log 33_2
2647 }
2648 run_test 33aa "write file with mode 444 (should return error) ===="
2649
2650 test_33a() {
2651         rm -fr $DIR/d33
2652         test_mkdir -p $DIR/d33
2653         chown $RUNAS_ID $DIR/d33
2654         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/d33/f33|| error "create"
2655         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/d33/f33 && \
2656                 error "open RDWR" || true
2657 }
2658 run_test 33a "test open file(mode=0444) with O_RDWR (should return error)"
2659
2660 test_33b() {
2661         rm -fr $DIR/d33
2662         test_mkdir -p $DIR/d33
2663         chown $RUNAS_ID $DIR/d33
2664         $RUNAS $OPENFILE -f 1286739555 $DIR/d33/f33 || true
2665 }
2666 run_test 33b "test open file with malformed flags (No panic)"
2667
2668 test_33c() {
2669         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2670         local ostnum
2671         local ostname
2672         local write_bytes
2673         local all_zeros
2674
2675         remote_ost_nodsh && skip "remote OST with nodsh" && return
2676         all_zeros=:
2677         rm -fr $DIR/d33
2678         test_mkdir -p $DIR/d33
2679         # Read: 0, Write: 4, create/destroy: 2/0, stat: 1, punch: 0
2680
2681         sync
2682         for ostnum in $(seq $OSTCOUNT); do
2683                 # test-framework's OST numbering is one-based, while Lustre's
2684                 # is zero-based
2685                 ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2686                 # Parsing llobdstat's output sucks; we could grep the /proc
2687                 # path, but that's likely to not be as portable as using the
2688                 # llobdstat utility.  So we parse lctl output instead.
2689                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2690                         obdfilter/$ostname/stats |
2691                         awk '/^write_bytes/ {print $7}' )
2692                 echo "baseline_write_bytes@$OSTnum/$ostname=$write_bytes"
2693                 if (( ${write_bytes:-0} > 0 ))
2694                 then
2695                         all_zeros=false
2696                         break;
2697                 fi
2698         done
2699
2700         $all_zeros || return 0
2701
2702         # Write four bytes
2703         echo foo > $DIR/d33/bar
2704         # Really write them
2705         sync
2706
2707         # Total up write_bytes after writing.  We'd better find non-zeros.
2708         for ostnum in $(seq $OSTCOUNT); do
2709                 ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2710                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2711                         obdfilter/$ostname/stats |
2712                         awk '/^write_bytes/ {print $7}' )
2713                 echo "write_bytes@$OSTnum/$ostname=$write_bytes"
2714                 if (( ${write_bytes:-0} > 0 ))
2715                 then
2716                         all_zeros=false
2717                         break;
2718                 fi
2719         done
2720
2721         if $all_zeros
2722         then
2723                 for ostnum in $(seq $OSTCOUNT); do
2724                         ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2725                         echo "Check that write_bytes is present in obdfilter/*/stats:"
2726                         do_facet ost$ostnum lctl get_param -n \
2727                                 obdfilter/$ostname/stats
2728                 done
2729                 error "OST not keeping write_bytes stats (b22312)"
2730         fi
2731 }
2732 run_test 33c "test llobdstat and write_bytes"
2733
2734 test_33d() {
2735         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
2736         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2737         local MDTIDX=1
2738         local remote_dir=$DIR/$tdir/remote_dir
2739
2740         test_mkdir -p $DIR/$tdir
2741         $LFS mkdir -i $MDTIDX $remote_dir ||
2742                 error "create remote directory failed"
2743
2744         touch $remote_dir/$tfile
2745         chmod 444 $remote_dir/$tfile
2746         chown $RUNAS_ID $remote_dir/$tfile
2747
2748         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
2749
2750         chown $RUNAS_ID $remote_dir
2751         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 ||
2752                                         error "create" || true
2753         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 &&
2754                                     error "open RDWR" || true
2755         $RUNAS $OPENFILE -f 1286739555 $remote_dir/f33 || true
2756 }
2757 run_test 33d "openfile with 444 modes and malformed flags under remote dir"
2758
2759 test_33e() {
2760         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2761
2762         mkdir $DIR/$tdir
2763
2764         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2765         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
2766         mkdir $DIR/$tdir/local_dir
2767
2768         local s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
2769         local s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
2770         local l_mode=$(stat -c%f $DIR/$tdir/local_dir)
2771
2772         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
2773                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode"
2774
2775         rmdir $DIR/$tdir/* || error "rmdir failed"
2776
2777         umask 777
2778         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2779         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
2780         mkdir $DIR/$tdir/local_dir
2781
2782         s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
2783         s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
2784         l_mode=$(stat -c%f $DIR/$tdir/local_dir)
2785
2786         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
2787                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode 777"
2788
2789         rmdir $DIR/$tdir/* || error "rmdir(umask 777) failed"
2790
2791         umask 000
2792         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2793         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
2794         mkdir $DIR/$tdir/local_dir
2795
2796         s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
2797         s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
2798         l_mode=$(stat -c%f $DIR/$tdir/local_dir)
2799
2800         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
2801                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode 0"
2802 }
2803 run_test 33e "mkdir and striped directory should have same mode"
2804
2805 cleanup_33f() {
2806         trap 0
2807         do_facet $SINGLEMDS $LCTL set_param mdt.*.enable_remote_dir_gid=0
2808 }
2809
2810 test_33f() {
2811         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2812
2813         mkdir $DIR/$tdir
2814         chmod go+rwx $DIR/$tdir
2815         do_facet $SINGLEMDS $LCTL set_param mdt.*.enable_remote_dir_gid=-1
2816         trap cleanup_33f EXIT
2817
2818         $RUNAS lfs mkdir -c$MDSCOUNT $DIR/$tdir/striped_dir ||
2819                 error "cannot create striped directory"
2820
2821         $RUNAS touch $DIR/$tdir/striped_dir/{0..16} ||
2822                 error "cannot create files in striped directory"
2823
2824         $RUNAS rm $DIR/$tdir/striped_dir/{0..16} ||
2825                 error "cannot remove files in striped directory"
2826
2827         $RUNAS rmdir $DIR/$tdir/striped_dir ||
2828                 error "cannot remove striped directory"
2829
2830         cleanup_33f
2831 }
2832 run_test 33f "nonroot user can create, access, and remove a striped directory"
2833
2834 TEST_34_SIZE=${TEST_34_SIZE:-2000000000000}
2835 test_34a() {
2836         rm -f $DIR/f34
2837         $MCREATE $DIR/f34 || error
2838         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2839         $TRUNCATE $DIR/f34 $TEST_34_SIZE || error
2840         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2841         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2842 }
2843 run_test 34a "truncate file that has not been opened ==========="
2844
2845 test_34b() {
2846         [ ! -f $DIR/f34 ] && test_34a
2847         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2848         $OPENFILE -f O_RDONLY $DIR/f34
2849         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2850         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2851 }
2852 run_test 34b "O_RDONLY opening file doesn't create objects ====="
2853
2854 test_34c() {
2855         [ ! -f $DIR/f34 ] && test_34a
2856         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2857         $OPENFILE -f O_RDWR $DIR/f34
2858         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" && error
2859         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2860 }
2861 run_test 34c "O_RDWR opening file-with-size works =============="
2862
2863 test_34d() {
2864         [ ! -f $DIR/f34 ] && test_34a
2865         dd if=/dev/zero of=$DIR/f34 conv=notrunc bs=4k count=1 || error
2866         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2867         rm $DIR/f34
2868 }
2869 run_test 34d "write to sparse file ============================="
2870
2871 test_34e() {
2872         rm -f $DIR/f34e
2873         $MCREATE $DIR/f34e || error
2874         $TRUNCATE $DIR/f34e 1000 || error
2875         $CHECKSTAT -s 1000 $DIR/f34e || error
2876         $OPENFILE -f O_RDWR $DIR/f34e
2877         $CHECKSTAT -s 1000 $DIR/f34e || error
2878 }
2879 run_test 34e "create objects, some with size and some without =="
2880
2881 test_34f() { # bug 6242, 6243
2882         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2883         SIZE34F=48000
2884         rm -f $DIR/f34f
2885         $MCREATE $DIR/f34f || error
2886         $TRUNCATE $DIR/f34f $SIZE34F || error "truncating $DIR/f3f to $SIZE34F"
2887         dd if=$DIR/f34f of=$TMP/f34f
2888         $CHECKSTAT -s $SIZE34F $TMP/f34f || error "$TMP/f34f not $SIZE34F bytes"
2889         dd if=/dev/zero of=$TMP/f34fzero bs=$SIZE34F count=1
2890         cmp $DIR/f34f $TMP/f34fzero || error "$DIR/f34f not all zero"
2891         cmp $TMP/f34f $TMP/f34fzero || error "$TMP/f34f not all zero"
2892         rm $TMP/f34f $TMP/f34fzero $DIR/f34f
2893 }
2894 run_test 34f "read from a file with no objects until EOF ======="
2895
2896 test_34g() {
2897         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2898         dd if=/dev/zero of=$DIR/$tfile bs=1 count=100 seek=$TEST_34_SIZE || error
2899         $TRUNCATE $DIR/$tfile $((TEST_34_SIZE / 2))|| error
2900         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile || error "truncate failed"
2901         cancel_lru_locks osc
2902         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile || \
2903                 error "wrong size after lock cancel"
2904
2905         $TRUNCATE $DIR/$tfile $TEST_34_SIZE || error
2906         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile || \
2907                 error "expanding truncate failed"
2908         cancel_lru_locks osc
2909         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile || \
2910                 error "wrong expanded size after lock cancel"
2911 }
2912 run_test 34g "truncate long file ==============================="
2913
2914 test_34h() {
2915         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2916         local gid=10
2917         local sz=1000
2918
2919         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10 || error
2920         sync # Flush the cache so that multiop below does not block on cache
2921              # flush when getting the group lock
2922         $MULTIOP $DIR/$tfile OG${gid}T${sz}g${gid}c &
2923         MULTIPID=$!
2924
2925         # Since just timed wait is not good enough, let's do a sync write
2926         # that way we are sure enough time for a roundtrip + processing
2927         # passed + 2 seconds of extra margin.
2928         dd if=/dev/zero of=$DIR/${tfile}-1 bs=4096 oflag=direct count=1
2929         rm $DIR/${tfile}-1
2930         sleep 2
2931
2932         if [[ `ps h -o comm -p $MULTIPID` == "multiop" ]]; then
2933                 error "Multiop blocked on ftruncate, pid=$MULTIPID"
2934                 kill -9 $MULTIPID
2935         fi
2936         wait $MULTIPID
2937         local nsz=`stat -c %s $DIR/$tfile`
2938         [[ $nsz == $sz ]] || error "New size wrong $nsz != $sz"
2939 }
2940 run_test 34h "ftruncate file under grouplock should not block"
2941
2942 test_35a() {
2943         cp /bin/sh $DIR/f35a
2944         chmod 444 $DIR/f35a
2945         chown $RUNAS_ID $DIR/f35a
2946         $RUNAS $DIR/f35a && error || true
2947         rm $DIR/f35a
2948 }
2949 run_test 35a "exec file with mode 444 (should return and not leak) ====="
2950
2951 test_36a() {
2952         rm -f $DIR/f36
2953         utime $DIR/f36 || error
2954 }
2955 run_test 36a "MDS utime check (mknod, utime) ==================="
2956
2957 test_36b() {
2958         echo "" > $DIR/f36
2959         utime $DIR/f36 || error
2960 }
2961 run_test 36b "OST utime check (open, utime) ===================="
2962
2963 test_36c() {
2964         rm -f $DIR/d36/f36
2965         test_mkdir $DIR/d36
2966         chown $RUNAS_ID $DIR/d36
2967         $RUNAS utime $DIR/d36/f36 || error
2968 }
2969 run_test 36c "non-root MDS utime check (mknod, utime) =========="
2970
2971 test_36d() {
2972         [ ! -d $DIR/d36 ] && test_36c
2973         echo "" > $DIR/d36/f36
2974         $RUNAS utime $DIR/d36/f36 || error
2975 }
2976 run_test 36d "non-root OST utime check (open, utime) ==========="
2977
2978 test_36e() {
2979         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID -- skipping" && return
2980         test_mkdir -p $DIR/$tdir
2981         touch $DIR/$tdir/$tfile
2982         $RUNAS utime $DIR/$tdir/$tfile && \
2983                 error "utime worked, expected failure" || true
2984 }
2985 run_test 36e "utime on non-owned file (should return error) ===="
2986
2987 subr_36fh() {
2988         local fl="$1"
2989         local LANG_SAVE=$LANG
2990         local LC_LANG_SAVE=$LC_LANG
2991         export LANG=C LC_LANG=C # for date language
2992
2993         DATESTR="Dec 20  2000"
2994         test_mkdir -p $DIR/$tdir
2995         lctl set_param fail_loc=$fl
2996         date; date +%s
2997         cp /etc/hosts $DIR/$tdir/$tfile
2998         sync & # write RPC generated with "current" inode timestamp, but delayed
2999         sleep 1
3000         touch --date="$DATESTR" $DIR/$tdir/$tfile # setattr timestamp in past
3001         LS_BEFORE="`ls -l $DIR/$tdir/$tfile`" # old timestamp from client cache
3002         cancel_lru_locks osc
3003         LS_AFTER="`ls -l $DIR/$tdir/$tfile`"  # timestamp from OST object
3004         date; date +%s
3005         [ "$LS_BEFORE" != "$LS_AFTER" ] && \
3006                 echo "BEFORE: $LS_BEFORE" && \
3007                 echo "AFTER : $LS_AFTER" && \
3008                 echo "WANT  : $DATESTR" && \
3009                 error "$DIR/$tdir/$tfile timestamps changed" || true
3010
3011         export LANG=$LANG_SAVE LC_LANG=$LC_LANG_SAVE
3012 }
3013
3014 test_36f() {
3015         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3016         #define OBD_FAIL_OST_BRW_PAUSE_BULK 0x214
3017         subr_36fh "0x80000214"
3018 }
3019 run_test 36f "utime on file racing with OST BRW write =========="
3020
3021 test_36g() {
3022         remote_ost_nodsh && skip "remote OST with nodsh" && return
3023         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3024         local fmd_max_age
3025         local fmd_before
3026         local fmd_after
3027
3028         test_mkdir -p $DIR/$tdir
3029         fmd_max_age=$(do_facet ost1 \
3030                 "lctl get_param -n obdfilter.*.client_cache_seconds 2> /dev/null | \
3031                 head -n 1")
3032
3033         fmd_before=$(do_facet ost1 \
3034                 "awk '/ll_fmd_cache/ {print \\\$2}' /proc/slabinfo")
3035         touch $DIR/$tdir/$tfile
3036         sleep $((fmd_max_age + 12))
3037         fmd_after=$(do_facet ost1 \
3038                 "awk '/ll_fmd_cache/ {print \\\$2}' /proc/slabinfo")
3039
3040         echo "fmd_before: $fmd_before"
3041         echo "fmd_after: $fmd_after"
3042         [[ $fmd_after -gt $fmd_before ]] &&
3043                 echo "AFTER: $fmd_after > BEFORE: $fmd_before" &&
3044                 error "fmd didn't expire after ping" || true
3045 }
3046 run_test 36g "filter mod data cache expiry ====================="
3047
3048 test_36h() {
3049         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3050         #define OBD_FAIL_OST_BRW_PAUSE_BULK2 0x227
3051         subr_36fh "0x80000227"
3052 }
3053 run_test 36h "utime on file racing with OST BRW write =========="
3054
3055 test_36i() {
3056         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
3057
3058         test_mkdir $DIR/$tdir
3059         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir
3060
3061         local mtime=$(stat -c%Y $DIR/$tdir/striped_dir)
3062         local new_mtime=$((mtime + 200))
3063
3064         #change Modify time of striped dir
3065         touch -m -d @$new_mtime $DIR/$tdir/striped_dir ||
3066                         error "change mtime failed"
3067
3068         local got=$(stat -c%Y $DIR/$tdir/striped_dir)
3069
3070         [ "$new_mtime" = "$got" ] || error "expect $new_mtime got $got"
3071 }
3072 run_test 36i "change mtime on striped directory"
3073
3074 # test_37 - duplicate with tests 32q 32r
3075
3076 test_38() {
3077         local file=$DIR/$tfile
3078         touch $file
3079         openfile -f O_DIRECTORY $file
3080         local RC=$?
3081         local ENOTDIR=20
3082         [ $RC -eq 0 ] && error "opened file $file with O_DIRECTORY" || true
3083         [ $RC -eq $ENOTDIR ] || error "error $RC should be ENOTDIR ($ENOTDIR)"
3084 }
3085 run_test 38 "open a regular file with O_DIRECTORY should return -ENOTDIR ==="
3086
3087 test_39() {
3088         touch $DIR/$tfile
3089         touch $DIR/${tfile}2
3090 #       ls -l  $DIR/$tfile $DIR/${tfile}2
3091 #       ls -lu  $DIR/$tfile $DIR/${tfile}2
3092 #       ls -lc  $DIR/$tfile $DIR/${tfile}2
3093         sleep 2
3094         $OPENFILE -f O_CREAT:O_TRUNC:O_WRONLY $DIR/${tfile}2
3095         if [ ! $DIR/${tfile}2 -nt $DIR/$tfile ]; then
3096                 echo "mtime"
3097                 ls -l --full-time $DIR/$tfile $DIR/${tfile}2
3098                 echo "atime"
3099                 ls -lu --full-time $DIR/$tfile $DIR/${tfile}2
3100                 echo "ctime"
3101                 ls -lc --full-time $DIR/$tfile $DIR/${tfile}2
3102                 error "O_TRUNC didn't change timestamps"
3103         fi
3104 }
3105 run_test 39 "mtime changed on create ==========================="
3106
3107 test_39b() {
3108         test_mkdir -p -c1 $DIR/$tdir
3109         cp -p /etc/passwd $DIR/$tdir/fopen
3110         cp -p /etc/passwd $DIR/$tdir/flink
3111         cp -p /etc/passwd $DIR/$tdir/funlink
3112         cp -p /etc/passwd $DIR/$tdir/frename
3113         ln $DIR/$tdir/funlink $DIR/$tdir/funlink2
3114
3115         sleep 1
3116         echo "aaaaaa" >> $DIR/$tdir/fopen
3117         echo "aaaaaa" >> $DIR/$tdir/flink
3118         echo "aaaaaa" >> $DIR/$tdir/funlink
3119         echo "aaaaaa" >> $DIR/$tdir/frename
3120
3121         local open_new=`stat -c %Y $DIR/$tdir/fopen`
3122         local link_new=`stat -c %Y $DIR/$tdir/flink`
3123         local unlink_new=`stat -c %Y $DIR/$tdir/funlink`
3124         local rename_new=`stat -c %Y $DIR/$tdir/frename`
3125
3126         cat $DIR/$tdir/fopen > /dev/null
3127         ln $DIR/$tdir/flink $DIR/$tdir/flink2
3128         rm -f $DIR/$tdir/funlink2
3129         mv -f $DIR/$tdir/frename $DIR/$tdir/frename2
3130
3131         for (( i=0; i < 2; i++ )) ; do
3132                 local open_new2=`stat -c %Y $DIR/$tdir/fopen`
3133                 local link_new2=`stat -c %Y $DIR/$tdir/flink`
3134                 local unlink_new2=`stat -c %Y $DIR/$tdir/funlink`
3135                 local rename_new2=`stat -c %Y $DIR/$tdir/frename2`
3136
3137                 [ $open_new2 -eq $open_new ] || error "open file reverses mtime"
3138                 [ $link_new2 -eq $link_new ] || error "link file reverses mtime"
3139                 [ $unlink_new2 -eq $unlink_new ] || error "unlink file reverses mtime"
3140                 [ $rename_new2 -eq $rename_new ] || error "rename file reverses mtime"
3141
3142                 cancel_lru_locks osc
3143                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3144         done
3145 }
3146 run_test 39b "mtime change on open, link, unlink, rename  ======"
3147
3148 # this should be set to past
3149 TEST_39_MTIME=`date -d "1 year ago" +%s`
3150
3151 # bug 11063
3152 test_39c() {
3153         touch $DIR1/$tfile
3154         sleep 2
3155         local mtime0=`stat -c %Y $DIR1/$tfile`
3156
3157         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3158         local mtime1=`stat -c %Y $DIR1/$tfile`
3159         [ "$mtime1" = $TEST_39_MTIME ] || \
3160                 error "mtime is not set to past: $mtime1, should be $TEST_39_MTIME"
3161
3162         local d1=`date +%s`
3163         echo hello >> $DIR1/$tfile
3164         local d2=`date +%s`
3165         local mtime2=`stat -c %Y $DIR1/$tfile`
3166         [ "$mtime2" -ge "$d1" ] && [ "$mtime2" -le "$d2" ] || \
3167                 error "mtime is not updated on write: $d1 <= $mtime2 <= $d2"
3168
3169         mv $DIR1/$tfile $DIR1/$tfile-1
3170
3171         for (( i=0; i < 2; i++ )) ; do
3172                 local mtime3=`stat -c %Y $DIR1/$tfile-1`
3173                 [ "$mtime2" = "$mtime3" ] || \
3174                         error "mtime ($mtime2) changed (to $mtime3) on rename"
3175
3176                 cancel_lru_locks osc
3177                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3178         done
3179 }
3180 run_test 39c "mtime change on rename ==========================="
3181
3182 # bug 21114
3183 test_39d() {
3184         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3185         touch $DIR1/$tfile
3186
3187         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3188
3189         for (( i=0; i < 2; i++ )) ; do
3190                 local mtime=`stat -c %Y $DIR1/$tfile`
3191                 [ $mtime = $TEST_39_MTIME ] || \
3192                         error "mtime($mtime) is not set to $TEST_39_MTIME"
3193
3194                 cancel_lru_locks osc
3195                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3196         done
3197 }
3198 run_test 39d "create, utime, stat =============================="
3199
3200 # bug 21114
3201 test_39e() {
3202         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3203         touch $DIR1/$tfile
3204         local mtime1=`stat -c %Y $DIR1/$tfile`
3205
3206         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3207
3208         for (( i=0; i < 2; i++ )) ; do
3209                 local mtime2=`stat -c %Y $DIR1/$tfile`
3210                 [ $mtime2 = $TEST_39_MTIME ] || \
3211                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
3212
3213                 cancel_lru_locks osc
3214                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3215         done
3216 }
3217 run_test 39e "create, stat, utime, stat ========================"
3218
3219 # bug 21114
3220 test_39f() {
3221         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3222         touch $DIR1/$tfile
3223         mtime1=`stat -c %Y $DIR1/$tfile`
3224
3225         sleep 2
3226         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3227
3228         for (( i=0; i < 2; i++ )) ; do
3229                 local mtime2=`stat -c %Y $DIR1/$tfile`
3230                 [ $mtime2 = $TEST_39_MTIME ] || \
3231                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
3232
3233                 cancel_lru_locks osc
3234                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3235         done
3236 }
3237 run_test 39f "create, stat, sleep, utime, stat ================="
3238
3239 # bug 11063
3240 test_39g() {
3241         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3242         echo hello >> $DIR1/$tfile
3243         local mtime1=`stat -c %Y $DIR1/$tfile`
3244
3245         sleep 2
3246         chmod o+r $DIR1/$tfile
3247
3248         for (( i=0; i < 2; i++ )) ; do
3249                 local mtime2=`stat -c %Y $DIR1/$tfile`
3250                 [ "$mtime1" = "$mtime2" ] || \
3251                         error "lost mtime: $mtime2, should be $mtime1"
3252
3253                 cancel_lru_locks osc
3254                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3255         done
3256 }
3257 run_test 39g "write, chmod, stat ==============================="
3258
3259 # bug 11063
3260 test_39h() {
3261         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3262         touch $DIR1/$tfile
3263         sleep 1
3264
3265         local d1=`date`
3266         echo hello >> $DIR1/$tfile
3267         local mtime1=`stat -c %Y $DIR1/$tfile`
3268
3269         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3270         local d2=`date`
3271         if [ "$d1" != "$d2" ]; then
3272                 echo "write and touch not within one second"
3273         else
3274                 for (( i=0; i < 2; i++ )) ; do
3275                         local mtime2=`stat -c %Y $DIR1/$tfile`
3276                         [ "$mtime2" = $TEST_39_MTIME ] || \
3277                                 error "lost mtime: $mtime2, should be $TEST_39_MTIME"
3278
3279                         cancel_lru_locks osc
3280                         if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3281                 done
3282         fi
3283 }
3284 run_test 39h "write, utime within one second, stat ============="
3285
3286 test_39i() {
3287         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3288         touch $DIR1/$tfile
3289         sleep 1
3290
3291         echo hello >> $DIR1/$tfile
3292         local mtime1=`stat -c %Y $DIR1/$tfile`
3293
3294         mv $DIR1/$tfile $DIR1/$tfile-1
3295
3296         for (( i=0; i < 2; i++ )) ; do
3297                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
3298
3299                 [ "$mtime1" = "$mtime2" ] || \
3300                         error "lost mtime: $mtime2, should be $mtime1"
3301
3302                 cancel_lru_locks osc
3303                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3304         done
3305 }
3306 run_test 39i "write, rename, stat =============================="
3307
3308 test_39j() {
3309         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3310         start_full_debug_logging
3311         touch $DIR1/$tfile
3312         sleep 1
3313
3314         #define OBD_FAIL_OSC_DELAY_SETTIME       0x412
3315         lctl set_param fail_loc=0x80000412
3316         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c ||
3317                 error "multiop failed"
3318         local multipid=$!
3319         local mtime1=`stat -c %Y $DIR1/$tfile`
3320
3321         mv $DIR1/$tfile $DIR1/$tfile-1
3322
3323         kill -USR1 $multipid
3324         wait $multipid || error "multiop close failed"
3325
3326         for (( i=0; i < 2; i++ )) ; do
3327                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
3328                 [ "$mtime1" = "$mtime2" ] ||
3329                         error "mtime is lost on close: $mtime2, " \
3330                               "should be $mtime1"
3331
3332                 cancel_lru_locks osc
3333                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3334         done
3335         lctl set_param fail_loc=0
3336         stop_full_debug_logging
3337 }
3338 run_test 39j "write, rename, close, stat ======================="
3339
3340 test_39k() {
3341         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3342         touch $DIR1/$tfile
3343         sleep 1
3344
3345         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c || error "multiop failed"
3346         local multipid=$!
3347         local mtime1=`stat -c %Y $DIR1/$tfile`
3348
3349         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3350
3351         kill -USR1 $multipid
3352         wait $multipid || error "multiop close failed"
3353
3354         for (( i=0; i < 2; i++ )) ; do
3355                 local mtime2=`stat -c %Y $DIR1/$tfile`
3356
3357                 [ "$mtime2" = $TEST_39_MTIME ] || \
3358                         error "mtime is lost on close: $mtime2, should be $TEST_39_MTIME"
3359
3360                 cancel_lru_locks osc
3361                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3362         done
3363 }
3364 run_test 39k "write, utime, close, stat ========================"
3365
3366 # this should be set to future
3367 TEST_39_ATIME=`date -d "1 year" +%s`
3368
3369 test_39l() {
3370         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3371         remote_mds_nodsh && skip "remote MDS with nodsh" && return
3372         local atime_diff=$(do_facet $SINGLEMDS \
3373                                 lctl get_param -n mdd.*MDT0000*.atime_diff)
3374         rm -rf $DIR/$tdir
3375         mkdir -p $DIR/$tdir
3376
3377         # test setting directory atime to future
3378         touch -a -d @$TEST_39_ATIME $DIR/$tdir
3379         local atime=$(stat -c %X $DIR/$tdir)
3380         [ "$atime" = $TEST_39_ATIME ] ||
3381                 error "atime is not set to future: $atime, $TEST_39_ATIME"
3382
3383         # test setting directory atime from future to now
3384         local now=$(date +%s)
3385         touch -a -d @$now $DIR/$tdir
3386
3387         atime=$(stat -c %X $DIR/$tdir)
3388         [ "$atime" -eq "$now"  ] ||
3389                 error "atime is not updated from future: $atime, $now"
3390
3391         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=2
3392         sleep 3
3393
3394         # test setting directory atime when now > dir atime + atime_diff
3395         local d1=$(date +%s)
3396         ls $DIR/$tdir
3397         local d2=$(date +%s)
3398         cancel_lru_locks mdc
3399         atime=$(stat -c %X $DIR/$tdir)
3400         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] ||
3401                 error "atime is not updated  : $atime, should be $d2"
3402
3403         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=60
3404         sleep 3
3405
3406         # test not setting directory atime when now < dir atime + atime_diff
3407         ls $DIR/$tdir
3408         cancel_lru_locks mdc
3409         atime=$(stat -c %X $DIR/$tdir)
3410         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] ||
3411                 error "atime is updated to $atime, should remain $d1<atime<$d2"
3412
3413         do_facet $SINGLEMDS \
3414                 lctl set_param -n mdd.*MDT0000*.atime_diff=$atime_diff
3415 }
3416 run_test 39l "directory atime update ==========================="
3417
3418 test_39m() {
3419         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3420         touch $DIR1/$tfile
3421         sleep 2
3422         local far_past_mtime=$(date -d "May 29 1953" +%s)
3423         local far_past_atime=$(date -d "Dec 17 1903" +%s)
3424
3425         touch -m -d @$far_past_mtime $DIR1/$tfile
3426         touch -a -d @$far_past_atime $DIR1/$tfile
3427
3428         for (( i=0; i < 2; i++ )) ; do
3429                 local timestamps=$(stat -c "%X %Y" $DIR1/$tfile)
3430                 [ "$timestamps" = "$far_past_atime $far_past_mtime" ] || \
3431                         error "atime or mtime set incorrectly"
3432
3433                 cancel_lru_locks osc
3434                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3435         done
3436 }
3437 run_test 39m "test atime and mtime before 1970"
3438
3439 test_39n() { # LU-3832
3440         local atime_diff=$(do_facet $SINGLEMDS \
3441                 lctl get_param -n mdd.*MDT0000*.atime_diff)
3442         local atime0
3443         local atime1
3444         local atime2
3445
3446         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=1
3447
3448         rm -rf $DIR/$tfile
3449         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 status=noxfer
3450         atime0=$(stat -c %X $DIR/$tfile)
3451
3452         sleep 5
3453         $MULTIOP $DIR/$tfile oO_RDONLY:O_NOATIME:r4096c
3454         atime1=$(stat -c %X $DIR/$tfile)
3455
3456         sleep 5
3457         cancel_lru_locks mdc
3458         cancel_lru_locks osc
3459         $MULTIOP $DIR/$tfile oO_RDONLY:O_NOATIME:r4096c
3460         atime2=$(stat -c %X $DIR/$tfile)
3461
3462         do_facet $SINGLEMDS \
3463                 lctl set_param -n mdd.*MDT0000*.atime_diff=$atime_diff
3464
3465         [ "$atime0" -eq "$atime1" ] || error "atime0 $atime0 != atime1 $atime1"
3466         [ "$atime1" -eq "$atime2" ] || error "atime0 $atime0 != atime1 $atime1"
3467 }
3468 run_test 39n "check that O_NOATIME is honored"
3469
3470 test_39o() {
3471         TESTDIR=$DIR/$tdir/$tfile
3472         [ -e $TESTDIR ] && rm -rf $TESTDIR
3473         mkdir -p $TESTDIR
3474         cd $TESTDIR
3475         links1=2
3476         ls
3477         mkdir a b
3478         ls
3479         links2=$(stat -c %h .)
3480         [ $(($links1 + 2)) != $links2 ] &&
3481                 error "wrong links count $(($links1 + 2)) != $links2"
3482         rmdir b
3483         links3=$(stat -c %h .)
3484         [ $(($links1 + 1)) != $links3 ] &&
3485                 error "wrong links count $links1 != $links3"
3486         return 0
3487 }
3488 run_test 39o "directory cached attributes updated after create ========"
3489
3490 test_39p() {
3491         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
3492         local MDTIDX=1
3493         TESTDIR=$DIR/$tdir/$tfile
3494         [ -e $TESTDIR ] && rm -rf $TESTDIR
3495         test_mkdir -p $TESTDIR
3496         cd $TESTDIR
3497         links1=2
3498         ls
3499         $LFS mkdir -i $MDTIDX $TESTDIR/remote_dir1
3500         $LFS mkdir -i $MDTIDX $TESTDIR/remote_dir2
3501         ls
3502         links2=$(stat -c %h .)
3503         [ $(($links1 + 2)) != $links2 ] &&
3504                 error "wrong links count $(($links1 + 2)) != $links2"
3505         rmdir remote_dir2
3506         links3=$(stat -c %h .)
3507         [ $(($links1 + 1)) != $links3 ] &&
3508                 error "wrong links count $links1 != $links3"
3509         return 0
3510 }
3511 run_test 39p "remote directory cached attributes updated after create ========"
3512
3513
3514 test_39p() { # LU-8041
3515         local testdir=$DIR/$tdir
3516         mkdir -p $testdir
3517         multiop_bg_pause $testdir D_c || error "multiop failed"
3518         local multipid=$!
3519         cancel_lru_locks mdc
3520         kill -USR1 $multipid
3521         local atime=$(stat -c %X $testdir)
3522         [ "$atime" -ne 0 ] || error "atime is zero"
3523 }
3524 run_test 39p "close won't zero out atime"
3525
3526 test_40() {
3527         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
3528         $RUNAS $OPENFILE -f O_WRONLY:O_TRUNC $DIR/$tfile &&
3529                 error "openfile O_WRONLY:O_TRUNC $tfile failed"
3530         $CHECKSTAT -t file -s 4096 $DIR/$tfile ||
3531                 error "$tfile is not 4096 bytes in size"
3532 }
3533 run_test 40 "failed open(O_TRUNC) doesn't truncate ============="
3534
3535 test_41() {
3536         # bug 1553
3537         small_write $DIR/f41 18
3538 }
3539 run_test 41 "test small file write + fstat ====================="
3540
3541 count_ost_writes() {
3542         lctl get_param -n osc.*.stats |
3543                 awk -vwrites=0 '/ost_write/ { writes += $2 } \
3544                         END { printf("%0.0f", writes) }'
3545 }
3546
3547 # decent default
3548 WRITEBACK_SAVE=500
3549 DIRTY_RATIO_SAVE=40
3550 MAX_DIRTY_RATIO=50
3551 BG_DIRTY_RATIO_SAVE=10
3552 MAX_BG_DIRTY_RATIO=25
3553
3554 start_writeback() {
3555         trap 0
3556         # in 2.6, restore /proc/sys/vm/dirty_writeback_centisecs,
3557         # dirty_ratio, dirty_background_ratio
3558         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
3559                 sysctl -w vm.dirty_writeback_centisecs=$WRITEBACK_SAVE
3560                 sysctl -w vm.dirty_background_ratio=$BG_DIRTY_RATIO_SAVE
3561                 sysctl -w vm.dirty_ratio=$DIRTY_RATIO_SAVE
3562         else
3563                 # if file not here, we are a 2.4 kernel
3564                 kill -CONT `pidof kupdated`
3565         fi
3566 }
3567
3568 stop_writeback() {
3569         # setup the trap first, so someone cannot exit the test at the
3570         # exact wrong time and mess up a machine
3571         trap start_writeback EXIT
3572         # in 2.6, save and 0 /proc/sys/vm/dirty_writeback_centisecs
3573         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
3574                 WRITEBACK_SAVE=`sysctl -n vm.dirty_writeback_centisecs`
3575                 sysctl -w vm.dirty_writeback_centisecs=0
3576                 sysctl -w vm.dirty_writeback_centisecs=0
3577                 # save and increase /proc/sys/vm/dirty_ratio
3578                 DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_ratio`
3579                 sysctl -w vm.dirty_ratio=$MAX_DIRTY_RATIO
3580                 # save and increase /proc/sys/vm/dirty_background_ratio
3581                 BG_DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_background_ratio`
3582                 sysctl -w vm.dirty_background_ratio=$MAX_BG_DIRTY_RATIO
3583         else
3584                 # if file not here, we are a 2.4 kernel
3585                 kill -STOP `pidof kupdated`
3586         fi
3587 }
3588
3589 # ensure that all stripes have some grant before we test client-side cache
3590 setup_test42() {
3591         for i in `seq -f $DIR/f42-%g 1 $OSTCOUNT`; do
3592                 dd if=/dev/zero of=$i bs=4k count=1
3593                 rm $i
3594         done
3595 }
3596
3597 # Tests 42* verify that our behaviour is correct WRT caching, file closure,
3598 # file truncation, and file removal.
3599 test_42a() {
3600         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3601         setup_test42
3602         cancel_lru_locks osc
3603         stop_writeback
3604         sync; sleep 1; sync # just to be safe
3605         BEFOREWRITES=`count_ost_writes`
3606         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur_grant_bytes | grep "[0-9]"
3607         dd if=/dev/zero of=$DIR/f42a bs=1024 count=100
3608         AFTERWRITES=`count_ost_writes`
3609         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
3610                 error "$BEFOREWRITES < $AFTERWRITES"
3611         start_writeback
3612 }
3613 run_test 42a "ensure that we don't flush on close =============="
3614
3615 test_42b() {
3616         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3617         setup_test42
3618         cancel_lru_locks osc
3619         stop_writeback
3620         sync
3621         dd if=/dev/zero of=$DIR/f42b bs=1024 count=100
3622         BEFOREWRITES=$(count_ost_writes)
3623         $MUNLINK $DIR/f42b || error "$MUNLINK $DIR/f42b: $?"
3624         AFTERWRITES=$(count_ost_writes)
3625         if [[ $BEFOREWRITES -lt $AFTERWRITES ]]; then
3626                 error "$BEFOREWRITES < $AFTERWRITES on unlink"
3627         fi
3628         BEFOREWRITES=$(count_ost_writes)
3629         sync || error "sync: $?"
3630         AFTERWRITES=$(count_ost_writes)
3631         if [[ $BEFOREWRITES -lt $AFTERWRITES ]]; then
3632                 error "$BEFOREWRITES < $AFTERWRITES on sync"
3633         fi
3634         dmesg | grep 'error from obd_brw_async' && error 'error writing back'
3635         start_writeback
3636         return 0
3637 }
3638 run_test 42b "test destroy of file with cached dirty data ======"
3639
3640 # if these tests just want to test the effect of truncation,
3641 # they have to be very careful.  consider:
3642 # - the first open gets a {0,EOF}PR lock
3643 # - the first write conflicts and gets a {0, count-1}PW
3644 # - the rest of the writes are under {count,EOF}PW
3645 # - the open for truncate tries to match a {0,EOF}PR
3646 #   for the filesize and cancels the PWs.
3647 # any number of fixes (don't get {0,EOF} on open, match
3648 # composite locks, do smarter file size management) fix
3649 # this, but for now we want these tests to verify that
3650 # the cancellation with truncate intent works, so we
3651 # start the file with a full-file pw lock to match against
3652 # until the truncate.
3653 trunc_test() {
3654         test=$1
3655         file=$DIR/$test
3656         offset=$2
3657         cancel_lru_locks osc
3658         stop_writeback
3659         # prime the file with 0,EOF PW to match
3660         touch $file
3661         $TRUNCATE $file 0
3662         sync; sync
3663         # now the real test..
3664         dd if=/dev/zero of=$file bs=1024 count=100
3665         BEFOREWRITES=`count_ost_writes`
3666         $TRUNCATE $file $offset
3667         cancel_lru_locks osc
3668         AFTERWRITES=`count_ost_writes`
3669         start_writeback
3670 }
3671
3672 test_42c() {
3673         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3674         trunc_test 42c 1024
3675         [ $BEFOREWRITES -eq $AFTERWRITES ] && \
3676             error "beforewrites $BEFOREWRITES == afterwrites $AFTERWRITES on truncate"
3677         rm $file
3678 }
3679 run_test 42c "test partial truncate of file with cached dirty data"
3680
3681 test_42d() {
3682         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3683         trunc_test 42d 0
3684         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
3685             error "beforewrites $BEFOREWRITES != afterwrites $AFTERWRITES on truncate"
3686         rm $file
3687 }
3688 run_test 42d "test complete truncate of file with cached dirty data"
3689
3690 test_42e() { # bug22074
3691         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3692         local TDIR=$DIR/${tdir}e
3693         local pagesz=$(page_size)
3694         local pages=16 # hardcoded 16 pages, don't change it.
3695         local files=$((OSTCOUNT * 500)) # hopefully 500 files on each OST
3696         local proc_osc0="osc.${FSNAME}-OST0000-osc-[^MDT]*"
3697         local max_dirty_mb
3698         local warmup_files
3699
3700         test_mkdir -p $DIR/${tdir}e
3701         $SETSTRIPE -c 1 $TDIR
3702         createmany -o $TDIR/f $files
3703
3704         max_dirty_mb=$($LCTL get_param -n $proc_osc0/max_dirty_mb)
3705
3706         # we assume that with $OSTCOUNT files, at least one of them will
3707         # be allocated on OST0.
3708         warmup_files=$((OSTCOUNT * max_dirty_mb))
3709         createmany -o $TDIR/w $warmup_files
3710
3711         # write a large amount of data into one file and sync, to get good
3712         # avail_grant number from OST.
3713         for ((i=0; i<$warmup_files; i++)); do
3714                 idx=$($GETSTRIPE -i $TDIR/w$i)
3715                 [ $idx -ne 0 ] && continue
3716                 dd if=/dev/zero of=$TDIR/w$i bs="$max_dirty_mb"M count=1
3717                 break
3718         done
3719         [[ $i -gt $warmup_files ]] && error "OST0 is still cold"
3720         sync
3721         $LCTL get_param $proc_osc0/cur_dirty_bytes
3722         $LCTL get_param $proc_osc0/cur_grant_bytes
3723
3724         # create as much dirty pages as we can while not to trigger the actual
3725         # RPCs directly. but depends on the env, VFS may trigger flush during this
3726         # period, hopefully we are good.
3727         for ((i=0; i<$warmup_files; i++)); do
3728                 idx=$($GETSTRIPE -i $TDIR/w$i)
3729                 [ $idx -ne 0 ] && continue
3730                 dd if=/dev/zero of=$TDIR/w$i bs=1M count=1 2>/dev/null
3731         done
3732         $LCTL get_param $proc_osc0/cur_dirty_bytes
3733         $LCTL get_param $proc_osc0/cur_grant_bytes
3734
3735         # perform the real test
3736         $LCTL set_param $proc_osc0/rpc_stats 0
3737         for ((;i<$files; i++)); do
3738                 [ $($GETSTRIPE -i $TDIR/f$i) -eq 0 ] || continue
3739                 dd if=/dev/zero of=$TDIR/f$i bs=$pagesz count=$pages 2>/dev/null
3740         done
3741         sync
3742         $LCTL get_param $proc_osc0/rpc_stats
3743
3744         local percent=0
3745         local have_ppr=false
3746         $LCTL get_param $proc_osc0/rpc_stats |
3747                 while read PPR RRPC RPCT RCUM BAR WRPC WPCT WCUM; do
3748                         # skip lines until we are at the RPC histogram data
3749                         [ "$PPR" == "pages" ] && have_ppr=true && continue
3750                         $have_ppr || continue
3751
3752                         # we only want the percent stat for < 16 pages
3753                         [[ $(echo $PPR | tr -d ':') -ge $pages ]] && break
3754
3755                         percent=$((percent + WPCT))
3756                         if [[ $percent -gt 15 ]]; then
3757                                 error "less than 16-pages write RPCs" \
3758                                       "$percent% > 15%"
3759                                 break
3760                         fi
3761                 done
3762         rm -rf $TDIR
3763 }
3764 run_test 42e "verify sub-RPC writes are not done synchronously"
3765
3766 test_43() {
3767         test_mkdir -p $DIR/$tdir
3768         cp -p /bin/ls $DIR/$tdir/$tfile
3769         $MULTIOP $DIR/$tdir/$tfile Ow_c &
3770         pid=$!
3771         # give multiop a chance to open
3772         sleep 1
3773
3774         $DIR/$tdir/$tfile && error || true
3775         kill -USR1 $pid
3776 }
3777 run_test 43 "execution of file opened for write should return -ETXTBSY"
3778
3779 test_43a() {
3780         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3781         test_mkdir -p $DIR/$tdir
3782         cp -p `which $MULTIOP` $DIR/$tdir/multiop ||
3783                         cp -p multiop $DIR/$tdir/multiop
3784         MULTIOP_PROG=$DIR/$tdir/multiop multiop_bg_pause $TMP/$tfile.junk O_c ||
3785                         return 1
3786         MULTIOP_PID=$!
3787         $MULTIOP $DIR/$tdir/multiop Oc && error "expected error, got success"
3788         kill -USR1 $MULTIOP_PID || return 2
3789         wait $MULTIOP_PID || return 3
3790         rm $TMP/$tfile.junk $DIR/$tdir/multiop
3791 }
3792 run_test 43a "open(RDWR) of file being executed should return -ETXTBSY"
3793
3794 test_43b() {
3795         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3796         test_mkdir -p $DIR/$tdir
3797         cp -p `which $MULTIOP` $DIR/$tdir/multiop ||
3798                         cp -p multiop $DIR/$tdir/multiop
3799         MULTIOP_PROG=$DIR/$tdir/multiop multiop_bg_pause $TMP/$tfile.junk O_c ||
3800                         return 1
3801         MULTIOP_PID=$!
3802         $TRUNCATE $DIR/$tdir/multiop 0 && error "expected error, got success"
3803         kill -USR1 $MULTIOP_PID || return 2
3804         wait $MULTIOP_PID || return 3
3805         rm $TMP/$tfile.junk $DIR/$tdir/multiop
3806 }
3807 run_test 43b "truncate of file being executed should return -ETXTBSY"
3808
3809 test_43c() {
3810         local testdir="$DIR/$tdir"
3811         test_mkdir -p $DIR/$tdir
3812         cp $SHELL $testdir/
3813         ( cd $(dirname $SHELL) && md5sum $(basename $SHELL) ) | \
3814                 ( cd $testdir && md5sum -c)
3815 }
3816 run_test 43c "md5sum of copy into lustre========================"
3817
3818 test_44() {
3819         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping 2-stripe test" && return
3820         dd if=/dev/zero of=$DIR/f1 bs=4k count=1 seek=1023
3821         dd if=$DIR/f1 bs=4k count=1 > /dev/null
3822 }
3823 run_test 44 "zero length read from a sparse stripe ============="
3824
3825 test_44a() {
3826         local nstripe=$($LCTL lov_getconfig $DIR | grep default_stripe_count: |
3827                 awk '{ print $2 }')
3828         [ -z "$nstripe" ] && skip "can't get stripe info" && return
3829         [[ $nstripe -gt $OSTCOUNT ]] &&
3830             skip "Wrong default_stripe_count: $nstripe (OSTCOUNT: $OSTCOUNT)" &&
3831             return
3832         local stride=$($LCTL lov_getconfig $DIR | grep default_stripe_size: |
3833                 awk '{ print $2 }')
3834         if [[ $nstripe -eq 0 || $nstripe -eq -1 ]]; then
3835                 nstripe=$($LCTL lov_getconfig $DIR | grep obd_count: |
3836                         awk '{ print $2 }')
3837         fi
3838
3839         OFFSETS="0 $((stride/2)) $((stride-1))"
3840         for offset in $OFFSETS; do
3841                 for i in $(seq 0 $((nstripe-1))); do
3842                         local GLOBALOFFSETS=""
3843                         # size in Bytes
3844                         local size=$((((i + 2 * $nstripe )*$stride + $offset)))
3845                         local myfn=$DIR/d44a-$size
3846                         echo "--------writing $myfn at $size"
3847                         ll_sparseness_write $myfn $size ||
3848                                 error "ll_sparseness_write"
3849                         GLOBALOFFSETS="$GLOBALOFFSETS $size"
3850                         ll_sparseness_verify $myfn $GLOBALOFFSETS ||
3851                                 error "ll_sparseness_verify $GLOBALOFFSETS"
3852
3853                         for j in $(seq 0 $((nstripe-1))); do
3854                                 # size in Bytes
3855                                 size=$((((j + $nstripe )*$stride + $offset)))
3856                                 ll_sparseness_write $myfn $size ||
3857                                         error "ll_sparseness_write"
3858                                 GLOBALOFFSETS="$GLOBALOFFSETS $size"
3859                         done
3860                         ll_sparseness_verify $myfn $GLOBALOFFSETS ||
3861                                 error "ll_sparseness_verify $GLOBALOFFSETS"
3862                         rm -f $myfn
3863                 done
3864         done
3865 }
3866 run_test 44a "test sparse pwrite ==============================="
3867
3868 dirty_osc_total() {
3869         tot=0
3870         for d in `lctl get_param -n osc.*.cur_dirty_bytes`; do
3871                 tot=$(($tot + $d))
3872         done
3873         echo $tot
3874 }
3875 do_dirty_record() {
3876         before=`dirty_osc_total`
3877         echo executing "\"$*\""
3878         eval $*
3879         after=`dirty_osc_total`
3880         echo before $before, after $after
3881 }
3882 test_45() {
3883         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3884         f="$DIR/f45"
3885         # Obtain grants from OST if it supports it
3886         echo blah > ${f}_grant
3887         stop_writeback
3888         sync
3889         do_dirty_record "echo blah > $f"
3890         [[ $before -eq $after ]] && error "write wasn't cached"
3891         do_dirty_record "> $f"
3892         [[ $before -gt $after ]] || error "truncate didn't lower dirty count"
3893         do_dirty_record "echo blah > $f"
3894         [[ $before -eq $after ]] && error "write wasn't cached"
3895         do_dirty_record "sync"
3896         [[ $before -gt $after ]] || error "writeback didn't lower dirty count"
3897         do_dirty_record "echo blah > $f"
3898         [[ $before -eq $after ]] && error "write wasn't cached"
3899         do_dirty_record "cancel_lru_locks osc"
3900         [[ $before -gt $after ]] ||
3901                 error "lock cancellation didn't lower dirty count"
3902         start_writeback
3903 }
3904 run_test 45 "osc io page accounting ============================"
3905
3906 # in a 2 stripe file (lov.sh), page 1023 maps to page 511 in its object.  this
3907 # test tickles a bug where re-dirtying a page was failing to be mapped to the
3908 # objects offset and an assert hit when an rpc was built with 1023's mapped
3909 # offset 511 and 511's raw 511 offset. it also found general redirtying bugs.
3910 test_46() {
3911         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3912         f="$DIR/f46"
3913         stop_writeback
3914         sync
3915         dd if=/dev/zero of=$f bs=`page_size` seek=511 count=1
3916         sync
3917         dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=1023 count=1
3918         dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=511 count=1
3919         sync
3920         start_writeback
3921 }
3922 run_test 46 "dirtying a previously written page ================"
3923
3924 # test_47 is removed "Device nodes check" is moved to test_28
3925
3926 test_48a() { # bug 2399
3927         [ $(facet_fstype $SINGLEMDS) = "zfs" ] &&
3928         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.63) ] &&
3929                 skip "MDS prior to 2.3.63 handle ZFS dir .. incorrectly" &&
3930                 return
3931         test_mkdir $DIR/$tdir
3932         cd $DIR/$tdir
3933         mv $DIR/$tdir $DIR/$tdir.new || error "move directory failed"
3934         test_mkdir $DIR/$tdir || error "recreate directory failed"
3935         touch foo || error "'touch foo' failed after recreating cwd"
3936         test_mkdir bar || error "'mkdir foo' failed after recreating cwd"
3937         touch .foo || error "'touch .foo' failed after recreating cwd"
3938         test_mkdir .bar || error "'mkdir .foo' failed after recreating cwd"
3939         ls . > /dev/null || error "'ls .' failed after recreating cwd"
3940         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
3941         cd . || error "'cd .' failed after recreating cwd"
3942         test_mkdir . && error "'mkdir .' worked after recreating cwd"
3943         rmdir . && error "'rmdir .' worked after recreating cwd"
3944         ln -s . baz || error "'ln -s .' failed after recreating cwd"
3945         cd .. || error "'cd ..' failed after recreating cwd"
3946 }
3947 run_test 48a "Access renamed working dir (should return errors)="
3948
3949 test_48b() { # bug 2399
3950         rm -rf $DIR/$tdir
3951         test_mkdir $DIR/$tdir
3952         cd $DIR/$tdir
3953         rmdir $DIR/$tdir || error "remove cwd $DIR/$tdir failed"
3954         touch foo && error "'touch foo' worked after removing cwd"
3955         test_mkdir foo && error "'mkdir foo' worked after removing cwd"
3956         touch .foo && error "'touch .foo' worked after removing cwd"
3957         test_mkdir .foo && error "'mkdir .foo' worked after removing cwd"
3958         ls . > /dev/null && error "'ls .' worked after removing cwd"
3959         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
3960         test_mkdir . && error "'mkdir .' worked after removing cwd"
3961         rmdir . && error "'rmdir .' worked after removing cwd"
3962         ln -s . foo && error "'ln -s .' worked after removing cwd"
3963         cd .. || echo "'cd ..' failed after removing cwd `pwd`"  #bug 3517
3964 }
3965 run_test 48b "Access removed working dir (should return errors)="
3966
3967 test_48c() { # bug 2350
3968         #lctl set_param debug=-1
3969         #set -vx
3970         rm -rf $DIR/$tdir
3971         test_mkdir -p $DIR/$tdir/dir
3972         cd $DIR/$tdir/dir
3973         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
3974         $TRACE touch foo && error "touch foo worked after removing cwd"
3975         $TRACE test_mkdir foo && error "'mkdir foo' worked after removing cwd"
3976         touch .foo && error "touch .foo worked after removing cwd"
3977         test_mkdir .foo && error "mkdir .foo worked after removing cwd"
3978         $TRACE ls . && error "'ls .' worked after removing cwd"
3979         $TRACE ls .. || error "'ls ..' failed after removing cwd"
3980         $TRACE test_mkdir . && error "'mkdir .' worked after removing cwd"
3981         $TRACE rmdir . && error "'rmdir .' worked after removing cwd"
3982         $TRACE ln -s . foo && error "'ln -s .' worked after removing cwd"
3983         $TRACE cd .. || echo "'cd ..' failed after removing cwd `pwd`" #bug 3415
3984 }
3985 run_test 48c "Access removed working subdir (should return errors)"
3986
3987 test_48d() { # bug 2350
3988         #lctl set_param debug=-1
3989         #set -vx
3990         rm -rf $DIR/$tdir
3991         test_mkdir -p $DIR/$tdir/dir
3992         cd $DIR/$tdir/dir
3993         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
3994         $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
3995         $TRACE touch foo && error "'touch foo' worked after removing parent"
3996         $TRACE test_mkdir foo && error "mkdir foo worked after removing parent"
3997         touch .foo && error "'touch .foo' worked after removing parent"
3998         test_mkdir .foo && error "mkdir .foo worked after removing parent"
3999         $TRACE ls . && error "'ls .' worked after removing parent"
4000         $TRACE ls .. && error "'ls ..' worked after removing parent"
4001         $TRACE test_mkdir . && error "'mkdir .' worked after removing parent"
4002         $TRACE rmdir . && error "'rmdir .' worked after removing parent"
4003         $TRACE ln -s . foo && error "'ln -s .' worked after removing parent"
4004         true
4005 }
4006 run_test 48d "Access removed parent subdir (should return errors)"
4007
4008 test_48e() { # bug 4134
4009         #lctl set_param debug=-1
4010         #set -vx
4011         rm -rf $DIR/$tdir
4012         test_mkdir -p $DIR/$tdir/dir
4013         cd $DIR/$tdir/dir
4014         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
4015         $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
4016         $TRACE touch $DIR/$tdir || error "'touch $DIR/$tdir' failed"
4017         $TRACE chmod +x $DIR/$tdir || error "'chmod +x $DIR/$tdir' failed"
4018         # On a buggy kernel addition of "touch foo" after cd .. will
4019         # produce kernel oops in lookup_hash_it
4020         touch ../foo && error "'cd ..' worked after recreate parent"
4021         cd $DIR
4022         $TRACE rm $DIR/$tdir || error "rm '$DIR/$tdir' failed"
4023 }
4024 run_test 48e "Access to recreated parent subdir (should return errors)"
4025
4026 test_49() { # LU-1030
4027         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4028         # get ost1 size - lustre-OST0000
4029         ost1_size=$(do_facet ost1 $LFS df | grep ${ost1_svc} |
4030                 awk '{ print $4 }')
4031         # write 800M at maximum
4032         [[ $ost1_size -lt 2 ]] && ost1_size=2
4033         [[ $ost1_size -gt 819200 ]] && ost1_size=819200
4034
4035         $SETSTRIPE -c 1 -i 0 $DIR/$tfile
4036         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((ost1_size >> 2)) &
4037         local dd_pid=$!
4038
4039         # change max_pages_per_rpc while writing the file
4040         local osc1_mppc=osc.$(get_osc_import_name client ost1).max_pages_per_rpc
4041         local orig_mppc=$($LCTL get_param -n $osc1_mppc)
4042         # loop until dd process exits
4043         while ps ax -opid | grep -wq $dd_pid; do
4044                 $LCTL set_param $osc1_mppc=$((RANDOM % 256 + 1))
4045                 sleep $((RANDOM % 5 + 1))
4046         done
4047         # restore original max_pages_per_rpc
4048         $LCTL set_param $osc1_mppc=$orig_mppc
4049         rm $DIR/$tfile || error "rm $DIR/$tfile failed"
4050 }
4051 run_test 49 "Change max_pages_per_rpc won't break osc extent"
4052
4053 test_50() {
4054         # bug 1485
4055         test_mkdir $DIR/$tdir
4056         cd $DIR/$tdir
4057         ls /proc/$$/cwd || error "ls /proc/$$/cwd failed"
4058 }
4059 run_test 50 "special situations: /proc symlinks  ==============="
4060
4061 test_51a() {    # was test_51
4062         # bug 1516 - create an empty entry right after ".." then split dir
4063         test_mkdir -c1 $DIR/$tdir
4064         touch $DIR/$tdir/foo
4065         $MCREATE $DIR/$tdir/bar
4066         rm $DIR/$tdir/foo
4067         createmany -m $DIR/$tdir/longfile 201
4068         FNUM=202
4069         while [[ $(ls -sd $DIR/$tdir | awk '{ print $1 }') -eq 4 ]]; do
4070                 $MCREATE $DIR/$tdir/longfile$FNUM
4071                 FNUM=$(($FNUM + 1))
4072                 echo -n "+"
4073         done
4074         echo
4075         ls -l $DIR/$tdir > /dev/null || error "ls -l $DIR/$tdir failed"
4076 }
4077 run_test 51a "special situations: split htree with empty entry =="
4078
4079 test_51b() {
4080         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4081         local dir=$DIR/$tdir
4082
4083         local nrdirs=$((65536 + 100))
4084
4085         # cleanup the directory
4086         rm -fr $dir
4087
4088         test_mkdir -p -c1 $dir
4089
4090         $LFS df
4091         $LFS df -i
4092         local mdtidx=$(printf "%04x" $($LFS getstripe -M $dir))
4093         local numfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.filesfree)
4094         [[ $numfree -lt $nrdirs ]] &&
4095                 skip "not enough free inodes ($numfree) on MDT$mdtidx" &&
4096                 return
4097
4098         # need to check free space for the directories as well
4099         local blkfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.kbytesavail)
4100         numfree=$((blkfree / 4))
4101         [[ $numfree -lt $nrdirs ]] && skip "not enough blocks ($numfree)" &&
4102                 return
4103
4104         # create files
4105         createmany -d $dir/d $nrdirs ||
4106                 error "failed to create $nrdirs subdirs in MDT$mdtidx:$dir"
4107
4108         # really created :
4109         nrdirs=$(ls -U $dir | wc -l)
4110
4111         # unlink all but 100 subdirectories, then check it still works
4112         local left=100
4113         local delete=$((nrdirs - left))
4114
4115         # for ldiskfs the nlink count should be 1, but this is OSD specific
4116         # and so this is listed for informational purposes only
4117         echo "nlink before: $(stat -c %h $dir), created before: $nrdirs"
4118         unlinkmany -d $dir/d $delete ||
4119                 error "unlink of first $delete subdirs failed"
4120
4121         echo "nlink between: $(stat -c %h $dir)"
4122         local found=$(ls -U $dir | wc -l)
4123         [ $found -ne $left ] &&
4124                 error "can't find subdirs: found only $found, expected $left"
4125
4126         unlinkmany -d $dir/d $delete $left ||
4127                 error "unlink of second $left subdirs failed"
4128         # regardless of whether the backing filesystem tracks nlink accurately
4129         # or not, the nlink count shouldn't be more than "." and ".." here
4130         local after=$(stat -c %h $dir)
4131         [[ $after -gt 2 ]] && error "nlink after: $after > 2" ||
4132                 echo "nlink after: $after"
4133 }
4134 run_test 51b "exceed 64k subdirectory nlink limit on create, verify unlink"
4135
4136 test_51d() {
4137         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4138         [[ $OSTCOUNT -lt 3 ]] &&
4139                 skip_env "skipping test with few OSTs" && return
4140         test_mkdir -p $DIR/$tdir
4141         createmany -o $DIR/$tdir/t- 1000
4142         $GETSTRIPE $DIR/$tdir > $TMP/$tfile
4143         for N in $(seq 0 $((OSTCOUNT - 1))); do
4144                 OBJS[$N]=$(awk -vobjs=0 '($1 == '$N') { objs += 1 } \
4145                         END { printf("%0.0f", objs) }' $TMP/$tfile)
4146                 OBJS0[$N]=$(grep -A 1 idx $TMP/$tfile | awk -vobjs=0 \
4147                         '($1 == '$N') { objs += 1 } \
4148                         END { printf("%0.0f", objs) }')
4149                 log "OST$N has ${OBJS[$N]} objects, ${OBJS0[$N]} are index 0"
4150         done
4151         unlinkmany $DIR/$tdir/t- 1000
4152
4153         NLAST=0
4154         for N in $(seq 1 $((OSTCOUNT - 1))); do
4155                 [[ ${OBJS[$N]} -lt $((${OBJS[$NLAST]} - 20)) ]] &&
4156                         error "OST $N has less objects vs OST $NLAST" \
4157                               " (${OBJS[$N]} < ${OBJS[$NLAST]}"
4158                 [[ ${OBJS[$N]} -gt $((${OBJS[$NLAST]} + 20)) ]] &&
4159                         error "OST $N has less objects vs OST $NLAST" \
4160                               " (${OBJS[$N]} < ${OBJS[$NLAST]}"
4161
4162                 [[ ${OBJS0[$N]} -lt $((${OBJS0[$NLAST]} - 20)) ]] &&
4163                         error "OST $N has less #0 objects vs OST $NLAST" \
4164                               " (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
4165                 [[ ${OBJS0[$N]} -gt $((${OBJS0[$NLAST]} + 20)) ]] &&
4166                         error "OST $N has less #0 objects vs OST $NLAST" \
4167                               " (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
4168                 NLAST=$N
4169         done
4170         rm -f $TMP/$tfile
4171 }
4172 run_test 51d "check object distribution"
4173
4174 test_51e() {
4175         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
4176                 skip "Only applicable to ldiskfs-based MDTs"
4177                 return
4178         fi
4179
4180         test_mkdir -c1 $DIR/$tdir       || error "create $tdir failed"
4181         test_mkdir -c1 $DIR/$tdir/d0    || error "create d0 failed"
4182
4183         touch $DIR/$tdir/d0/foo
4184         createmany -l $DIR/$tdir/d0/foo $DIR/$tdir/d0/f- 65001 &&
4185                 error "file exceed 65000 nlink limit!"
4186         unlinkmany $DIR/$tdir/d0/f- 65001
4187         return 0
4188 }
4189 run_test 51e "check file nlink limit"
4190
4191 test_52a() {
4192         [ -f $DIR/$tdir/foo ] && chattr -a $DIR/$tdir/foo
4193         test_mkdir -p $DIR/$tdir
4194         touch $DIR/$tdir/foo
4195         chattr +a $DIR/$tdir/foo || error "chattr +a failed"
4196         echo bar >> $DIR/$tdir/foo || error "append bar failed"
4197         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
4198         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
4199         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
4200                                         error "link worked"
4201         echo foo >> $DIR/$tdir/foo || error "append foo failed"
4202         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
4203         lsattr $DIR/$tdir/foo | egrep -q "^-+a[-e]+ $DIR/$tdir/foo" ||
4204                                                      error "lsattr"
4205         chattr -a $DIR/$tdir/foo || error "chattr -a failed"
4206         cp -r $DIR/$tdir $TMP/
4207         rm -fr $DIR/$tdir $TMP/$tdir || error "cleanup rm failed"
4208 }
4209 run_test 52a "append-only flag test (should return errors)"
4210
4211 test_52b() {
4212         [ -f $DIR/$tdir/foo ] && chattr -i $DIR/$tdir/foo
4213         test_mkdir -p $DIR/$tdir
4214         touch $DIR/$tdir/foo
4215         chattr +i $DIR/$tdir/foo || error "chattr +i failed"
4216         cat test > $DIR/$tdir/foo && error "cat test worked"
4217         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
4218         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
4219         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
4220                                         error "link worked"
4221         echo foo >> $DIR/$tdir/foo && error "echo worked"
4222         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
4223         [ -f $DIR/$tdir/foo ] || error "$tdir/foo is not a file"
4224         [ -f $DIR/$tdir/foo_ren ] && error "$tdir/foo_ren is not a file"
4225         lsattr $DIR/$tdir/foo | egrep -q "^-+i[-e]+ $DIR/$tdir/foo" ||
4226                                                         error "lsattr"
4227         chattr -i $DIR/$tdir/foo || error "chattr failed"
4228
4229         rm -fr $DIR/$tdir || error "unable to remove $DIR/$tdir"
4230 }
4231 run_test 52b "immutable flag test (should return errors) ======="
4232
4233 test_53() {
4234         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4235         remote_mds_nodsh && skip "remote MDS with nodsh" && return
4236         remote_ost_nodsh && skip "remote OST with nodsh" && return
4237
4238         local param
4239         local param_seq
4240         local ostname
4241         local mds_last
4242         local mds_last_seq
4243         local ost_last
4244         local ost_last_seq
4245         local ost_last_id
4246         local ostnum
4247         local node
4248         local found=false
4249         local support_last_seq=true
4250
4251         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.60) ]] ||
4252                 support_last_seq=false
4253
4254         # only test MDT0000
4255         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS)
4256         local value
4257         for value in $(do_facet $SINGLEMDS \
4258                        $LCTL get_param osc.$mdtosc.prealloc_last_id) ; do
4259                 param=$(echo ${value[0]} | cut -d "=" -f1)
4260                 ostname=$(echo $param | cut -d "." -f2 | cut -d - -f 1-2)
4261
4262                 if $support_last_seq; then
4263                         param_seq=$(echo $param |
4264                                 sed -e s/prealloc_last_id/prealloc_last_seq/g)
4265                         mds_last_seq=$(do_facet $SINGLEMDS \
4266                                        $LCTL get_param -n $param_seq)
4267                 fi
4268                 mds_last=$(do_facet $SINGLEMDS $LCTL get_param -n $param)
4269
4270                 ostnum=$(index_from_ostuuid ${ostname}_UUID)
4271                 node=$(facet_active_host ost$((ostnum+1)))
4272                 param="obdfilter.$ostname.last_id"
4273                 for ost_last in $(do_node $node $LCTL get_param -n $param) ; do
4274                         echo "$ostname.last_id=$ost_last; MDS.last_id=$mds_last"
4275                         ost_last_id=$ost_last
4276
4277                         if $support_last_seq; then
4278                                 ost_last_id=$(echo $ost_last |
4279                                               awk -F':' '{print $2}' |
4280                                               sed -e "s/^0x//g")
4281                                 ost_last_seq=$(echo $ost_last |
4282                                                awk -F':' '{print $1}')
4283                                 [[ $ost_last_seq = $mds_last_seq ]] || continue
4284                         fi
4285
4286                         if [[ $ost_last_id != $mds_last ]]; then
4287                                 error "$ost_last_id != $mds_last"
4288                         else
4289                                 found=true
4290                                 break
4291                         fi
4292                 done
4293         done
4294         $found || error "can not match last_seq/last_id for $mdtosc"
4295         return 0
4296 }
4297 run_test 53 "verify that MDS and OSTs agree on pre-creation ===="
4298
4299 test_54a() {
4300         $SOCKETSERVER $DIR/socket ||
4301                 error "$SOCKETSERVER $DIR/socket failed: $?"
4302         $SOCKETCLIENT $DIR/socket ||
4303                 error "$SOCKETCLIENT $DIR/socket failed: $?"
4304         $MUNLINK $DIR/socket || error "$MUNLINK $DIR/socket failed: $?"
4305 }
4306 run_test 54a "unix domain socket test =========================="
4307
4308 test_54b() {
4309         f="$DIR/f54b"
4310         mknod $f c 1 3
4311         chmod 0666 $f
4312         dd if=/dev/zero of=$f bs=$(page_size) count=1
4313 }
4314 run_test 54b "char device works in lustre ======================"
4315
4316 find_loop_dev() {
4317         [ -b /dev/loop/0 ] && LOOPBASE=/dev/loop/
4318         [ -b /dev/loop0 ] && LOOPBASE=/dev/loop
4319         [ -z "$LOOPBASE" ] && echo "/dev/loop/0 and /dev/loop0 gone?" && return
4320
4321         for i in $(seq 3 7); do
4322                 losetup $LOOPBASE$i > /dev/null 2>&1 && continue
4323                 LOOPDEV=$LOOPBASE$i
4324                 LOOPNUM=$i
4325                 break
4326         done
4327 }
4328
4329 cleanup_54c() {
4330         loopdev="$DIR/loop54c"
4331
4332         trap 0
4333         $UMOUNT $DIR/$tdir || rc=$?
4334         losetup -d $loopdev || true
4335         losetup -d $LOOPDEV || true
4336         rm -rf $loopdev $DIR/$tfile $DIR/$tdir
4337         return $rc
4338 }
4339
4340 test_54c() {
4341         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4342         loopdev="$DIR/loop54c"
4343
4344         find_loop_dev
4345         [ -z "$LOOPNUM" ] && echo "couldn't find empty loop device" && return
4346         trap cleanup_54c EXIT
4347         mknod $loopdev b 7 $LOOPNUM
4348         echo "make a loop file system with $DIR/$tfile on $loopdev ($LOOPNUM)."
4349         dd if=/dev/zero of=$DIR/$tfile bs=$(get_page_size client) seek=1024 count=1 > /dev/null
4350         losetup $loopdev $DIR/$tfile ||
4351                 error "can't set up $loopdev for $DIR/$tfile"
4352         mkfs.ext2 $loopdev || error "mke2fs on $loopdev"
4353         test_mkdir -p $DIR/$tdir
4354         mount -t ext2 $loopdev $DIR/$tdir ||
4355                 error "error mounting $loopdev on $DIR/$tdir"
4356         dd if=/dev/zero of=$DIR/$tdir/tmp bs=$(get_page_size client) count=30 ||
4357                 error "dd write"
4358         df $DIR/$tdir
4359         dd if=$DIR/$tdir/tmp of=/dev/zero bs=$(get_page_size client) count=30 ||
4360                 error "dd read"
4361         cleanup_54c
4362 }
4363 run_test 54c "block device works in lustre ====================="
4364
4365 test_54d() {
4366         f="$DIR/f54d"
4367         string="aaaaaa"
4368         mknod $f p
4369         [ "$string" = $(echo $string > $f | cat $f) ] || error "$f != $string"
4370 }
4371 run_test 54d "fifo device works in lustre ======================"
4372
4373 test_54e() {
4374         f="$DIR/f54e"
4375         string="aaaaaa"
4376         cp -aL /dev/console $f
4377         echo $string > $f || error "echo $string to $f failed"
4378 }
4379 run_test 54e "console/tty device works in lustre ======================"
4380
4381 #The test_55 used to be iopen test and it was removed by bz#24037.
4382 #run_test 55 "check iopen_connect_dentry() ======================"
4383
4384 test_56a() {    # was test_56
4385         rm -rf $DIR/$tdir
4386         $SETSTRIPE -d $DIR
4387         test_mkdir -p $DIR/$tdir/dir
4388         NUMFILES=3
4389         NUMFILESx2=$(($NUMFILES * 2))
4390         for i in $(seq 1 $NUMFILES); do
4391                 touch $DIR/$tdir/file$i
4392                 touch $DIR/$tdir/dir/file$i
4393         done
4394
4395         # test lfs getstripe with --recursive
4396         FILENUM=$($GETSTRIPE --recursive $DIR/$tdir | grep -c obdidx)
4397         [[ $FILENUM -eq $NUMFILESx2 ]] ||
4398                 error "$GETSTRIPE --recursive: found $FILENUM, not $NUMFILESx2"
4399         FILENUM=$($GETSTRIPE $DIR/$tdir | grep -c obdidx)
4400         [[ $FILENUM -eq $NUMFILES ]] ||
4401                 error "$GETSTRIPE $DIR/$tdir: found $FILENUM, not $NUMFILES"
4402         echo "$GETSTRIPE --recursive passed."
4403
4404         # test lfs getstripe with file instead of dir
4405         FILENUM=$($GETSTRIPE $DIR/$tdir/file1 | grep -c obdidx)
4406         [[ $FILENUM -eq 1 ]] ||
4407                 error "$GETSTRIPE $DIR/$tdir/file1: found $FILENUM, not 1"
4408         echo "$GETSTRIPE file1 passed."
4409
4410         #test lfs getstripe with --verbose
4411         [[ $($GETSTRIPE --verbose $DIR/$tdir |
4412                 grep -c lmm_magic) -eq $NUMFILES ]] ||
4413                 error "$GETSTRIPE --verbose $DIR/$tdir: want $NUMFILES"
4414         [[ $($GETSTRIPE $DIR/$tdir | grep -c lmm_magic) -eq 0 ]] ||
4415                 rror "$GETSTRIPE $DIR/$tdir: showed lmm_magic"
4416         echo "$GETSTRIPE --verbose passed."
4417
4418         #test lfs getstripe with --obd
4419         $GETSTRIPE --obd wrong_uuid $DIR/$tdir 2>&1 |
4420                 grep -q "unknown obduuid" ||
4421                 error "$GETSTRIPE --obd wrong_uuid should return error message"
4422
4423         [[ $OSTCOUNT -lt 2 ]] &&
4424                 skip_env "skipping other $GETSTRIPE --obd test" && return
4425
4426         OSTIDX=1
4427         OBDUUID=$(ostuuid_from_index $OSTIDX)
4428         FILENUM=$($GETSTRIPE -ir $DIR/$tdir | grep "^$OSTIDX\$" | wc -l)
4429         FOUND=$($GETSTRIPE -r --obd $OBDUUID $DIR/$tdir | grep obdidx | wc -l)
4430         [[ $FOUND -eq $FILENUM ]] ||
4431                 error "$GETSTRIPE --obd wrong: found $FOUND, expected $FILENUM"
4432         [[ $($GETSTRIPE -r -v --obd $OBDUUID $DIR/$tdir |
4433                 sed '/^[         ]*'${OSTIDX}'[  ]/d' |
4434                 sed -n '/^[      ]*[0-9][0-9]*[  ]/p' | wc -l) -eq 0 ]] ||
4435                 error "$GETSTRIPE --obd: should not show file on other obd"
4436         echo "$GETSTRIPE --obd passed"
4437 }
4438 run_test 56a "check $GETSTRIPE"
4439
4440 NUMFILES=3
4441 NUMDIRS=3
4442 setup_56() {
4443         local LOCAL_NUMFILES="$1"
4444         local LOCAL_NUMDIRS="$2"
4445         local MKDIR_PARAMS="$3"
4446         local DIR_STRIPE_PARAMS="$4"
4447
4448         if [ ! -d "$TDIR" ] ; then
4449                 test_mkdir -p $DIR_STRIPE_PARAMS $TDIR
4450                 [ "$MKDIR_PARAMS" ] && $SETSTRIPE $MKDIR_PARAMS $TDIR
4451                 for i in `seq 1 $LOCAL_NUMFILES` ; do
4452                         touch $TDIR/file$i
4453                 done
4454                 for i in `seq 1 $LOCAL_NUMDIRS` ; do
4455                         test_mkdir $DIR_STRIPE_PARAMS $TDIR/dir$i
4456                         for j in `seq 1 $LOCAL_NUMFILES` ; do
4457                                 touch $TDIR/dir$i/file$j
4458                         done
4459                 done
4460         fi
4461 }
4462
4463 setup_56_special() {
4464         LOCAL_NUMFILES=$1
4465         LOCAL_NUMDIRS=$2
4466         setup_56 $1 $2
4467         if [ ! -e "$TDIR/loop1b" ] ; then
4468                 for i in `seq 1 $LOCAL_NUMFILES` ; do
4469                         mknod $TDIR/loop${i}b b 7 $i
4470                         mknod $TDIR/null${i}c c 1 3
4471                         ln -s $TDIR/file1 $TDIR/link${i}l
4472                 done
4473                 for i in `seq 1 $LOCAL_NUMDIRS` ; do
4474                         mknod $TDIR/dir$i/loop${i}b b 7 $i
4475                         mknod $TDIR/dir$i/null${i}c c 1 3
4476                         ln -s $TDIR/dir$i/file1 $TDIR/dir$i/link${i}l
4477                 done
4478         fi
4479 }
4480
4481 test_56g() {
4482         $SETSTRIPE -d $DIR
4483
4484         TDIR=$DIR/${tdir}g
4485         setup_56 $NUMFILES $NUMDIRS
4486
4487         EXPECTED=$(($NUMDIRS + 2))
4488         # test lfs find with -name
4489         for i in $(seq 1 $NUMFILES) ; do
4490                 NUMS=$($LFIND -name "*$i" $TDIR | wc -l)
4491                 [ $NUMS -eq $EXPECTED ] ||
4492                         error "lfs find -name \"*$i\" $TDIR wrong: "\
4493                               "found $NUMS, expected $EXPECTED"
4494         done
4495 }
4496 run_test 56g "check lfs find -name ============================="
4497
4498 test_56h() {
4499         $SETSTRIPE -d $DIR
4500
4501         TDIR=$DIR/${tdir}g
4502         setup_56 $NUMFILES $NUMDIRS
4503
4504         EXPECTED=$(((NUMDIRS + 1) * (NUMFILES - 1) + NUMFILES))
4505         # test lfs find with ! -name
4506         for i in $(seq 1 $NUMFILES) ; do
4507                 NUMS=$($LFIND ! -name "*$i" $TDIR | wc -l)
4508                 [ $NUMS -eq $EXPECTED ] ||
4509                         error "lfs find ! -name \"*$i\" $TDIR wrong: "\
4510                               "found $NUMS, expected $EXPECTED"
4511         done
4512 }
4513 run_test 56h "check lfs find ! -name ============================="
4514
4515 test_56i() {
4516        tdir=${tdir}i
4517        test_mkdir -p $DIR/$tdir
4518        UUID=$(ostuuid_from_index 0 $DIR/$tdir)
4519        CMD="$LFIND -ost $UUID $DIR/$tdir"
4520        OUT=$($CMD)
4521        [ -z "$OUT" ] || error "\"$CMD\" returned directory '$OUT'"
4522 }
4523 run_test 56i "check 'lfs find -ost UUID' skips directories ======="
4524
4525 test_56j() {
4526         TDIR=$DIR/${tdir}g
4527         setup_56_special $NUMFILES $NUMDIRS
4528
4529         EXPECTED=$((NUMDIRS + 1))
4530         CMD="$LFIND -type d $TDIR"
4531         NUMS=$($CMD | wc -l)
4532         [ $NUMS -eq $EXPECTED ] ||
4533                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4534 }
4535 run_test 56j "check lfs find -type d ============================="
4536
4537 test_56k() {
4538         TDIR=$DIR/${tdir}g
4539         setup_56_special $NUMFILES $NUMDIRS
4540
4541         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4542         CMD="$LFIND -type f $TDIR"
4543         NUMS=$($CMD | wc -l)
4544         [ $NUMS -eq $EXPECTED ] ||
4545                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4546 }
4547 run_test 56k "check lfs find -type f ============================="
4548
4549 test_56l() {
4550         TDIR=$DIR/${tdir}g
4551         setup_56_special $NUMFILES $NUMDIRS
4552
4553         EXPECTED=$((NUMDIRS + NUMFILES))
4554         CMD="$LFIND -type b $TDIR"
4555         NUMS=$($CMD | wc -l)
4556         [ $NUMS -eq $EXPECTED ] ||
4557                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4558 }
4559 run_test 56l "check lfs find -type b ============================="
4560
4561 test_56m() {
4562         TDIR=$DIR/${tdir}g
4563         setup_56_special $NUMFILES $NUMDIRS
4564
4565         EXPECTED=$((NUMDIRS + NUMFILES))
4566         CMD="$LFIND -type c $TDIR"
4567         NUMS=$($CMD | wc -l)
4568         [ $NUMS -eq $EXPECTED ] ||
4569                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4570 }
4571 run_test 56m "check lfs find -type c ============================="
4572
4573 test_56n() {
4574         TDIR=$DIR/${tdir}g
4575         setup_56_special $NUMFILES $NUMDIRS
4576
4577         EXPECTED=$((NUMDIRS + NUMFILES))
4578         CMD="$LFIND -type l $TDIR"
4579         NUMS=$($CMD | wc -l)
4580         [ $NUMS -eq $EXPECTED ] ||
4581                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4582 }
4583 run_test 56n "check lfs find -type l ============================="
4584
4585 test_56o() {
4586         TDIR=$DIR/${tdir}o
4587         setup_56 $NUMFILES $NUMDIRS
4588         utime $TDIR/file1 > /dev/null || error "utime (1)"
4589         utime $TDIR/file2 > /dev/null || error "utime (2)"
4590         utime $TDIR/dir1 > /dev/null || error "utime (3)"
4591         utime $TDIR/dir2 > /dev/null || error "utime (4)"
4592         utime $TDIR/dir1/file1 > /dev/null || error "utime (5)"
4593         dd if=/dev/zero count=1 >> $TDIR/dir1/file1 && sync
4594
4595         EXPECTED=4
4596         NUMS=`$LFIND -mtime +0 $TDIR | wc -l`
4597         [ $NUMS -eq $EXPECTED ] || \
4598                 error "lfs find -mtime +0 $TDIR wrong: found $NUMS, expected $EXPECTED"
4599
4600         EXPECTED=12
4601         CMD="$LFIND -mtime 0 $TDIR"
4602         NUMS=$($CMD | wc -l)
4603         [ $NUMS -eq $EXPECTED ] ||
4604                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4605 }
4606 run_test 56o "check lfs find -mtime for old files =========================="
4607
4608 test_56p() {
4609         [ $RUNAS_ID -eq $UID ] &&
4610                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
4611
4612         TDIR=$DIR/${tdir}p
4613         setup_56 $NUMFILES $NUMDIRS
4614
4615         chown $RUNAS_ID $TDIR/file* || error "chown $DIR/${tdir}g/file$i failed"
4616         EXPECTED=$NUMFILES
4617         CMD="$LFIND -uid $RUNAS_ID $TDIR"
4618         NUMS=$($CMD | wc -l)
4619         [ $NUMS -eq $EXPECTED ] || \
4620                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4621
4622         EXPECTED=$(((NUMFILES + 1) * NUMDIRS + 1))
4623         CMD="$LFIND ! -uid $RUNAS_ID $TDIR"
4624         NUMS=$($CMD | wc -l)
4625         [ $NUMS -eq $EXPECTED ] || \
4626                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4627 }
4628 run_test 56p "check lfs find -uid and ! -uid ==============================="
4629
4630 test_56q() {
4631         [ $RUNAS_ID -eq $UID ] &&
4632                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
4633
4634         TDIR=$DIR/${tdir}q
4635         setup_56 $NUMFILES $NUMDIRS
4636
4637         chgrp $RUNAS_GID $TDIR/file* || error "chown $TDIR/file$i failed"
4638
4639         EXPECTED=$NUMFILES
4640         CMD="$LFIND -gid $RUNAS_GID $TDIR"
4641         NUMS=$($CMD | wc -l)
4642         [ $NUMS -eq $EXPECTED ] ||
4643                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4644
4645         EXPECTED=$(( ($NUMFILES+1) * $NUMDIRS + 1))
4646         CMD="$LFIND ! -gid $RUNAS_GID $TDIR"
4647         NUMS=$($CMD | wc -l)
4648         [ $NUMS -eq $EXPECTED ] ||
4649                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4650 }
4651 run_test 56q "check lfs find -gid and ! -gid ==============================="
4652
4653 test_56r() {
4654         TDIR=$DIR/${tdir}r
4655         setup_56 $NUMFILES $NUMDIRS
4656
4657         EXPECTED=12
4658         CMD="$LFIND -size 0 -type f $TDIR"
4659         NUMS=$($CMD | wc -l)
4660         [ $NUMS -eq $EXPECTED ] ||
4661                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4662         EXPECTED=0
4663         CMD="$LFIND ! -size 0 -type f $TDIR"
4664         NUMS=$($CMD | wc -l)
4665         [ $NUMS -eq $EXPECTED ] ||
4666                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4667         echo "test" > $TDIR/$tfile
4668         echo "test2" > $TDIR/$tfile.2 && sync
4669         EXPECTED=1
4670         CMD="$LFIND -size 5 -type f $TDIR"
4671         NUMS=$($CMD | wc -l)
4672         [ $NUMS -eq $EXPECTED ] ||
4673                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4674         EXPECTED=1
4675         CMD="$LFIND -size +5 -type f $TDIR"
4676         NUMS=$($CMD | wc -l)
4677         [ $NUMS -eq $EXPECTED ] ||
4678                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4679         EXPECTED=2
4680         CMD="$LFIND -size +0 -type f $TDIR"
4681         NUMS=$($CMD | wc -l)
4682         [ $NUMS -eq $EXPECTED ] ||
4683                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4684         EXPECTED=2
4685         CMD="$LFIND ! -size -5 -type f $TDIR"
4686         NUMS=$($CMD | wc -l)
4687         [ $NUMS -eq $EXPECTED ] ||
4688                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4689         EXPECTED=12
4690         CMD="$LFIND -size -5 -type f $TDIR"
4691         NUMS=$($CMD | wc -l)
4692         [ $NUMS -eq $EXPECTED ] ||
4693                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4694 }
4695 run_test 56r "check lfs find -size works =========================="
4696
4697 test_56s() { # LU-611
4698         TDIR=$DIR/${tdir}s
4699         setup_56 $NUMFILES $NUMDIRS "-c $OSTCOUNT"
4700
4701         if [[ $OSTCOUNT -gt 1 ]]; then
4702                 $SETSTRIPE -c 1 $TDIR/$tfile.{0,1,2,3}
4703                 ONESTRIPE=4
4704                 EXTRA=4
4705         else
4706                 ONESTRIPE=$(((NUMDIRS + 1) * NUMFILES))
4707                 EXTRA=0
4708         fi
4709
4710         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4711         CMD="$LFIND -stripe-count $OSTCOUNT -type f $TDIR"
4712         NUMS=$($CMD | wc -l)
4713         [ $NUMS -eq $EXPECTED ] || {
4714                 $GETSTRIPE -R $TDIR
4715                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4716         }
4717
4718         EXPECTED=$(((NUMDIRS + 1) * NUMFILES + EXTRA))
4719         CMD="$LFIND -stripe-count +0 -type f $TDIR"
4720         NUMS=$($CMD | wc -l)
4721         [ $NUMS -eq $EXPECTED ] || {
4722                 $GETSTRIPE -R $TDIR
4723                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4724         }
4725
4726         EXPECTED=$ONESTRIPE
4727         CMD="$LFIND -stripe-count 1 -type f $TDIR"
4728         NUMS=$($CMD | wc -l)
4729         [ $NUMS -eq $EXPECTED ] || {
4730                 $GETSTRIPE -R $TDIR
4731                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4732         }
4733
4734         CMD="$LFIND -stripe-count -2 -type f $TDIR"
4735         NUMS=$($CMD | wc -l)
4736         [ $NUMS -eq $EXPECTED ] || {
4737                 $GETSTRIPE -R $TDIR
4738                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4739         }
4740
4741         EXPECTED=0
4742         CMD="$LFIND -stripe-count $((OSTCOUNT + 1)) -type f $TDIR"
4743         NUMS=$($CMD | wc -l)
4744         [ $NUMS -eq $EXPECTED ] || {
4745                 $GETSTRIPE -R $TDIR
4746                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4747         }
4748 }
4749 run_test 56s "check lfs find -stripe-count works"
4750
4751 test_56t() { # LU-611
4752         TDIR=$DIR/${tdir}t
4753         setup_56 $NUMFILES $NUMDIRS "-s 512k"
4754
4755         $SETSTRIPE -S 256k $TDIR/$tfile.{0,1,2,3}
4756
4757         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4758         CMD="$LFIND -stripe-size 512k -type f $TDIR"
4759         NUMS=$($CMD | wc -l)
4760         [ $NUMS -eq $EXPECTED ] ||
4761                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4762
4763         CMD="$LFIND -stripe-size +320k -type f $TDIR"
4764         NUMS=$($CMD | wc -l)
4765         [ $NUMS -eq $EXPECTED ] ||
4766                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4767
4768         EXPECTED=$(((NUMDIRS + 1) * NUMFILES + 4))
4769         CMD="$LFIND -stripe-size +200k -type f $TDIR"
4770         NUMS=$($CMD | wc -l)
4771         [ $NUMS -eq $EXPECTED ] ||
4772                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4773
4774         CMD="$LFIND -stripe-size -640k -type f $TDIR"
4775         NUMS=$($CMD | wc -l)
4776         [ $NUMS -eq $EXPECTED ] ||
4777                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4778
4779         EXPECTED=4
4780         CMD="$LFIND -stripe-size 256k -type f $TDIR"
4781         NUMS=$($CMD | wc -l)
4782         [ $NUMS -eq $EXPECTED ] ||
4783                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4784
4785         CMD="$LFIND -stripe-size -320k -type f $TDIR"
4786         NUMS=$($CMD | wc -l)
4787         [ $NUMS -eq $EXPECTED ] ||
4788                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4789
4790         EXPECTED=0
4791         CMD="$LFIND -stripe-size 1024k -type f $TDIR"
4792         NUMS=$($CMD | wc -l)
4793         [ $NUMS -eq $EXPECTED ] ||
4794                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4795 }
4796 run_test 56t "check lfs find -stripe-size works"
4797
4798 test_56u() { # LU-611
4799         TDIR=$DIR/${tdir}u
4800         setup_56 $NUMFILES $NUMDIRS "-i 0"
4801
4802         if [[ $OSTCOUNT -gt 1 ]]; then
4803                 $SETSTRIPE -i 1 $TDIR/$tfile.{0,1,2,3}
4804                 ONESTRIPE=4
4805         else
4806                 ONESTRIPE=0
4807         fi
4808
4809         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4810         CMD="$LFIND -stripe-index 0 -type f $TDIR"
4811         NUMS=$($CMD | wc -l)
4812         [ $NUMS -eq $EXPECTED ] ||
4813                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4814
4815         EXPECTED=$ONESTRIPE
4816         CMD="$LFIND -stripe-index 1 -type f $TDIR"
4817         NUMS=$($CMD | wc -l)
4818         [ $NUMS -eq $EXPECTED ] ||
4819                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4820
4821         CMD="$LFIND ! -stripe-index 0 -type f $TDIR"
4822         NUMS=$($CMD | wc -l)
4823         [ $NUMS -eq $EXPECTED ] ||
4824                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4825
4826         EXPECTED=0
4827         # This should produce an error and not return any files
4828         CMD="$LFIND -stripe-index $OSTCOUNT -type f $TDIR"
4829         NUMS=$($CMD 2>/dev/null | wc -l)
4830         [ $NUMS -eq $EXPECTED ] ||
4831                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4832
4833         if [[ $OSTCOUNT -gt 1 ]]; then
4834                 EXPECTED=$(((NUMDIRS + 1) * NUMFILES + ONESTRIPE))
4835                 CMD="$LFIND -stripe-index 0,1 -type f $TDIR"
4836                 NUMS=$($CMD | wc -l)
4837                 [ $NUMS -eq $EXPECTED ] ||
4838                         error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4839         fi
4840 }
4841 run_test 56u "check lfs find -stripe-index works"
4842
4843 test_56v() {
4844     local MDT_IDX=0
4845
4846     TDIR=$DIR/${tdir}v
4847     rm -rf $TDIR
4848     setup_56 $NUMFILES $NUMDIRS
4849
4850     UUID=$(mdtuuid_from_index $MDT_IDX $TDIR)
4851     [ -z "$UUID" ] && error "mdtuuid_from_index cannot find MDT index $MDT_IDX"
4852
4853     for file in $($LFIND -mdt $UUID $TDIR); do
4854         file_mdt_idx=$($GETSTRIPE -M $file)
4855         [ $file_mdt_idx -eq $MDT_IDX ] ||
4856             error "'lfind -mdt $UUID' != 'getstripe -M' ($file_mdt_idx)"
4857     done
4858 }
4859 run_test 56v "check 'lfs find -mdt match with lfs getstripe -M' ======="
4860
4861 test_56w() {
4862         [[ $OSTCOUNT -lt 2 ]] && skip_env "$OSTCOUNT < 2 OSTs -- skipping" &&
4863                 return
4864         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4865         TDIR=$DIR/${tdir}w
4866
4867     rm -rf $TDIR || error "remove $TDIR failed"
4868     setup_56 $NUMFILES $NUMDIRS "-c $OSTCOUNT" "-c1"
4869
4870     local stripe_size
4871     stripe_size=$($GETSTRIPE -S -d $TDIR) ||
4872         error "$GETSTRIPE -S -d $TDIR failed"
4873     stripe_size=${stripe_size%% *}
4874
4875     local file_size=$((stripe_size * OSTCOUNT))
4876     local file_num=$((NUMDIRS * NUMFILES + NUMFILES))
4877     local required_space=$((file_num * file_size))
4878
4879     local free_space=$($LCTL get_param -n lov.$FSNAME-clilov-*.kbytesavail |
4880                         head -n1)
4881     [[ $free_space -le $((required_space / 1024)) ]] &&
4882         skip_env "need at least $required_space bytes free space," \
4883                  "have $free_space kbytes" && return
4884
4885     local dd_bs=65536
4886     local dd_count=$((file_size / dd_bs))
4887
4888     # write data into the files
4889     local i
4890     local j
4891     local file
4892     for i in $(seq 1 $NUMFILES); do
4893         file=$TDIR/file$i
4894         yes | dd bs=$dd_bs count=$dd_count of=$file >/dev/null 2>&1 ||
4895             error "write data into $file failed"
4896     done
4897     for i in $(seq 1 $NUMDIRS); do
4898         for j in $(seq 1 $NUMFILES); do
4899             file=$TDIR/dir$i/file$j
4900             yes | dd bs=$dd_bs count=$dd_count of=$file \
4901                 >/dev/null 2>&1 ||
4902                 error "write data into $file failed"
4903         done
4904     done
4905
4906     local expected=-1
4907     [[ $OSTCOUNT -gt 1 ]] && expected=$((OSTCOUNT - 1))
4908
4909     # lfs_migrate file
4910     local cmd="$LFS_MIGRATE -y -c $expected $TDIR/file1"
4911     echo "$cmd"
4912     eval $cmd || error "$cmd failed"
4913
4914     check_stripe_count $TDIR/file1 $expected
4915
4916         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.90) ];
4917         then
4918                 # lfs_migrate file onto OST 0 if it is on OST 1, or onto
4919                 # OST 1 if it is on OST 0. This file is small enough to
4920                 # be on only one stripe.
4921                 file=$TDIR/migr_1_ost
4922                 dd bs=$dd_bs count=1 if=/dev/urandom of=$file >/dev/null 2>&1 ||
4923                         error "write data into $file failed"
4924                 local obdidx=$($LFS getstripe -i $file)
4925                 local oldmd5=$(md5sum $file)
4926                 local newobdidx=0
4927                 [[ $obdidx -eq 0 ]] && newobdidx=1
4928                 cmd="$LFS migrate -i $newobdidx $file"
4929                 echo $cmd
4930                 eval $cmd || error "$cmd failed"
4931                 local realobdix=$($LFS getstripe -i $file)
4932                 local newmd5=$(md5sum $file)
4933                 [[ $newobdidx -ne $realobdix ]] &&
4934                         error "new OST is different (was=$obdidx, wanted=$newobdidx, got=$realobdix)"
4935                 [[ "$oldmd5" != "$newmd5" ]] &&
4936                         error "md5sum differ: $oldmd5, $newmd5"
4937         fi
4938
4939     # lfs_migrate dir
4940     cmd="$LFS_MIGRATE -y -c $expected $TDIR/dir1"
4941     echo "$cmd"
4942     eval $cmd || error "$cmd failed"
4943
4944     for j in $(seq 1 $NUMFILES); do
4945         check_stripe_count $TDIR/dir1/file$j $expected
4946     done
4947
4948     # lfs_migrate works with lfs find
4949     cmd="$LFIND -stripe_count $OSTCOUNT -type f $TDIR |
4950          $LFS_MIGRATE -y -c $expected"
4951     echo "$cmd"
4952     eval $cmd || error "$cmd failed"
4953
4954     for i in $(seq 2 $NUMFILES); do
4955         check_stripe_count $TDIR/file$i $expected
4956     done
4957     for i in $(seq 2 $NUMDIRS); do
4958         for j in $(seq 1 $NUMFILES); do
4959             check_stripe_count $TDIR/dir$i/file$j $expected
4960         done
4961     done
4962 }
4963 run_test 56w "check lfs_migrate -c stripe_count works"
4964
4965 test_56x() {
4966         check_swap_layouts_support && return 0
4967         [[ $OSTCOUNT -lt 2 ]] &&
4968                 skip_env "need 2 OST, skipping test" && return
4969
4970         local dir0=$DIR/$tdir/$testnum
4971         test_mkdir -p $dir0 || error "creating dir $dir0"
4972
4973         local ref1=/etc/passwd
4974         local file1=$dir0/file1
4975
4976         $SETSTRIPE -c 2 $file1
4977         cp $ref1 $file1
4978         $LFS migrate -c 1 $file1 || error "migrate failed rc = $?"
4979         stripe=$($GETSTRIPE -c $file1)
4980         [[ $stripe == 1 ]] || error "stripe of $file1 is $stripe != 1"
4981         cmp $file1 $ref1 || error "content mismatch $file1 differs from $ref1"
4982
4983         # clean up
4984         rm -f $file1
4985 }
4986 run_test 56x "lfs migration support"
4987
4988 test_56xa() {
4989         check_swap_layouts_support && return 0
4990         [[ $OSTCOUNT -lt 2 ]] &&
4991                 skip_env "need 2 OST, skipping test" && return
4992
4993         local dir0=$DIR/$tdir/$testnum
4994         test_mkdir -p $dir0 || error "creating dir $dir0"
4995
4996         local ref1=/etc/passwd
4997         local file1=$dir0/file1
4998
4999         $SETSTRIPE -c 2 $file1
5000         cp $ref1 $file1
5001         $LFS migrate --block -c 1 $file1 || error "migrate failed rc = $?"
5002         local stripe=$($GETSTRIPE -c $file1)
5003         [[ $stripe == 1 ]] || error "stripe of $file1 is $stripe != 1"
5004         cmp $file1 $ref1 || error "content mismatch $file1 differs from $ref1"
5005
5006         # clean up
5007         rm -f $file1
5008 }
5009 run_test 56xa "lfs migration --block support"
5010
5011 test_56y() {
5012         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.53) ] &&
5013                 skip "No HSM $(lustre_build_version $SINGLEMDS) MDS < 2.4.53" &&
5014                 return
5015
5016         local res=""
5017         local dir0=$DIR/$tdir/$testnum
5018         test_mkdir -p $dir0 || error "creating dir $dir0"
5019         local f1=$dir0/file1
5020         local f2=$dir0/file2
5021
5022         touch $f1 || error "creating std file $f1"
5023         $MULTIOP $f2 H2c || error "creating released file $f2"
5024
5025         # a directory can be raid0, so ask only for files
5026         res=$($LFIND $dir0 -L raid0 -type f | wc -l)
5027         [[ $res == 2 ]] || error "search raid0: found $res files != 2"
5028
5029         res=$($LFIND $dir0 \! -L raid0 -type f | wc -l)
5030         [[ $res == 0 ]] || error "search !raid0: found $res files != 0"
5031
5032         # only files can be released, so no need to force file search
5033         res=$($LFIND $dir0 -L released)
5034         [[ $res == $f2 ]] || error "search released: found $res != $f2"
5035
5036         res=$($LFIND $dir0 \! -L released)
5037         [[ $res == $f1 ]] || error "search !released: found $res != $f1"
5038
5039 }
5040 run_test 56y "lfs find -L raid0|released"
5041
5042 test_56z() { # LU-4824
5043         # This checks to make sure 'lfs find' continues after errors
5044         # There are two classes of errors that should be caught:
5045         # - If multiple paths are provided, all should be searched even if one
5046         #   errors out
5047         # - If errors are encountered during the search, it should not terminate
5048         #   early
5049         local i
5050         test_mkdir $DIR/$tdir
5051         for i in d{0..9}; do
5052                 test_mkdir $DIR/$tdir/$i
5053         done
5054         touch $DIR/$tdir/d{0..9}/$tfile
5055         $LFS find $DIR/non_existent_dir $DIR/$tdir &&
5056                 error "$LFS find did not return an error"
5057         # Make a directory unsearchable. This should NOT be the last entry in
5058         # directory order.  Arbitrarily pick the 6th entry
5059         chmod 700 $($LFS find $DIR/$tdir -type d | sed '6!d')
5060         local count=$($RUNAS $LFS find $DIR/non_existent $DIR/$tdir | wc -l)
5061         # The user should be able to see 10 directories and 9 files
5062         [ $count == 19 ] || error "$LFS find did not continue after error"
5063 }
5064 run_test 56z "lfs find should continue after an error"
5065
5066 test_56aa() { # LU-5937
5067         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
5068
5069         mkdir $DIR/$tdir
5070         $LFS setdirstripe -c$MDSCOUNT $DIR/$tdir/striped_dir
5071
5072         createmany -o $DIR/$tdir/striped_dir/${tfile}- 1024
5073         local dirs=$(lfs find --size +8k $DIR/$tdir/)
5074
5075         [ -n "$dirs" ] || error "lfs find --size wrong under striped dir"
5076 }
5077 run_test 56aa "lfs find --size under striped dir"
5078
5079 test_57a() {
5080         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5081         # note test will not do anything if MDS is not local
5082         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
5083                 skip "Only applicable to ldiskfs-based MDTs"
5084                 return
5085         fi
5086
5087         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5088         local MNTDEV="osd*.*MDT*.mntdev"
5089         DEV=$(do_facet $SINGLEMDS lctl get_param -n $MNTDEV)
5090         [ -z "$DEV" ] && error "can't access $MNTDEV"
5091         for DEV in $(do_facet $SINGLEMDS lctl get_param -n $MNTDEV); do
5092                 do_facet $SINGLEMDS $DUMPE2FS -h $DEV > $TMP/t57a.dump ||
5093                         error "can't access $DEV"
5094                 DEVISIZE=$(awk '/Inode size:/ { print $3 }' $TMP/t57a.dump)
5095                 [[ $DEVISIZE -gt 128 ]] || error "inode size $DEVISIZE"
5096                 rm $TMP/t57a.dump
5097         done
5098 }
5099 run_test 57a "verify MDS filesystem created with large inodes =="
5100
5101 test_57b() {
5102         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5103         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
5104                 skip "Only applicable to ldiskfs-based MDTs"
5105                 return
5106         fi
5107
5108         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5109         local dir=$DIR/$tdir
5110
5111         local FILECOUNT=100
5112         local FILE1=$dir/f1
5113         local FILEN=$dir/f$FILECOUNT
5114
5115         rm -rf $dir || error "removing $dir"
5116         test_mkdir -p -c1 $dir || error "creating $dir"
5117         local mdtidx=$($LFS getstripe -M $dir)
5118         local mdtname=MDT$(printf %04x $mdtidx)
5119         local facet=mds$((mdtidx + 1))
5120
5121         echo "mcreating $FILECOUNT files"
5122         createmany -m $dir/f 1 $FILECOUNT || \
5123                 error "creating files in $dir"
5124
5125         # verify that files do not have EAs yet
5126         $GETSTRIPE $FILE1 2>&1 | grep -q "no stripe" || error "$FILE1 has an EA"
5127         $GETSTRIPE $FILEN 2>&1 | grep -q "no stripe" || error "$FILEN has an EA"
5128
5129         sync
5130         sleep 1
5131         df $dir  #make sure we get new statfs data
5132         local MDSFREE=$(do_facet $facet \
5133                 lctl get_param -n osd*.*$mdtname.kbytesfree)
5134         local MDCFREE=$(lctl get_param -n mdc.*$mdtname-mdc-*.kbytesfree)
5135         echo "opening files to create objects/EAs"
5136         local FILE
5137         for FILE in `seq -f $dir/f%g 1 $FILECOUNT`; do
5138                 $OPENFILE -f O_RDWR $FILE > /dev/null 2>&1 || error "opening $FILE"
5139         done
5140
5141         # verify that files have EAs now
5142         $GETSTRIPE $FILE1 | grep -q "obdidx" || error "$FILE1 missing EA"
5143         $GETSTRIPE $FILEN | grep -q "obdidx" || error "$FILEN missing EA"
5144
5145         sleep 1  #make sure we get new statfs data
5146         df $dir
5147         local MDSFREE2=$(do_facet $facet \
5148                 lctl get_param -n osd*.*$mdtname.kbytesfree)
5149         local MDCFREE2=$(lctl get_param -n mdc.*$mdtname-mdc-*.kbytesfree)
5150         if [[ $MDCFREE2 -lt $((MDCFREE - 16)) ]]; then
5151                 if [ "$MDSFREE" != "$MDSFREE2" ]; then
5152                         error "MDC before $MDCFREE != after $MDCFREE2"
5153                 else
5154                         echo "MDC before $MDCFREE != after $MDCFREE2"
5155                         echo "unable to confirm if MDS has large inodes"
5156                 fi
5157         fi
5158         rm -rf $dir
5159 }
5160 run_test 57b "default LOV EAs are stored inside large inodes ==="
5161
5162 test_58() {
5163         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5164         [ -z "$(which wiretest 2>/dev/null)" ] &&
5165                         skip_env "could not find wiretest" && return
5166         wiretest
5167 }
5168 run_test 58 "verify cross-platform wire constants =============="
5169
5170 test_59() {
5171         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5172         echo "touch 130 files"
5173         createmany -o $DIR/f59- 130
5174         echo "rm 130 files"
5175         unlinkmany $DIR/f59- 130
5176         sync
5177         # wait for commitment of removal
5178         wait_delete_completed
5179 }
5180 run_test 59 "verify cancellation of llog records async ========="
5181
5182 TEST60_HEAD="test_60 run $RANDOM"
5183 test_60a() {
5184         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5185         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
5186         do_facet mgs "! which run-llog.sh &> /dev/null" &&
5187                 do_facet mgs "! ls run-llog.sh &> /dev/null" &&
5188                         skip_env "missing subtest run-llog.sh" && return
5189
5190         log "$TEST60_HEAD - from kernel mode"
5191         do_facet mgs "$LCTL set_param debug=warning; $LCTL dk > /dev/null"
5192         do_facet mgs sh run-llog.sh
5193         do_facet mgs $LCTL dk > $TMP/$tfile
5194
5195         # LU-6388: test llog_reader
5196         local llog_reader=$(do_facet mgs "which llog_reader 2> /dev/null")
5197         llog_reader=${llog_reader:-$LUSTRE/utils/llog_reader}
5198         [ -z $(do_facet mgs ls -d $llog_reader 2> /dev/null) ] &&
5199                         skip_env "missing llog_reader" && return
5200         local fstype=$(facet_fstype mgs)
5201         [ $fstype != ldiskfs -a $fstype != zfs ] &&
5202                 skip_env "Only for ldiskfs or zfs type mgs" && return
5203
5204         local mntpt=$(facet_mntpt mgs)
5205         local mgsdev=$(mgsdevname 1)
5206         local fid_list
5207         local fid
5208         local rec_list
5209         local rec
5210         local rec_type
5211         local obj_file
5212         local path
5213         local seq
5214         local oid
5215         local pass=true
5216
5217         #get fid and record list
5218         fid_list=($(awk '/9_sub.*record/ { print $NF }' /$TMP/$tfile |
5219                 tail -n 4))
5220         rec_list=($(awk '/9_sub.*record/ { print $((NF-3)) }' /$TMP/$tfile |
5221                 tail -n 4))
5222         #remount mgs as ldiskfs or zfs type
5223         stop mgs || error "stop mgs failed"
5224         mount_fstype mgs || error "remount mgs failed"
5225         for ((i = 0; i < ${#fid_list[@]}; i++)); do
5226                 fid=${fid_list[i]}
5227                 rec=${rec_list[i]}
5228                 seq=$(echo $fid | awk -F ':' '{ print $1 }' | sed -e "s/^0x//g")
5229                 oid=$(echo $fid | awk -F ':' '{ print $2 }' | sed -e "s/^0x//g")
5230                 oid=$((16#$oid))
5231
5232                 case $fstype in
5233                         ldiskfs )
5234                                 obj_file=$mntpt/O/$seq/d$((oid%32))/$oid ;;
5235                         zfs )
5236                                 obj_file=$mntpt/oi.$(($((16#$seq))&127))/$fid ;;
5237                 esac
5238                 echo "obj_file is $obj_file"
5239                 do_facet mgs $llog_reader $obj_file
5240
5241                 rec_type=$(do_facet mgs $llog_reader $obj_file | grep "type=" |
5242                         awk '{ print $3 }' | sed -e "s/^type=//g")
5243                 if [ $rec_type != $rec ]; then
5244                         echo "FAILED test_60a wrong record type $rec_type," \
5245                               "should be $rec"
5246                         pass=false
5247                         break
5248                 fi
5249
5250                 #check obj path if record type is LLOG_LOGID_MAGIC
5251                 if [ "$rec" == "1064553b" ]; then
5252                         path=$(do_facet mgs $llog_reader $obj_file |
5253                                 grep "path=" | awk '{ print $NF }' |
5254                                 sed -e "s/^path=//g")
5255                         if [ $obj_file != $mntpt/$path ]; then
5256                                 echo "FAILED test_60a wrong obj path" \
5257                                       "$montpt/$path, should be $obj_file"
5258                                 pass=false
5259                                 break
5260                         fi
5261                 fi
5262         done
5263         rm -f $TMP/$tfile
5264         #restart mgs before "error", otherwise it will block the next test
5265         stop mgs || error "stop mgs failed"
5266         start mgs $(mgsdevname) $MGS_MOUNT_OPTS || error "start mgs failed"
5267         $pass || error "test failed, see FAILED test_60a messages for specifics"
5268 }
5269 run_test 60a "llog_test run from kernel module and test llog_reader =========="
5270
5271 test_60b() { # bug 6411
5272         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5273         dmesg > $DIR/$tfile
5274         LLOG_COUNT=$(dmesg | awk "/$TEST60_HEAD/ { marker = 1; from_marker = 0; }
5275                                 /llog.test/ {
5276                                         if (marker)
5277                                                 from_marker++
5278                                         from_begin++
5279                                 }
5280                                 END {
5281                                         if (marker)
5282                                                 print from_marker
5283                                         else
5284                                                 print from_begin
5285                                 }")
5286         [[ $LLOG_COUNT -gt 100 ]] &&
5287                 error "CDEBUG_LIMIT not limiting messages ($LLOG_COUNT)" || true
5288 }
5289 run_test 60b "limit repeated messages from CERROR/CWARN ========"
5290
5291 test_60c() {
5292         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5293         echo "create 5000 files"
5294         createmany -o $DIR/f60c- 5000
5295 #define OBD_FAIL_MDS_LLOG_CREATE_FAILED  0x137
5296         lctl set_param fail_loc=0x80000137
5297         unlinkmany $DIR/f60c- 5000
5298         lctl set_param fail_loc=0
5299 }
5300 run_test 60c "unlink file when mds full"
5301
5302 test_60d() {
5303         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5304         SAVEPRINTK=$(lctl get_param -n printk)
5305
5306         # verify "lctl mark" is even working"
5307         MESSAGE="test message ID $RANDOM $$"
5308         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
5309         dmesg | grep -q "$MESSAGE" || error "didn't find debug marker in log"
5310
5311         lctl set_param printk=0 || error "set lnet.printk failed"
5312         lctl get_param -n printk | grep emerg || error "lnet.printk dropped emerg"
5313         MESSAGE="new test message ID $RANDOM $$"
5314         # Assume here that libcfs_debug_mark_buffer() uses D_WARNING
5315         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
5316         dmesg | grep -q "$MESSAGE" && error "D_WARNING wasn't masked" || true
5317
5318         lctl set_param -n printk="$SAVEPRINTK"
5319 }
5320 run_test 60d "test printk console message masking"
5321
5322 test_60e() {
5323         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5324         touch $DIR/$tfile
5325 #define OBD_FAIL_MDS_LLOG_CREATE_FAILED2  0x15b
5326         do_facet mds1 lctl set_param fail_loc=0x15b
5327         rm $DIR/$tfile
5328 }
5329 run_test 60e "no space while new llog is being created"
5330
5331 test_61() {
5332         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5333         f="$DIR/f61"
5334         dd if=/dev/zero of=$f bs=$(page_size) count=1 || error "dd $f failed"
5335         cancel_lru_locks osc
5336         $MULTIOP $f OSMWUc || error "$MULTIOP $f failed"
5337         sync
5338 }
5339 run_test 61 "mmap() writes don't make sync hang ================"
5340
5341 # bug 2330 - insufficient obd_match error checking causes LBUG
5342 test_62() {
5343         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5344         f="$DIR/f62"
5345         echo foo > $f
5346         cancel_lru_locks osc
5347         lctl set_param fail_loc=0x405
5348         cat $f && error "cat succeeded, expect -EIO"
5349         lctl set_param fail_loc=0
5350 }
5351 # This test is now irrelevant (as of bug 10718 inclusion), we no longer
5352 # match every page all of the time.
5353 #run_test 62 "verify obd_match failure doesn't LBUG (should -EIO)"
5354
5355 # bug 2319 - oig_wait() interrupted causes crash because of invalid waitq.
5356 # Though this test is irrelevant anymore, it helped to reveal some
5357 # other grant bugs (LU-4482), let's keep it.
5358 test_63a() {   # was test_63
5359         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5360         MAX_DIRTY_MB=`lctl get_param -n osc.*.max_dirty_mb | head -n 1`
5361         for i in `seq 10` ; do
5362                 dd if=/dev/zero of=$DIR/f63 bs=8k &
5363                 sleep 5
5364                 kill $!
5365                 sleep 1
5366         done
5367
5368         rm -f $DIR/f63 || true
5369 }
5370 run_test 63a "Verify oig_wait interruption does not crash ======="
5371
5372 # bug 2248 - async write errors didn't return to application on sync
5373 # bug 3677 - async write errors left page locked
5374 test_63b() {
5375         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5376         debugsave
5377         lctl set_param debug=-1
5378
5379         # ensure we have a grant to do async writes
5380         dd if=/dev/zero of=$DIR/$tfile bs=4k count=1
5381         rm $DIR/$tfile
5382
5383         sync    # sync lest earlier test intercept the fail_loc
5384
5385         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
5386         lctl set_param fail_loc=0x80000406
5387         $MULTIOP $DIR/$tfile Owy && \
5388                 error "sync didn't return ENOMEM"
5389         sync; sleep 2; sync     # do a real sync this time to flush page
5390         lctl get_param -n llite.*.dump_page_cache | grep locked && \
5391                 error "locked page left in cache after async error" || true
5392         debugrestore
5393 }
5394 run_test 63b "async write errors should be returned to fsync ==="
5395
5396 test_64a () {
5397         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5398         df $DIR
5399         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur* | grep "[0-9]"
5400 }
5401 run_test 64a "verify filter grant calculations (in kernel) ====="
5402
5403 test_64b () {
5404         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5405         sh oos.sh $MOUNT || error "oos.sh failed: $?"
5406 }
5407 run_test 64b "check out-of-space detection on client ==========="
5408
5409 test_64c() {
5410         $LCTL set_param osc.*OST0000-osc-[^mM]*.cur_grant_bytes=0
5411 }
5412 run_test 64c "verify grant shrink ========================------"
5413
5414 # bug 1414 - set/get directories' stripe info
5415 test_65a() {
5416         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5417         test_mkdir -p $DIR/$tdir
5418         touch $DIR/$tdir/f1
5419         $LVERIFY $DIR/$tdir $DIR/$tdir/f1 || error "lverify failed"
5420 }
5421 run_test 65a "directory with no stripe info ===================="
5422
5423 test_65b() {
5424         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5425         test_mkdir -p $DIR/$tdir
5426         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
5427
5428         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
5429                                                 error "setstripe"
5430         touch $DIR/$tdir/f2
5431         $LVERIFY $DIR/$tdir $DIR/$tdir/f2 || error "lverify failed"
5432 }
5433 run_test 65b "directory setstripe -S stripe_size*2 -i 0 -c 1"
5434
5435 test_65c() {
5436         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5437         if [[ $OSTCOUNT -gt 1 ]]; then
5438                 test_mkdir -p $DIR/$tdir
5439                 local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
5440
5441                 $SETSTRIPE -S $(($STRIPESIZE * 4)) -i 1 \
5442                         -c $(($OSTCOUNT - 1)) $DIR/$tdir || error "setstripe"
5443                 touch $DIR/$tdir/f3
5444                 $LVERIFY $DIR/$tdir $DIR/$tdir/f3 || error "lverify failed"
5445         fi
5446 }
5447 run_test 65c "directory setstripe -S stripe_size*4 -i 1 -c $((OSTCOUNT-1))"
5448
5449 test_65d() {
5450         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5451         test_mkdir -p $DIR/$tdir
5452         local STRIPECOUNT=$($GETSTRIPE -c $DIR/$tdir)
5453         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
5454
5455         if [[ $STRIPECOUNT -le 0 ]]; then
5456                 sc=1
5457         elif [[ $STRIPECOUNT -gt 2000 ]]; then
5458 #LOV_MAX_STRIPE_COUNT is 2000
5459                 [[ $OSTCOUNT -gt 2000 ]] && sc=2000 || sc=$(($OSTCOUNT - 1))
5460         else
5461                 sc=$(($STRIPECOUNT - 1))
5462         fi
5463         $SETSTRIPE -S $STRIPESIZE -c $sc $DIR/$tdir || error "setstripe"
5464         touch $DIR/$tdir/f4 $DIR/$tdir/f5
5465         $LVERIFY $DIR/$tdir $DIR/$tdir/f4 $DIR/$tdir/f5 ||
5466                 error "lverify failed"
5467 }
5468 run_test 65d "directory setstripe -S stripe_size -c stripe_count"
5469
5470 test_65e() {
5471         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5472         test_mkdir -p $DIR/$tdir
5473
5474         $SETSTRIPE $DIR/$tdir || error "setstripe"
5475         $GETSTRIPE -v $DIR/$tdir | grep "Default" ||
5476                                         error "no stripe info failed"
5477         touch $DIR/$tdir/f6
5478         $LVERIFY $DIR/$tdir $DIR/$tdir/f6 || error "lverify failed"
5479 }
5480 run_test 65e "directory setstripe defaults ======================="
5481
5482 test_65f() {
5483         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5484         test_mkdir -p $DIR/${tdir}f
5485         $RUNAS $SETSTRIPE $DIR/${tdir}f && error "setstripe succeeded" || true
5486 }
5487 run_test 65f "dir setstripe permission (should return error) ==="
5488
5489 test_65g() {
5490         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5491         test_mkdir -p $DIR/$tdir
5492         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
5493
5494         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
5495                                                         error "setstripe"
5496         $SETSTRIPE -d $DIR/$tdir || error "setstripe"
5497         $GETSTRIPE -v $DIR/$tdir | grep "Default" ||
5498                 error "delete default stripe failed"
5499 }
5500 run_test 65g "directory setstripe -d ==========================="
5501
5502 test_65h() {
5503         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5504         test_mkdir -p $DIR/$tdir
5505         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
5506
5507         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
5508                                                         error "setstripe"
5509         test_mkdir -p $DIR/$tdir/dd1
5510         [ $($GETSTRIPE -c $DIR/$tdir) == $($GETSTRIPE -c $DIR/$tdir/dd1) ] ||
5511                 error "stripe info inherit failed"
5512 }
5513 run_test 65h "directory stripe info inherit ===================="
5514
5515 test_65i() { # bug6367
5516         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5517         $SETSTRIPE -S 65536 -c -1 $MOUNT
5518 }
5519 run_test 65i "set non-default striping on root directory (bug 6367)="
5520
5521 test_65ia() { # bug12836
5522         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5523         $GETSTRIPE $MOUNT || error "getstripe $MOUNT failed"
5524 }
5525 run_test 65ia "getstripe on -1 default directory striping"
5526
5527 test_65ib() { # bug12836
5528         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5529         $GETSTRIPE -v $MOUNT || error "getstripe -v $MOUNT failed"
5530 }
5531 run_test 65ib "getstripe -v on -1 default directory striping"
5532
5533 test_65ic() { # bug12836
5534         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5535         $LFS find -mtime -1 $MOUNT > /dev/null || error "find $MOUNT failed"
5536 }
5537 run_test 65ic "new find on -1 default directory striping"
5538
5539 test_65j() { # bug6367
5540         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5541         sync; sleep 1
5542         # if we aren't already remounting for each test, do so for this test
5543         if [ "$CLEANUP" = ":" -a "$I_MOUNTED" = "yes" ]; then
5544                 cleanup || error "failed to unmount"
5545                 setup
5546         fi
5547         $SETSTRIPE -d $MOUNT || error "setstripe failed"
5548 }
5549 run_test 65j "set default striping on root directory (bug 6367)="
5550
5551 test_65k() { # bug11679
5552         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5553         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
5554         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5555
5556     echo "Check OST status: "
5557     local MDS_OSCS=`do_facet $SINGLEMDS lctl dl |
5558               awk '/[oO][sS][cC].*md[ts]/ { print $4 }'`
5559
5560     for OSC in $MDS_OSCS; do
5561         echo $OSC "is activate"
5562         do_facet $SINGLEMDS lctl --device %$OSC activate
5563     done
5564
5565     mkdir -p $DIR/$tdir
5566     for INACTIVE_OSC in $MDS_OSCS; do
5567         echo "Deactivate: " $INACTIVE_OSC
5568         do_facet $SINGLEMDS lctl --device %$INACTIVE_OSC deactivate
5569         for STRIPE_OSC in $MDS_OSCS; do
5570             OST=`osc_to_ost $STRIPE_OSC`
5571             IDX=`do_facet $SINGLEMDS lctl get_param -n lov.*md*.target_obd |
5572                  awk -F: /$OST/'{ print $1 }' | head -n 1`
5573
5574             [ -f $DIR/$tdir/$IDX ] && continue
5575             echo "$SETSTRIPE -i $IDX -c 1 $DIR/$tdir/$IDX"
5576             $SETSTRIPE -i $IDX -c 1 $DIR/$tdir/$IDX
5577             RC=$?
5578             [ $RC -ne 0 ] && error "setstripe should have succeeded"
5579         done
5580         rm -f $DIR/$tdir/*
5581         echo $INACTIVE_OSC "is Activate."
5582         do_facet $SINGLEMDS lctl --device  %$INACTIVE_OSC activate
5583     done
5584 }
5585 run_test 65k "validate manual striping works properly with deactivated OSCs"
5586
5587 test_65l() { # bug 12836
5588         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5589         test_mkdir -p $DIR/$tdir/test_dir
5590         $SETSTRIPE -c -1 $DIR/$tdir/test_dir
5591         $LFS find -mtime -1 $DIR/$tdir >/dev/null
5592 }
5593 run_test 65l "lfs find on -1 stripe dir ========================"
5594
5595 # bug 2543 - update blocks count on client
5596 test_66() {
5597         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5598         COUNT=${COUNT:-8}
5599         dd if=/dev/zero of=$DIR/f66 bs=1k count=$COUNT
5600         sync; sync_all_data; sync; sync_all_data
5601         cancel_lru_locks osc
5602         BLOCKS=`ls -s $DIR/f66 | awk '{ print $1 }'`
5603         [ $BLOCKS -ge $COUNT ] || error "$DIR/f66 blocks $BLOCKS < $COUNT"
5604 }
5605 run_test 66 "update inode blocks count on client ==============="
5606
5607 LLOOP=
5608 LLITELOOPLOAD=
5609 cleanup_68() {
5610         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5611         trap 0
5612         if [ ! -z "$LLOOP" ]; then
5613                 if swapon -s | grep -q $LLOOP; then
5614                         swapoff $LLOOP || error "swapoff failed"
5615                 fi
5616
5617                 $LCTL blockdev_detach $LLOOP || error "detach failed"
5618                 rm -f $LLOOP
5619                 unset LLOOP
5620         fi
5621         if [ ! -z "$LLITELOOPLOAD" ]; then
5622                 rmmod llite_lloop
5623                 unset LLITELOOPLOAD
5624         fi
5625         rm -f $DIR/f68*
5626 }
5627
5628 meminfo() {
5629         awk '($1 == "'$1':") { print $2 }' /proc/meminfo
5630 }
5631
5632 swap_used() {
5633         swapon -s | awk '($1 == "'$1'") { print $4 }'
5634 }
5635
5636 # test case for lloop driver, basic function
5637 test_68a() {
5638         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5639         [ "$UID" != 0 ] && skip_env "must run as root" && return
5640         llite_lloop_enabled || \
5641                 { skip_env "llite_lloop module disabled" && return; }
5642
5643         trap cleanup_68 EXIT
5644
5645         if ! module_loaded llite_lloop; then
5646                 if load_module llite/llite_lloop; then
5647                         LLITELOOPLOAD=yes
5648                 else
5649                         skip_env "can't find module llite_lloop"
5650                         return
5651                 fi
5652         fi
5653
5654         LLOOP=$TMP/lloop.`date +%s`.`date +%N`
5655         dd if=/dev/zero of=$DIR/f68a bs=4k count=1024
5656         $LCTL blockdev_attach $DIR/f68a $LLOOP || error "attach failed"
5657
5658         directio rdwr $LLOOP 0 1024 4096 || error "direct write failed"
5659         directio rdwr $LLOOP 0 1025 4096 && error "direct write should fail"
5660
5661         cleanup_68
5662 }
5663 run_test 68a "lloop driver - basic test ========================"
5664
5665 # excercise swapping to lustre by adding a high priority swapfile entry
5666 # and then consuming memory until it is used.
5667 test_68b() {  # was test_68
5668         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5669         [ "$UID" != 0 ] && skip_env "must run as root" && return
5670         lctl get_param -n devices | grep -q obdfilter && \
5671                 skip "local OST" && return
5672
5673         grep -q llite_lloop /proc/modules
5674         [ $? -ne 0 ] && skip "can't find module llite_lloop" && return
5675
5676         [ -z "`$LCTL list_nids | grep -v tcp`" ] && \
5677                 skip "can't reliably test swap with TCP" && return
5678
5679         MEMTOTAL=`meminfo MemTotal`
5680         NR_BLOCKS=$((MEMTOTAL>>8))
5681         [[ $NR_BLOCKS -le 2048 ]] && NR_BLOCKS=2048
5682
5683         LLOOP=$TMP/lloop.`date +%s`.`date +%N`
5684         dd if=/dev/zero of=$DIR/f68b bs=64k seek=$NR_BLOCKS count=1
5685         mkswap $DIR/f68b
5686
5687         $LCTL blockdev_attach $DIR/f68b $LLOOP || error "attach failed"
5688
5689         trap cleanup_68 EXIT
5690
5691         swapon -p 32767 $LLOOP || error "swapon $LLOOP failed"
5692
5693         echo "before: `swapon -s | grep $LLOOP`"
5694         $MEMHOG $MEMTOTAL || error "error allocating $MEMTOTAL kB"
5695         echo "after: `swapon -s | grep $LLOOP`"
5696         SWAPUSED=`swap_used $LLOOP`
5697
5698         cleanup_68
5699
5700         [ $SWAPUSED -eq 0 ] && echo "no swap used???" || true
5701 }
5702 run_test 68b "support swapping to Lustre ========================"
5703
5704 # bug5265, obdfilter oa2dentry return -ENOENT
5705 # #define OBD_FAIL_SRV_ENOENT 0x217
5706 test_69() {
5707         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5708         remote_ost_nodsh && skip "remote OST with nodsh" && return
5709
5710         f="$DIR/$tfile"
5711         $SETSTRIPE -c 1 -i 0 $f
5712
5713         $DIRECTIO write ${f}.2 0 1 || error "directio write error"
5714
5715         do_facet ost1 lctl set_param fail_loc=0x217
5716         $TRUNCATE $f 1 # vmtruncate() will ignore truncate() error.
5717         $DIRECTIO write $f 0 2 && error "write succeeded, expect -ENOENT"
5718
5719         do_facet ost1 lctl set_param fail_loc=0
5720         $DIRECTIO write $f 0 2 || error "write error"
5721
5722         cancel_lru_locks osc
5723         $DIRECTIO read $f 0 1 || error "read error"
5724
5725         do_facet ost1 lctl set_param fail_loc=0x217
5726         $DIRECTIO read $f 1 1 && error "read succeeded, expect -ENOENT"
5727
5728         do_facet ost1 lctl set_param fail_loc=0
5729         rm -f $f
5730 }
5731 run_test 69 "verify oa2dentry return -ENOENT doesn't LBUG ======"
5732
5733 test_71() {
5734         test_mkdir -p $DIR/$tdir
5735         $LFS setdirstripe -D -c$MDSCOUNT $DIR/$tdir
5736         sh rundbench -C -D $DIR/$tdir 2 || error "dbench failed!"
5737 }
5738 run_test 71 "Running dbench on lustre (don't segment fault) ===="
5739
5740 test_72a() { # bug 5695 - Test that on 2.6 remove_suid works properly
5741         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5742         [ "$RUNAS_ID" = "$UID" ] &&
5743                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
5744
5745         # Check that testing environment is properly set up. Skip if not
5746         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_GID $RUNAS || {
5747                 skip_env "User $RUNAS_ID does not exist - skipping"
5748                 return 0
5749         }
5750         touch $DIR/$tfile
5751         chmod 777 $DIR/$tfile
5752         chmod ug+s $DIR/$tfile
5753         $RUNAS dd if=/dev/zero of=$DIR/$tfile bs=512 count=1 ||
5754                 error "$RUNAS dd $DIR/$tfile failed"
5755         # See if we are still setuid/sgid
5756         test -u $DIR/$tfile -o -g $DIR/$tfile &&
5757                 error "S/gid is not dropped on write"
5758         # Now test that MDS is updated too
5759         cancel_lru_locks mdc
5760         test -u $DIR/$tfile -o -g $DIR/$tfile &&
5761                 error "S/gid is not dropped on MDS"
5762         rm -f $DIR/$tfile
5763 }
5764 run_test 72a "Test that remove suid works properly (bug5695) ===="
5765
5766 test_72b() { # bug 24226 -- keep mode setting when size is not changing
5767         local perm
5768
5769         [ "$RUNAS_ID" = "$UID" ] && \
5770                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
5771         [ "$RUNAS_ID" -eq 0 ] && \
5772                 skip_env "RUNAS_ID = 0 -- skipping" && return
5773
5774         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5775         # Check that testing environment is properly set up. Skip if not
5776         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_ID $RUNAS || {
5777                 skip_env "User $RUNAS_ID does not exist - skipping"
5778                 return 0
5779         }
5780         touch $DIR/${tfile}-f{g,u}
5781         test_mkdir $DIR/${tfile}-dg
5782         test_mkdir $DIR/${tfile}-du
5783         chmod 770 $DIR/${tfile}-{f,d}{g,u}
5784         chmod g+s $DIR/${tfile}-{f,d}g
5785         chmod u+s $DIR/${tfile}-{f,d}u
5786         for perm in 777 2777 4777; do
5787                 $RUNAS chmod $perm $DIR/${tfile}-fg && error "S/gid file allowed improper chmod to $perm"
5788                 $RUNAS chmod $perm $DIR/${tfile}-fu && error "S/uid file allowed improper chmod to $perm"
5789                 $RUNAS chmod $perm $DIR/${tfile}-dg && error "S/gid dir allowed improper chmod to $perm"
5790                 $RUNAS chmod $perm $DIR/${tfile}-du && error "S/uid dir allowed improper chmod to $perm"
5791         done
5792         true
5793 }
5794 run_test 72b "Test that we keep mode setting if without file data changed (bug 24226)"
5795
5796 # bug 3462 - multiple simultaneous MDC requests
5797 test_73() {
5798         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5799         test_mkdir $DIR/d73-1
5800         test_mkdir $DIR/d73-2
5801         multiop_bg_pause $DIR/d73-1/f73-1 O_c || return 1
5802         pid1=$!
5803
5804         lctl set_param fail_loc=0x80000129
5805         $MULTIOP $DIR/d73-1/f73-2 Oc &
5806         sleep 1
5807         lctl set_param fail_loc=0
5808
5809         $MULTIOP $DIR/d73-2/f73-3 Oc &
5810         pid3=$!
5811
5812         kill -USR1 $pid1
5813         wait $pid1 || return 1
5814
5815         sleep 25
5816
5817         $CHECKSTAT -t file $DIR/d73-1/f73-1 || return 4
5818         $CHECKSTAT -t file $DIR/d73-1/f73-2 || return 5
5819         $CHECKSTAT -t file $DIR/d73-2/f73-3 || return 6
5820
5821         rm -rf $DIR/d73-*
5822 }
5823 run_test 73 "multiple MDC requests (should not deadlock)"
5824
5825 test_74a() { # bug 6149, 6184
5826         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5827         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
5828         #
5829         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
5830         # will spin in a tight reconnection loop
5831         touch $DIR/f74a
5832         $LCTL set_param fail_loc=0x8000030e
5833         # get any lock that won't be difficult - lookup works.
5834         ls $DIR/f74a
5835         $LCTL set_param fail_loc=0
5836         rm -f $DIR/f74a
5837         true
5838 }
5839 run_test 74a "ldlm_enqueue freed-export error path, ls (shouldn't LBUG)"
5840
5841 test_74b() { # bug 13310
5842         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5843         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
5844         #
5845         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
5846         # will spin in a tight reconnection loop
5847         $LCTL set_param fail_loc=0x8000030e
5848         # get a "difficult" lock
5849         touch $DIR/f74b
5850         $LCTL set_param fail_loc=0
5851         rm -f $DIR/f74b
5852         true
5853 }
5854 run_test 74b "ldlm_enqueue freed-export error path, touch (shouldn't LBUG)"
5855
5856 test_74c() {
5857         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5858         #define OBD_FAIL_LDLM_NEW_LOCK
5859         $LCTL set_param fail_loc=0x319
5860         touch $DIR/$tfile && error "touch successful"
5861         $LCTL set_param fail_loc=0
5862         true
5863 }
5864 run_test 74c "ldlm_lock_create error path, (shouldn't LBUG)"
5865
5866 num_inodes() {
5867         awk '/lustre_inode_cache/ {print $2; exit}' /proc/slabinfo
5868 }
5869
5870 get_inode_slab_tunables() {
5871         awk '/lustre_inode_cache/ {print $9," ",$10," ",$11; exit}' /proc/slabinfo
5872 }
5873
5874 set_inode_slab_tunables() {
5875         echo "lustre_inode_cache $1" > /proc/slabinfo
5876 }
5877
5878 test_76() { # Now for bug 20433, added originally in bug 1443
5879         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5880         local SLAB_SETTINGS=`get_inode_slab_tunables`
5881         local CPUS=`getconf _NPROCESSORS_ONLN`
5882         # we cannot set limit below 1 which means 1 inode in each
5883         # per-cpu cache is still allowed
5884         set_inode_slab_tunables "1 1 0"
5885         cancel_lru_locks osc
5886         BEFORE_INODES=$(num_inodes)
5887         echo "before inodes: $BEFORE_INODES"
5888         local COUNT=1000
5889         [ "$SLOW" = "no" ] && COUNT=100
5890         for i in $(seq $COUNT); do
5891                 touch $DIR/$tfile
5892                 rm -f $DIR/$tfile
5893         done
5894         cancel_lru_locks osc
5895         AFTER_INODES=$(num_inodes)
5896         echo "after inodes: $AFTER_INODES"
5897         local wait=0
5898         while [[ $((AFTER_INODES-1*CPUS)) -gt $BEFORE_INODES ]]; do
5899                 sleep 2
5900                 AFTER_INODES=$(num_inodes)
5901                 wait=$((wait+2))
5902                 echo "wait $wait seconds inodes: $AFTER_INODES"
5903                 if [ $wait -gt 30 ]; then
5904                         error "inode slab grew from $BEFORE_INODES to $AFTER_INODES"
5905                 fi
5906         done
5907         set_inode_slab_tunables "$SLAB_SETTINGS"
5908 }
5909 run_test 76 "confirm clients recycle inodes properly ===="
5910
5911
5912 export ORIG_CSUM=""
5913 set_checksums()
5914 {
5915         # Note: in sptlrpc modes which enable its own bulk checksum, the
5916         # original crc32_le bulk checksum will be automatically disabled,
5917         # and the OBD_FAIL_OSC_CHECKSUM_SEND/OBD_FAIL_OSC_CHECKSUM_RECEIVE
5918         # will be checked by sptlrpc code against sptlrpc bulk checksum.
5919         # In this case set_checksums() will not be no-op, because sptlrpc
5920         # bulk checksum will be enabled all through the test.
5921
5922         [ "$ORIG_CSUM" ] || ORIG_CSUM=`lctl get_param -n osc.*.checksums | head -n1`
5923         lctl set_param -n osc.*.checksums $1
5924         return 0
5925 }
5926
5927 export ORIG_CSUM_TYPE="`lctl get_param -n osc.*osc-[^mM]*.checksum_type |
5928                         sed 's/.*\[\(.*\)\].*/\1/g' | head -n1`"
5929 CKSUM_TYPES=${CKSUM_TYPES:-"crc32 adler"}
5930 [ "$ORIG_CSUM_TYPE" = "crc32c" ] && CKSUM_TYPES="$CKSUM_TYPES crc32c"
5931 set_checksum_type()
5932 {
5933         lctl set_param -n osc.*osc-[^mM]*.checksum_type $1
5934         log "set checksum type to $1"
5935         return 0
5936 }
5937 F77_TMP=$TMP/f77-temp
5938 F77SZ=8
5939 setup_f77() {
5940         dd if=/dev/urandom of=$F77_TMP bs=1M count=$F77SZ || \
5941                 error "error writing to $F77_TMP"
5942 }
5943
5944 test_77a() { # bug 10889
5945         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5946         $GSS && skip "could not run with gss" && return
5947         [ ! -f $F77_TMP ] && setup_f77
5948         set_checksums 1
5949         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ || error "dd error"
5950         set_checksums 0
5951         rm -f $DIR/$tfile
5952 }
5953 run_test 77a "normal checksum read/write operation"
5954
5955 test_77b() { # bug 10889
5956         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5957         $GSS && skip "could not run with gss" && return
5958         [ ! -f $F77_TMP ] && setup_f77
5959         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
5960         $LCTL set_param fail_loc=0x80000409
5961         set_checksums 1
5962
5963         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ conv=sync ||
5964                 error "dd error: $?"
5965         $LCTL set_param fail_loc=0
5966
5967         for algo in $CKSUM_TYPES; do
5968                 cancel_lru_locks osc
5969                 set_checksum_type $algo
5970                 #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
5971                 $LCTL set_param fail_loc=0x80000408
5972                 cmp $F77_TMP $DIR/$tfile || error "file compare failed"
5973                 $LCTL set_param fail_loc=0
5974         done
5975         set_checksums 0
5976         set_checksum_type $ORIG_CSUM_TYPE
5977         rm -f $DIR/$tfile
5978 }
5979 run_test 77b "checksum error on client write, read"
5980
5981 test_77d() { # bug 10889
5982         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5983         $GSS && skip "could not run with gss" && return
5984         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
5985         $LCTL set_param fail_loc=0x80000409
5986         set_checksums 1
5987         $DIRECTIO write $DIR/$tfile 0 $F77SZ $((1024 * 1024)) ||
5988                 error "direct write: rc=$?"
5989         $LCTL set_param fail_loc=0
5990         set_checksums 0
5991
5992         #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
5993         $LCTL set_param fail_loc=0x80000408
5994         set_checksums 1
5995         cancel_lru_locks osc
5996         $DIRECTIO read $DIR/$tfile 0 $F77SZ $((1024 * 1024)) ||
5997                 error "direct read: rc=$?"
5998         $LCTL set_param fail_loc=0
5999         set_checksums 0
6000 }
6001 run_test 77d "checksum error on OST direct write, read"
6002
6003 test_77f() { # bug 10889
6004         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6005         $GSS && skip "could not run with gss" && return
6006         set_checksums 1
6007         for algo in $CKSUM_TYPES; do
6008                 cancel_lru_locks osc
6009                 set_checksum_type $algo
6010                 #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
6011                 $LCTL set_param fail_loc=0x409
6012                 $DIRECTIO write $DIR/$tfile 0 $F77SZ $((1024 * 1024)) &&
6013                         error "direct write succeeded"
6014                 $LCTL set_param fail_loc=0
6015         done
6016         set_checksum_type $ORIG_CSUM_TYPE
6017         set_checksums 0
6018 }
6019 run_test 77f "repeat checksum error on write (expect error)"
6020
6021 test_77g() { # bug 10889
6022         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6023         $GSS && skip "could not run with gss" && return
6024         remote_ost_nodsh && skip "remote OST with nodsh" && return
6025
6026         [ ! -f $F77_TMP ] && setup_f77
6027
6028         $SETSTRIPE -c 1 -i 0 $DIR/$tfile
6029         #define OBD_FAIL_OST_CHECKSUM_RECEIVE       0x21a
6030         do_facet ost1 lctl set_param fail_loc=0x8000021a
6031         set_checksums 1
6032         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ ||
6033                 error "write error: rc=$?"
6034         do_facet ost1 lctl set_param fail_loc=0
6035         set_checksums 0
6036
6037         cancel_lru_locks osc
6038         #define OBD_FAIL_OST_CHECKSUM_SEND          0x21b
6039         do_facet ost1 lctl set_param fail_loc=0x8000021b
6040         set_checksums 1
6041         cmp $F77_TMP $DIR/$tfile || error "file compare failed"
6042         do_facet ost1 lctl set_param fail_loc=0
6043         set_checksums 0
6044 }
6045 run_test 77g "checksum error on OST write, read"
6046
6047 test_77i() { # bug 13805
6048         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6049         $GSS && skip "could not run with gss" && return
6050         #define OBD_FAIL_OSC_CONNECT_CKSUM       0x40b
6051         lctl set_param fail_loc=0x40b
6052         remount_client $MOUNT
6053         lctl set_param fail_loc=0
6054         for VALUE in `lctl get_param osc.*osc-[^mM]*.checksum_type`; do
6055                 PARAM=`echo ${VALUE[0]} | cut -d "=" -f1`
6056                 algo=`lctl get_param -n $PARAM | sed 's/.*\[\(.*\)\].*/\1/g'`
6057                 [ "$algo" = "adler" ] || error "algo set to $algo instead of adler"
6058         done
6059         remount_client $MOUNT
6060 }
6061 run_test 77i "client not supporting OSD_CONNECT_CKSUM"
6062
6063 test_77j() { # bug 13805
6064         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6065         $GSS && skip "could not run with gss" && return
6066         #define OBD_FAIL_OSC_CKSUM_ADLER_ONLY    0x40c
6067         lctl set_param fail_loc=0x40c
6068         remount_client $MOUNT
6069         lctl set_param fail_loc=0
6070         sleep 2 # wait async osc connect to finish
6071         for VALUE in `lctl get_param osc.*osc-[^mM]*.checksum_type`; do
6072                 PARAM=`echo ${VALUE[0]} | cut -d "=" -f1`
6073                 algo=`lctl get_param -n $PARAM | sed 's/.*\[\(.*\)\].*/\1/g'`
6074                 [ "$algo" = "adler" ] || error "algo set to $algo instead of adler"
6075         done
6076         remount_client $MOUNT
6077 }
6078 run_test 77j "client only supporting ADLER32"
6079
6080 [ "$ORIG_CSUM" ] && set_checksums $ORIG_CSUM || true
6081 rm -f $F77_TMP
6082 unset F77_TMP
6083
6084 test_78() { # bug 10901
6085         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6086         remote_ost || { skip_env "local OST" && return; }
6087
6088         NSEQ=5
6089         F78SIZE=$(($(awk '/MemFree:/ { print $2 }' /proc/meminfo) / 1024))
6090         echo "MemFree: $F78SIZE, Max file size: $MAXFREE"
6091         MEMTOTAL=$(($(awk '/MemTotal:/ { print $2 }' /proc/meminfo) / 1024))
6092         echo "MemTotal: $MEMTOTAL"
6093
6094         # reserve 256MB of memory for the kernel and other running processes,
6095         # and then take 1/2 of the remaining memory for the read/write buffers.
6096         if [ $MEMTOTAL -gt 512 ] ;then
6097                 MEMTOTAL=$(((MEMTOTAL - 256 ) / 2))
6098         else
6099                 # for those poor memory-starved high-end clusters...
6100                 MEMTOTAL=$((MEMTOTAL / 2))
6101         fi
6102         echo "Mem to use for directio: $MEMTOTAL"
6103
6104         [[ $F78SIZE -gt $MEMTOTAL ]] && F78SIZE=$MEMTOTAL
6105         [[ $F78SIZE -gt 512 ]] && F78SIZE=512
6106         [[ $F78SIZE -gt $((MAXFREE / 1024)) ]] && F78SIZE=$((MAXFREE / 1024))
6107         SMALLESTOST=$($LFS df $DIR | grep OST | awk '{ print $4 }' | sort -n |
6108                 head -n1)
6109         echo "Smallest OST: $SMALLESTOST"
6110         [[ $SMALLESTOST -lt 10240 ]] &&
6111                 skip "too small OSTSIZE, useless to run large O_DIRECT test" && return 0
6112
6113         [[ $F78SIZE -gt $((SMALLESTOST * $OSTCOUNT / 1024 - 80)) ]] &&
6114                 F78SIZE=$((SMALLESTOST * $OSTCOUNT / 1024 - 80))
6115
6116         [ "$SLOW" = "no" ] && NSEQ=1 && [ $F78SIZE -gt 32 ] && F78SIZE=32
6117         echo "File size: $F78SIZE"
6118         $SETSTRIPE -c $OSTCOUNT $DIR/$tfile || error "setstripe failed"
6119         for i in $(seq 1 $NSEQ); do
6120                 FSIZE=$(($F78SIZE / ($NSEQ - $i + 1)))
6121                 echo directIO rdwr round $i of $NSEQ
6122                 $DIRECTIO rdwr $DIR/$tfile 0 $FSIZE 1048576||error "rdwr failed"
6123         done
6124
6125         rm -f $DIR/$tfile
6126 }
6127 run_test 78 "handle large O_DIRECT writes correctly ============"
6128
6129 test_79() { # bug 12743
6130         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6131         wait_delete_completed
6132
6133         BKTOTAL=$(calc_osc_kbytes kbytestotal)
6134         BKFREE=$(calc_osc_kbytes kbytesfree)
6135         BKAVAIL=$(calc_osc_kbytes kbytesavail)
6136
6137         STRING=`df -P $MOUNT | tail -n 1 | awk '{print $2","$3","$4}'`
6138         DFTOTAL=`echo $STRING | cut -d, -f1`
6139         DFUSED=`echo $STRING  | cut -d, -f2`
6140         DFAVAIL=`echo $STRING | cut -d, -f3`
6141         DFFREE=$(($DFTOTAL - $DFUSED))
6142
6143         ALLOWANCE=$((64 * $OSTCOUNT))
6144
6145         if [ $DFTOTAL -lt $(($BKTOTAL - $ALLOWANCE)) ] ||
6146            [ $DFTOTAL -gt $(($BKTOTAL + $ALLOWANCE)) ] ; then
6147                 error "df total($DFTOTAL) mismatch OST total($BKTOTAL)"
6148         fi
6149         if [ $DFFREE -lt $(($BKFREE - $ALLOWANCE)) ] ||
6150            [ $DFFREE -gt $(($BKFREE + $ALLOWANCE)) ] ; then
6151                 error "df free($DFFREE) mismatch OST free($BKFREE)"
6152         fi
6153         if [ $DFAVAIL -lt $(($BKAVAIL - $ALLOWANCE)) ] ||
6154            [ $DFAVAIL -gt $(($BKAVAIL + $ALLOWANCE)) ] ; then
6155                 error "df avail($DFAVAIL) mismatch OST avail($BKAVAIL)"
6156         fi
6157 }
6158 run_test 79 "df report consistency check ======================="
6159
6160 test_80() { # bug 10718
6161         remote_ost_nodsh && skip "remote OST with nodsh" && return
6162         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6163         # relax strong synchronous semantics for slow backends like ZFS
6164         local soc="obdfilter.*.sync_on_lock_cancel"
6165         local soc_old=$(do_facet ost1 lctl get_param -n $soc | head -n1)
6166         local hosts=
6167         if [ "$soc_old" != "never" -a "$(facet_fstype ost1)" != "ldiskfs" ]; then
6168                 hosts=$(for host in $(seq -f "ost%g" 1 $OSTCOUNT); do
6169                           facet_active_host $host; done | sort -u)
6170                 do_nodes $hosts lctl set_param $soc=never
6171         fi
6172
6173         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1M
6174         sync; sleep 1; sync
6175         local BEFORE=`date +%s`
6176         cancel_lru_locks osc
6177         local AFTER=`date +%s`
6178         local DIFF=$((AFTER-BEFORE))
6179         if [ $DIFF -gt 1 ] ; then
6180                 error "elapsed for 1M@1T = $DIFF"
6181         fi
6182
6183         [ -n "$hosts" ] && do_nodes $hosts lctl set_param $soc=$soc_old
6184
6185         rm -f $DIR/$tfile
6186 }
6187 run_test 80 "Page eviction is equally fast at high offsets too  ===="
6188
6189 test_81a() { # LU-456
6190         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6191         remote_ost_nodsh && skip "remote OST with nodsh" && return
6192         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
6193         # MUST OR with the OBD_FAIL_ONCE (0x80000000)
6194         do_facet ost1 lctl set_param fail_loc=0x80000228
6195
6196         # write should trigger a retry and success
6197         $SETSTRIPE -i 0 -c 1 $DIR/$tfile
6198         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6199         RC=$?
6200         if [ $RC -ne 0 ] ; then
6201                 error "write should success, but failed for $RC"
6202         fi
6203 }
6204 run_test 81a "OST should retry write when get -ENOSPC ==============="
6205
6206 test_81b() { # LU-456
6207         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6208         remote_ost_nodsh && skip "remote OST with nodsh" && return
6209         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
6210         # Don't OR with the OBD_FAIL_ONCE (0x80000000)
6211         do_facet ost1 lctl set_param fail_loc=0x228
6212
6213         # write should retry several times and return -ENOSPC finally
6214         $SETSTRIPE -i 0 -c 1 $DIR/$tfile
6215         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6216         RC=$?
6217         ENOSPC=28
6218         if [ $RC -ne $ENOSPC ] ; then
6219                 error "dd should fail for -ENOSPC, but succeed."
6220         fi
6221 }
6222 run_test 81b "OST should return -ENOSPC when retry still fails ======="
6223
6224 test_82() { # LU-1031
6225         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10
6226         local gid1=14091995
6227         local gid2=16022000
6228
6229         multiop_bg_pause $DIR/$tfile OG${gid1}_g${gid1}c || return 1
6230         local MULTIPID1=$!
6231         multiop_bg_pause $DIR/$tfile O_G${gid2}r10g${gid2}c || return 2
6232         local MULTIPID2=$!
6233         kill -USR1 $MULTIPID2
6234         sleep 2
6235         if [[ `ps h -o comm -p $MULTIPID2` == "" ]]; then
6236                 error "First grouplock does not block second one"
6237         else
6238                 echo "Second grouplock blocks first one"
6239         fi
6240         kill -USR1 $MULTIPID1
6241         wait $MULTIPID1
6242         wait $MULTIPID2
6243 }
6244 run_test 82 "Basic grouplock test ==============================="
6245
6246 test_99a() {
6247         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" &&
6248                 return
6249         test_mkdir -p $DIR/d99cvsroot
6250         chown $RUNAS_ID $DIR/d99cvsroot
6251         local oldPWD=$PWD       # bug 13584, use $TMP as working dir
6252         cd $TMP
6253
6254         $RUNAS cvs -d $DIR/d99cvsroot init || error "cvs init failed"
6255         cd $oldPWD
6256 }
6257 run_test 99a "cvs init ========================================="
6258
6259 test_99b() {
6260         [ -z "$(which cvs 2>/dev/null)" ] &&
6261                 skip_env "could not find cvs" && return
6262         [ ! -d $DIR/d99cvsroot ] && test_99a
6263         cd /etc/init.d
6264         # some versions of cvs import exit(1) when asked to import links or
6265         # files they can't read.  ignore those files.
6266         TOIGNORE=$(find . -type l -printf '-I %f\n' -o \
6267                         ! -perm /4 -printf '-I %f\n')
6268         $RUNAS cvs -d $DIR/d99cvsroot import -m "nomesg" $TOIGNORE \
6269                 d99reposname vtag rtag
6270 }
6271 run_test 99b "cvs import ======================================="
6272
6273 test_99c() {
6274         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
6275         [ ! -d $DIR/d99cvsroot ] && test_99b
6276         cd $DIR
6277         test_mkdir -p $DIR/d99reposname
6278         chown $RUNAS_ID $DIR/d99reposname
6279         $RUNAS cvs -d $DIR/d99cvsroot co d99reposname
6280 }
6281 run_test 99c "cvs checkout ====================================="
6282
6283 test_99d() {
6284         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
6285         [ ! -d $DIR/d99cvsroot ] && test_99c
6286         cd $DIR/d99reposname
6287         $RUNAS touch foo99
6288         $RUNAS cvs add -m 'addmsg' foo99
6289 }
6290 run_test 99d "cvs add =========================================="
6291
6292 test_99e() {
6293         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
6294         [ ! -d $DIR/d99cvsroot ] && test_99c
6295         cd $DIR/d99reposname
6296         $RUNAS cvs update
6297 }
6298 run_test 99e "cvs update ======================================="
6299
6300 test_99f() {
6301         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
6302         [ ! -d $DIR/d99cvsroot ] && test_99d
6303         cd $DIR/d99reposname
6304         $RUNAS cvs commit -m 'nomsg' foo99
6305     rm -fr $DIR/d99cvsroot
6306 }
6307 run_test 99f "cvs commit ======================================="
6308
6309 test_100() {
6310         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6311         [ "$NETTYPE" = tcp ] || \
6312                 { skip "TCP secure port test, not useful for NETTYPE=$NETTYPE" && \
6313                         return ; }
6314
6315         remote_ost_nodsh && skip "remote OST with nodsh" && return
6316         remote_mds_nodsh && skip "remote MDS with nodsh" && return
6317         remote_servers || \
6318                 { skip "useless for local single node setup" && return; }
6319
6320         netstat -tna | ( rc=1; while read PROT SND RCV LOCAL REMOTE STAT; do
6321                 [ "$PROT" != "tcp" ] && continue
6322                 RPORT=$(echo $REMOTE | cut -d: -f2)
6323                 [ "$RPORT" != "$ACCEPTOR_PORT" ] && continue
6324
6325                 rc=0
6326                 LPORT=`echo $LOCAL | cut -d: -f2`
6327                 if [ $LPORT -ge 1024 ]; then
6328                         echo "bad: $PROT $SND $RCV $LOCAL $REMOTE $STAT"
6329                         netstat -tna
6330                         error_exit "local: $LPORT > 1024, remote: $RPORT"
6331                 fi
6332         done
6333         [ "$rc" = 0 ] || error_exit "privileged port not found" )
6334 }
6335 run_test 100 "check local port using privileged port ==========="
6336
6337 function get_named_value()
6338 {
6339     local tag
6340
6341     tag=$1
6342     while read ;do
6343         line=$REPLY
6344         case $line in
6345         $tag*)
6346             echo $line | sed "s/^$tag[ ]*//"
6347             break
6348             ;;
6349         esac
6350     done
6351 }
6352
6353 export CACHE_MAX=$($LCTL get_param -n llite.*.max_cached_mb |
6354                    awk '/^max_cached_mb/ { print $2 }')
6355
6356 cleanup_101a() {
6357         $LCTL set_param -n llite.*.max_cached_mb $CACHE_MAX
6358         trap 0
6359 }
6360
6361 test_101a() {
6362         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6363         [ $MDSCOUNT -ge 2 ] && skip "skip now for >= 2 MDTs" && return #LU-4322
6364         local s
6365         local discard
6366         local nreads=10000
6367         local cache_limit=32
6368
6369         $LCTL set_param -n osc.*-osc*.rpc_stats 0
6370         trap cleanup_101a EXIT
6371         $LCTL set_param -n llite.*.read_ahead_stats 0
6372         $LCTL set_param -n llite.*.max_cached_mb $cache_limit
6373
6374         #
6375         # randomly read 10000 of 64K chunks from file 3x 32MB in size
6376         #
6377         echo "nreads: $nreads file size: $((cache_limit * 3))MB"
6378         $READS -f $DIR/$tfile -s$((cache_limit * 3192 * 1024)) -b65536 -C -n$nreads -t 180
6379
6380         discard=0
6381         for s in $($LCTL get_param -n llite.*.read_ahead_stats |
6382                 get_named_value 'read but discarded' | cut -d" " -f1); do
6383                         discard=$(($discard + $s))
6384         done
6385         cleanup_101a
6386
6387         if [[ $(($discard * 10)) -gt $nreads ]]; then
6388                 $LCTL get_param osc.*-osc*.rpc_stats
6389                 $LCTL get_param llite.*.read_ahead_stats
6390                 error "too many ($discard) discarded pages"
6391         fi
6392         rm -f $DIR/$tfile || true
6393 }
6394 run_test 101a "check read-ahead for random reads ================"
6395
6396 setup_test101bc() {
6397         test_mkdir -p $DIR/$tdir
6398         local STRIPE_SIZE=$1
6399         local FILE_LENGTH=$2
6400         STRIPE_OFFSET=0
6401
6402         local FILE_SIZE_MB=$((FILE_LENGTH / STRIPE_SIZE))
6403
6404         local list=$(comma_list $(osts_nodes))
6405         set_osd_param $list '' read_cache_enable 0
6406         set_osd_param $list '' writethrough_cache_enable 0
6407
6408         trap cleanup_test101bc EXIT
6409         # prepare the read-ahead file
6410         $SETSTRIPE -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $OSTCOUNT $DIR/$tfile
6411
6412         dd if=/dev/zero of=$DIR/$tfile bs=$STRIPE_SIZE \
6413                                 count=$FILE_SIZE_MB 2> /dev/null
6414
6415 }
6416
6417 cleanup_test101bc() {
6418         trap 0
6419         rm -rf $DIR/$tdir
6420         rm -f $DIR/$tfile
6421
6422         local list=$(comma_list $(osts_nodes))
6423         set_osd_param $list '' read_cache_enable 1
6424         set_osd_param $list '' writethrough_cache_enable 1
6425 }
6426
6427 calc_total() {
6428         awk 'BEGIN{total=0}; {total+=$1}; END{print total}'
6429 }
6430
6431 ra_check_101() {
6432         local READ_SIZE=$1
6433         local STRIPE_SIZE=$2
6434         local FILE_LENGTH=$3
6435         local RA_INC=1048576
6436         local STRIDE_LENGTH=$((STRIPE_SIZE/READ_SIZE))
6437         local discard_limit=$((((STRIDE_LENGTH - 1)*3/(STRIDE_LENGTH*OSTCOUNT))* \
6438                              (STRIDE_LENGTH*OSTCOUNT - STRIDE_LENGTH)))
6439         DISCARD=$($LCTL get_param -n llite.*.read_ahead_stats |
6440                         get_named_value 'read but discarded' |
6441                         cut -d" " -f1 | calc_total)
6442         if [[ $DISCARD -gt $discard_limit ]]; then
6443                 $LCTL get_param llite.*.read_ahead_stats
6444                 error "Too many ($DISCARD) discarded pages with size (${READ_SIZE})"
6445         else
6446                 echo "Read-ahead success for size ${READ_SIZE}"
6447         fi
6448 }
6449
6450 test_101b() {
6451         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6452         [[ $OSTCOUNT -lt 2 ]] &&
6453                 skip_env "skipping stride IO stride-ahead test" && return
6454         local STRIPE_SIZE=1048576
6455         local STRIDE_SIZE=$((STRIPE_SIZE*OSTCOUNT))
6456         if [ $SLOW == "yes" ]; then
6457                 local FILE_LENGTH=$((STRIDE_SIZE * 64))
6458         else
6459                 local FILE_LENGTH=$((STRIDE_SIZE * 8))
6460         fi
6461
6462         local ITERATION=$((FILE_LENGTH / STRIDE_SIZE))
6463
6464         # prepare the read-ahead file
6465         setup_test101bc $STRIPE_SIZE $FILE_LENGTH
6466         cancel_lru_locks osc
6467         for BIDX in 2 4 8 16 32 64 128 256
6468         do
6469                 local BSIZE=$((BIDX*4096))
6470                 local READ_COUNT=$((STRIPE_SIZE/BSIZE))
6471                 local STRIDE_LENGTH=$((STRIDE_SIZE/BSIZE))
6472                 local OFFSET=$((STRIPE_SIZE/BSIZE*(OSTCOUNT - 1)))
6473                 $LCTL set_param -n llite.*.read_ahead_stats 0
6474                 $READS -f $DIR/$tfile  -l $STRIDE_LENGTH -o $OFFSET \
6475                               -s $FILE_LENGTH -b $STRIPE_SIZE -a $READ_COUNT -n $ITERATION
6476                 cancel_lru_locks osc
6477                 ra_check_101 $BSIZE $STRIPE_SIZE $FILE_LENGTH
6478         done
6479         cleanup_test101bc
6480         true
6481 }
6482 run_test 101b "check stride-io mode read-ahead ================="
6483
6484 test_101c() {
6485         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6486         local STRIPE_SIZE=1048576
6487         local FILE_LENGTH=$((STRIPE_SIZE*100))
6488         local nreads=10000
6489         local osc_rpc_stats
6490
6491         setup_test101bc $STRIPE_SIZE $FILE_LENGTH
6492
6493         cancel_lru_locks osc
6494         $LCTL set_param osc.*.rpc_stats 0
6495         $READS -f $DIR/$tfile -s$FILE_LENGTH -b65536 -n$nreads -t 180
6496         for osc_rpc_stats in $($LCTL get_param -N osc.*.rpc_stats); do
6497                 local stats=$($LCTL get_param -n $osc_rpc_stats)
6498                 local lines=$(echo "$stats" | awk 'END {print NR;}')
6499                 local size
6500
6501                 if [ $lines -le 20 ]; then
6502                         continue
6503                 fi
6504                 for size in 1 2 4 8; do
6505                         local rpc=$(echo "$stats" |
6506                                     awk '($1 == "'$size':") {print $2; exit; }')
6507                         [ $rpc != 0 ] &&
6508                                 error "Small $((size*4))k read IO $rpc !"
6509                 done
6510                 echo "$osc_rpc_stats check passed!"
6511         done
6512         cleanup_test101bc
6513         true
6514 }
6515 run_test 101c "check stripe_size aligned read-ahead ================="
6516
6517 set_read_ahead() {
6518         $LCTL get_param -n llite.*.max_read_ahead_mb | head -n 1
6519         $LCTL set_param -n llite.*.max_read_ahead_mb $1 > /dev/null 2>&1
6520 }
6521
6522 test_101d() {
6523         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6524         local file=$DIR/$tfile
6525         local sz_MB=${FILESIZE_101d:-500}
6526         local ra_MB=${READAHEAD_MB:-40}
6527
6528         local free_MB=$(($(df -P $DIR | tail -n 1 | awk '{ print $4 }') / 1024))
6529         [ $free_MB -lt $sz_MB ] &&
6530                 skip "Need free space ${sz_MB}M, have ${free_MB}M" && return
6531
6532         echo "Create test file $file size ${sz_MB}M, ${free_MB}M free"
6533         $SETSTRIPE -c -1 $file || error "setstripe failed"
6534
6535         dd if=/dev/zero of=$file bs=1M count=$sz_MB || error "dd failed"
6536         echo Cancel LRU locks on lustre client to flush the client cache
6537         cancel_lru_locks osc
6538
6539         echo Disable read-ahead
6540         local old_READAHEAD=$(set_read_ahead 0)
6541
6542         echo Reading the test file $file with read-ahead disabled
6543         local raOFF=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$sz_MB")
6544
6545         echo Cancel LRU locks on lustre client to flush the client cache
6546         cancel_lru_locks osc
6547         echo Enable read-ahead with ${ra_MB}MB
6548         set_read_ahead $ra_MB
6549
6550         echo Reading the test file $file with read-ahead enabled
6551         local raON=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$sz_MB")
6552
6553         echo "read-ahead disabled time read $raOFF"
6554         echo "read-ahead enabled  time read $raON"
6555
6556         set_read_ahead $old_READAHEAD
6557         rm -f $file
6558         wait_delete_completed
6559
6560         [ $raOFF -le 1 -o $raON -lt $raOFF ] ||
6561                 error "readahead ${raON}s > no-readahead ${raOFF}s ${sz_MB}M"
6562 }
6563 run_test 101d "file read with and without read-ahead enabled"
6564
6565 test_101e() {
6566         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6567         local file=$DIR/$tfile
6568         local size_KB=500  #KB
6569         local count=100
6570         local bsize=1024
6571
6572         local free_KB=$(df -P $DIR | tail -n 1 | awk '{ print $4 }')
6573         local need_KB=$((count * size_KB))
6574         [[ $free_KB -le $need_KB ]] &&
6575                 skip_env "Need free space $need_KB, have $free_KB" && return
6576
6577         echo "Creating $count ${size_KB}K test files"
6578         for ((i = 0; i < $count; i++)); do
6579                 dd if=/dev/zero of=$file.$i bs=$bsize count=$size_KB 2>/dev/null
6580         done
6581
6582         echo "Cancel LRU locks on lustre client to flush the client cache"
6583         cancel_lru_locks osc
6584
6585         echo "Reset readahead stats"
6586         $LCTL set_param -n llite.*.read_ahead_stats 0
6587
6588         for ((i = 0; i < $count; i++)); do
6589                 dd if=$file.$i of=/dev/null bs=$bsize count=$size_KB 2>/dev/null
6590         done
6591
6592         local miss=$($LCTL get_param -n llite.*.read_ahead_stats |
6593                      get_named_value 'misses' | cut -d" " -f1 | calc_total)
6594
6595         for ((i = 0; i < $count; i++)); do
6596                 rm -rf $file.$i 2>/dev/null
6597         done
6598
6599         #10000 means 20% reads are missing in readahead
6600         [[ $miss -lt 10000 ]] ||  error "misses too much for small reads"
6601 }
6602 run_test 101e "check read-ahead for small read(1k) for small files(500k)"
6603
6604 test_101f() {
6605         which iozone || { skip "no iozone installed" && return; }
6606
6607         # create a test file
6608         iozone -i 0 -+n -r 1m -s 128m -w -f $DIR/$tfile > /dev/null 2>&1
6609
6610         echo Cancel LRU locks on lustre client to flush the client cache
6611         cancel_lru_locks osc
6612
6613         echo Reset readahead stats
6614         $LCTL set_param -n llite.*.read_ahead_stats 0
6615
6616         echo mmap read the file with small block size
6617         iozone -i 1 -+n -r 32k -s 128m -B -f $DIR/$tfile > /dev/null 2>&1
6618
6619         echo checking missing pages
6620         local miss=$($LCTL get_param -n llite.*.read_ahead_stats |
6621                         get_named_value 'misses' | cut -d" " -f1 | calc_total)
6622
6623         [ $miss -lt 3 ] || error "misses too much pages!"
6624         rm -f $DIR/$tfile
6625 }
6626 run_test 101f "check mmap read performance"
6627
6628 test_101g() {
6629         local rpcs
6630         local osts=$(get_facets OST)
6631         local list=$(comma_list $(osts_nodes))
6632         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
6633
6634         save_lustre_params $osts "obdfilter.*.brw_size" > $p
6635
6636         $LFS setstripe -c 1 $DIR/$tfile
6637
6638         if [ $(lustre_version_code ost1) -ge $(version_code 2.8.52) ]; then
6639                 set_osd_param $list '' brw_size 16M
6640
6641                 echo "remount client to enable large RPC size"
6642                 remount_client $MOUNT || error "remount_client failed"
6643
6644                 for mp in $($LCTL get_param -n osc.*.max_pages_per_rpc); do
6645                         [ "$mp" -eq 4096 ] ||
6646                                 error "max_pages_per_rpc not correctly set"
6647                 done
6648
6649                 $LCTL set_param -n osc.*.rpc_stats=0
6650
6651                 # 10*16 MiB should be enough for the test
6652                 dd if=/dev/zero of=$DIR/$tfile bs=16M count=10
6653                 cancel_lru_locks osc
6654                 dd of=/dev/null if=$DIR/$tfile bs=16M count=10
6655
6656                 # calculate 16 MiB RPCs
6657                 rpcs=$($LCTL get_param 'osc.*.rpc_stats' |
6658                        sed -n '/pages per rpc/,/^$/p' |
6659                        awk 'BEGIN { sum = 0 }; /4096:/ { sum += $2 };
6660                             END { print sum }')
6661                 echo $rpcs RPCs
6662                 [ "$rpcs" -eq 10 ] || error "not all RPCs are 16 MiB BRW rpcs"
6663         fi
6664
6665         echo "set RPC size to 4MB"
6666
6667         $LCTL set_param -n osc.*.max_pages_per_rpc=4M osc.*.rpc_stats=0
6668         dd if=/dev/zero of=$DIR/$tfile bs=4M count=25
6669         cancel_lru_locks osc
6670         dd of=/dev/null if=$DIR/$tfile bs=4M count=25
6671
6672         # calculate 4 MiB RPCs
6673         rpcs=$($LCTL get_param 'osc.*.rpc_stats' |
6674                 sed -n '/pages per rpc/,/^$/p' |
6675                 awk 'BEGIN { sum = 0 }; /1024:/ { sum += $2 };
6676                      END { print sum }')
6677         echo $rpcs RPCs
6678         [ "$rpcs" -eq 25 ] || error "not all RPCs are 4 MiB BRW rpcs"
6679
6680         restore_lustre_params < $p
6681         remount_client $MOUNT || error "remount_client failed"
6682
6683         rm -f $p $DIR/$tfile
6684 }
6685 run_test 101g "Big bulk(4/16 MiB) readahead"
6686
6687 setup_test102() {
6688         test_mkdir -p $DIR/$tdir
6689         chown $RUNAS_ID $DIR/$tdir
6690         STRIPE_SIZE=65536
6691         STRIPE_OFFSET=1
6692         STRIPE_COUNT=$OSTCOUNT
6693         [[ $OSTCOUNT -gt 4 ]] && STRIPE_COUNT=4
6694
6695         trap cleanup_test102 EXIT
6696         cd $DIR
6697         $1 $SETSTRIPE -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $STRIPE_COUNT $tdir
6698         cd $DIR/$tdir
6699         for num in 1 2 3 4; do
6700                 for count in $(seq 1 $STRIPE_COUNT); do
6701                         for idx in $(seq 0 $[$STRIPE_COUNT - 1]); do
6702                                 local size=`expr $STRIPE_SIZE \* $num`
6703                                 local file=file"$num-$idx-$count"
6704                                 $1 $SETSTRIPE -S $size -i $idx -c $count $file
6705                         done
6706                 done
6707         done
6708
6709         cd $DIR
6710         $1 $TAR cf $TMP/f102.tar $tdir --xattrs
6711 }
6712
6713 cleanup_test102() {
6714         trap 0
6715         rm -f $TMP/f102.tar
6716         rm -rf $DIR/d0.sanity/d102
6717 }
6718
6719 test_102a() {
6720         local testfile=$DIR/$tfile
6721
6722         touch $testfile
6723
6724         [ "$UID" != 0 ] && skip_env "must run as root" && return
6725         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep xattr)" ] &&
6726                 skip_env "must have user_xattr" && return
6727
6728         [ -z "$(which setfattr 2>/dev/null)" ] &&
6729                 skip_env "could not find setfattr" && return
6730
6731         echo "set/get xattr..."
6732         setfattr -n trusted.name1 -v value1 $testfile ||
6733                 error "setfattr -n trusted.name1=value1 $testfile failed"
6734         getfattr -n trusted.name1 $testfile 2> /dev/null |
6735           grep "trusted.name1=.value1" ||
6736                 error "$testfile missing trusted.name1=value1"
6737
6738         setfattr -n user.author1 -v author1 $testfile ||
6739                 error "setfattr -n user.author1=author1 $testfile failed"
6740         getfattr -n user.author1 $testfile 2> /dev/null |
6741           grep "user.author1=.author1" ||
6742                 error "$testfile missing trusted.author1=author1"
6743
6744         echo "listxattr..."
6745         setfattr -n trusted.name2 -v value2 $testfile ||
6746                 error "$testfile unable to set trusted.name2"
6747         setfattr -n trusted.name3 -v value3 $testfile ||
6748                 error "$testfile unable to set trusted.name3"
6749         [ $(getfattr -d -m "^trusted" $testfile 2> /dev/null |
6750             grep "trusted.name" | wc -l) -eq 3 ] ||
6751                 error "$testfile missing 3 trusted.name xattrs"
6752
6753         setfattr -n user.author2 -v author2 $testfile ||
6754                 error "$testfile unable to set user.author2"
6755         setfattr -n user.author3 -v author3 $testfile ||
6756                 error "$testfile unable to set user.author3"
6757         [ $(getfattr -d -m "^user" $testfile 2> /dev/null |
6758             grep "user.author" | wc -l) -eq 3 ] ||
6759                 error "$testfile missing 3 user.author xattrs"
6760
6761         echo "remove xattr..."
6762         setfattr -x trusted.name1 $testfile ||
6763                 error "$testfile error deleting trusted.name1"
6764         getfattr -d -m trusted $testfile 2> /dev/null | grep "trusted.name1" &&
6765                 error "$testfile did not delete trusted.name1 xattr"
6766
6767         setfattr -x user.author1 $testfile ||
6768                 error "$testfile error deleting user.author1"
6769         getfattr -d -m user $testfile 2> /dev/null | grep "user.author1" &&
6770                 error "$testfile did not delete trusted.name1 xattr"
6771
6772         # b10667: setting lustre special xattr be silently discarded
6773         echo "set lustre special xattr ..."
6774         setfattr -n "trusted.lov" -v "invalid value" $testfile ||
6775                 error "$testfile allowed setting trusted.lov"
6776 }
6777 run_test 102a "user xattr test =================================="
6778
6779 test_102b() {
6780         [ -z "$(which setfattr 2>/dev/null)" ] &&
6781                 skip_env "could not find setfattr" && return
6782
6783         # b10930: get/set/list trusted.lov xattr
6784         echo "get/set/list trusted.lov xattr ..."
6785         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping 2-stripe test" && return
6786         local testfile=$DIR/$tfile
6787         $SETSTRIPE -S 65536 -i 1 -c $OSTCOUNT $testfile ||
6788                 error "setstripe failed"
6789         local STRIPECOUNT=$($GETSTRIPE -c $testfile) ||
6790                 error "getstripe failed"
6791         getfattr -d -m "^trusted" $testfile 2>/dev/null | grep "trusted.lov" ||
6792                 error "can't get trusted.lov from $testfile"
6793
6794         local testfile2=${testfile}2
6795         local value=$(getfattr -n trusted.lov $testfile 2>/dev/null |
6796                         grep "trusted.lov" | sed -e 's/[^=]\+=//')
6797
6798         $MCREATE $testfile2
6799         setfattr -n trusted.lov -v $value $testfile2
6800         local stripe_size=$($GETSTRIPE -S $testfile2)
6801         local stripe_count=$($GETSTRIPE -c $testfile2)
6802         [[ $stripe_size -eq 65536 ]] ||
6803                 error "stripe size $stripe_size != 65536"
6804         [[ $stripe_count -eq $STRIPECOUNT ]] ||
6805                 error "stripe count $stripe_count != $STRIPECOUNT"
6806         rm -f $DIR/$tfile
6807 }
6808 run_test 102b "getfattr/setfattr for trusted.lov EAs ============"
6809
6810 test_102c() {
6811         [ -z "$(which setfattr 2>/dev/null)" ] &&
6812                 skip_env "could not find setfattr" && return
6813
6814         # b10930: get/set/list lustre.lov xattr
6815         echo "get/set/list lustre.lov xattr ..."
6816         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping 2-stripe test" && return
6817         test_mkdir -p $DIR/$tdir
6818         chown $RUNAS_ID $DIR/$tdir
6819         local testfile=$DIR/$tdir/$tfile
6820         $RUNAS $SETSTRIPE -S 65536 -i 1 -c $OSTCOUNT $testfile ||
6821                 error "setstripe failed"
6822         local STRIPECOUNT=$($RUNAS $GETSTRIPE -c $testfile) ||
6823                 error "getstripe failed"
6824         $RUNAS getfattr -d -m "^lustre" $testfile 2> /dev/null | \
6825         grep "lustre.lov" || error "can't get lustre.lov from $testfile"
6826
6827         local testfile2=${testfile}2
6828         local value=`getfattr -n lustre.lov $testfile 2> /dev/null | \
6829                      grep "lustre.lov" |sed -e 's/[^=]\+=//'  `
6830
6831         $RUNAS $MCREATE $testfile2
6832         $RUNAS setfattr -n lustre.lov -v $value $testfile2
6833         local stripe_size=$($RUNAS $GETSTRIPE -S $testfile2)
6834         local stripe_count=$($RUNAS $GETSTRIPE -c $testfile2)
6835         [ $stripe_size -eq 65536 ] || error "stripe size $stripe_size != 65536"
6836         [ $stripe_count -eq $STRIPECOUNT ] ||
6837                 error "stripe count $stripe_count != $STRIPECOUNT"
6838 }
6839 run_test 102c "non-root getfattr/setfattr for lustre.lov EAs ==========="
6840
6841 compare_stripe_info1() {
6842         local stripe_index_all_zero=true
6843
6844         for num in 1 2 3 4; do
6845                 for count in $(seq 1 $STRIPE_COUNT); do
6846                         for offset in $(seq 0 $[$STRIPE_COUNT - 1]); do
6847                                 local size=$((STRIPE_SIZE * num))
6848                                 local file=file"$num-$offset-$count"
6849                                 stripe_size=$($LFS getstripe -S $PWD/$file)
6850                                 [[ $stripe_size -ne $size ]] &&
6851                                     error "$file: size $stripe_size != $size"
6852                                 stripe_count=$($LFS getstripe -c $PWD/$file)
6853                                 # allow fewer stripes to be created, ORI-601
6854                                 [[ $stripe_count -lt $(((3 * count + 3) / 4)) ]] &&
6855                                     error "$file: count $stripe_count != $count"
6856                                 stripe_index=$($LFS getstripe -i $PWD/$file)
6857                                 [[ $stripe_index -ne 0 ]] &&
6858                                         stripe_index_all_zero=false
6859                         done
6860                 done
6861         done
6862         $stripe_index_all_zero &&
6863                 error "all files are being extracted starting from OST index 0"
6864         return 0
6865 }
6866
6867 find_lustre_tar() {
6868         [ -n "$(which tar 2>/dev/null)" ] &&
6869                 strings $(which tar) | grep -q "lustre" && echo tar
6870 }
6871
6872 test_102d() {
6873         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6874         # b10930: tar test for trusted.lov xattr
6875         TAR=$(find_lustre_tar)
6876         [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
6877         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping N-stripe test" && return
6878         setup_test102
6879         test_mkdir -p $DIR/d102d
6880         $TAR xf $TMP/f102.tar -C $DIR/d102d --xattrs
6881         cd $DIR/d102d/$tdir
6882         compare_stripe_info1
6883 }
6884 run_test 102d "tar restore stripe info from tarfile,not keep osts ==========="
6885
6886 test_102f() {
6887         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6888         # b10930: tar test for trusted.lov xattr
6889         TAR=$(find_lustre_tar)
6890         [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
6891         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping N-stripe test" && return
6892         setup_test102
6893         test_mkdir -p $DIR/d102f
6894         cd $DIR
6895         $TAR cf - --xattrs $tdir | $TAR xf - --xattrs -C $DIR/d102f
6896         cd $DIR/d102f/$tdir
6897         compare_stripe_info1
6898 }
6899 run_test 102f "tar copy files, not keep osts ==========="
6900
6901 grow_xattr() {
6902         local xsize=${1:-1024}  # in bytes
6903         local file=$DIR/$tfile
6904
6905         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep xattr)" ] &&
6906                 skip "must have user_xattr" && return 0
6907         [ -z "$(which setfattr 2>/dev/null)" ] &&
6908                 skip_env "could not find setfattr" && return 0
6909         [ -z "$(which getfattr 2>/dev/null)" ] &&
6910                 skip_env "could not find getfattr" && return 0
6911
6912         touch $file
6913
6914         local value="$(generate_string $xsize)"
6915
6916         local xbig=trusted.big
6917         log "save $xbig on $file"
6918         setfattr -n $xbig -v $value $file ||
6919                 error "saving $xbig on $file failed"
6920
6921         local orig=$(get_xattr_value $xbig $file)
6922         [[ "$orig" != "$value" ]] && error "$xbig different after saving $xbig"
6923
6924         local xsml=trusted.sml
6925         log "save $xsml on $file"
6926         setfattr -n $xsml -v val $file || error "saving $xsml on $file failed"
6927
6928         local new=$(get_xattr_value $xbig $file)
6929         [[ "$new" != "$orig" ]] && error "$xbig different after saving $xsml"
6930
6931         log "grow $xsml on $file"
6932         setfattr -n $xsml -v "$value" $file ||
6933                 error "growing $xsml on $file failed"
6934
6935         new=$(get_xattr_value $xbig $file)
6936         [[ "$new" != "$orig" ]] && error "$xbig different after growing $xsml"
6937         log "$xbig still valid after growing $xsml"
6938
6939         rm -f $file
6940 }
6941
6942 test_102h() { # bug 15777
6943         grow_xattr 1024
6944 }
6945 run_test 102h "grow xattr from inside inode to external block"
6946
6947 test_102ha() {
6948         large_xattr_enabled || { skip "large_xattr disabled" && return; }
6949         grow_xattr $(max_xattr_size)
6950 }
6951 run_test 102ha "grow xattr from inside inode to external inode"
6952
6953 test_102i() { # bug 17038
6954         [ -z "$(which getfattr 2>/dev/null)" ] &&
6955                 skip "could not find getfattr" && return
6956         touch $DIR/$tfile
6957         ln -s $DIR/$tfile $DIR/${tfile}link
6958         getfattr -n trusted.lov $DIR/$tfile ||
6959                 error "lgetxattr on $DIR/$tfile failed"
6960         getfattr -h -n trusted.lov $DIR/${tfile}link 2>&1 |
6961                 grep -i "no such attr" ||
6962                 error "error for lgetxattr on $DIR/${tfile}link is not ENODATA"
6963         rm -f $DIR/$tfile $DIR/${tfile}link
6964 }
6965 run_test 102i "lgetxattr test on symbolic link ============"
6966
6967 test_102j() {
6968         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6969         TAR=$(find_lustre_tar)
6970         [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
6971         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping N-stripe test" && return
6972         setup_test102 "$RUNAS"
6973         test_mkdir -p $DIR/d102j
6974         chown $RUNAS_ID $DIR/d102j
6975         $RUNAS $TAR xf $TMP/f102.tar -C $DIR/d102j --xattrs
6976         cd $DIR/d102j/$tdir
6977         compare_stripe_info1 "$RUNAS"
6978 }
6979 run_test 102j "non-root tar restore stripe info from tarfile, not keep osts ==="
6980
6981 test_102k() {
6982         [ -z "$(which setfattr 2>/dev/null)" ] &&
6983                 skip "could not find setfattr" && return
6984         touch $DIR/$tfile
6985         # b22187 just check that does not crash for regular file.
6986         setfattr -n trusted.lov $DIR/$tfile
6987         # b22187 'setfattr -n trusted.lov' should work as remove LOV EA for directories
6988         local test_kdir=$DIR/d102k
6989         test_mkdir $test_kdir
6990         local default_size=`$GETSTRIPE -S $test_kdir`
6991         local default_count=`$GETSTRIPE -c $test_kdir`
6992         local default_offset=`$GETSTRIPE -i $test_kdir`
6993         $SETSTRIPE -S 65536 -i 0 -c $OSTCOUNT $test_kdir ||
6994                 error 'dir setstripe failed'
6995         setfattr -n trusted.lov $test_kdir
6996         local stripe_size=`$GETSTRIPE -S $test_kdir`
6997         local stripe_count=`$GETSTRIPE -c $test_kdir`
6998         local stripe_offset=`$GETSTRIPE -i $test_kdir`
6999         [ $stripe_size -eq $default_size ] ||
7000                 error "stripe size $stripe_size != $default_size"
7001         [ $stripe_count -eq $default_count ] ||
7002                 error "stripe count $stripe_count != $default_count"
7003         [ $stripe_offset -eq $default_offset ] ||
7004                 error "stripe offset $stripe_offset != $default_offset"
7005         rm -rf $DIR/$tfile $test_kdir
7006 }
7007 run_test 102k "setfattr without parameter of value shouldn't cause a crash"
7008
7009 test_102l() {
7010         [ -z "$(which getfattr 2>/dev/null)" ] &&
7011                 skip "could not find getfattr" && return
7012
7013         # LU-532 trusted. xattr is invisible to non-root
7014         local testfile=$DIR/$tfile
7015
7016         touch $testfile
7017
7018         echo "listxattr as user..."
7019         chown $RUNAS_ID $testfile
7020         $RUNAS getfattr -d -m '.*' $testfile 2>&1 |
7021             grep -q "trusted" &&
7022                 error "$testfile trusted xattrs are user visible"
7023
7024         return 0;
7025 }
7026 run_test 102l "listxattr size test =================================="
7027
7028 test_102m() { # LU-3403 llite: error of listxattr when buffer is small
7029         local path=$DIR/$tfile
7030         touch $path
7031
7032         listxattr_size_check $path || error "listattr_size_check $path failed"
7033 }
7034 run_test 102m "Ensure listxattr fails on small bufffer ========"
7035
7036 cleanup_test102
7037
7038 getxattr() { # getxattr path name
7039         # Return the base64 encoding of the value of xattr name on path.
7040         local path=$1
7041         local name=$2
7042
7043         # # getfattr --absolute-names --encoding=base64 --name=trusted.lov $path
7044         # file: $path
7045         # trusted.lov=0s0AvRCwEAAAAGAAAAAAAAAAAEAAACAAAAAAAQAAEAA...AAAAAAAAA=
7046         #
7047         # We print just 0s0AvRCwEAAAAGAAAAAAAAAAAEAAACAAAAAAAQAAEAA...AAAAAAAAA=
7048
7049         getfattr --absolute-names --encoding=base64 --name=$name $path |
7050                 awk -F= -v name=$name '$1 == name {
7051                         print substr($0, index($0, "=") + 1);
7052         }'
7053 }
7054
7055 test_102n() { # LU-4101 mdt: protect internal xattrs
7056         local file0=$DIR/$tfile.0
7057         local file1=$DIR/$tfile.1
7058         local xattr0=$TMP/$tfile.0
7059         local xattr1=$TMP/$tfile.1
7060         local name
7061         local value
7062
7063         [ -z "$(which setfattr 2>/dev/null)" ] &&
7064                 skip "could not find setfattr" && return
7065
7066         if [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.50) ]
7067         then
7068                 skip "MDT < 2.5.50 allows setxattr on internal trusted xattrs"
7069                 return
7070         fi
7071
7072         rm -rf $file0 $file1 $xattr0 $xattr1
7073         touch $file0 $file1
7074
7075         # Get 'before' xattrs of $file1.
7076         getfattr --absolute-names --dump --match=- $file1 > $xattr0
7077
7078         for name in lov lma lmv link fid version som hsm; do
7079                 # Try to copy xattr from $file0 to $file1.
7080                 value=$(getxattr $file0 trusted.$name 2> /dev/null)
7081
7082                 setfattr --name=trusted.$name --value="$value" $file1 ||
7083                         error "setxattr 'trusted.$name' failed"
7084
7085                 # Try to set a garbage xattr.
7086                 value=0sVGhlIHF1aWNrIGJyb3duIGZveCBqdW1wcyBvdmVyIGl0c2VsZi4=
7087
7088                 setfattr --name=trusted.$name --value="$value" $file1 ||
7089                         error "setxattr 'trusted.$name' failed"
7090
7091                 # Try to remove the xattr from $file1. We don't care if this
7092                 # appears to succeed or fail, we just don't want there to be
7093                 # any changes or crashes.
7094                 setfattr --remove=$trusted.$name $file1 2> /dev/null
7095         done
7096
7097         if [ $(lustre_version_code $SINGLEMDS) -gt $(version_code 2.6.50) ]
7098         then
7099                 name="lfsck_ns"
7100                 # Try to copy xattr from $file0 to $file1.
7101                 value=$(getxattr $file0 trusted.$name 2> /dev/null)
7102
7103                 setfattr --name=trusted.$name --value="$value" $file1 ||
7104                         error "setxattr 'trusted.$name' failed"
7105
7106                 # Try to set a garbage xattr.
7107                 value=0sVGhlIHF1aWNrIGJyb3duIGZveCBqdW1wcyBvdmVyIGl0c2VsZi4=
7108
7109                 setfattr --name=trusted.$name --value="$value" $file1 ||
7110                         error "setxattr 'trusted.$name' failed"
7111
7112                 # Try to remove the xattr from $file1. We don't care if this
7113                 # appears to succeed or fail, we just don't want there to be
7114                 # any changes or crashes.
7115                 setfattr --remove=$trusted.$name $file1 2> /dev/null
7116         fi
7117
7118         # Get 'after' xattrs of file1.
7119         getfattr --absolute-names --dump --match=- $file1 > $xattr1
7120
7121         if ! diff $xattr0 $xattr1; then
7122                 error "before and after xattrs of '$file1' differ"
7123         fi
7124
7125         rm -rf $file0 $file1 $xattr0 $xattr1
7126
7127         return 0
7128 }
7129 run_test 102n "silently ignore setxattr on internal trusted xattrs"
7130
7131 test_102p() { # LU-4703 setxattr did not check ownership
7132         local testfile=$DIR/$tfile
7133
7134         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.56) ] &&
7135                 skip "MDS needs to be at least 2.5.56" && return
7136
7137         touch $testfile
7138
7139         echo "setfacl as user..."
7140         $RUNAS setfacl -m "u:$RUNAS_ID:rwx" $testfile
7141         [ $? -ne 0 ] || error "setfacl by $RUNAS_ID was allowed on $testfile"
7142
7143         echo "setfattr as user..."
7144         setfacl -m "u:$RUNAS_ID:---" $testfile
7145         $RUNAS setfattr -x system.posix_acl_access $testfile
7146         [ $? -ne 0 ] || error "setfattr by $RUNAS_ID was allowed on $testfile"
7147 }
7148 run_test 102p "check setxattr(2) correctly fails without permission"
7149
7150 test_102q() {
7151         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.92) ] &&
7152                 skip "MDS needs to be at least 2.6.92" && return
7153         orphan_linkea_check $DIR/$tfile || error "orphan_linkea_check"
7154 }
7155 run_test 102q "flistxattr should not return trusted.link EAs for orphans"
7156
7157 test_102r() {
7158         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.93) ] &&
7159                 skip "MDS needs to be at least 2.6.93" && return
7160         touch $DIR/$tfile || error "touch"
7161         setfattr -n user.$(basename $tfile) $DIR/$tfile || error "setfattr"
7162         getfattr -n user.$(basename $tfile) $DIR/$tfile || error "getfattr"
7163         rm $DIR/$tfile || error "rm"
7164
7165         #normal directory
7166         mkdir -p $DIR/$tdir || error "mkdir"
7167         setfattr -n user.$(basename $tdir) $DIR/$tdir || error "setfattr dir"
7168         getfattr -n user.$(basename $tdir) $DIR/$tdir || error "getfattr dir"
7169         setfattr -x user.$(basename $tdir) $DIR/$tdir ||
7170                 error "$testfile error deleting user.author1"
7171         getfattr -d -m user.$(basename $tdir) 2> /dev/null |
7172                 grep "user.$(basename $tdir)" &&
7173                 error "$tdir did not delete user.$(basename $tdir)"
7174         rmdir $DIR/$tdir || error "rmdir"
7175
7176         #striped directory
7177         test_mkdir -p $DIR/$tdir || error "make striped dir"
7178         setfattr -n user.$(basename $tdir) $DIR/$tdir || error "setfattr dir"
7179         getfattr -n user.$(basename $tdir) $DIR/$tdir || error "getfattr dir"
7180         setfattr -x user.$(basename $tdir) $DIR/$tdir ||
7181                 error "$testfile error deleting user.author1"
7182         getfattr -d -m user.$(basename $tdir) 2> /dev/null |
7183                 grep "user.$(basename $tdir)" &&
7184                 error "$tdir did not delete user.$(basename $tdir)"
7185         rmdir $DIR/$tdir || error "rm striped dir"
7186 }
7187 run_test 102r "set EAs with empty values"
7188
7189 run_acl_subtest()
7190 {
7191     $LUSTRE/tests/acl/run $LUSTRE/tests/acl/$1.test
7192     return $?
7193 }
7194
7195 test_103a() {
7196         [ "$UID" != 0 ] && skip_env "must run as root" && return
7197         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl)" ] &&
7198                 skip "must have acl enabled" && return
7199         [ -z "$(which setfacl 2>/dev/null)" ] &&
7200                 skip_env "could not find setfacl" && return
7201         $GSS && skip "could not run under gss" && return
7202
7203         gpasswd -a daemon bin                           # LU-5641
7204         do_facet $SINGLEMDS gpasswd -a daemon bin       # LU-5641
7205
7206         declare -a identity_old
7207
7208         for num in $(seq $MDSCOUNT); do
7209                 switch_identity $num true || identity_old[$num]=$?
7210         done
7211
7212         SAVE_UMASK=$(umask)
7213         umask 0022
7214         cd $DIR
7215
7216         echo "performing cp ..."
7217         run_acl_subtest cp || error "run_acl_subtest cp failed"
7218         echo "performing getfacl-noacl..."
7219         run_acl_subtest getfacl-noacl || error "getfacl-noacl test failed"
7220         echo "performing misc..."
7221         run_acl_subtest misc || error  "misc test failed"
7222         echo "performing permissions..."
7223         run_acl_subtest permissions || error "permissions failed"
7224         echo "performing setfacl..."
7225         run_acl_subtest setfacl || error  "setfacl test failed"
7226
7227         # inheritance test got from HP
7228         echo "performing inheritance..."
7229         cp $LUSTRE/tests/acl/make-tree . || error "cannot copy make-tree"
7230         chmod +x make-tree || error "chmod +x failed"
7231         run_acl_subtest inheritance || error "inheritance test failed"
7232         rm -f make-tree
7233
7234         echo "LU-974 ignore umask when acl is enabled..."
7235         run_acl_subtest 974 || error "LU-974 umask test failed"
7236         if [ $MDSCOUNT -ge 2 ]; then
7237                 run_acl_subtest 974_remote ||
7238                         error "LU-974 umask test failed under remote dir"
7239         fi
7240
7241         echo "LU-2561 newly created file is same size as directory..."
7242         if [ $(facet_fstype $SINGLEMDS) != "zfs" ]; then
7243                 run_acl_subtest 2561 || error "LU-2561 test failed"
7244         else
7245                 run_acl_subtest 2561_zfs || error "LU-2561 zfs test failed"
7246         fi
7247
7248         run_acl_subtest 4924 || error "LU-4924 test failed"
7249
7250         cd $SAVE_PWD
7251         umask $SAVE_UMASK
7252
7253         for num in $(seq $MDSCOUNT); do
7254                 if [ "${identity_old[$num]}" = 1 ]; then
7255                         switch_identity $num false || identity_old[$num]=$?
7256                 fi
7257         done
7258 }
7259 run_test 103a "acl test ========================================="
7260
7261 test_103b() {
7262         local noacl=false
7263         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
7264         local mountopts=$MDS_MOUNT_OPTS
7265
7266         if [[ "$MDS_MOUNT_OPTS" =~ "noacl" ]]; then
7267                 noacl=true
7268         else
7269                 # stop the MDT
7270                 stop $SINGLEMDS || error "failed to stop MDT."
7271                 # remount the MDT
7272                 if [ -z "$MDS_MOUNT_OPTS" ]; then
7273                         MDS_MOUNT_OPTS="-o noacl"
7274                 else
7275                         MDS_MOUNT_OPTS="${MDS_MOUNT_OPTS},noacl"
7276                 fi
7277                 start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS ||
7278                         error "failed to start MDT."
7279                 MDS_MOUNT_OPTS=$mountopts
7280         fi
7281
7282         touch $DIR/$tfile
7283         setfacl -m u:bin:rw $DIR/$tfile && error "setfacl should fail"
7284
7285         if ! $noacl; then
7286                 # stop the MDT
7287                 stop $SINGLEMDS || error "failed to stop MDT."
7288                 # remount the MDT
7289                 start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS ||
7290                         error "failed to start MDT."
7291         fi
7292
7293         true
7294 }
7295 run_test 103b "MDS mount option 'noacl'"
7296
7297 test_103c() {
7298         mkdir -p $DIR/$tdir
7299         cp -rp $DIR/$tdir $DIR/$tdir.bak
7300
7301         [ -n "$(getfattr -d -m. $DIR/$tdir | grep posix_acl_default)" ] &&
7302                 error "$DIR/$tdir shouldn't contain default ACL"
7303         [ -n "$(getfattr -d -m. $DIR/$tdir.bak | grep posix_acl_default)" ] &&
7304                 error "$DIR/$tdir.bak shouldn't contain default ACL"
7305         true
7306 }
7307 run_test 103c "'cp -rp' won't set empty acl"
7308
7309 test_104a() {
7310         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7311         touch $DIR/$tfile
7312         lfs df || error "lfs df failed"
7313         lfs df -ih || error "lfs df -ih failed"
7314         lfs df -h $DIR || error "lfs df -h $DIR failed"
7315         lfs df -i $DIR || error "lfs df -i $DIR failed"
7316         lfs df $DIR/$tfile || error "lfs df $DIR/$tfile failed"
7317         lfs df -ih $DIR/$tfile || error "lfs df -ih $DIR/$tfile failed"
7318
7319         local OSC=$(lctl dl | grep OST0000-osc-[^M] | awk '{ print $4 }')
7320         lctl --device %$OSC deactivate
7321         lfs df || error "lfs df with deactivated OSC failed"
7322         lctl --device %$OSC activate
7323         # wait the osc back to normal
7324         wait_osc_import_state client ost FULL
7325
7326         lfs df || error "lfs df with reactivated OSC failed"
7327         rm -f $DIR/$tfile
7328 }
7329 run_test 104a "lfs df [-ih] [path] test ========================="
7330
7331 test_104b() {
7332         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7333         [ $RUNAS_ID -eq $UID ] &&
7334                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
7335         chmod 666 /dev/obd
7336         denied_cnt=$(($($RUNAS $LFS check servers 2>&1 |
7337                         grep "Permission denied" | wc -l)))
7338         if [ $denied_cnt -ne 0 ]; then
7339                 error "lfs check servers test failed"
7340         fi
7341 }
7342 run_test 104b "$RUNAS lfs check servers test ===================="
7343
7344 test_105a() {
7345         # doesn't work on 2.4 kernels
7346         touch $DIR/$tfile
7347         if $(flock_is_enabled); then
7348                 flocks_test 1 on -f $DIR/$tfile || error "fail flock on"
7349         else
7350                 flocks_test 1 off -f $DIR/$tfile || error "fail flock off"
7351         fi
7352         rm -f $DIR/$tfile
7353 }
7354 run_test 105a "flock when mounted without -o flock test ========"
7355
7356 test_105b() {
7357         touch $DIR/$tfile
7358         if $(flock_is_enabled); then
7359                 flocks_test 1 on -c $DIR/$tfile || error "fail flock on"
7360         else
7361                 flocks_test 1 off -c $DIR/$tfile || error "fail flock off"
7362         fi
7363         rm -f $DIR/$tfile
7364 }
7365 run_test 105b "fcntl when mounted without -o flock test ========"
7366
7367 test_105c() {
7368         touch $DIR/$tfile
7369         if $(flock_is_enabled); then
7370                 flocks_test 1 on -l $DIR/$tfile || error "fail flock on"
7371         else
7372                 flocks_test 1 off -l $DIR/$tfile || error "fail flock off"
7373         fi
7374         rm -f $DIR/$tfile
7375 }
7376 run_test 105c "lockf when mounted without -o flock test ========"
7377
7378 test_105d() { # bug 15924
7379         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7380         test_mkdir -p $DIR/$tdir
7381         flock_is_enabled || { skip "mount w/o flock enabled" && return; }
7382         #define OBD_FAIL_LDLM_CP_CB_WAIT  0x315
7383         $LCTL set_param fail_loc=0x80000315
7384         flocks_test 2 $DIR/$tdir
7385 }
7386 run_test 105d "flock race (should not freeze) ========"
7387
7388 test_105e() { # bug 22660 && 22040
7389         flock_is_enabled || { skip "mount w/o flock enabled" && return; }
7390         touch $DIR/$tfile
7391         flocks_test 3 $DIR/$tfile
7392 }
7393 run_test 105e "Two conflicting flocks from same process ======="
7394
7395 test_106() { #bug 10921
7396         test_mkdir -p $DIR/$tdir
7397         $DIR/$tdir && error "exec $DIR/$tdir succeeded"
7398         chmod 777 $DIR/$tdir || error "chmod $DIR/$tdir failed"
7399 }
7400 run_test 106 "attempt exec of dir followed by chown of that dir"
7401
7402 test_107() {
7403         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7404         CDIR=`pwd`
7405         cd $DIR
7406
7407         local file=core
7408         rm -f $file
7409
7410         local save_pattern=$(sysctl -n kernel.core_pattern)
7411         local save_uses_pid=$(sysctl -n kernel.core_uses_pid)
7412         sysctl -w kernel.core_pattern=$file
7413         sysctl -w kernel.core_uses_pid=0
7414
7415         ulimit -c unlimited
7416         sleep 60 &
7417         SLEEPPID=$!
7418
7419         sleep 1
7420
7421         kill -s 11 $SLEEPPID
7422         wait $SLEEPPID
7423         if [ -e $file ]; then
7424                 size=`stat -c%s $file`
7425                 [ $size -eq 0 ] && error "Fail to create core file $file"
7426         else
7427                 error "Fail to create core file $file"
7428         fi
7429         rm -f $file
7430         sysctl -w kernel.core_pattern=$save_pattern
7431         sysctl -w kernel.core_uses_pid=$save_uses_pid
7432         cd $CDIR
7433 }
7434 run_test 107 "Coredump on SIG"
7435
7436 test_110() {
7437         test_mkdir -p $DIR/$tdir
7438         test_mkdir $DIR/$tdir/$(str_repeat 'a' 255) ||
7439                 error "mkdir with 255 char failed"
7440         test_mkdir $DIR/$tdir/$(str_repeat 'b' 256) &&
7441                 error "mkdir with 256 char should fail, but did not"
7442         touch $DIR/$tdir/$(str_repeat 'x' 255) ||
7443                 error "create with 255 char failed"
7444         touch $DIR/$tdir/$(str_repeat 'y' 256) &&
7445                 error "create with 256 char should fail, but did not"
7446
7447         ls -l $DIR/$tdir
7448         rm -rf $DIR/$tdir
7449 }
7450 run_test 110 "filename length checking"
7451
7452 test_115() {
7453         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7454         OSTIO_pre=$(ps -e | grep ll_ost_io | awk '{ print $4 }'| sort -n |
7455                 tail -1 | cut -c11-20)
7456         [ -z "$OSTIO_pre" ] && skip "no OSS threads" && return
7457         echo "Starting with $OSTIO_pre threads"
7458
7459         NUMTEST=20000
7460         NUMFREE=$(df -i -P $DIR | tail -n 1 | awk '{ print $4 }')
7461         [[ $NUMFREE -lt $NUMTEST ]] && NUMTEST=$(($NUMFREE - 1000))
7462         echo "$NUMTEST creates/unlinks"
7463         test_mkdir -p $DIR/$tdir
7464         createmany -o $DIR/$tdir/$tfile $NUMTEST
7465         unlinkmany $DIR/$tdir/$tfile $NUMTEST
7466
7467         OSTIO_post=$(ps -e | grep ll_ost_io | awk '{ print $4 }' | sort -n |
7468                 tail -1 | cut -c11-20)
7469
7470         # don't return an error
7471         [ $OSTIO_post == $OSTIO_pre ] && echo \
7472             "WARNING: No new ll_ost_io threads were created ($OSTIO_pre)" &&
7473             echo "This may be fine, depending on what ran before this test" &&
7474             echo "and how fast this system is." && return
7475
7476         echo "Started with $OSTIO_pre threads, ended with $OSTIO_post"
7477 }
7478 run_test 115 "verify dynamic thread creation===================="
7479
7480 free_min_max () {
7481         wait_delete_completed
7482         AVAIL=($(lctl get_param -n osc.*[oO][sS][cC]-[^M]*.kbytesavail))
7483         echo OST kbytes available: ${AVAIL[@]}
7484         MAXI=0; MAXV=${AVAIL[0]}
7485         MINI=0; MINV=${AVAIL[0]}
7486         for ((i = 0; i < ${#AVAIL[@]}; i++)); do
7487                 #echo OST $i: ${AVAIL[i]}kb
7488                 if [[ ${AVAIL[i]} -gt $MAXV ]]; then
7489                         MAXV=${AVAIL[i]}; MAXI=$i
7490                 fi
7491                 if [[ ${AVAIL[i]} -lt $MINV ]]; then
7492                         MINV=${AVAIL[i]}; MINI=$i
7493                 fi
7494         done
7495         echo Min free space: OST $MINI: $MINV
7496         echo Max free space: OST $MAXI: $MAXV
7497 }
7498
7499 test_116a() { # was previously test_116()
7500         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7501         remote_mds_nodsh && skip "remote MDS with nodsh" && return
7502
7503         [[ $OSTCOUNT -lt 2 ]] && skip_env "$OSTCOUNT < 2 OSTs" && return
7504
7505         echo -n "Free space priority "
7506         do_facet $SINGLEMDS lctl get_param -n lo*.*-mdtlov.qos_prio_free |
7507                 head -n1
7508         declare -a AVAIL
7509         free_min_max
7510
7511         [ $MINV -eq 0 ] && skip "no free space in OST$MINI, skip" && return
7512         [ $MINV -gt 10000000 ] && skip "too much free space in OST$MINI, skip" \
7513                 && return
7514         trap simple_cleanup_common EXIT
7515
7516
7517         # Check if we need to generate uneven OSTs
7518         test_mkdir -p $DIR/$tdir/OST${MINI}
7519         local FILL=$(($MINV / 4))
7520         local DIFF=$(($MAXV - $MINV))
7521         local DIFF2=$(($DIFF * 100 / $MINV))
7522
7523         local threshold=$(do_facet $SINGLEMDS \
7524                 lctl get_param -n *.*MDT0000-mdtlov.qos_threshold_rr | head -n1)
7525         threshold=${threshold%%%}
7526         echo -n "Check for uneven OSTs: "
7527         echo -n "diff=${DIFF}KB (${DIFF2}%) must be > ${threshold}% ..."
7528
7529         if [[ $DIFF2 -gt $threshold ]]; then
7530                 echo "ok"
7531                 echo "Don't need to fill OST$MINI"
7532         else
7533                 # generate uneven OSTs. Write 2% over the QOS threshold value
7534                 echo "no"
7535                 DIFF=$(($threshold - $DIFF2 + 2))
7536                 DIFF2=$(( ($MINV * $DIFF)/100 ))
7537                 echo "Fill ${DIFF}% remaining space in OST${MINI} with ${DIFF2}KB"
7538                 $SETSTRIPE -i $MINI -c 1 $DIR/$tdir/OST${MINI} ||
7539                         error "setstripe failed"
7540                 DIFF=$(($DIFF2 / 2048))
7541                 i=0
7542                 while [ $i -lt $DIFF ]; do
7543                         i=$(($i + 1))
7544                         dd if=/dev/zero of=$DIR/$tdir/OST${MINI}/$tfile-$i \
7545                                 bs=2M count=1 2>/dev/null
7546                         echo -n .
7547                 done
7548                 echo .
7549                 sync
7550                 sleep_maxage
7551                 free_min_max
7552         fi
7553
7554         DIFF=$(($MAXV - $MINV))
7555         DIFF2=$(($DIFF * 100 / $MINV))
7556         echo -n "diff=${DIFF}=${DIFF2}% must be > ${threshold}% for QOS mode..."
7557         if [[ $DIFF2 -gt $threshold ]]; then
7558                 echo "ok"
7559         else
7560                 echo "failed - QOS mode won't be used"
7561                 skip "QOS imbalance criteria not met"
7562                 simple_cleanup_common
7563                 return
7564         fi
7565
7566         MINI1=$MINI; MINV1=$MINV
7567         MAXI1=$MAXI; MAXV1=$MAXV
7568
7569         # now fill using QOS
7570         $SETSTRIPE -c 1 $DIR/$tdir
7571         FILL=$(($FILL / 200))
7572         if [ $FILL -gt 600 ]; then
7573                 FILL=600
7574         fi
7575         echo "writing $FILL files to QOS-assigned OSTs"
7576         i=0
7577         while [ $i -lt $FILL ]; do
7578                 i=$((i + 1))
7579                 dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=200k \
7580                         count=1 2>/dev/null
7581                 echo -n .
7582         done
7583         echo "wrote $i 200k files"
7584         sync
7585         sleep_maxage
7586
7587         echo "Note: free space may not be updated, so measurements might be off"
7588         free_min_max
7589         DIFF2=$(($MAXV - $MINV))
7590         echo "free space delta: orig $DIFF final $DIFF2"
7591         [ $DIFF2 -gt $DIFF ] && echo "delta got worse!"
7592         DIFF=$(($MINV1 - ${AVAIL[$MINI1]}))
7593         echo "Wrote ${DIFF}KB to smaller OST $MINI1"
7594         DIFF2=$(($MAXV1 - ${AVAIL[$MAXI1]}))
7595         echo "Wrote ${DIFF2}KB to larger OST $MAXI1"
7596         if [[ $DIFF -gt 0 ]]; then
7597                 FILL=$(($DIFF2 * 100 / $DIFF - 100))
7598                 echo "Wrote ${FILL}% more data to larger OST $MAXI1"
7599         fi
7600
7601         # Figure out which files were written where
7602         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
7603                   awk '/'$MINI1': / {print $2; exit}')
7604         echo $UUID
7605         MINC=$($GETSTRIPE --ost $UUID $DIR/$tdir | grep $DIR | wc -l)
7606         echo "$MINC files created on smaller OST $MINI1"
7607         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
7608                   awk '/'$MAXI1': / {print $2; exit}')
7609         echo $UUID
7610         MAXC=$($GETSTRIPE --ost $UUID $DIR/$tdir | grep $DIR | wc -l)
7611         echo "$MAXC files created on larger OST $MAXI1"
7612         if [[ $MINC -gt 0 ]]; then
7613                 FILL=$(($MAXC * 100 / $MINC - 100))
7614                 echo "Wrote ${FILL}% more files to larger OST $MAXI1"
7615         fi
7616         [[ $MAXC -gt $MINC ]] ||
7617                 error_ignore LU-9 "stripe QOS didn't balance free space"
7618         simple_cleanup_common
7619 }
7620 run_test 116a "stripe QOS: free space balance ==================="
7621
7622 test_116b() { # LU-2093
7623         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7624         remote_mds_nodsh && skip "remote MDS with nodsh" && return
7625
7626 #define OBD_FAIL_MDS_OSC_CREATE_FAIL     0x147
7627         local old_rr=$(do_facet $SINGLEMDS lctl get_param -n \
7628                        lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr | head -1)
7629         [ -z "$old_rr" ] && skip "no QOS" && return 0
7630         do_facet $SINGLEMDS lctl set_param \
7631                 lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr=0
7632         mkdir -p $DIR/$tdir
7633         do_facet $SINGLEMDS lctl set_param fail_loc=0x147
7634         createmany -o $DIR/$tdir/f- 20 || error "can't create"
7635         do_facet $SINGLEMDS lctl set_param fail_loc=0
7636         rm -rf $DIR/$tdir
7637         do_facet $SINGLEMDS lctl set_param \
7638                 lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr=$old_rr
7639 }
7640 run_test 116b "QoS shouldn't LBUG if not enough OSTs found on the 2nd pass"
7641
7642 test_117() # bug 10891
7643 {
7644         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7645         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1
7646         #define OBD_FAIL_OST_SETATTR_CREDITS 0x21e
7647         lctl set_param fail_loc=0x21e
7648         > $DIR/$tfile || error "truncate failed"
7649         lctl set_param fail_loc=0
7650         echo "Truncate succeeded."
7651         rm -f $DIR/$tfile
7652 }
7653 run_test 117 "verify osd extend =========="
7654
7655 NO_SLOW_RESENDCOUNT=4
7656 export OLD_RESENDCOUNT=""
7657 set_resend_count () {
7658         local PROC_RESENDCOUNT="osc.${FSNAME}-OST*-osc-*.resend_count"
7659         OLD_RESENDCOUNT=$(lctl get_param -n $PROC_RESENDCOUNT | head -n1)
7660         lctl set_param -n $PROC_RESENDCOUNT $1
7661         echo resend_count is set to $(lctl get_param -n $PROC_RESENDCOUNT)
7662 }
7663
7664 # for reduce test_118* time (b=14842)
7665 [ "$SLOW" = "no" ] && set_resend_count $NO_SLOW_RESENDCOUNT
7666
7667 # Reset async IO behavior after error case
7668 reset_async() {
7669         FILE=$DIR/reset_async
7670
7671         # Ensure all OSCs are cleared
7672         $SETSTRIPE -c -1 $FILE
7673         dd if=/dev/zero of=$FILE bs=64k count=$OSTCOUNT
7674         sync
7675         rm $FILE
7676 }
7677
7678 test_118a() #bug 11710
7679 {
7680         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7681         reset_async
7682
7683         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7684         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7685         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
7686
7687         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7688                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7689                 return 1;
7690         fi
7691         rm -f $DIR/$tfile
7692 }
7693 run_test 118a "verify O_SYNC works =========="
7694
7695 test_118b()
7696 {
7697         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7698         remote_ost_nodsh && skip "remote OST with nodsh" && return
7699
7700         reset_async
7701
7702         #define OBD_FAIL_SRV_ENOENT 0x217
7703         set_nodes_failloc "$(osts_nodes)" 0x217
7704         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7705         RC=$?
7706         set_nodes_failloc "$(osts_nodes)" 0
7707         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7708         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
7709                     grep -c writeback)
7710
7711         if [[ $RC -eq 0 ]]; then
7712                 error "Must return error due to dropped pages, rc=$RC"
7713                 return 1;
7714         fi
7715
7716         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7717                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7718                 return 1;
7719         fi
7720
7721         echo "Dirty pages not leaked on ENOENT"
7722
7723         # Due to the above error the OSC will issue all RPCs syncronously
7724         # until a subsequent RPC completes successfully without error.
7725         $MULTIOP $DIR/$tfile Ow4096yc
7726         rm -f $DIR/$tfile
7727
7728         return 0
7729 }
7730 run_test 118b "Reclaim dirty pages on fatal error =========="
7731
7732 test_118c()
7733 {
7734         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7735
7736         # for 118c, restore the original resend count, LU-1940
7737         [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] &&
7738                                 set_resend_count $OLD_RESENDCOUNT
7739         remote_ost_nodsh && skip "remote OST with nodsh" && return
7740
7741         reset_async
7742
7743         #define OBD_FAIL_OST_EROFS               0x216
7744         set_nodes_failloc "$(osts_nodes)" 0x216
7745
7746         # multiop should block due to fsync until pages are written
7747         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
7748         MULTIPID=$!
7749         sleep 1
7750
7751         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
7752                 error "Multiop failed to block on fsync, pid=$MULTIPID"
7753         fi
7754
7755         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
7756                     grep -c writeback)
7757         if [[ $WRITEBACK -eq 0 ]]; then
7758                 error "No page in writeback, writeback=$WRITEBACK"
7759         fi
7760
7761         set_nodes_failloc "$(osts_nodes)" 0
7762         wait $MULTIPID
7763         RC=$?
7764         if [[ $RC -ne 0 ]]; then
7765                 error "Multiop fsync failed, rc=$RC"
7766         fi
7767
7768         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7769         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
7770                     grep -c writeback)
7771         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7772                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7773         fi
7774
7775         rm -f $DIR/$tfile
7776         echo "Dirty pages flushed via fsync on EROFS"
7777         return 0
7778 }
7779 run_test 118c "Fsync blocks on EROFS until dirty pages are flushed =========="
7780
7781 # continue to use small resend count to reduce test_118* time (b=14842)
7782 [ "$SLOW" = "no" ] && set_resend_count $NO_SLOW_RESENDCOUNT
7783
7784 test_118d()
7785 {
7786         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7787         remote_ost_nodsh && skip "remote OST with nodsh" && return
7788
7789         reset_async
7790
7791         #define OBD_FAIL_OST_BRW_PAUSE_BULK
7792         set_nodes_failloc "$(osts_nodes)" 0x214
7793         # multiop should block due to fsync until pages are written
7794         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
7795         MULTIPID=$!
7796         sleep 1
7797
7798         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
7799                 error "Multiop failed to block on fsync, pid=$MULTIPID"
7800         fi
7801
7802         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
7803                     grep -c writeback)
7804         if [[ $WRITEBACK -eq 0 ]]; then
7805                 error "No page in writeback, writeback=$WRITEBACK"
7806         fi
7807
7808         wait $MULTIPID || error "Multiop fsync failed, rc=$?"
7809         set_nodes_failloc "$(osts_nodes)" 0
7810
7811         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7812         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
7813                     grep -c writeback)
7814         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7815                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7816         fi
7817
7818         rm -f $DIR/$tfile
7819         echo "Dirty pages gaurenteed flushed via fsync"
7820         return 0
7821 }
7822 run_test 118d "Fsync validation inject a delay of the bulk =========="
7823
7824 test_118f() {
7825         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7826         reset_async
7827
7828         #define OBD_FAIL_OSC_BRW_PREP_REQ2        0x40a
7829         lctl set_param fail_loc=0x8000040a
7830
7831         # Should simulate EINVAL error which is fatal
7832         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7833         RC=$?
7834         if [[ $RC -eq 0 ]]; then
7835                 error "Must return error due to dropped pages, rc=$RC"
7836         fi
7837
7838         lctl set_param fail_loc=0x0
7839
7840         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
7841         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7842         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
7843                     grep -c writeback)
7844         if [[ $LOCKED -ne 0 ]]; then
7845                 error "Locked pages remain in cache, locked=$LOCKED"
7846         fi
7847
7848         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7849                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7850         fi
7851
7852         rm -f $DIR/$tfile
7853         echo "No pages locked after fsync"
7854
7855         reset_async
7856         return 0
7857 }
7858 run_test 118f "Simulate unrecoverable OSC side error =========="
7859
7860 test_118g() {
7861         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7862         reset_async
7863
7864         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
7865         lctl set_param fail_loc=0x406
7866
7867         # simulate local -ENOMEM
7868         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7869         RC=$?
7870
7871         lctl set_param fail_loc=0
7872         if [[ $RC -eq 0 ]]; then
7873                 error "Must return error due to dropped pages, rc=$RC"
7874         fi
7875
7876         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
7877         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7878         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
7879                         grep -c writeback)
7880         if [[ $LOCKED -ne 0 ]]; then
7881                 error "Locked pages remain in cache, locked=$LOCKED"
7882         fi
7883
7884         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7885                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7886         fi
7887
7888         rm -f $DIR/$tfile
7889         echo "No pages locked after fsync"
7890
7891         reset_async
7892         return 0
7893 }
7894 run_test 118g "Don't stay in wait if we got local -ENOMEM  =========="
7895
7896 test_118h() {
7897         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7898         remote_ost_nodsh && skip "remote OST with nodsh" && return
7899
7900         reset_async
7901
7902         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
7903         set_nodes_failloc "$(osts_nodes)" 0x20e
7904         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
7905         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7906         RC=$?
7907
7908         set_nodes_failloc "$(osts_nodes)" 0
7909         if [[ $RC -eq 0 ]]; then
7910                 error "Must return error due to dropped pages, rc=$RC"
7911         fi
7912
7913         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
7914         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7915         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
7916                     grep -c writeback)
7917         if [[ $LOCKED -ne 0 ]]; then
7918                 error "Locked pages remain in cache, locked=$LOCKED"
7919         fi
7920
7921         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7922                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7923         fi
7924
7925         rm -f $DIR/$tfile
7926         echo "No pages locked after fsync"
7927
7928         return 0
7929 }
7930 run_test 118h "Verify timeout in handling recoverables errors  =========="
7931
7932 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
7933
7934 test_118i() {
7935         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7936         remote_ost_nodsh && skip "remote OST with nodsh" && return
7937
7938         reset_async
7939
7940         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
7941         set_nodes_failloc "$(osts_nodes)" 0x20e
7942
7943         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
7944         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
7945         PID=$!
7946         sleep 5
7947         set_nodes_failloc "$(osts_nodes)" 0
7948
7949         wait $PID
7950         RC=$?
7951         if [[ $RC -ne 0 ]]; then
7952                 error "got error, but should be not, rc=$RC"
7953         fi
7954
7955         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
7956         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7957         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
7958         if [[ $LOCKED -ne 0 ]]; then
7959                 error "Locked pages remain in cache, locked=$LOCKED"
7960         fi
7961
7962         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7963                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7964         fi
7965
7966         rm -f $DIR/$tfile
7967         echo "No pages locked after fsync"
7968
7969         return 0
7970 }
7971 run_test 118i "Fix error before timeout in recoverable error  =========="
7972
7973 [ "$SLOW" = "no" ] && set_resend_count 4
7974
7975 test_118j() {
7976         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7977         remote_ost_nodsh && skip "remote OST with nodsh" && return
7978
7979         reset_async
7980
7981         #define OBD_FAIL_OST_BRW_WRITE_BULK2     0x220
7982         set_nodes_failloc "$(osts_nodes)" 0x220
7983
7984         # return -EIO from OST
7985         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7986         RC=$?
7987         set_nodes_failloc "$(osts_nodes)" 0x0
7988         if [[ $RC -eq 0 ]]; then
7989                 error "Must return error due to dropped pages, rc=$RC"
7990         fi
7991
7992         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
7993         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7994         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
7995         if [[ $LOCKED -ne 0 ]]; then
7996                 error "Locked pages remain in cache, locked=$LOCKED"
7997         fi
7998
7999         # in recoverable error on OST we want resend and stay until it finished
8000         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8001                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8002         fi
8003
8004         rm -f $DIR/$tfile
8005         echo "No pages locked after fsync"
8006
8007         return 0
8008 }
8009 run_test 118j "Simulate unrecoverable OST side error =========="
8010
8011 test_118k()
8012 {
8013         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8014         remote_ost_nodsh && skip "remote OSTs with nodsh" && return
8015
8016         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
8017         set_nodes_failloc "$(osts_nodes)" 0x20e
8018         test_mkdir -p $DIR/$tdir
8019
8020         for ((i=0;i<10;i++)); do
8021                 (dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=1M count=10 || \
8022                         error "dd to $DIR/$tdir/$tfile-$i failed" )&
8023                 SLEEPPID=$!
8024                 sleep 0.500s
8025                 kill $SLEEPPID
8026                 wait $SLEEPPID
8027         done
8028
8029         set_nodes_failloc "$(osts_nodes)" 0
8030         rm -rf $DIR/$tdir
8031 }
8032 run_test 118k "bio alloc -ENOMEM and IO TERM handling ========="
8033
8034 test_118l()
8035 {
8036         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8037         # LU-646
8038         test_mkdir -p $DIR/$tdir
8039         $MULTIOP $DIR/$tdir Dy || error "fsync dir failed"
8040         rm -rf $DIR/$tdir
8041 }
8042 run_test 118l "fsync dir ========="
8043
8044 test_118m() # LU-3066
8045 {
8046         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8047         test_mkdir -p $DIR/$tdir
8048         $MULTIOP $DIR/$tdir DY || error "fdatasync dir failed"
8049         rm -rf $DIR/$tdir
8050 }
8051 run_test 118m "fdatasync dir ========="
8052
8053 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
8054
8055 test_119a() # bug 11737
8056 {
8057         BSIZE=$((512 * 1024))
8058         directio write $DIR/$tfile 0 1 $BSIZE
8059         # We ask to read two blocks, which is more than a file size.
8060         # directio will indicate an error when requested and actual
8061         # sizes aren't equeal (a normal situation in this case) and
8062         # print actual read amount.
8063         NOB=`directio read $DIR/$tfile 0 2 $BSIZE | awk '/error/ {print $6}'`
8064         if [ "$NOB" != "$BSIZE" ]; then
8065                 error "read $NOB bytes instead of $BSIZE"
8066         fi
8067         rm -f $DIR/$tfile
8068 }
8069 run_test 119a "Short directIO read must return actual read amount"
8070
8071 test_119b() # bug 11737
8072 {
8073         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
8074
8075         $SETSTRIPE -c 2 $DIR/$tfile || error "setstripe failed"
8076         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1 || error "dd failed"
8077         sync
8078         $MULTIOP $DIR/$tfile oO_RDONLY:O_DIRECT:r$((2048 * 1024)) || \
8079                 error "direct read failed"
8080         rm -f $DIR/$tfile
8081 }
8082 run_test 119b "Sparse directIO read must return actual read amount"
8083
8084 test_119c() # bug 13099
8085 {
8086         BSIZE=1048576
8087         directio write $DIR/$tfile 3 1 $BSIZE || error "direct write failed"
8088         directio readhole $DIR/$tfile 0 2 $BSIZE || error "reading hole failed"
8089         rm -f $DIR/$tfile
8090 }
8091 run_test 119c "Testing for direct read hitting hole"
8092
8093 test_119d() # bug 15950
8094 {
8095         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8096         MAX_RPCS_IN_FLIGHT=`$LCTL get_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight`
8097         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight 1
8098         BSIZE=1048576
8099         $SETSTRIPE $DIR/$tfile -i 0 -c 1 || error "setstripe failed"
8100         $DIRECTIO write $DIR/$tfile 0 1 $BSIZE || error "first directio failed"
8101         #define OBD_FAIL_OSC_DIO_PAUSE           0x40d
8102         lctl set_param fail_loc=0x40d
8103         $DIRECTIO write $DIR/$tfile 1 4 $BSIZE &
8104         pid_dio=$!
8105         sleep 1
8106         cat $DIR/$tfile > /dev/null &
8107         lctl set_param fail_loc=0
8108         pid_reads=$!
8109         wait $pid_dio
8110         log "the DIO writes have completed, now wait for the reads (should not block very long)"
8111         sleep 2
8112         [ -n "`ps h -p $pid_reads -o comm`" ] && \
8113         error "the read rpcs have not completed in 2s"
8114         rm -f $DIR/$tfile
8115         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight $MAX_RPCS_IN_FLIGHT
8116 }
8117 run_test 119d "The DIO path should try to send a new rpc once one is completed"
8118
8119 test_120a() {
8120         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8121         test_mkdir -p $DIR/$tdir
8122         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
8123                skip "no early lock cancel on server" && return 0
8124
8125         lru_resize_disable mdc
8126         lru_resize_disable osc
8127         cancel_lru_locks mdc
8128         # asynchronous object destroy at MDT could cause bl ast to client
8129         cancel_lru_locks osc
8130
8131         stat $DIR/$tdir > /dev/null
8132         can1=$(do_facet $SINGLEMDS \
8133                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8134                awk '/ldlm_cancel/ {print $2}')
8135         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8136                awk '/ldlm_bl_callback/ {print $2}')
8137         test_mkdir -c1 $DIR/$tdir/d1
8138         can2=$(do_facet $SINGLEMDS \
8139                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8140                awk '/ldlm_cancel/ {print $2}')
8141         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8142                awk '/ldlm_bl_callback/ {print $2}')
8143         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
8144         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
8145         lru_resize_enable mdc
8146         lru_resize_enable osc
8147 }
8148 run_test 120a "Early Lock Cancel: mkdir test"
8149
8150 test_120b() {
8151         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8152         test_mkdir $DIR/$tdir
8153         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel)" ] && \
8154                skip "no early lock cancel on server" && return 0
8155         lru_resize_disable mdc
8156         lru_resize_disable osc
8157         cancel_lru_locks mdc
8158         stat $DIR/$tdir > /dev/null
8159         can1=$(do_facet $SINGLEMDS \
8160                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8161                awk '/ldlm_cancel/ {print $2}')
8162         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8163                awk '/ldlm_bl_callback/ {print $2}')
8164         touch $DIR/$tdir/f1
8165         can2=$(do_facet $SINGLEMDS \
8166                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8167                awk '/ldlm_cancel/ {print $2}')
8168         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8169                awk '/ldlm_bl_callback/ {print $2}')
8170         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
8171         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
8172         lru_resize_enable mdc
8173         lru_resize_enable osc
8174 }
8175 run_test 120b "Early Lock Cancel: create test"
8176
8177 test_120c() {
8178         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8179         test_mkdir -c1 $DIR/$tdir
8180         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel)" ] && \
8181                skip "no early lock cancel on server" && return 0
8182         lru_resize_disable mdc
8183         lru_resize_disable osc
8184         test_mkdir -p -c1 $DIR/$tdir/d1
8185         test_mkdir -p -c1 $DIR/$tdir/d2
8186         touch $DIR/$tdir/d1/f1
8187         cancel_lru_locks mdc
8188         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 > /dev/null
8189         can1=$(do_facet $SINGLEMDS \
8190                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8191                awk '/ldlm_cancel/ {print $2}')
8192         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8193                awk '/ldlm_bl_callback/ {print $2}')
8194         ln $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
8195         can2=$(do_facet $SINGLEMDS \
8196                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8197                awk '/ldlm_cancel/ {print $2}')
8198         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8199                awk '/ldlm_bl_callback/ {print $2}')
8200         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
8201         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
8202         lru_resize_enable mdc
8203         lru_resize_enable osc
8204 }
8205 run_test 120c "Early Lock Cancel: link test"
8206
8207 test_120d() {
8208         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8209         test_mkdir -p -c1 $DIR/$tdir
8210         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel)" ] && \
8211                skip "no early lock cancel on server" && return 0
8212         lru_resize_disable mdc
8213         lru_resize_disable osc
8214         touch $DIR/$tdir
8215         cancel_lru_locks mdc
8216         stat $DIR/$tdir > /dev/null
8217         can1=$(do_facet $SINGLEMDS \
8218                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8219                awk '/ldlm_cancel/ {print $2}')
8220         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8221                awk '/ldlm_bl_callback/ {print $2}')
8222         chmod a+x $DIR/$tdir
8223         can2=$(do_facet $SINGLEMDS \
8224                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8225                awk '/ldlm_cancel/ {print $2}')
8226         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8227                awk '/ldlm_bl_callback/ {print $2}')
8228         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
8229         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
8230         lru_resize_enable mdc
8231         lru_resize_enable osc
8232 }
8233 run_test 120d "Early Lock Cancel: setattr test"
8234
8235 test_120e() {
8236         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8237         ! $($LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_can) &&
8238                 skip "no early lock cancel on server" && return 0
8239         local dlmtrace_set=false
8240
8241         test_mkdir -p -c1 $DIR/$tdir
8242         lru_resize_disable mdc
8243         lru_resize_disable osc
8244         ! $LCTL get_param debug | grep -q dlmtrace &&
8245                 $LCTL set_param debug=+dlmtrace && dlmtrace_set=true
8246         dd if=/dev/zero of=$DIR/$tdir/f1 count=1
8247         cancel_lru_locks mdc
8248         cancel_lru_locks osc
8249         dd if=$DIR/$tdir/f1 of=/dev/null
8250         stat $DIR/$tdir $DIR/$tdir/f1 > /dev/null
8251         # XXX client can not do early lock cancel of OST lock
8252         # during unlink (LU-4206), so cancel osc lock now.
8253         cancel_lru_locks osc
8254         can1=$(do_facet $SINGLEMDS \
8255                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8256                awk '/ldlm_cancel/ {print $2}')
8257         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8258                awk '/ldlm_bl_callback/ {print $2}')
8259         unlink $DIR/$tdir/f1
8260         sleep 5
8261         can2=$(do_facet $SINGLEMDS \
8262                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8263                awk '/ldlm_cancel/ {print $2}')
8264         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8265                awk '/ldlm_bl_callback/ {print $2}')
8266         [ $can1 -ne $can2 ] && error "$((can2 - can1)) cancel RPC occured" &&
8267                 $LCTL dk $TMP/cancel.debug.txt
8268         [ $blk1 -ne $blk2 ] && error "$((blk2 - blk1)) blocking RPC occured" &&
8269                 $LCTL dk $TMP/blocking.debug.txt
8270         $dlmtrace_set && $LCTL set_param debug=-dlmtrace
8271         lru_resize_enable mdc
8272         lru_resize_enable osc
8273 }
8274 run_test 120e "Early Lock Cancel: unlink test"
8275
8276 test_120f() {
8277         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8278         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
8279                skip "no early lock cancel on server" && return 0
8280         test_mkdir -p -c1 $DIR/$tdir
8281         lru_resize_disable mdc
8282         lru_resize_disable osc
8283         test_mkdir -p -c1 $DIR/$tdir/d1
8284         test_mkdir -p -c1 $DIR/$tdir/d2
8285         dd if=/dev/zero of=$DIR/$tdir/d1/f1 count=1
8286         dd if=/dev/zero of=$DIR/$tdir/d2/f2 count=1
8287         cancel_lru_locks mdc
8288         cancel_lru_locks osc
8289         dd if=$DIR/$tdir/d1/f1 of=/dev/null
8290         dd if=$DIR/$tdir/d2/f2 of=/dev/null
8291         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2 > /dev/null
8292         # XXX client can not do early lock cancel of OST lock
8293         # during rename (LU-4206), so cancel osc lock now.
8294         cancel_lru_locks osc
8295         can1=$(do_facet $SINGLEMDS \
8296                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8297                awk '/ldlm_cancel/ {print $2}')
8298         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8299                awk '/ldlm_bl_callback/ {print $2}')
8300         mrename $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
8301         sleep 5
8302         can2=$(do_facet $SINGLEMDS \
8303                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8304                awk '/ldlm_cancel/ {print $2}')
8305         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8306                awk '/ldlm_bl_callback/ {print $2}')
8307         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
8308         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
8309         lru_resize_enable mdc
8310         lru_resize_enable osc
8311 }
8312 run_test 120f "Early Lock Cancel: rename test"
8313
8314 test_120g() {
8315         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8316         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
8317                skip "no early lock cancel on server" && return 0
8318         lru_resize_disable mdc
8319         lru_resize_disable osc
8320         count=10000
8321         echo create $count files
8322         test_mkdir -p $DIR/$tdir
8323         cancel_lru_locks mdc
8324         cancel_lru_locks osc
8325         t0=`date +%s`
8326
8327         can0=$(do_facet $SINGLEMDS \
8328                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8329                awk '/ldlm_cancel/ {print $2}')
8330         blk0=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8331                awk '/ldlm_bl_callback/ {print $2}')
8332         createmany -o $DIR/$tdir/f $count
8333         sync
8334         can1=$(do_facet $SINGLEMDS \
8335                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8336                awk '/ldlm_cancel/ {print $2}')
8337         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8338                awk '/ldlm_bl_callback/ {print $2}')
8339         t1=$(date +%s)
8340         echo total: $((can1-can0)) cancels, $((blk1-blk0)) blockings
8341         echo rm $count files
8342         rm -r $DIR/$tdir
8343         sync
8344         can2=$(do_facet $SINGLEMDS \
8345                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8346                awk '/ldlm_cancel/ {print $2}')
8347         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8348                awk '/ldlm_bl_callback/ {print $2}')
8349         t2=$(date +%s)
8350         echo total: $count removes in $((t2-t1))
8351         echo total: $((can2-can1)) cancels, $((blk2-blk1)) blockings
8352         sleep 2
8353         # wait for commitment of removal
8354         lru_resize_enable mdc
8355         lru_resize_enable osc
8356 }
8357 run_test 120g "Early Lock Cancel: performance test"
8358
8359 test_121() { #bug #10589
8360         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8361         rm -rf $DIR/$tfile
8362         writes=$(LANG=C dd if=/dev/zero of=$DIR/$tfile count=1 2>&1 | awk -F '+' '/out$/ {print $1}')
8363 #define OBD_FAIL_LDLM_CANCEL_RACE        0x310
8364         lctl set_param fail_loc=0x310
8365         cancel_lru_locks osc > /dev/null
8366         reads=$(LANG=C dd if=$DIR/$tfile of=/dev/null 2>&1 | awk -F '+' '/in$/ {print $1}')
8367         lctl set_param fail_loc=0
8368         [[ $reads -eq $writes ]] ||
8369                 error "read $reads blocks, must be $writes blocks"
8370 }
8371 run_test 121 "read cancel race ========="
8372
8373 test_123a() { # was test 123, statahead(bug 11401)
8374         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8375         SLOWOK=0
8376         if [ -z "$(grep "processor.*: 1" /proc/cpuinfo)" ]; then
8377             log "testing on UP system. Performance may be not as good as expected."
8378                         SLOWOK=1
8379         fi
8380
8381         rm -rf $DIR/$tdir
8382         test_mkdir -p $DIR/$tdir
8383         NUMFREE=$(df -i -P $DIR | tail -n 1 | awk '{ print $4 }')
8384         [[ $NUMFREE -gt 100000 ]] && NUMFREE=100000 || NUMFREE=$((NUMFREE-1000))
8385         MULT=10
8386         for ((i=100, j=0; i<=$NUMFREE; j=$i, i=$((i * MULT)) )); do
8387                 createmany -o $DIR/$tdir/$tfile $j $((i - j))
8388
8389                 max=`lctl get_param -n llite.*.statahead_max | head -n 1`
8390                 lctl set_param -n llite.*.statahead_max 0
8391                 lctl get_param llite.*.statahead_max
8392                 cancel_lru_locks mdc
8393                 cancel_lru_locks osc
8394                 stime=`date +%s`
8395                 time ls -l $DIR/$tdir | wc -l
8396                 etime=`date +%s`
8397                 delta=$((etime - stime))
8398                 log "ls $i files without statahead: $delta sec"
8399                 lctl set_param llite.*.statahead_max=$max
8400
8401                 swrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
8402                 lctl get_param -n llite.*.statahead_max | grep '[0-9]'
8403                 cancel_lru_locks mdc
8404                 cancel_lru_locks osc
8405                 stime=`date +%s`
8406                 time ls -l $DIR/$tdir | wc -l
8407                 etime=`date +%s`
8408                 delta_sa=$((etime - stime))
8409                 log "ls $i files with statahead: $delta_sa sec"
8410                 lctl get_param -n llite.*.statahead_stats
8411                 ewrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
8412
8413                 [[ $swrong -lt $ewrong ]] &&
8414                         log "statahead was stopped, maybe too many locks held!"
8415                 [[ $delta -eq 0 || $delta_sa -eq 0 ]] && continue
8416
8417                 if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
8418                     max=`lctl get_param -n llite.*.statahead_max | head -n 1`
8419                     lctl set_param -n llite.*.statahead_max 0
8420                     lctl get_param llite.*.statahead_max
8421                     cancel_lru_locks mdc
8422                     cancel_lru_locks osc
8423                     stime=`date +%s`
8424                     time ls -l $DIR/$tdir | wc -l
8425                     etime=`date +%s`
8426                     delta=$((etime - stime))
8427                     log "ls $i files again without statahead: $delta sec"
8428                     lctl set_param llite.*.statahead_max=$max
8429                     if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
8430                         if [  $SLOWOK -eq 0 ]; then
8431                                 error "ls $i files is slower with statahead!"
8432                         else
8433                                 log "ls $i files is slower with statahead!"
8434                         fi
8435                         break
8436                     fi
8437                 fi
8438
8439                 [ $delta -gt 20 ] && break
8440                 [ $delta -gt 8 ] && MULT=$((50 / delta))
8441                 [ "$SLOW" = "no" -a $delta -gt 5 ] && break
8442         done
8443         log "ls done"
8444
8445         stime=`date +%s`
8446         rm -r $DIR/$tdir
8447         sync
8448         etime=`date +%s`
8449         delta=$((etime - stime))
8450         log "rm -r $DIR/$tdir/: $delta seconds"
8451         log "rm done"
8452         lctl get_param -n llite.*.statahead_stats
8453 }
8454 run_test 123a "verify statahead work"
8455
8456 test_123b () { # statahead(bug 15027)
8457         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8458         test_mkdir -p $DIR/$tdir
8459         createmany -o $DIR/$tdir/$tfile-%d 1000
8460
8461         cancel_lru_locks mdc
8462         cancel_lru_locks osc
8463
8464 #define OBD_FAIL_MDC_GETATTR_ENQUEUE     0x803
8465         lctl set_param fail_loc=0x80000803
8466         ls -lR $DIR/$tdir > /dev/null
8467         log "ls done"
8468         lctl set_param fail_loc=0x0
8469         lctl get_param -n llite.*.statahead_stats
8470         rm -r $DIR/$tdir
8471         sync
8472
8473 }
8474 run_test 123b "not panic with network error in statahead enqueue (bug 15027)"
8475
8476 test_124a() {
8477         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8478         [ -z "$($LCTL get_param -n mdc.*.connect_flags | grep lru_resize)" ] &&
8479                 skip "no lru resize on server" && return 0
8480         local NR=2000
8481         test_mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
8482
8483         log "create $NR files at $DIR/$tdir"
8484         createmany -o $DIR/$tdir/f $NR ||
8485                 error "failed to create $NR files in $DIR/$tdir"
8486
8487         cancel_lru_locks mdc
8488         ls -l $DIR/$tdir > /dev/null
8489
8490         local NSDIR=""
8491         local LRU_SIZE=0
8492         for VALUE in $($LCTL get_param ldlm.namespaces.*mdc-*.lru_size); do
8493                 local PARAM=$(echo ${VALUE[0]} | cut -d "=" -f1)
8494                 LRU_SIZE=$($LCTL get_param -n $PARAM)
8495                 if [[ $LRU_SIZE -gt $(default_lru_size) ]]; then
8496                         NSDIR=$(echo $PARAM | cut -d "." -f1-3)
8497                         log "NSDIR=$NSDIR"
8498                         log "NS=$(basename $NSDIR)"
8499                         break
8500                 fi
8501         done
8502
8503         if [[ -z "$NSDIR" || $LRU_SIZE -lt $(default_lru_size) ]]; then
8504                 skip "Not enough cached locks created!"
8505                 return 0
8506         fi
8507         log "LRU=$LRU_SIZE"
8508
8509         local SLEEP=30
8510
8511         # We know that lru resize allows one client to hold $LIMIT locks
8512         # for 10h. After that locks begin to be killed by client.
8513         local MAX_HRS=10
8514         local LIMIT=$($LCTL get_param -n $NSDIR.pool.limit)
8515         log "LIMIT=$LIMIT"
8516         if [ $LIMIT -lt $LRU_SIZE ]; then
8517             skip "Limit is too small $LIMIT"
8518             return 0
8519         fi
8520
8521         # Make LVF so higher that sleeping for $SLEEP is enough to _start_
8522         # killing locks. Some time was spent for creating locks. This means
8523         # that up to the moment of sleep finish we must have killed some of
8524         # them (10-100 locks). This depends on how fast ther were created.
8525         # Many of them were touched in almost the same moment and thus will
8526         # be killed in groups.
8527         local LVF=$(($MAX_HRS * 60 * 60 / $SLEEP * $LIMIT / $LRU_SIZE))
8528
8529         # Use $LRU_SIZE_B here to take into account real number of locks
8530         # created in the case of CMD, LRU_SIZE_B != $NR in most of cases
8531         local LRU_SIZE_B=$LRU_SIZE
8532         log "LVF=$LVF"
8533         local OLD_LVF=$($LCTL get_param -n $NSDIR.pool.lock_volume_factor)
8534         log "OLD_LVF=$OLD_LVF"
8535         $LCTL set_param -n $NSDIR.pool.lock_volume_factor $LVF
8536
8537         # Let's make sure that we really have some margin. Client checks
8538         # cached locks every 10 sec.
8539         SLEEP=$((SLEEP+20))
8540         log "Sleep ${SLEEP} sec"
8541         local SEC=0
8542         while ((SEC<$SLEEP)); do
8543                 echo -n "..."
8544                 sleep 5
8545                 SEC=$((SEC+5))
8546                 LRU_SIZE=$($LCTL get_param -n $NSDIR/lru_size)
8547                 echo -n "$LRU_SIZE"
8548         done
8549         echo ""
8550         $LCTL set_param -n $NSDIR.pool.lock_volume_factor $OLD_LVF
8551         local LRU_SIZE_A=$($LCTL get_param -n $NSDIR.lru_size)
8552
8553         [[ $LRU_SIZE_B -gt $LRU_SIZE_A ]] || {
8554                 error "No locks dropped in ${SLEEP}s. LRU size: $LRU_SIZE_A"
8555                 unlinkmany $DIR/$tdir/f $NR
8556                 return
8557         }
8558
8559         log "Dropped "$((LRU_SIZE_B-LRU_SIZE_A))" locks in ${SLEEP}s"
8560         log "unlink $NR files at $DIR/$tdir"
8561         unlinkmany $DIR/$tdir/f $NR
8562 }
8563 run_test 124a "lru resize ======================================="
8564
8565 get_max_pool_limit()
8566 {
8567         local limit=$($LCTL get_param \
8568                       -n ldlm.namespaces.*-MDT0000-mdc-*.pool.limit)
8569         local max=0
8570         for l in $limit; do
8571                 if [[ $l -gt $max ]]; then
8572                         max=$l
8573                 fi
8574         done
8575         echo $max
8576 }
8577
8578 test_124b() {
8579         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8580         [ -z "$($LCTL get_param -n mdc.*.connect_flags | grep lru_resize)" ] &&
8581                 skip "no lru resize on server" && return 0
8582
8583         LIMIT=$(get_max_pool_limit)
8584
8585         NR=$(($(default_lru_size)*20))
8586         if [[ $NR -gt $LIMIT ]]; then
8587                 log "Limit lock number by $LIMIT locks"
8588                 NR=$LIMIT
8589         fi
8590         lru_resize_disable mdc
8591         test_mkdir -p $DIR/$tdir/disable_lru_resize ||
8592                 error "failed to create $DIR/$tdir/disable_lru_resize"
8593
8594         createmany -o $DIR/$tdir/disable_lru_resize/f $NR
8595         log "doing ls -la $DIR/$tdir/disable_lru_resize 3 times"
8596         cancel_lru_locks mdc
8597         stime=`date +%s`
8598         PID=""
8599         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
8600         PID="$PID $!"
8601         sleep 2
8602         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
8603         PID="$PID $!"
8604         sleep 2
8605         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
8606         PID="$PID $!"
8607         wait $PID
8608         etime=`date +%s`
8609         nolruresize_delta=$((etime-stime))
8610         log "ls -la time: $nolruresize_delta seconds"
8611         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
8612         unlinkmany $DIR/$tdir/disable_lru_resize/f $NR
8613
8614         lru_resize_enable mdc
8615         test_mkdir -p $DIR/$tdir/enable_lru_resize ||
8616                 error "failed to create $DIR/$tdir/enable_lru_resize"
8617
8618         createmany -o $DIR/$tdir/enable_lru_resize/f $NR
8619         log "doing ls -la $DIR/$tdir/enable_lru_resize 3 times"
8620         cancel_lru_locks mdc
8621         stime=`date +%s`
8622         PID=""
8623         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
8624         PID="$PID $!"
8625         sleep 2
8626         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
8627         PID="$PID $!"
8628         sleep 2
8629         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
8630         PID="$PID $!"
8631         wait $PID
8632         etime=`date +%s`
8633         lruresize_delta=$((etime-stime))
8634         log "ls -la time: $lruresize_delta seconds"
8635         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
8636
8637         if [ $lruresize_delta -gt $nolruresize_delta ]; then
8638                 log "ls -la is $(((lruresize_delta - $nolruresize_delta) * 100 / $nolruresize_delta))% slower with lru resize enabled"
8639         elif [ $nolruresize_delta -gt $lruresize_delta ]; then
8640                 log "ls -la is $(((nolruresize_delta - $lruresize_delta) * 100 / $nolruresize_delta))% faster with lru resize enabled"
8641         else
8642                 log "lru resize performs the same with no lru resize"
8643         fi
8644         unlinkmany $DIR/$tdir/enable_lru_resize/f $NR
8645 }
8646 run_test 124b "lru resize (performance test) ======================="
8647
8648 test_124c() {
8649         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8650         [ -z "$($LCTL get_param -n mdc.*.connect_flags | grep lru_resize)" ] &&
8651                 skip "no lru resize on server" && return 0
8652
8653         # cache ununsed locks on client
8654         local nr=100
8655         cancel_lru_locks mdc
8656         test_mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
8657         createmany -o $DIR/$tdir/f $nr ||
8658                 error "failed to create $nr files in $DIR/$tdir"
8659         ls -l $DIR/$tdir > /dev/null
8660
8661         local nsdir="ldlm.namespaces.*-MDT0000-mdc-*"
8662         local unused=$($LCTL get_param -n $nsdir.lock_unused_count)
8663         local max_age=$($LCTL get_param -n $nsdir.lru_max_age)
8664         local recalc_p=$($LCTL get_param -n $nsdir.pool.recalc_period)
8665         echo "unused=$unused, max_age=$max_age, recalc_p=$recalc_p"
8666
8667         # set lru_max_age to 1 sec
8668         $LCTL set_param $nsdir.lru_max_age=1000 # jiffies
8669         echo "sleep $((recalc_p * 2)) seconds..."
8670         sleep $((recalc_p * 2))
8671
8672         local remaining=$($LCTL get_param -n $nsdir.lock_unused_count)
8673         # restore lru_max_age
8674         $LCTL set_param -n $nsdir.lru_max_age $max_age
8675         [ $remaining -eq 0 ] || error "$remaining locks are not canceled"
8676         unlinkmany $DIR/$tdir/f $nr
8677 }
8678 run_test 124c "LRUR cancel very aged locks"
8679
8680 test_125() { # 13358
8681         [ -z "$(lctl get_param -n llite.*.client_type | grep local)" ] && skip "must run as local client" && return
8682         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl)" ] && skip "must have acl enabled" && return
8683         [ -z "$(which setfacl)" ] && skip "must have setfacl tool" && return
8684         test_mkdir -p $DIR/d125 || error "mkdir failed"
8685         $SETSTRIPE -S 65536 -c -1 $DIR/d125 || error "setstripe failed"
8686         setfacl -R -m u:bin:rwx $DIR/d125 || error "setfacl $DIR/d125 failed"
8687         ls -ld $DIR/d125 || error "cannot access $DIR/d125"
8688 }
8689 run_test 125 "don't return EPROTO when a dir has a non-default striping and ACLs"
8690
8691 test_126() { # bug 12829/13455
8692         [ -z "$(lctl get_param -n llite.*.client_type | grep local)" ] && skip "must run as local client" && return
8693         [ "$UID" != 0 ] && skip_env "skipping $TESTNAME (must run as root)" && return
8694         $GSS && skip "must run as gss disabled" && return
8695
8696         $RUNAS -u 0 -g 1 touch $DIR/$tfile || error "touch failed"
8697         gid=`ls -n $DIR/$tfile | awk '{print $4}'`
8698         rm -f $DIR/$tfile
8699         [ $gid -eq "1" ] || error "gid is set to" $gid "instead of 1"
8700 }
8701 run_test 126 "check that the fsgid provided by the client is taken into account"
8702
8703 test_127a() { # bug 15521
8704         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8705         $SETSTRIPE -i 0 -c 1 $DIR/$tfile || error "setstripe failed"
8706         $LCTL set_param osc.*.stats=0
8707         FSIZE=$((2048 * 1024))
8708         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
8709         cancel_lru_locks osc
8710         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE
8711
8712         $LCTL get_param osc.*0000-osc-*.stats | grep samples > $DIR/${tfile}.tmp
8713         while read NAME COUNT SAMP UNIT MIN MAX SUM SUMSQ; do
8714                 echo "got $COUNT $NAME"
8715                 [ ! $MIN ] && error "Missing min value for $NAME proc entry"
8716                 eval $NAME=$COUNT || error "Wrong proc format"
8717
8718                 case $NAME in
8719                         read_bytes|write_bytes)
8720                         [ $MIN -lt 4096 ] && error "min is too small: $MIN"
8721                         [ $MIN -gt $FSIZE ] && error "min is too big: $MIN"
8722                         [ $MAX -lt 4096 ] && error "max is too small: $MAX"
8723                         [ $MAX -gt $FSIZE ] && error "max is too big: $MAX"
8724                         [ $SUM -ne $FSIZE ] && error "sum is wrong: $SUM"
8725                         [ $SUMSQ -lt $(((FSIZE /4096) * (4096 * 4096))) ] &&
8726                                 error "sumsquare is too small: $SUMSQ"
8727                         [ $SUMSQ -gt $((FSIZE * FSIZE)) ] &&
8728                                 error "sumsquare is too big: $SUMSQ"
8729                         ;;
8730                         *) ;;
8731                 esac
8732         done < $DIR/${tfile}.tmp
8733
8734         #check that we actually got some stats
8735         [ "$read_bytes" ] || error "Missing read_bytes stats"
8736         [ "$write_bytes" ] || error "Missing write_bytes stats"
8737         [ "$read_bytes" != 0 ] || error "no read done"
8738         [ "$write_bytes" != 0 ] || error "no write done"
8739 }
8740 run_test 127a "verify the client stats are sane"
8741
8742 test_127b() { # bug LU-333
8743         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8744         $LCTL set_param llite.*.stats=0
8745         FSIZE=65536 # sized fixed to match PAGE_SIZE for most clients
8746         # perform 2 reads and writes so MAX is different from SUM.
8747         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
8748         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
8749         cancel_lru_locks osc
8750         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE count=1
8751         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE count=1
8752
8753         $LCTL get_param llite.*.stats | grep samples > $TMP/${tfile}.tmp
8754         while read NAME COUNT SAMP UNIT MIN MAX SUM SUMSQ; do
8755                 echo "got $COUNT $NAME"
8756                 eval $NAME=$COUNT || error "Wrong proc format"
8757
8758         case $NAME in
8759                 read_bytes)
8760                         [ $COUNT -ne 2 ] && error "count is not 2: $COUNT"
8761                         [ $MIN -ne $FSIZE ] && error "min is not $FSIZE: $MIN"
8762                         [ $MAX -ne $FSIZE ] && error "max is incorrect: $MAX"
8763                         [ $SUM -ne $((FSIZE * 2)) ] && error "sum is wrong: $SUM"
8764                         ;;
8765                 write_bytes)
8766                         [ $COUNT -ne 2 ] && error "count is not 2: $COUNT"
8767                         [ $MIN -ne $FSIZE ] && error "min is not $FSIZE: $MIN"
8768                         [ $MAX -ne $FSIZE ] && error "max is incorrect: $MAX"
8769                         [ $SUM -ne $((FSIZE * 2)) ] && error "sum is wrong: $SUM"
8770                         ;;
8771                         *) ;;
8772                 esac
8773         done < $TMP/${tfile}.tmp
8774
8775         #check that we actually got some stats
8776         [ "$read_bytes" ] || error "Missing read_bytes stats"
8777         [ "$write_bytes" ] || error "Missing write_bytes stats"
8778         [ "$read_bytes" != 0 ] || error "no read done"
8779         [ "$write_bytes" != 0 ] || error "no write done"
8780
8781         rm -f $TMP/${tfile}.tmp
8782 }
8783 run_test 127b "verify the llite client stats are sane"
8784
8785 test_128() { # bug 15212
8786         touch $DIR/$tfile
8787         $LFS 2>&1 <<-EOF | tee $TMP/$tfile.log
8788                 find $DIR/$tfile
8789                 find $DIR/$tfile
8790         EOF
8791
8792         result=$(grep error $TMP/$tfile.log)
8793         rm -f $DIR/$tfile $TMP/$tfile.log
8794         [ -z "$result" ] ||
8795                 error "consecutive find's under interactive lfs failed"
8796 }
8797 run_test 128 "interactive lfs for 2 consecutive find's"
8798
8799 set_dir_limits () {
8800         local mntdev
8801         local canondev
8802         local node
8803
8804         local LDPROC=/proc/fs/ldiskfs
8805         local facets=$(get_facets MDS)
8806
8807         for facet in ${facets//,/ }; do
8808                 canondev=$(ldiskfs_canon \
8809                            *.$(convert_facet2label $facet).mntdev $facet)
8810                 do_facet $facet "test -e $LDPROC/$canondev/max_dir_size" ||
8811                                                 LDPROC=/sys/fs/ldiskfs
8812                 do_facet $facet "echo $1 >$LDPROC/$canondev/max_dir_size"
8813                 do_facet $facet "test -e $LDPROC/$canondev/warning_dir_size" ||
8814                                                 LDPROC=/sys/fs/ldiskfs
8815                 do_facet $facet "echo $2 >$LDPROC/$canondev/warning_dir_size"
8816         done
8817 }
8818
8819 check_mds_dmesg() {
8820         local facets=$(get_facets MDS)
8821         for facet in ${facets//,/ }; do
8822                 do_facet $facet "dmesg | tail -3 | grep -q $1" && return 0
8823         done
8824         return 1
8825 }
8826
8827 test_129() {
8828         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8829         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
8830                 skip "Only applicable to ldiskfs-based MDTs"
8831                 return
8832         fi
8833         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8834         ENOSPC=28
8835         EFBIG=27
8836         has_warning=0
8837
8838         rm -rf $DIR/$tdir
8839         mkdir -p $DIR/$tdir
8840
8841         # block size of mds1
8842         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
8843         local MDSBLOCKSIZE=$($LCTL get_param -n mdc.*MDT0000*.blocksize)
8844         local MAX=$((MDSBLOCKSIZE * 5))
8845         set_dir_limits $MAX $MAX
8846         local I=$(stat -c%s "$DIR/$tdir")
8847         local J=0
8848         while [[ $I -le $MAX ]]; do
8849                 $MULTIOP $DIR/$tdir/$J Oc
8850                 rc=$?
8851                 if [ $has_warning -eq 0 ]; then
8852                         check_mds_dmesg '"is approaching"' &&
8853                                 has_warning=1
8854                 fi
8855                 #check two errors ENOSPC for new version of ext4 max_dir_size patch
8856                 #mainline kernel commit df981d03eeff7971ac7e6ff37000bfa702327ef1
8857                 #and EFBIG for previous versions
8858                 if [ $rc -eq $EFBIG -o $rc -eq $ENOSPC ]; then
8859                         set_dir_limits 0 0
8860                         echo "return code $rc received as expected"
8861
8862                         createmany -o $DIR/$tdir/$J_file_ 1000 ||
8863                                 error_exit "create failed w/o dir size limit"
8864
8865                         check_mds_dmesg '"has reached"' ||
8866                                 error_exit "has reached message should be output"
8867
8868                         [ $has_warning ] ||
8869                                 error_exit "warning message should be output"
8870
8871                         I=$(stat -c%s "$DIR/$tdir")
8872
8873                         if [ $(lustre_version_code $SINGLEMDS) -lt \
8874                                         $(version_code 2.4.51) ]
8875                         then
8876                                 [[ $I -eq $MAX ]] && return 0
8877                         else
8878                                 [[ $I -gt $MAX ]] && return 0
8879                         fi
8880                         error_exit "current dir size $I, previous limit $MAX"
8881                 elif [ $rc -ne 0 ]; then
8882                         set_dir_limits 0 0
8883                         error_exit "return code $rc received instead of expected " \
8884                                    "$EFBIG or $ENOSPC, files in dir $I"
8885                 fi
8886                 J=$((J+1))
8887                 I=$(stat -c%s "$DIR/$tdir")
8888         done
8889
8890         set_dir_limits 0 0
8891         error "exceeded dir size limit $MAX($MDSCOUNT) : $I bytes"
8892 }
8893 run_test 129 "test directory size limit ========================"
8894
8895 OLDIFS="$IFS"
8896 cleanup_130() {
8897         trap 0
8898         IFS="$OLDIFS"
8899 }
8900
8901 test_130a() {
8902         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
8903         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP" &&
8904                 return
8905
8906         trap cleanup_130 EXIT RETURN
8907
8908         local fm_file=$DIR/$tfile
8909         $SETSTRIPE -S 65536 -c 1 $fm_file || error "setstripe on $fm_file"
8910         dd if=/dev/zero of=$fm_file bs=65536 count=1 ||
8911                 error "dd failed for $fm_file"
8912
8913         # LU-1795: test filefrag/FIEMAP once, even if unsupported
8914         filefrag -ves $fm_file
8915         RC=$?
8916         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
8917                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
8918         [ $RC != 0 ] && error "filefrag $fm_file failed"
8919
8920         filefrag_op=$(filefrag -ve $fm_file |
8921                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
8922         lun=$($GETSTRIPE -i $fm_file)
8923
8924         start_blk=`echo $filefrag_op | cut -d: -f2 | cut -d. -f1`
8925         IFS=$'\n'
8926         tot_len=0
8927         for line in $filefrag_op
8928         do
8929                 frag_lun=`echo $line | cut -d: -f5`
8930                 ext_len=`echo $line | cut -d: -f4`
8931                 if (( $frag_lun != $lun )); then
8932                         cleanup_130
8933                         error "FIEMAP on 1-stripe file($fm_file) failed"
8934                         return
8935                 fi
8936                 (( tot_len += ext_len ))
8937         done
8938
8939         if (( lun != frag_lun || start_blk != 0 || tot_len != 64 )); then
8940                 cleanup_130
8941                 error "FIEMAP on 1-stripe file($fm_file) failed;"
8942                 return
8943         fi
8944
8945         cleanup_130
8946
8947         echo "FIEMAP on single striped file succeeded"
8948 }
8949 run_test 130a "FIEMAP (1-stripe file)"
8950
8951 test_130b() {
8952         [ "$OSTCOUNT" -lt "2" ] &&
8953                 skip_env "skipping FIEMAP on $OSTCOUNT-stripe file" && return
8954
8955         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
8956         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP" &&
8957                 return
8958
8959         trap cleanup_130 EXIT RETURN
8960
8961         local fm_file=$DIR/$tfile
8962         $SETSTRIPE -S 65536 -c $OSTCOUNT $fm_file ||
8963                         error "setstripe on $fm_file"
8964         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
8965                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
8966
8967         dd if=/dev/zero of=$fm_file bs=1M count=$OSTCOUNT ||
8968                 error "dd failed on $fm_file"
8969
8970         filefrag -ves $fm_file || error "filefrag $fm_file failed"
8971         filefrag_op=$(filefrag -ve $fm_file |
8972                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
8973
8974         last_lun=$(echo $filefrag_op | cut -d: -f5 |
8975                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
8976
8977         IFS=$'\n'
8978         tot_len=0
8979         num_luns=1
8980         for line in $filefrag_op
8981         do
8982                 frag_lun=$(echo $line | cut -d: -f5 |
8983                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
8984                 ext_len=$(echo $line | cut -d: -f4)
8985                 if (( $frag_lun != $last_lun )); then
8986                         if (( tot_len != 1024 )); then
8987                                 cleanup_130
8988                                 error "FIEMAP on $fm_file failed; returned " \
8989                                 "len $tot_len for OST $last_lun instead of 1024"
8990                                 return
8991                         else
8992                                 (( num_luns += 1 ))
8993                                 tot_len=0
8994                         fi
8995                 fi
8996                 (( tot_len += ext_len ))
8997                 last_lun=$frag_lun
8998         done
8999         if (( num_luns != $OSTCOUNT || tot_len != 1024 )); then
9000                 cleanup_130
9001                 error "FIEMAP on $fm_file failed; returned wrong number of " \
9002                         "luns or wrong len for OST $last_lun"
9003                 return
9004         fi
9005
9006         cleanup_130
9007
9008         echo "FIEMAP on $OSTCOUNT-stripe file succeeded"
9009 }
9010 run_test 130b "FIEMAP ($OSTCOUNT-stripe file)"
9011
9012 test_130c() {
9013         [ "$OSTCOUNT" -lt "2" ] &&
9014                 skip_env "skipping FIEMAP on 2-stripe file" && return
9015
9016         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
9017         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" &&
9018                 return
9019
9020         trap cleanup_130 EXIT RETURN
9021
9022         local fm_file=$DIR/$tfile
9023         $SETSTRIPE -S 65536 -c 2 $fm_file || error "setstripe on $fm_file"
9024         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
9025                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
9026
9027         dd if=/dev/zero of=$fm_file seek=1 bs=1M count=1 ||
9028                         error "dd failed on $fm_file"
9029
9030         filefrag -ves $fm_file || error "filefrag $fm_file failed"
9031         filefrag_op=$(filefrag -ve $fm_file |
9032                 sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
9033
9034         last_lun=$(echo $filefrag_op | cut -d: -f5 |
9035                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9036
9037         IFS=$'\n'
9038         tot_len=0
9039         num_luns=1
9040         for line in $filefrag_op
9041         do
9042                 frag_lun=$(echo $line | cut -d: -f5 |
9043                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9044                 ext_len=$(echo $line | cut -d: -f4)
9045                 if (( $frag_lun != $last_lun )); then
9046                         logical=`echo $line | cut -d: -f2 | cut -d. -f1`
9047                         if (( logical != 512 )); then
9048                                 cleanup_130
9049                                 error "FIEMAP on $fm_file failed; returned " \
9050                                 "logical start for lun $logical instead of 512"
9051                                 return
9052                         fi
9053                         if (( tot_len != 512 )); then
9054                                 cleanup_130
9055                                 error "FIEMAP on $fm_file failed; returned " \
9056                                 "len $tot_len for OST $last_lun instead of 1024"
9057                                 return
9058                         else
9059                                 (( num_luns += 1 ))
9060                                 tot_len=0
9061                         fi
9062                 fi
9063                 (( tot_len += ext_len ))
9064                 last_lun=$frag_lun
9065         done
9066         if (( num_luns != 2 || tot_len != 512 )); then
9067                 cleanup_130
9068                 error "FIEMAP on $fm_file failed; returned wrong number of " \
9069                         "luns or wrong len for OST $last_lun"
9070                 return
9071         fi
9072
9073         cleanup_130
9074
9075         echo "FIEMAP on 2-stripe file with hole succeeded"
9076 }
9077 run_test 130c "FIEMAP (2-stripe file with hole)"
9078
9079 test_130d() {
9080         [ "$OSTCOUNT" -lt "3" ] &&
9081                 skip_env "skipping FIEMAP on N-stripe file test" && return
9082
9083         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
9084         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" &&
9085                 return
9086
9087         trap cleanup_130 EXIT RETURN
9088
9089         local fm_file=$DIR/$tfile
9090         $SETSTRIPE -S 65536 -c $OSTCOUNT $fm_file ||
9091                         error "setstripe on $fm_file"
9092         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
9093                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
9094
9095         local actual_stripecnt=$($GETSTRIPE -c $fm_file)
9096         dd if=/dev/zero of=$fm_file bs=1M count=$actual_stripecnt ||
9097                 error "dd failed on $fm_file"
9098
9099         filefrag -ves $fm_file || error "filefrag $fm_file failed"
9100         filefrag_op=$(filefrag -ve $fm_file |
9101                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
9102
9103         last_lun=$(echo $filefrag_op | cut -d: -f5 |
9104                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9105
9106         IFS=$'\n'
9107         tot_len=0
9108         num_luns=1
9109         for line in $filefrag_op
9110         do
9111                 frag_lun=$(echo $line | cut -d: -f5 |
9112                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9113                 ext_len=$(echo $line | cut -d: -f4)
9114                 if (( $frag_lun != $last_lun )); then
9115                         if (( tot_len != 1024 )); then
9116                                 cleanup_130
9117                                 error "FIEMAP on $fm_file failed; returned " \
9118                                 "len $tot_len for OST $last_lun instead of 1024"
9119                                 return
9120                         else
9121                                 (( num_luns += 1 ))
9122                                 tot_len=0
9123                         fi
9124                 fi
9125                 (( tot_len += ext_len ))
9126                 last_lun=$frag_lun
9127         done
9128         if (( num_luns != actual_stripecnt || tot_len != 1024 )); then
9129                 cleanup_130
9130                 error "FIEMAP on $fm_file failed; returned wrong number of " \
9131                         "luns or wrong len for OST $last_lun"
9132                 return
9133         fi
9134
9135         cleanup_130
9136
9137         echo "FIEMAP on N-stripe file succeeded"
9138 }
9139 run_test 130d "FIEMAP (N-stripe file)"
9140
9141 test_130e() {
9142         [ "$OSTCOUNT" -lt "2" ] &&
9143                 skip_env "skipping continuation FIEMAP test" && return
9144
9145         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
9146         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" && return
9147
9148         trap cleanup_130 EXIT RETURN
9149
9150         local fm_file=$DIR/$tfile
9151         $SETSTRIPE -S 131072 -c 2 $fm_file || error "setstripe on $fm_file"
9152         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
9153                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
9154
9155         NUM_BLKS=512
9156         EXPECTED_LEN=$(( (NUM_BLKS / 2) * 64 ))
9157         for ((i = 0; i < $NUM_BLKS; i++))
9158         do
9159                 dd if=/dev/zero of=$fm_file count=1 bs=64k seek=$((2*$i)) conv=notrunc > /dev/null 2>&1
9160         done
9161
9162         filefrag -ves $fm_file || error "filefrag $fm_file failed"
9163         filefrag_op=$(filefrag -ve $fm_file |
9164                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
9165
9166         last_lun=$(echo $filefrag_op | cut -d: -f5 |
9167                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9168
9169         IFS=$'\n'
9170         tot_len=0
9171         num_luns=1
9172         for line in $filefrag_op
9173         do
9174                 frag_lun=$(echo $line | cut -d: -f5 |
9175                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9176                 ext_len=$(echo $line | cut -d: -f4)
9177                 if (( $frag_lun != $last_lun )); then
9178                         if (( tot_len != $EXPECTED_LEN )); then
9179                                 cleanup_130
9180                                 error "FIEMAP on $fm_file failed; returned " \
9181                                 "len $tot_len for OST $last_lun instead " \
9182                                 "of $EXPECTED_LEN"
9183                                 return
9184                         else
9185                                 (( num_luns += 1 ))
9186                                 tot_len=0
9187                         fi
9188                 fi
9189                 (( tot_len += ext_len ))
9190                 last_lun=$frag_lun
9191         done
9192         if (( num_luns != 2 || tot_len != $EXPECTED_LEN )); then
9193                 cleanup_130
9194                 error "FIEMAP on $fm_file failed; returned wrong number " \
9195                         "of luns or wrong len for OST $last_lun"
9196                 return
9197         fi
9198
9199         cleanup_130
9200
9201         echo "FIEMAP with continuation calls succeeded"
9202 }
9203 run_test 130e "FIEMAP (test continuation FIEMAP calls)"
9204
9205 # Test for writev/readv
9206 test_131a() {
9207         rwv -f $DIR/$tfile -w -n 3 524288 1048576 1572864 || \
9208         error "writev test failed"
9209         rwv -f $DIR/$tfile -r -v -n 2 1572864 1048576 || \
9210         error "readv failed"
9211         rm -f $DIR/$tfile
9212 }
9213 run_test 131a "test iov's crossing stripe boundary for writev/readv"
9214
9215 test_131b() {
9216         rwv -f $DIR/$tfile -w -a -n 3 524288 1048576 1572864 || \
9217         error "append writev test failed"
9218         rwv -f $DIR/$tfile -w -a -n 2 1572864 1048576 || \
9219         error "append writev test failed"
9220         rm -f $DIR/$tfile
9221 }
9222 run_test 131b "test append writev"
9223
9224 test_131c() {
9225         rwv -f $DIR/$tfile -w -d -n 1 1048576 || return 0
9226         error "NOT PASS"
9227 }
9228 run_test 131c "test read/write on file w/o objects"
9229
9230 test_131d() {
9231         rwv -f $DIR/$tfile -w -n 1 1572864
9232         NOB=`rwv -f $DIR/$tfile -r -n 3 524288 524288 1048576 | awk '/error/ {print $6}'`
9233         if [ "$NOB" != 1572864 ]; then
9234                 error "Short read filed: read $NOB bytes instead of 1572864"
9235         fi
9236         rm -f $DIR/$tfile
9237 }
9238 run_test 131d "test short read"
9239
9240 test_131e() {
9241         rwv -f $DIR/$tfile -w -s 1048576 -n 1 1048576
9242         rwv -f $DIR/$tfile -r -z -s 0 -n 1 524288 || \
9243         error "read hitting hole failed"
9244         rm -f $DIR/$tfile
9245 }
9246 run_test 131e "test read hitting hole"
9247
9248 check_stats() {
9249         local res
9250         local count
9251         case $1 in
9252         $SINGLEMDS) res=`do_facet $SINGLEMDS $LCTL get_param mdt.$FSNAME-MDT0000.md_stats | grep "$2"`
9253                  ;;
9254         ost) res=`do_facet ost1 $LCTL get_param obdfilter.$FSNAME-OST0000.stats | grep "$2"`
9255                  ;;
9256         *) error "Wrong argument $1" ;;
9257         esac
9258         echo $res
9259         [ -z "$res" ] && error "The counter for $2 on $1 was not incremented"
9260         # if the argument $3 is zero, it means any stat increment is ok.
9261         if [[ $3 -gt 0 ]]; then
9262                 count=$(echo $res | awk '{ print $2 }')
9263                 [[ $count -ne $3 ]] &&
9264                         error "The $2 counter on $1 is wrong - expected $3"
9265         fi
9266 }
9267
9268 test_133a() {
9269         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9270         remote_ost_nodsh && skip "remote OST with nodsh" && return
9271         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9272
9273         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
9274                 { skip "MDS doesn't support rename stats"; return; }
9275         local testdir=$DIR/${tdir}/stats_testdir
9276         mkdir -p $DIR/${tdir}
9277
9278         # clear stats.
9279         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
9280         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
9281
9282         # verify mdt stats first.
9283         mkdir ${testdir} || error "mkdir failed"
9284         check_stats $SINGLEMDS "mkdir" 1
9285         touch ${testdir}/${tfile} || "touch failed"
9286         check_stats $SINGLEMDS "open" 1
9287         check_stats $SINGLEMDS "close" 1
9288         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.8.54) ] && {
9289                 mknod ${testdir}/${tfile}-pipe p || "mknod failed"
9290                 check_stats $SINGLEMDS "mknod" 2
9291         }
9292         rm -f ${testdir}/${tfile}-pipe || "pipe remove failed"
9293         check_stats $SINGLEMDS "unlink" 1
9294         rm -f ${testdir}/${tfile} || error "file remove failed"
9295         check_stats $SINGLEMDS "unlink" 2
9296
9297         # remove working dir and check mdt stats again.
9298         rmdir ${testdir} || error "rmdir failed"
9299         check_stats $SINGLEMDS "rmdir" 1
9300
9301         local testdir1=$DIR/${tdir}/stats_testdir1
9302         mkdir -p ${testdir}
9303         mkdir -p ${testdir1}
9304         touch ${testdir1}/test1
9305         mv ${testdir1}/test1 ${testdir} || error "file crossdir rename"
9306         check_stats $SINGLEMDS "crossdir_rename" 1
9307
9308         mv ${testdir}/test1 ${testdir}/test0 || error "file samedir rename"
9309         check_stats $SINGLEMDS "samedir_rename" 1
9310
9311         rm -rf $DIR/${tdir}
9312 }
9313 run_test 133a "Verifying MDT stats ========================================"
9314
9315 test_133b() {
9316         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9317         remote_ost_nodsh && skip "remote OST with nodsh" && return
9318         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9319         local testdir=$DIR/${tdir}/stats_testdir
9320         mkdir -p ${testdir} || error "mkdir failed"
9321         touch ${testdir}/${tfile} || "touch failed"
9322         cancel_lru_locks mdc
9323
9324         # clear stats.
9325         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
9326         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
9327
9328         # extra mdt stats verification.
9329         chmod 444 ${testdir}/${tfile} || error "chmod failed"
9330         check_stats $SINGLEMDS "setattr" 1
9331         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
9332         if [ $(lustre_version_code $SINGLEMDS) -ne $(version_code 2.2.0) ]
9333         then            # LU-1740
9334                 ls -l ${testdir}/${tfile} > /dev/null|| error "ls failed"
9335                 check_stats $SINGLEMDS "getattr" 1
9336         fi
9337         $LFS df || error "lfs failed"
9338         check_stats $SINGLEMDS "statfs" 1
9339
9340         rm -rf $DIR/${tdir}
9341 }
9342 run_test 133b "Verifying extra MDT stats =================================="
9343
9344 test_133c() {
9345         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9346         remote_ost_nodsh && skip "remote OST with nodsh" && return
9347         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9348         local testdir=$DIR/${tdir}/stats_testdir
9349         test_mkdir -p ${testdir} || error "mkdir failed"
9350
9351         # verify obdfilter stats.
9352         $SETSTRIPE -c 1 -i 0 ${testdir}/${tfile}
9353         sync
9354         cancel_lru_locks osc
9355         wait_delete_completed
9356
9357         # clear stats.
9358         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
9359         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
9360
9361         dd if=/dev/zero of=${testdir}/${tfile} conv=notrunc bs=512k count=1 || error "dd failed"
9362         sync
9363         cancel_lru_locks osc
9364         check_stats ost "write" 1
9365
9366         dd if=${testdir}/${tfile} of=/dev/null bs=1k count=1 || error "dd failed"
9367         check_stats ost "read" 1
9368
9369         > ${testdir}/${tfile} || error "truncate failed"
9370         check_stats ost "punch" 1
9371
9372         rm -f ${testdir}/${tfile} || error "file remove failed"
9373         wait_delete_completed
9374         check_stats ost "destroy" 1
9375
9376         rm -rf $DIR/${tdir}
9377 }
9378 run_test 133c "Verifying OST stats ========================================"
9379
9380 order_2() {
9381         local value=$1
9382         local orig=$value
9383         local order=1
9384
9385         while [ $value -ge 2 ]; do
9386                 order=$((order*2))
9387                 value=$((value/2))
9388         done
9389
9390         if [ $orig -gt $order ]; then
9391                 order=$((order*2))
9392         fi
9393         echo $order
9394 }
9395
9396 size_in_KMGT() {
9397     local value=$1
9398     local size=('K' 'M' 'G' 'T');
9399     local i=0
9400     local size_string=$value
9401
9402     while [ $value -ge 1024 ]; do
9403         if [ $i -gt 3 ]; then
9404             #T is the biggest unit we get here, if that is bigger,
9405             #just return XXXT
9406             size_string=${value}T
9407             break
9408         fi
9409         value=$((value >> 10))
9410         if [ $value -lt 1024 ]; then
9411             size_string=${value}${size[$i]}
9412             break
9413         fi
9414         i=$((i + 1))
9415     done
9416
9417     echo $size_string
9418 }
9419
9420 get_rename_size() {
9421     local size=$1
9422     local context=${2:-.}
9423     local sample=$(do_facet $SINGLEMDS $LCTL get_param mdt.*.rename_stats |
9424                 grep -A1 $context |
9425                 awk '/ '${size}'/ {print $4}' | sed -e "s/,//g")
9426     echo $sample
9427 }
9428
9429 test_133d() {
9430         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9431         remote_ost_nodsh && skip "remote OST with nodsh" && return
9432         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9433         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
9434         { skip "MDS doesn't support rename stats"; return; }
9435
9436         local testdir1=$DIR/${tdir}/stats_testdir1
9437         local testdir2=$DIR/${tdir}/stats_testdir2
9438
9439         do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
9440
9441         mkdir -p ${testdir1} || error "mkdir failed"
9442         mkdir -p ${testdir2} || error "mkdir failed"
9443
9444         createmany -o $testdir1/test 512 || error "createmany failed"
9445
9446         # check samedir rename size
9447         mv ${testdir1}/test0 ${testdir1}/test_0
9448
9449         local testdir1_size=$(ls -l $DIR/${tdir} |
9450                 awk '/stats_testdir1/ {print $5}')
9451         local testdir2_size=$(ls -l $DIR/${tdir} |
9452                 awk '/stats_testdir2/ {print $5}')
9453
9454         testdir1_size=$(order_2 $testdir1_size)
9455         testdir2_size=$(order_2 $testdir2_size)
9456
9457         testdir1_size=$(size_in_KMGT $testdir1_size)
9458         testdir2_size=$(size_in_KMGT $testdir2_size)
9459
9460         echo "source rename dir size: ${testdir1_size}"
9461         echo "target rename dir size: ${testdir2_size}"
9462
9463         local cmd="do_facet $SINGLEMDS $LCTL get_param mdt.*.rename_stats"
9464         eval $cmd || error "$cmd failed"
9465         local samedir=$($cmd | grep 'same_dir')
9466         local same_sample=$(get_rename_size $testdir1_size)
9467         [ -z "$samedir" ] && error "samedir_rename_size count error"
9468         [[ $same_sample -eq 1 ]] ||
9469                 error "samedir_rename_size error $same_sample"
9470         echo "Check same dir rename stats success"
9471
9472         do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
9473
9474         # check crossdir rename size
9475         mv ${testdir1}/test_0 ${testdir2}/test_0
9476
9477         testdir1_size=$(ls -l $DIR/${tdir} |
9478                 awk '/stats_testdir1/ {print $5}')
9479         testdir2_size=$(ls -l $DIR/${tdir} |
9480                 awk '/stats_testdir2/ {print $5}')
9481
9482         testdir1_size=$(order_2 $testdir1_size)
9483         testdir2_size=$(order_2 $testdir2_size)
9484
9485         testdir1_size=$(size_in_KMGT $testdir1_size)
9486         testdir2_size=$(size_in_KMGT $testdir2_size)
9487
9488         echo "source rename dir size: ${testdir1_size}"
9489         echo "target rename dir size: ${testdir2_size}"
9490
9491         eval $cmd || error "$cmd failed"
9492         local crossdir=$($cmd | grep 'crossdir')
9493         local src_sample=$(get_rename_size $testdir1_size crossdir_src)
9494         local tgt_sample=$(get_rename_size $testdir2_size crossdir_tgt)
9495         [ -z "$crossdir" ] && error "crossdir_rename_size count error"
9496         [[ $src_sample -eq 1 ]] ||
9497                 error "crossdir_rename_size error $src_sample"
9498         [[ $tgt_sample -eq 1 ]] ||
9499                 error "crossdir_rename_size error $tgt_sample"
9500         echo "Check cross dir rename stats success"
9501         rm -rf $DIR/${tdir}
9502 }
9503 run_test 133d "Verifying rename_stats ========================================"
9504
9505 test_133e() {
9506         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9507         remote_ost_nodsh && skip "remote OST with nodsh" && return
9508         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9509         local testdir=$DIR/${tdir}/stats_testdir
9510         local ctr f0 f1 bs=32768 count=42 sum
9511
9512         mkdir -p ${testdir} || error "mkdir failed"
9513
9514         $SETSTRIPE -c 1 -i 0 ${testdir}/${tfile}
9515
9516         for ctr in {write,read}_bytes; do
9517                 sync
9518                 cancel_lru_locks osc
9519
9520                 do_facet ost1 $LCTL set_param -n \
9521                         "obdfilter.*.exports.clear=clear"
9522
9523                 if [ $ctr = write_bytes ]; then
9524                         f0=/dev/zero
9525                         f1=${testdir}/${tfile}
9526                 else
9527                         f0=${testdir}/${tfile}
9528                         f1=/dev/null
9529                 fi
9530
9531                 dd if=$f0 of=$f1 conv=notrunc bs=$bs count=$count || \
9532                         error "dd failed"
9533                 sync
9534                 cancel_lru_locks osc
9535
9536                 sum=$(do_facet ost1 $LCTL get_param \
9537                         "obdfilter.*.exports.*.stats" |
9538                         awk -v ctr=$ctr 'BEGIN { sum = 0 }
9539                                 $1 == ctr { sum += $7 }
9540                                 END { printf("%0.0f", sum) }')
9541
9542                 if ((sum != bs * count)); then
9543                         error "Bad $ctr sum, expected $((bs * count)), got $sum"
9544                 fi
9545         done
9546
9547         rm -rf $DIR/${tdir}
9548 }
9549 run_test 133e "Verifying OST {read,write}_bytes nid stats ================="
9550
9551 proc_dirs=""
9552 for dir in /proc/fs/lustre/ /proc/sys/lnet/ /proc/sys/lustre/ \
9553            /sys/fs/lustre/ /sys/fs/lnet/ /sys/kernel/debug/lnet/ \
9554            /sys/kernel/debug/lustre/; do
9555         [[ -d $dir ]] && proc_dirs+=" $dir"
9556 done
9557
9558 test_133f() {
9559         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9560         remote_ost_nodsh && skip "remote OST with nodsh" && return
9561         # First without trusting modes.
9562         find $proc_dirs -exec cat '{}' \; &> /dev/null
9563
9564         # Second verifying readability.
9565         $LCTL get_param -R '*' &> /dev/null || error "proc file read failed"
9566
9567         # eventually, this can also be replaced with "lctl get_param -R",
9568         # but not until that option is always available on the server
9569         local facet
9570         for facet in $SINGLEMDS ost1; do
9571                 do_facet $facet find $proc_dirs \
9572                         ! -name req_history \
9573                         -exec cat '{}' \\\; &> /dev/null
9574
9575                 do_facet $facet find $proc_dirs \
9576                         ! -name req_history \
9577                         -type f \
9578                         -exec cat '{}' \\\; &> /dev/null ||
9579                                 error "proc file read failed"
9580         done
9581 }
9582 run_test 133f "Check for LBUGs/Oopses/unreadable files in /proc"
9583
9584 test_133g() {
9585         # Second verifying writability.
9586         find $proc_dirs \
9587                 -type f \
9588                 -not -name force_lbug \
9589                 -not -name changelog_mask \
9590                 -exec badarea_io '{}' \; &> /dev/null ||
9591                 error "find $proc_dirs failed"
9592
9593         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.5.54) ] &&
9594                 skip "Too old lustre on MDS" && return
9595
9596         [ $(lustre_version_code ost1) -le $(version_code 2.5.54) ] &&
9597                 skip "Too old lustre on ost1" && return
9598
9599         local facet
9600         for facet in $SINGLEMDS ost1; do
9601                 do_facet $facet find $proc_dirs \
9602                         -type f \
9603                         -not -name force_lbug \
9604                         -not -name changelog_mask \
9605                         -exec badarea_io '{}' \\\; &> /dev/null ||
9606                 error "$facet find $proc_dirs failed"
9607
9608         done
9609
9610         # remount the FS in case writes/reads /proc break the FS
9611         cleanup || error "failed to unmount"
9612         setup || error "failed to setup"
9613         true
9614 }
9615 run_test 133g "Check for Oopses on bad io area writes/reads in /proc"
9616
9617 test_134a() {
9618         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.54) ]] &&
9619                 skip "Need MDS version at least 2.7.54" && return
9620
9621         mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
9622         cancel_lru_locks mdc
9623
9624         local nsdir="ldlm.namespaces.*-MDT0000-mdc-*"
9625         local unused=$($LCTL get_param -n $nsdir.lock_unused_count)
9626         [ $unused -eq 0 ] || "$unused locks are not cleared"
9627
9628         local nr=1000
9629         createmany -o $DIR/$tdir/f $nr ||
9630                 error "failed to create $nr files in $DIR/$tdir"
9631         unused=$($LCTL get_param -n $nsdir.lock_unused_count)
9632
9633         #define OBD_FAIL_LDLM_WATERMARK_LOW     0x327
9634         do_facet mds1 $LCTL set_param fail_loc=0x327
9635         do_facet mds1 $LCTL set_param fail_val=500
9636         touch $DIR/$tdir/m
9637
9638         echo "sleep 10 seconds ..."
9639         sleep 10
9640         local lck_cnt=$($LCTL get_param -n $nsdir.lock_unused_count)
9641
9642         do_facet mds1 $LCTL set_param fail_loc=0
9643         do_facet mds1 $LCTL set_param fail_val=0
9644         [ $lck_cnt -lt $unused ] ||
9645                 error "No locks reclaimed, before:$unused, after:$lck_cnt"
9646
9647         rm $DIR/$tdir/m
9648         unlinkmany $DIR/$tdir/f $nr
9649 }
9650 run_test 134a "Server reclaims locks when reaching lock_reclaim_threshold"
9651
9652 test_134b() {
9653         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.54) ]] &&
9654                 skip "Need MDS version at least 2.7.54" && return
9655
9656         mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
9657         cancel_lru_locks mdc
9658
9659         local low_wm=$(do_facet mds1 $LCTL get_param -n \
9660                         ldlm.lock_reclaim_threshold_mb)
9661         # disable reclaim temporarily
9662         do_facet mds1 $LCTL set_param ldlm.lock_reclaim_threshold_mb=0
9663
9664         #define OBD_FAIL_LDLM_WATERMARK_HIGH     0x328
9665         do_facet mds1 $LCTL set_param fail_loc=0x328
9666         do_facet mds1 $LCTL set_param fail_val=500
9667
9668         $LCTL set_param debug=+trace
9669
9670         local nr=600
9671         createmany -o $DIR/$tdir/f $nr &
9672         local create_pid=$!
9673
9674         echo "Sleep $TIMEOUT seconds ..."
9675         sleep $TIMEOUT
9676         if ! ps -p $create_pid  > /dev/null 2>&1; then
9677                 do_facet mds1 $LCTL set_param fail_loc=0
9678                 do_facet mds1 $LCTL set_param fail_val=0
9679                 do_facet mds1 $LCTL set_param \
9680                         ldlm.lock_reclaim_threshold_mb=${low_wm}m
9681                 error "createmany finished incorrectly!"
9682         fi
9683         do_facet mds1 $LCTL set_param fail_loc=0
9684         do_facet mds1 $LCTL set_param fail_val=0
9685         do_facet mds1 $LCTL set_param ldlm.lock_reclaim_threshold_mb=${low_wm}m
9686         wait $create_pid || return 1
9687
9688         unlinkmany $DIR/$tdir/f $nr
9689 }
9690 run_test 134b "Server rejects lock request when reaching lock_limit_mb"
9691
9692 test_140() { #bug-17379
9693         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9694         test_mkdir -p $DIR/$tdir || error "Creating dir $DIR/$tdir"
9695         cd $DIR/$tdir || error "Changing to $DIR/$tdir"
9696         cp /usr/bin/stat . || error "Copying stat to $DIR/$tdir"
9697
9698         # VFS limits max symlink depth to 5(4KSTACK) or 7(8KSTACK) or 8
9699         # For kernel > 3.5, bellow only tests consecutive symlink (MAX 40)
9700         local i=0
9701         while i=`expr $i + 1`; do
9702                 test_mkdir -p $i || error "Creating dir $i"
9703                 cd $i || error "Changing to $i"
9704                 ln -s ../stat stat || error "Creating stat symlink"
9705                 # Read the symlink until ELOOP present,
9706                 # not LBUGing the system is considered success,
9707                 # we didn't overrun the stack.
9708                 $OPENFILE -f O_RDONLY stat >/dev/null 2>&1; ret=$?
9709                 [ $ret -ne 0 ] && {
9710                         if [ $ret -eq 40 ]; then
9711                                 break  # -ELOOP
9712                         else
9713                                 error "Open stat symlink"
9714                                 return
9715                         fi
9716                 }
9717         done
9718         i=`expr $i - 1`
9719         echo "The symlink depth = $i"
9720         [ $i -eq 5 -o $i -eq 7 -o $i -eq 8 -o $i -eq 40 ] ||
9721                                         error "Invalid symlink depth"
9722
9723         # Test recursive symlink
9724         ln -s symlink_self symlink_self
9725         $OPENFILE -f O_RDONLY symlink_self >/dev/null 2>&1; ret=$?
9726         echo "open symlink_self returns $ret"
9727         [ $ret -eq 40 ] || error "recursive symlink doesn't return -ELOOP"
9728 }
9729 run_test 140 "Check reasonable stack depth (shouldn't LBUG) ===="
9730
9731 test_150() {
9732         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9733         local TF="$TMP/$tfile"
9734
9735         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
9736         cp $TF $DIR/$tfile
9737         cancel_lru_locks osc
9738         cmp $TF $DIR/$tfile || error "$TMP/$tfile $DIR/$tfile differ"
9739         remount_client $MOUNT
9740         df -P $MOUNT
9741         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (remount)"
9742
9743         $TRUNCATE $TF 6000
9744         $TRUNCATE $DIR/$tfile 6000
9745         cancel_lru_locks osc
9746         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (truncate1)"
9747
9748         echo "12345" >>$TF
9749         echo "12345" >>$DIR/$tfile
9750         cancel_lru_locks osc
9751         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append1)"
9752
9753         echo "12345" >>$TF
9754         echo "12345" >>$DIR/$tfile
9755         cancel_lru_locks osc
9756         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append2)"
9757
9758         rm -f $TF
9759         true
9760 }
9761 run_test 150 "truncate/append tests"
9762
9763 #LU-2902 roc_hit was not able to read all values from lproc
9764 function roc_hit_init() {
9765         local list=$(comma_list $(osts_nodes))
9766         local dir=$DIR/$tdir-check
9767         local file=$dir/file
9768         local BEFORE
9769         local AFTER
9770         local idx
9771
9772         test_mkdir -p $dir
9773         #use setstripe to do a write to every ost
9774         for i in $(seq 0 $((OSTCOUNT-1))); do
9775                 $SETSTRIPE -c 1 -i $i $dir || error "$SETSTRIPE $file failed"
9776                 dd if=/dev/urandom of=$file bs=4k count=4 2>&1 > /dev/null
9777                 idx=$(printf %04x $i)
9778                 BEFORE=$(get_osd_param $list *OST*$idx stats |
9779                         awk '$1 == "cache_access" {sum += $7}
9780                                 END { printf("%0.0f", sum) }')
9781
9782                 cancel_lru_locks osc
9783                 cat $file >/dev/null
9784
9785                 AFTER=$(get_osd_param $list *OST*$idx stats |
9786                         awk '$1 == "cache_access" {sum += $7}
9787                                 END { printf("%0.0f", sum) }')
9788
9789                 echo BEFORE:$BEFORE AFTER:$AFTER
9790                 if ! let "AFTER - BEFORE == 4"; then
9791                         rm -rf $dir
9792                         error "roc_hit is not safe to use"
9793                 fi
9794                 rm $file
9795         done
9796
9797         rm -rf $dir
9798 }
9799
9800 function roc_hit() {
9801         local list=$(comma_list $(osts_nodes))
9802         echo $(get_osd_param $list '' stats |
9803                 awk '$1 == "cache_hit" {sum += $7}
9804                         END { printf("%0.0f", sum) }')
9805 }
9806
9807 function set_cache() {
9808         local on=1
9809
9810         if [ "$2" == "off" ]; then
9811                 on=0;
9812         fi
9813         local list=$(comma_list $(osts_nodes))
9814         set_osd_param $list '' $1_cache_enable $on
9815
9816         cancel_lru_locks osc
9817 }
9818
9819 test_151() {
9820         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9821         remote_ost_nodsh && skip "remote OST with nodsh" && return
9822
9823         local CPAGES=3
9824         local list=$(comma_list $(osts_nodes))
9825
9826         # check whether obdfilter is cache capable at all
9827         if ! get_osd_param $list '' read_cache_enable >/dev/null; then
9828                 echo "not cache-capable obdfilter"
9829                 return 0
9830         fi
9831
9832         # check cache is enabled on all obdfilters
9833         if get_osd_param $list '' read_cache_enable | grep 0; then
9834                 echo "oss cache is disabled"
9835                 return 0
9836         fi
9837
9838         set_osd_param $list '' writethrough_cache_enable 1
9839
9840         # check write cache is enabled on all obdfilters
9841         if get_osd_param $list '' writethrough_cache_enable | grep 0; then
9842                 echo "oss write cache is NOT enabled"
9843                 return 0
9844         fi
9845
9846         roc_hit_init
9847
9848         #define OBD_FAIL_OBD_NO_LRU  0x609
9849         do_nodes $list $LCTL set_param fail_loc=0x609
9850
9851         # pages should be in the case right after write
9852         dd if=/dev/urandom of=$DIR/$tfile bs=4k count=$CPAGES ||
9853                 error "dd failed"
9854
9855         local BEFORE=$(roc_hit)
9856         cancel_lru_locks osc
9857         cat $DIR/$tfile >/dev/null
9858         local AFTER=$(roc_hit)
9859
9860         do_nodes $list $LCTL set_param fail_loc=0
9861
9862         if ! let "AFTER - BEFORE == CPAGES"; then
9863                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
9864         fi
9865
9866         # the following read invalidates the cache
9867         cancel_lru_locks osc
9868         set_osd_param $list '' read_cache_enable 0
9869         cat $DIR/$tfile >/dev/null
9870
9871         # now data shouldn't be found in the cache
9872         BEFORE=$(roc_hit)
9873         cancel_lru_locks osc
9874         cat $DIR/$tfile >/dev/null
9875         AFTER=$(roc_hit)
9876         if let "AFTER - BEFORE != 0"; then
9877                 error "IN CACHE: before: $BEFORE, after: $AFTER"
9878         fi
9879
9880         set_osd_param $list '' read_cache_enable 1
9881         rm -f $DIR/$tfile
9882 }
9883 run_test 151 "test cache on oss and controls ==============================="
9884
9885 test_152() {
9886         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9887         local TF="$TMP/$tfile"
9888
9889         # simulate ENOMEM during write
9890 #define OBD_FAIL_OST_NOMEM      0x226
9891         lctl set_param fail_loc=0x80000226
9892         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
9893         cp $TF $DIR/$tfile
9894         sync || error "sync failed"
9895         lctl set_param fail_loc=0
9896
9897         # discard client's cache
9898         cancel_lru_locks osc
9899
9900         # simulate ENOMEM during read
9901         lctl set_param fail_loc=0x80000226
9902         cmp $TF $DIR/$tfile || error "cmp failed"
9903         lctl set_param fail_loc=0
9904
9905         rm -f $TF
9906 }
9907 run_test 152 "test read/write with enomem ============================"
9908
9909 test_153() {
9910         $MULTIOP $DIR/$tfile Ow4096Ycu || error "multiop failed"
9911 }
9912 run_test 153 "test if fdatasync does not crash ======================="
9913
9914 dot_lustre_fid_permission_check() {
9915         local fid=$1
9916         local ffid=$MOUNT/.lustre/fid/$fid
9917         local test_dir=$2
9918
9919         echo "stat fid $fid"
9920         stat $ffid > /dev/null || error "stat $ffid failed."
9921         echo "touch fid $fid"
9922         touch $ffid || error "touch $ffid failed."
9923         echo "write to fid $fid"
9924         cat /etc/hosts > $ffid || error "write $ffid failed."
9925         echo "read fid $fid"
9926         diff /etc/hosts $ffid || error "read $ffid failed."
9927         echo "append write to fid $fid"
9928         cat /etc/hosts >> $ffid || error "append write $ffid failed."
9929         echo "rename fid $fid"
9930         mv $ffid $test_dir/$tfile.1 &&
9931                 error "rename $ffid to $tfile.1 should fail."
9932         touch $test_dir/$tfile.1
9933         mv $test_dir/$tfile.1 $ffid &&
9934                 error "rename $tfile.1 to $ffid should fail."
9935         rm -f $test_dir/$tfile.1
9936         echo "truncate fid $fid"
9937         $TRUNCATE $ffid 777 || error "truncate $ffid failed."
9938         if [ $MDSCOUNT -lt 2 ]; then #FIXME when cross-MDT hard link is working
9939                 echo "link fid $fid"
9940                 ln -f $ffid $test_dir/tfile.lnk || error "link $ffid failed."
9941         fi
9942         if [ -n $(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl) ]; then
9943                 echo "setfacl fid $fid"
9944                 setfacl -R -m u:bin:rwx $ffid || error "setfacl $ffid failed."
9945                 echo "getfacl fid $fid"
9946                 getfacl $ffid >/dev/null || error "getfacl $ffid failed."
9947         fi
9948         echo "unlink fid $fid"
9949         unlink $MOUNT/.lustre/fid/$fid && error "unlink $ffid should fail."
9950         echo "mknod fid $fid"
9951         mknod $ffid c 1 3 && error "mknod $ffid should fail."
9952
9953         fid=[0xf00000400:0x1:0x0]
9954         ffid=$MOUNT/.lustre/fid/$fid
9955
9956         echo "stat non-exist fid $fid"
9957         stat $ffid > /dev/null && error "stat non-exist $ffid should fail."
9958         echo "write to non-exist fid $fid"
9959         cat /etc/hosts > $ffid && error "write non-exist $ffid should fail."
9960         echo "link new fid $fid"
9961         ln $test_dir/$tfile $ffid && error "link $ffid should fail."
9962
9963         mkdir -p $test_dir/$tdir
9964         touch $test_dir/$tdir/$tfile
9965         fid=$($LFS path2fid $test_dir/$tdir)
9966         rc=$?
9967         [ $rc -ne 0 ] &&
9968                 error "error: could not get fid for $test_dir/$dir/$tfile."
9969
9970         ffid=$MOUNT/.lustre/fid/$fid
9971
9972         echo "ls $fid"
9973         ls $ffid > /dev/null || error "ls $ffid failed."
9974         echo "touch $fid/$tfile.1"
9975         touch $ffid/$tfile.1 || error "touch $ffid/$tfile.1 failed."
9976
9977         echo "touch $MOUNT/.lustre/fid/$tfile"
9978         touch $MOUNT/.lustre/fid/$tfile && \
9979                 error "touch $MOUNT/.lustre/fid/$tfile should fail."
9980
9981         echo "setxattr to $MOUNT/.lustre/fid"
9982         setfattr -n trusted.name1 -v value1 $MOUNT/.lustre/fid
9983
9984         echo "listxattr for $MOUNT/.lustre/fid"
9985         getfattr -d -m "^trusted" $MOUNT/.lustre/fid
9986
9987         echo "delxattr from $MOUNT/.lustre/fid"
9988         setfattr -x trusted.name1 $MOUNT/.lustre/fid
9989
9990         echo "touch invalid fid: $MOUNT/.lustre/fid/[0x200000400:0x2:0x3]"
9991         touch $MOUNT/.lustre/fid/[0x200000400:0x2:0x3] &&
9992                 error "touch invalid fid should fail."
9993
9994         echo "touch non-normal fid: $MOUNT/.lustre/fid/[0x1:0x2:0x0]"
9995         touch $MOUNT/.lustre/fid/[0x1:0x2:0x0] &&
9996                 error "touch non-normal fid should fail."
9997
9998         echo "rename $tdir to $MOUNT/.lustre/fid"
9999         mrename $test_dir/$tdir $MOUNT/.lustre/fid &&
10000                 error "rename to $MOUNT/.lustre/fid should fail."
10001
10002         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.51) ]
10003         then            # LU-3547
10004                 local old_obf_mode=$(stat --format="%a" $DIR/.lustre/fid)
10005                 local new_obf_mode=777
10006
10007                 echo "change mode of $DIR/.lustre/fid to $new_obf_mode"
10008                 chmod $new_obf_mode $DIR/.lustre/fid ||
10009                         error "chmod $new_obf_mode $DIR/.lustre/fid failed"
10010
10011                 local obf_mode=$(stat --format=%a $DIR/.lustre/fid)
10012                 [ $obf_mode -eq $new_obf_mode ] ||
10013                         error "stat $DIR/.lustre/fid returned wrong mode $obf_mode"
10014
10015                 echo "restore mode of $DIR/.lustre/fid to $old_obf_mode"
10016                 chmod $old_obf_mode $DIR/.lustre/fid ||
10017                         error "chmod $old_obf_mode $DIR/.lustre/fid failed"
10018         fi
10019
10020         $OPENFILE -f O_LOV_DELAY_CREATE:O_CREAT $test_dir/$tfile-2
10021         fid=$($LFS path2fid $test_dir/$tfile-2)
10022
10023         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.50) ]
10024         then # LU-5424
10025                 echo "cp /etc/passwd $MOUNT/.lustre/fid/$fid"
10026                 cp /etc/passwd $MOUNT/.lustre/fid/$fid ||
10027                         error "create lov data thru .lustre failed"
10028         fi
10029         echo "cp /etc/passwd $test_dir/$tfile-2"
10030         cp /etc/passwd $test_dir/$tfile-2 ||
10031                 error "copy to $test_dir/$tfile-2 failed."
10032         echo "diff /etc/passwd $MOUNT/.lustre/fid/$fid"
10033         diff /etc/passwd $MOUNT/.lustre/fid/$fid ||
10034                 error "diff /etc/passwd $MOUNT/.lustre/fid/$fid failed."
10035
10036         rm -rf $test_dir/tfile.lnk
10037         rm -rf $test_dir/$tfile-2
10038 }
10039
10040 test_154A() {
10041         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
10042                 skip "Need MDS version at least 2.4.1" && return
10043
10044         touch $DIR/$tfile
10045         local FID=$($LFS path2fid $DIR/$tfile)
10046         [ -z "$FID" ] && error "path2fid unable to get $DIR/$tfile FID"
10047
10048         # check that we get the same pathname back
10049         local FOUND=$($LFS fid2path $MOUNT "$FID")
10050         [ -z "$FOUND" ] && error "fid2path unable to get $FID path"
10051         [ "$FOUND" != "$DIR/$tfile" ] &&
10052                 error "fid2path(path2fid($DIR/$tfile)) = $FOUND != $DIR/$tfile"
10053
10054         rm -rf $DIR/$tfile
10055 }
10056 run_test 154A "lfs path2fid and fid2path basic checks"
10057
10058 test_154a() {
10059         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10060         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ]] ||
10061                 { skip "Need MDS version at least 2.2.51"; return 0; }
10062         [ -z "$(which setfacl)" ] && skip "must have setfacl tool" && return
10063         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
10064
10065         cp /etc/hosts $DIR/$tfile
10066
10067         fid=$($LFS path2fid $DIR/$tfile)
10068         rc=$?
10069         [ $rc -ne 0 ] && error "error: could not get fid for $DIR/$tfile."
10070
10071         dot_lustre_fid_permission_check "$fid" $DIR ||
10072                 error "dot lustre permission check $fid failed"
10073
10074         rm -rf $MOUNT/.lustre && error ".lustre is not allowed to be unlinked"
10075
10076         touch $MOUNT/.lustre/file &&
10077                 error "creation is not allowed under .lustre"
10078
10079         mkdir $MOUNT/.lustre/dir &&
10080                 error "mkdir is not allowed under .lustre"
10081
10082         rm -rf $DIR/$tfile
10083 }
10084 run_test 154a "Open-by-FID"
10085
10086 test_154b() {
10087         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10088         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ]] ||
10089                 { skip "Need MDS version at least 2.2.51"; return 0; }
10090         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
10091
10092         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
10093
10094         local remote_dir=$DIR/$tdir/remote_dir
10095         local MDTIDX=1
10096         local rc=0
10097
10098         mkdir -p $DIR/$tdir
10099         $LFS mkdir -i $MDTIDX $remote_dir ||
10100                 error "create remote directory failed"
10101
10102         cp /etc/hosts $remote_dir/$tfile
10103
10104         fid=$($LFS path2fid $remote_dir/$tfile)
10105         rc=$?
10106         [ $rc -ne 0 ] && error "error: could not get fid for $remote_dir/$tfile"
10107
10108         dot_lustre_fid_permission_check "$fid" $remote_dir ||
10109                 error "dot lustre permission check $fid failed"
10110         rm -rf $DIR/$tdir
10111 }
10112 run_test 154b "Open-by-FID for remote directory"
10113
10114 test_154c() {
10115         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
10116                 skip "Need MDS version at least 2.4.1" && return
10117
10118         touch $DIR/$tfile.1 $DIR/$tfile.2 $DIR/$tfile.3
10119         local FID1=$($LFS path2fid $DIR/$tfile.1)
10120         local FID2=$($LFS path2fid $DIR/$tfile.2)
10121         local FID3=$($LFS path2fid $DIR/$tfile.3)
10122
10123         local N=1
10124         $LFS path2fid $DIR/$tfile.[123] | while read PATHNAME FID; do
10125                 [ "$PATHNAME" = "$DIR/$tfile.$N:" ] ||
10126                         error "path2fid pathname $PATHNAME != $DIR/$tfile.$N:"
10127                 local want=FID$N
10128                 [ "$FID" = "${!want}" ] ||
10129                         error "path2fid $PATHNAME FID $FID != FID$N ${!want}"
10130                 N=$((N + 1))
10131         done
10132
10133         $LFS fid2path $MOUNT "$FID1" "$FID2" "$FID3" | while read PATHNAME;
10134         do
10135                 [ "$PATHNAME" = "$DIR/$tfile.$N" ] ||
10136                         error "fid2path pathname $PATHNAME != $DIR/$tfile.$N:"
10137                 N=$((N + 1))
10138         done
10139 }
10140 run_test 154c "lfs path2fid and fid2path multiple arguments"
10141
10142 test_154d() {
10143         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.53) ]] &&
10144                 skip "Need MDS version at least 2.5.53" && return
10145
10146         if remote_mds; then
10147                 nid=$($LCTL list_nids | sed  "s/\./\\\./g")
10148         else
10149                 nid="0@lo"
10150         fi
10151         local proc_ofile="mdt.*.exports.'$nid'.open_files"
10152         local fd
10153         local cmd
10154
10155         rm -f $DIR/$tfile
10156         touch $DIR/$tfile
10157
10158         local fid=$($LFS path2fid $DIR/$tfile)
10159         # Open the file
10160         fd=$(free_fd)
10161         cmd="exec $fd<$DIR/$tfile"
10162         eval $cmd
10163         local fid_list=$(do_facet $SINGLEMDS $LCTL get_param $proc_ofile)
10164         echo "$fid_list" | grep "$fid"
10165         rc=$?
10166
10167         cmd="exec $fd>/dev/null"
10168         eval $cmd
10169         if [ $rc -ne 0 ]; then
10170                 error "FID $fid not found in open files list $fid_list"
10171         fi
10172 }
10173 run_test 154d "Verify open file fid"
10174
10175 test_154e()
10176 {
10177         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.50) ]] &&
10178                 skip "Need MDS version at least 2.6.50" && return
10179
10180         if ls -a $MOUNT | grep -q '^\.lustre$'; then
10181                 error ".lustre returned by readdir"
10182         fi
10183 }
10184 run_test 154e ".lustre is not returned by readdir"
10185
10186 test_154f() {
10187         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
10188         # create parent directory on a single MDT to avoid cross-MDT hardlinks
10189         test_mkdir -p -c1 $DIR/$tdir/d
10190         # test dirs inherit from its stripe
10191         mkdir -p $DIR/$tdir/d/foo1 || error "mkdir error"
10192         mkdir -p $DIR/$tdir/d/foo2 || error "mkdir error"
10193         cp /etc/hosts $DIR/$tdir/d/foo1/$tfile
10194         ln $DIR/$tdir/d/foo1/$tfile $DIR/$tdir/d/foo2/link
10195         touch $DIR/f
10196
10197         # get fid of parents
10198         local FID0=$($LFS path2fid $DIR/$tdir/d)
10199         local FID1=$($LFS path2fid $DIR/$tdir/d/foo1)
10200         local FID2=$($LFS path2fid $DIR/$tdir/d/foo2)
10201         local FID3=$($LFS path2fid $DIR)
10202
10203         # check that path2fid --parents returns expected <parent_fid>/name
10204         # 1) test for a directory (single parent)
10205         local parent=$($LFS path2fid --parents $DIR/$tdir/d/foo1)
10206         [ "$parent" == "$FID0/foo1" ] ||
10207                 error "expected parent: $FID0/foo1, got: $parent"
10208
10209         # 2) test for a file with nlink > 1 (multiple parents)
10210         parent=$($LFS path2fid --parents $DIR/$tdir/d/foo1/$tfile)
10211         echo "$parent" | grep -F "$FID1/$tfile" ||
10212                 error "$FID1/$tfile not returned in parent list"
10213         echo "$parent" | grep -F "$FID2/link" ||
10214                 error "$FID2/link not returned in parent list"
10215
10216         # 3) get parent by fid
10217         local file_fid=$($LFS path2fid $DIR/$tdir/d/foo1/$tfile)
10218         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
10219         echo "$parent" | grep -F "$FID1/$tfile" ||
10220                 error "$FID1/$tfile not returned in parent list (by fid)"
10221         echo "$parent" | grep -F "$FID2/link" ||
10222                 error "$FID2/link not returned in parent list (by fid)"
10223
10224         # 4) test for entry in root directory
10225         parent=$($LFS path2fid --parents $DIR/f)
10226         echo "$parent" | grep -F "$FID3/f" ||
10227                 error "$FID3/f not returned in parent list"
10228
10229         # 5) test it on root directory
10230         [ -z "$($LFS path2fid --parents $MOUNT 2>/dev/null)" ] ||
10231                 error "$MOUNT should not have parents"
10232
10233         # enable xattr caching and check that linkea is correctly updated
10234         local save="$TMP/$TESTSUITE-$TESTNAME.parameters"
10235         save_lustre_params client "llite.*.xattr_cache" > $save
10236         lctl set_param llite.*.xattr_cache 1
10237
10238         # 6.1) linkea update on rename
10239         mv $DIR/$tdir/d/foo1/$tfile $DIR/$tdir/d/foo2/$tfile.moved
10240
10241         # get parents by fid
10242         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
10243         # foo1 should no longer be returned in parent list
10244         echo "$parent" | grep -F "$FID1" &&
10245                 error "$FID1 should no longer be in parent list"
10246         # the new path should appear
10247         echo "$parent" | grep -F "$FID2/$tfile.moved" ||
10248                 error "$FID2/$tfile.moved is not in parent list"
10249
10250         # 6.2) linkea update on unlink
10251         rm -f $DIR/$tdir/d/foo2/link
10252         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
10253         # foo2/link should no longer be returned in parent list
10254         echo "$parent" | grep -F "$FID2/link" &&
10255                 error "$FID2/link should no longer be in parent list"
10256         true
10257
10258         rm -f $DIR/f
10259         restore_lustre_params < $save
10260         rm -f $save
10261 }
10262 run_test 154f "get parent fids by reading link ea"
10263
10264 test_154g()
10265 {
10266         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.92) ]] ||
10267                 { skip "Need MDS version at least 2.6.92"; return 0; }
10268         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
10269
10270         mkdir -p $DIR/$tdir
10271         llapi_fid_test -d $DIR/$tdir
10272 }
10273 run_test 154g "various llapi FID tests"
10274
10275 test_155_small_load() {
10276     local temp=$TMP/$tfile
10277     local file=$DIR/$tfile
10278
10279     dd if=/dev/urandom of=$temp bs=6096 count=1 || \
10280         error "dd of=$temp bs=6096 count=1 failed"
10281     cp $temp $file
10282     cancel_lru_locks osc
10283     cmp $temp $file || error "$temp $file differ"
10284
10285     $TRUNCATE $temp 6000
10286     $TRUNCATE $file 6000
10287     cmp $temp $file || error "$temp $file differ (truncate1)"
10288
10289     echo "12345" >>$temp
10290     echo "12345" >>$file
10291     cmp $temp $file || error "$temp $file differ (append1)"
10292
10293     echo "12345" >>$temp
10294     echo "12345" >>$file
10295     cmp $temp $file || error "$temp $file differ (append2)"
10296
10297     rm -f $temp $file
10298     true
10299 }
10300
10301 test_155_big_load() {
10302     remote_ost_nodsh && skip "remote OST with nodsh" && return
10303     local temp=$TMP/$tfile
10304     local file=$DIR/$tfile
10305
10306     free_min_max
10307     local cache_size=$(do_facet ost$((MAXI+1)) \
10308         "awk '/cache/ {sum+=\\\$4} END {print sum}' /proc/cpuinfo")
10309     local large_file_size=$((cache_size * 2))
10310
10311     echo "OSS cache size: $cache_size KB"
10312     echo "Large file size: $large_file_size KB"
10313
10314     [ $MAXV -le $large_file_size ] && \
10315         skip_env "max available OST size needs > $large_file_size KB" && \
10316         return 0
10317
10318     $SETSTRIPE $file -c 1 -i $MAXI || error "$SETSTRIPE $file failed"
10319
10320     dd if=/dev/urandom of=$temp bs=$large_file_size count=1k || \
10321         error "dd of=$temp bs=$large_file_size count=1k failed"
10322     cp $temp $file
10323     ls -lh $temp $file
10324     cancel_lru_locks osc
10325     cmp $temp $file || error "$temp $file differ"
10326
10327     rm -f $temp $file
10328     true
10329 }
10330
10331 test_155a() {
10332         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10333         set_cache read on
10334         set_cache writethrough on
10335         test_155_small_load
10336 }
10337 run_test 155a "Verify small file correctness: read cache:on write_cache:on"
10338
10339 test_155b() {
10340         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10341         set_cache read on
10342         set_cache writethrough off
10343         test_155_small_load
10344 }
10345 run_test 155b "Verify small file correctness: read cache:on write_cache:off"
10346
10347 test_155c() {
10348         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10349         set_cache read off
10350         set_cache writethrough on
10351         test_155_small_load
10352 }
10353 run_test 155c "Verify small file correctness: read cache:off write_cache:on"
10354
10355 test_155d() {
10356         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10357         set_cache read off
10358         set_cache writethrough off
10359         test_155_small_load
10360 }
10361 run_test 155d "Verify small file correctness: read cache:off write_cache:off"
10362
10363 test_155e() {
10364         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10365         set_cache read on
10366         set_cache writethrough on
10367         test_155_big_load
10368 }
10369 run_test 155e "Verify big file correctness: read cache:on write_cache:on"
10370
10371 test_155f() {
10372         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10373         set_cache read on
10374         set_cache writethrough off
10375         test_155_big_load
10376 }
10377 run_test 155f "Verify big file correctness: read cache:on write_cache:off"
10378
10379 test_155g() {
10380         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10381         set_cache read off
10382         set_cache writethrough on
10383         test_155_big_load
10384 }
10385 run_test 155g "Verify big file correctness: read cache:off write_cache:on"
10386
10387 test_155h() {
10388         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10389         set_cache read off
10390         set_cache writethrough off
10391         test_155_big_load
10392 }
10393 run_test 155h "Verify big file correctness: read cache:off write_cache:off"
10394
10395 test_156() {
10396         remote_ost_nodsh && skip "remote OST with nodsh" && return
10397         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10398         local CPAGES=3
10399         local BEFORE
10400         local AFTER
10401         local file="$DIR/$tfile"
10402
10403         [ "$(facet_fstype ost1)" = "zfs" -a \
10404            $(lustre_version_code ost1 -lt $(version_code 2.6.93)) ] &&
10405                 skip "LU-1956/LU-2261: stats not implemented on OSD ZFS" &&
10406                 return
10407
10408         roc_hit_init
10409
10410         log "Turn on read and write cache"
10411         set_cache read on
10412         set_cache writethrough on
10413
10414         log "Write data and read it back."
10415         log "Read should be satisfied from the cache."
10416         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
10417         BEFORE=$(roc_hit)
10418         cancel_lru_locks osc
10419         cat $file >/dev/null
10420         AFTER=$(roc_hit)
10421         if ! let "AFTER - BEFORE == CPAGES"; then
10422                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
10423         else
10424                 log "cache hits:: before: $BEFORE, after: $AFTER"
10425         fi
10426
10427         log "Read again; it should be satisfied from the cache."
10428         BEFORE=$AFTER
10429         cancel_lru_locks osc
10430         cat $file >/dev/null
10431         AFTER=$(roc_hit)
10432         if ! let "AFTER - BEFORE == CPAGES"; then
10433                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
10434         else
10435                 log "cache hits:: before: $BEFORE, after: $AFTER"
10436         fi
10437
10438         log "Turn off the read cache and turn on the write cache"
10439         set_cache read off
10440         set_cache writethrough on
10441
10442         log "Read again; it should be satisfied from the cache."
10443         BEFORE=$(roc_hit)
10444         cancel_lru_locks osc
10445         cat $file >/dev/null
10446         AFTER=$(roc_hit)
10447         if ! let "AFTER - BEFORE == CPAGES"; then
10448                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
10449         else
10450                 log "cache hits:: before: $BEFORE, after: $AFTER"
10451         fi
10452
10453         log "Read again; it should not be satisfied from the cache."
10454         BEFORE=$AFTER
10455         cancel_lru_locks osc
10456         cat $file >/dev/null
10457         AFTER=$(roc_hit)
10458         if ! let "AFTER - BEFORE == 0"; then
10459                 error "IN CACHE: before: $BEFORE, after: $AFTER"
10460         else
10461                 log "cache hits:: before: $BEFORE, after: $AFTER"
10462         fi
10463
10464         log "Write data and read it back."
10465         log "Read should be satisfied from the cache."
10466         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
10467         BEFORE=$(roc_hit)
10468         cancel_lru_locks osc
10469         cat $file >/dev/null
10470         AFTER=$(roc_hit)
10471         if ! let "AFTER - BEFORE == CPAGES"; then
10472                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
10473         else
10474                 log "cache hits:: before: $BEFORE, after: $AFTER"
10475         fi
10476
10477         log "Read again; it should not be satisfied from the cache."
10478         BEFORE=$AFTER
10479         cancel_lru_locks osc
10480         cat $file >/dev/null
10481         AFTER=$(roc_hit)
10482         if ! let "AFTER - BEFORE == 0"; then
10483                 error "IN CACHE: before: $BEFORE, after: $AFTER"
10484         else
10485                 log "cache hits:: before: $BEFORE, after: $AFTER"
10486         fi
10487
10488         log "Turn off read and write cache"
10489         set_cache read off
10490         set_cache writethrough off
10491
10492         log "Write data and read it back"
10493         log "It should not be satisfied from the cache."
10494         rm -f $file
10495         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
10496         cancel_lru_locks osc
10497         BEFORE=$(roc_hit)
10498         cat $file >/dev/null
10499         AFTER=$(roc_hit)
10500         if ! let "AFTER - BEFORE == 0"; then
10501                 error_ignore bz20762 "IN CACHE: before: $BEFORE, after: $AFTER"
10502         else
10503                 log "cache hits:: before: $BEFORE, after: $AFTER"
10504         fi
10505
10506         log "Turn on the read cache and turn off the write cache"
10507         set_cache read on
10508         set_cache writethrough off
10509
10510         log "Write data and read it back"
10511         log "It should not be satisfied from the cache."
10512         rm -f $file
10513         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
10514         BEFORE=$(roc_hit)
10515         cancel_lru_locks osc
10516         cat $file >/dev/null
10517         AFTER=$(roc_hit)
10518         if ! let "AFTER - BEFORE == 0"; then
10519                 error_ignore bz20762 "IN CACHE: before: $BEFORE, after: $AFTER"
10520         else
10521                 log "cache hits:: before: $BEFORE, after: $AFTER"
10522         fi
10523
10524         log "Read again; it should be satisfied from the cache."
10525         BEFORE=$(roc_hit)
10526         cancel_lru_locks osc
10527         cat $file >/dev/null
10528         AFTER=$(roc_hit)
10529         if ! let "AFTER - BEFORE == CPAGES"; then
10530                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
10531         else
10532                 log "cache hits:: before: $BEFORE, after: $AFTER"
10533         fi
10534
10535         rm -f $file
10536 }
10537 run_test 156 "Verification of tunables"
10538
10539 #Changelogs
10540 err17935 () {
10541         if [[ $MDSCOUNT -gt 1 ]]; then
10542                 error_ignore bz17935 $*
10543         else
10544                 error $*
10545         fi
10546 }
10547
10548 changelog_chmask()
10549 {
10550         local CL_MASK_PARAM="mdd.$MDT0.changelog_mask"
10551
10552         MASK=$(do_facet $SINGLEMDS $LCTL get_param $CL_MASK_PARAM| grep -c "$1")
10553
10554         if [ $MASK -eq 1 ]; then
10555                 do_facet $SINGLEMDS $LCTL set_param $CL_MASK_PARAM="-$1"
10556         else
10557                 do_facet $SINGLEMDS $LCTL set_param $CL_MASK_PARAM="+$1"
10558         fi
10559 }
10560
10561 changelog_extract_field() {
10562         local mdt=$1
10563         local cltype=$2
10564         local file=$3
10565         local identifier=$4
10566
10567         $LFS changelog $mdt | gawk "/$cltype.*$file$/ {
10568                 print gensub(/^.* "$identifier'(\[[^\]]*\]).*$/,"\\1",1)}' |
10569                 tail -1
10570 }
10571
10572 test_160a() {
10573         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10574         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10575         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] ||
10576                 { skip "Need MDS version at least 2.2.0"; return; }
10577
10578         local CL_USERS="mdd.$MDT0.changelog_users"
10579         local GET_CL_USERS="do_facet $SINGLEMDS $LCTL get_param -n $CL_USERS"
10580         USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_register -n)
10581         echo "Registered as changelog user $USER"
10582         $GET_CL_USERS | grep -q $USER ||
10583                 error "User $USER not found in changelog_users"
10584
10585         # change something
10586         test_mkdir -p $DIR/$tdir/pics/2008/zachy
10587         touch $DIR/$tdir/pics/2008/zachy/timestamp
10588         cp /etc/hosts $DIR/$tdir/pics/2008/zachy/pic1.jpg
10589         mv $DIR/$tdir/pics/2008/zachy $DIR/$tdir/pics/zach
10590         ln $DIR/$tdir/pics/zach/pic1.jpg $DIR/$tdir/pics/2008/portland.jpg
10591         ln -s $DIR/$tdir/pics/2008/portland.jpg $DIR/$tdir/pics/desktop.jpg
10592         rm $DIR/$tdir/pics/desktop.jpg
10593
10594         $LFS changelog $MDT0 | tail -5
10595
10596         echo "verifying changelog mask"
10597         changelog_chmask "MKDIR"
10598         changelog_chmask "CLOSE"
10599
10600         test_mkdir -p $DIR/$tdir/pics/zach/sofia
10601         echo "zzzzzz" > $DIR/$tdir/pics/zach/file
10602
10603         changelog_chmask "MKDIR"
10604         changelog_chmask "CLOSE"
10605
10606         test_mkdir -p $DIR/$tdir/pics/2008/sofia
10607         echo "zzzzzz" > $DIR/$tdir/pics/zach/file
10608
10609         $LFS changelog $MDT0
10610         MKDIRS=$($LFS changelog $MDT0 | tail -5 | grep -c "MKDIR")
10611         CLOSES=$($LFS changelog $MDT0 | tail -5 | grep -c "CLOSE")
10612         [ $MKDIRS -eq 1 ] || err17935 "MKDIR changelog mask count $DIRS != 1"
10613         [ $CLOSES -eq 1 ] || err17935 "CLOSE changelog mask count $DIRS != 1"
10614
10615         # verify contents
10616         echo "verifying target fid"
10617         fidc=$(changelog_extract_field $MDT0 "CREAT" "timestamp" "t=")
10618         fidf=$($LFS path2fid $DIR/$tdir/pics/zach/timestamp)
10619         [ "$fidc" == "$fidf" ] ||
10620                 err17935 "fid in changelog $fidc != file fid $fidf"
10621         echo "verifying parent fid"
10622         fidc=$(changelog_extract_field $MDT0 "CREAT" "timestamp" "p=")
10623         fidf=$($LFS path2fid $DIR/$tdir/pics/zach)
10624         [ "$fidc" == "$fidf" ] ||
10625                 err17935 "pfid in changelog $fidc != dir fid $fidf"
10626
10627         USER_REC1=$($GET_CL_USERS | awk "\$1 == \"$USER\" {print \$2}")
10628         $LFS changelog_clear $MDT0 $USER $(($USER_REC1 + 5))
10629         USER_REC2=$($GET_CL_USERS | awk "\$1 == \"$USER\" {print \$2}")
10630         echo "verifying user clear: $(( $USER_REC1 + 5 )) == $USER_REC2"
10631         [ $USER_REC2 == $(($USER_REC1 + 5)) ] ||
10632                 err17935 "user index expected $(($USER_REC1 + 5)) is $USER_REC2"
10633
10634         MIN_REC=$($GET_CL_USERS |
10635                 awk 'min == "" || $2 < min {min = $2}; END {print min}')
10636         FIRST_REC=$($LFS changelog $MDT0 | head -n1 | awk '{print $1}')
10637         echo "verifying min purge: $(( $MIN_REC + 1 )) == $FIRST_REC"
10638         [ $FIRST_REC == $(($MIN_REC + 1)) ] ||
10639                 err17935 "first index should be $(($MIN_REC + 1)) is $FIRST_REC"
10640
10641         # LU-3446 changelog index reset on MDT restart
10642         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
10643         CUR_REC1=$($GET_CL_USERS | head -n1 | cut -f3 -d' ')
10644         $LFS changelog_clear $MDT0 $USER 0
10645         stop $SINGLEMDS || error "Fail to stop MDT."
10646         start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS || error "Fail to start MDT."
10647         CUR_REC2=$($GET_CL_USERS | head -n1 | cut -f3 -d' ')
10648         echo "verifying index survives MDT restart: $CUR_REC1 == $CUR_REC2"
10649         [ $CUR_REC1 == $CUR_REC2 ] ||
10650                 err17935 "current index should be $CUR_REC1 is $CUR_REC2"
10651
10652         echo "verifying user deregister"
10653         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister $USER
10654         $GET_CL_USERS | grep -q $USER &&
10655                 error "User $USER still in changelog_users"
10656
10657         USERS=$(( $($GET_CL_USERS | wc -l) - 2 ))
10658         if [ $USERS -eq 0 ]; then
10659                 LAST_REC1=$($GET_CL_USERS | head -n1 | cut -f3 -d' ')
10660                 touch $DIR/$tdir/chloe
10661                 LAST_REC2=$($GET_CL_USERS | head -n1 | cut -f3 -d' ')
10662                 echo "verify changelogs are off: $LAST_REC1 == $LAST_REC2"
10663                 [ $LAST_REC1 == $LAST_REC2 ] || error "changelogs not off"
10664         else
10665                 echo "$USERS other changelog users; can't verify off"
10666         fi
10667 }
10668 run_test 160a "changelog sanity"
10669
10670 test_160b() { # LU-3587
10671         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10672         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10673         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] ||
10674                 { skip "Need MDS version at least 2.2.0"; return; }
10675
10676         local CL_USERS="mdd.$MDT0.changelog_users"
10677         local GET_CL_USERS="do_facet $SINGLEMDS $LCTL get_param -n $CL_USERS"
10678         USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_register -n)
10679         echo "Registered as changelog user $USER"
10680         $GET_CL_USERS | grep -q $USER ||
10681                 error "User $USER not found in changelog_users"
10682
10683         local LONGNAME1=$(str_repeat a 255)
10684         local LONGNAME2=$(str_repeat b 255)
10685
10686         cd $DIR
10687         echo "creating very long named file"
10688         touch $LONGNAME1 || error "create of $LONGNAME1 failed"
10689         echo "moving very long named file"
10690         mv $LONGNAME1 $LONGNAME2
10691
10692         $LFS changelog $MDT0 | grep RENME
10693
10694         echo "deregistering $USER"
10695         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister $USER
10696
10697         rm -f $LONGNAME2
10698 }
10699 run_test 160b "Verify that very long rename doesn't crash in changelog"
10700
10701 test_160c() {
10702         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10703
10704         local rc=0
10705         local server_version=$(lustre_version_code $SINGLEMDS)
10706
10707         [[ $server_version -gt $(version_code 2.5.57) ]] ||
10708                 [[ $server_version -gt $(version_code 2.5.1) &&
10709                    $server_version -lt $(version_code 2.5.50) ]] ||
10710                 { skip "Need MDS version at least 2.5.58 or 2.5.2+"; return; }
10711         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10712
10713         # Registration step
10714         local USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
10715                 changelog_register -n)
10716
10717         rm -rf $DIR/$tdir
10718         mkdir -p $DIR/$tdir
10719         $MCREATE $DIR/$tdir/foo_160c
10720         changelog_chmask "TRUNC"
10721         $TRUNCATE $DIR/$tdir/foo_160c 200
10722         changelog_chmask "TRUNC"
10723         $TRUNCATE $DIR/$tdir/foo_160c 199
10724         $LFS changelog $MDT0
10725         TRUNCS=$($LFS changelog $MDT0 | tail -5 | grep -c "TRUNC")
10726         [ $TRUNCS -eq 1 ] || err17935 "TRUNC changelog mask count $TRUNCS != 1"
10727         $LFS changelog_clear $MDT0 $USER 0
10728
10729         # Deregistration step
10730         echo "deregistering $USER"
10731         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister $USER
10732 }
10733 run_test 160c "verify that changelog log catch the truncate event"
10734
10735 test_160d() {
10736         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10737         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
10738
10739         local server_version=$(lustre_version_code mds1)
10740         local CL_MASK_PARAM="mdd.$MDT0.changelog_mask"
10741
10742         [[ $server_version -ge $(version_code 2.7.60) ]] ||
10743                 { skip "Need MDS version at least 2.7.60+"; return; }
10744         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10745
10746         # Registration step
10747         local USER=$(do_facet mds1 $LCTL --device $MDT0 \
10748                 changelog_register -n)
10749
10750         mkdir -p $DIR/$tdir/migrate_dir
10751         $LFS changelog_clear $MDT0 $USER 0
10752
10753         $LFS migrate -m 1 $DIR/$tdir/migrate_dir || error "migrate fails"
10754         $LFS changelog $MDT0
10755         MIGRATES=$($LFS changelog $MDT0 | tail -5 | grep -c "MIGRT")
10756         $LFS changelog_clear $MDT0 $USER 0
10757         [ $MIGRATES -eq 1 ] ||
10758                 error "MIGRATE changelog mask count $MIGRATES != 1"
10759
10760         # Deregistration step
10761         do_facet mds1 $LCTL --device $MDT0 changelog_deregister $USER
10762 }
10763 run_test 160d "verify that changelog log catch the migrate event"
10764
10765 test_161a() {
10766         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10767         test_mkdir -p -c1 $DIR/$tdir
10768         cp /etc/hosts $DIR/$tdir/$tfile
10769         test_mkdir -c1 $DIR/$tdir/foo1
10770         test_mkdir -c1 $DIR/$tdir/foo2
10771         ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/sofia
10772         ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/zachary
10773         ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/luna
10774         ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/thor
10775         local FID=$($LFS path2fid $DIR/$tdir/$tfile | tr -d '[]')
10776         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
10777                 $LFS fid2path $DIR $FID
10778                 err17935 "bad link ea"
10779         fi
10780     # middle
10781     rm $DIR/$tdir/foo2/zachary
10782     # last
10783     rm $DIR/$tdir/foo2/thor
10784     # first
10785     rm $DIR/$tdir/$tfile
10786     # rename
10787     mv $DIR/$tdir/foo1/sofia $DIR/$tdir/foo2/maggie
10788     if [ "$($LFS fid2path $FSNAME --link 1 $FID)" != "$tdir/foo2/maggie" ]
10789         then
10790         $LFS fid2path $DIR $FID
10791         err17935 "bad link rename"
10792     fi
10793     rm $DIR/$tdir/foo2/maggie
10794
10795         # overflow the EA
10796         local longname=filename_avg_len_is_thirty_two_
10797         createmany -l$DIR/$tdir/foo1/luna $DIR/$tdir/foo2/$longname 1000 ||
10798                 error "failed to hardlink many files"
10799         links=$($LFS fid2path $DIR $FID | wc -l)
10800         echo -n "${links}/1000 links in link EA"
10801         [[ $links -gt 60 ]] ||
10802                 err17935 "expected at least 60 links in link EA"
10803         unlinkmany $DIR/$tdir/foo2/$longname 1000 ||
10804                 error "failed to unlink many hardlinks"
10805 }
10806 run_test 161a "link ea sanity"
10807
10808 test_161b() {
10809         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10810         [ $MDSCOUNT -lt 2 ] && skip "skipping remote directory test" && return
10811         local MDTIDX=1
10812         local remote_dir=$DIR/$tdir/remote_dir
10813
10814         mkdir -p $DIR/$tdir
10815         $LFS mkdir -i $MDTIDX $remote_dir ||
10816                 error "create remote directory failed"
10817
10818         cp /etc/hosts $remote_dir/$tfile
10819         mkdir -p $remote_dir/foo1
10820         mkdir -p $remote_dir/foo2
10821         ln $remote_dir/$tfile $remote_dir/foo1/sofia
10822         ln $remote_dir/$tfile $remote_dir/foo2/zachary
10823         ln $remote_dir/$tfile $remote_dir/foo1/luna
10824         ln $remote_dir/$tfile $remote_dir/foo2/thor
10825
10826         local FID=$($LFS path2fid $remote_dir/$tfile | tr -d '[' |
10827                      tr -d ']')
10828         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
10829                 $LFS fid2path $DIR $FID
10830                 err17935 "bad link ea"
10831         fi
10832         # middle
10833         rm $remote_dir/foo2/zachary
10834         # last
10835         rm $remote_dir/foo2/thor
10836         # first
10837         rm $remote_dir/$tfile
10838         # rename
10839         mv $remote_dir/foo1/sofia $remote_dir/foo2/maggie
10840         local link_path=$($LFS fid2path $FSNAME --link 1 $FID)
10841         if [ "$DIR/$link_path" != "$remote_dir/foo2/maggie" ]; then
10842                 $LFS fid2path $DIR $FID
10843                 err17935 "bad link rename"
10844         fi
10845         rm $remote_dir/foo2/maggie
10846
10847         # overflow the EA
10848         local longname=filename_avg_len_is_thirty_two_
10849         createmany -l$remote_dir/foo1/luna $remote_dir/foo2/$longname 1000 ||
10850                 error "failed to hardlink many files"
10851         links=$($LFS fid2path $DIR $FID | wc -l)
10852         echo -n "${links}/1000 links in link EA"
10853         [[ ${links} -gt 60 ]] ||
10854                 err17935 "expected at least 60 links in link EA"
10855         unlinkmany $remote_dir/foo2/$longname 1000 ||
10856         error "failed to unlink many hardlinks"
10857 }
10858 run_test 161b "link ea sanity under remote directory"
10859
10860 test_161c() {
10861         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10862         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10863         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.1.5) ]] &&
10864                 skip "Need MDS version at least 2.1.5" && return
10865
10866         # define CLF_RENAME_LAST 0x0001
10867         # rename overwrite a target having nlink = 1 (changelog flag 0x1)
10868         local USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
10869                 changelog_register -n)
10870         rm -rf $DIR/$tdir
10871         mkdir -p $DIR/$tdir
10872         touch $DIR/$tdir/foo_161c
10873         touch $DIR/$tdir/bar_161c
10874         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/bar_161c
10875         $LFS changelog $MDT0 | grep RENME
10876         local flags=$($LFS changelog $MDT0 | grep RENME | tail -1 | \
10877                 cut -f5 -d' ')
10878         $LFS changelog_clear $MDT0 $USER 0
10879         if [ x$flags != "x0x1" ]; then
10880                 do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister \
10881                         $USER
10882                 error "flag $flags is not 0x1"
10883         fi
10884         echo "rename overwrite a target having nlink = 1," \
10885                 "changelog record has flags of $flags"
10886
10887         # rename overwrite a target having nlink > 1 (changelog flag 0x0)
10888         touch $DIR/$tdir/foo_161c
10889         touch $DIR/$tdir/bar_161c
10890         ln $DIR/$tdir/bar_161c $DIR/$tdir/foobar_161c
10891         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/bar_161c
10892         $LFS changelog $MDT0 | grep RENME
10893         flags=$($LFS changelog $MDT0 | grep RENME | tail -1 | cut -f5 -d' ')
10894         $LFS changelog_clear $MDT0 $USER 0
10895         if [ x$flags != "x0x0" ]; then
10896                 do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister \
10897                         $USER
10898                 error "flag $flags is not 0x0"
10899         fi
10900         echo "rename overwrite a target having nlink > 1," \
10901                 "changelog record has flags of $flags"
10902
10903         # rename doesn't overwrite a target (changelog flag 0x0)
10904         touch $DIR/$tdir/foo_161c
10905         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/foo2_161c
10906         $LFS changelog $MDT0 | grep RENME
10907         flags=$($LFS changelog $MDT0 | grep RENME | tail -1 | cut -f5 -d' ')
10908         $LFS changelog_clear $MDT0 $USER 0
10909         if [ x$flags != "x0x0" ]; then
10910                 do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister \
10911                         $USER
10912                 error "flag $flags is not 0x0"
10913         fi
10914         echo "rename doesn't overwrite a target," \
10915                 "changelog record has flags of $flags"
10916
10917         # define CLF_UNLINK_LAST 0x0001
10918         # unlink a file having nlink = 1 (changelog flag 0x1)
10919         rm -f $DIR/$tdir/foo2_161c
10920         $LFS changelog $MDT0 | grep UNLNK
10921         flags=$($LFS changelog $MDT0 | grep UNLNK | tail -1 | cut -f5 -d' ')
10922         $LFS changelog_clear $MDT0 $USER 0
10923         if [ x$flags != "x0x1" ]; then
10924                 do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister \
10925                         $USER
10926                 error "flag $flags is not 0x1"
10927         fi
10928         echo "unlink a file having nlink = 1," \
10929                 "changelog record has flags of $flags"
10930
10931         # unlink a file having nlink > 1 (changelog flag 0x0)
10932         ln -f $DIR/$tdir/bar_161c $DIR/$tdir/foobar_161c
10933         rm -f $DIR/$tdir/foobar_161c
10934         $LFS changelog $MDT0 | grep UNLNK
10935         flags=$($LFS changelog $MDT0 | grep UNLNK | tail -1 | cut -f5 -d' ')
10936         $LFS changelog_clear $MDT0 $USER 0
10937         if [ x$flags != "x0x0" ]; then
10938                 do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister \
10939                         $USER
10940                 error "flag $flags is not 0x0"
10941         fi
10942         echo "unlink a file having nlink > 1," \
10943                 "changelog record has flags of $flags"
10944         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister $USER
10945 }
10946 run_test 161c "check CL_RENME[UNLINK] changelog record flags"
10947
10948 check_path() {
10949     local expected=$1
10950     shift
10951     local fid=$2
10952
10953     local path=$(${LFS} fid2path $*)
10954     # Remove the '//' indicating a remote directory
10955     path=$(echo $path | sed 's#//#/#g')
10956     RC=$?
10957
10958     if [ $RC -ne 0 ]; then
10959         err17935 "path looked up of $expected failed. Error $RC"
10960         return $RC
10961     elif [ "${path}" != "${expected}" ]; then
10962         err17935 "path looked up \"${path}\" instead of \"${expected}\""
10963         return 2
10964     fi
10965     echo "fid $fid resolves to path $path (expected $expected)"
10966 }
10967
10968 test_162a() { # was test_162
10969         # Make changes to filesystem
10970         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10971         test_mkdir -p -c1 $DIR/$tdir/d2
10972         touch $DIR/$tdir/d2/$tfile
10973         touch $DIR/$tdir/d2/x1
10974         touch $DIR/$tdir/d2/x2
10975         test_mkdir -p -c1 $DIR/$tdir/d2/a/b/c
10976         test_mkdir -p -c1 $DIR/$tdir/d2/p/q/r
10977         # regular file
10978         FID=$($LFS path2fid $DIR/$tdir/d2/$tfile | tr -d '[]')
10979         check_path "$tdir/d2/$tfile" $FSNAME $FID --link 0 ||
10980                 error "check path $tdir/d2/$tfile failed"
10981
10982         # softlink
10983         ln -s $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/slink
10984         FID=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink | tr -d '[]')
10985         check_path "$tdir/d2/p/q/r/slink" $FSNAME $FID --link 0 ||
10986                 error "check path $tdir/d2/p/q/r/slink failed"
10987
10988         # softlink to wrong file
10989         ln -s /this/is/garbage $DIR/$tdir/d2/p/q/r/slink.wrong
10990         FID=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink.wrong | tr -d '[]')
10991         check_path "$tdir/d2/p/q/r/slink.wrong" $FSNAME $FID --link 0 ||
10992                 error "check path $tdir/d2/p/q/r/slink.wrong failed"
10993
10994         # hardlink
10995         ln $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/hlink
10996         mv $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/a/b/c/new_file
10997         FID=$($LFS path2fid $DIR/$tdir/d2/a/b/c/new_file | tr -d '[]')
10998         # fid2path dir/fsname should both work
10999         check_path "$tdir/d2/a/b/c/new_file" $FSNAME $FID --link 1 ||
11000                 error "check path $tdir/d2/a/b/c/new_file failed"
11001         check_path "$DIR/$tdir/d2/p/q/r/hlink" $DIR $FID --link 0 ||
11002                 error "check path $DIR/$tdir/d2/p/q/r/hlink failed"
11003
11004         # hardlink count: check that there are 2 links
11005         # Doesnt work with CMD yet: 17935
11006         ${LFS} fid2path $DIR $FID | wc -l | grep -q 2 || \
11007                 err17935 "expected 2 links"
11008
11009         # hardlink indexing: remove the first link
11010         rm $DIR/$tdir/d2/p/q/r/hlink
11011         check_path "$tdir/d2/a/b/c/new_file" $FSNAME $FID --link 0 ||
11012                 error "check path $DIR/$tdir/d2/a/b/c/new_file failed"
11013
11014         return 0
11015 }
11016 run_test 162a "path lookup sanity"
11017
11018 test_162b() {
11019         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11020         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
11021
11022         mkdir $DIR/$tdir
11023         $LFS setdirstripe -i0 -c$MDSCOUNT -t all_char $DIR/$tdir/striped_dir ||
11024                                 error "create striped dir failed"
11025
11026         local FID=$($LFS getdirstripe $DIR/$tdir/striped_dir |
11027                                         tail -n 1 | awk '{print $2}')
11028         stat $MOUNT/.lustre/fid/$FID && error "sub_stripe can be accessed"
11029
11030         touch $DIR/$tdir/striped_dir/f{0..4} || error "touch f0..4 failed"
11031         mkdir $DIR/$tdir/striped_dir/d{0..4} || error "mkdir d0..4 failed"
11032
11033         # regular file
11034         for ((i=0;i<5;i++)); do
11035                 FID=$($LFS path2fid $DIR/$tdir/striped_dir/f$i | tr -d '[]') ||
11036                         error "get fid for f$i failed"
11037                 check_path "$tdir/striped_dir/f$i" $FSNAME $FID --link 0 ||
11038                         error "check path $tdir/striped_dir/f$i failed"
11039
11040                 FID=$($LFS path2fid $DIR/$tdir/striped_dir/d$i | tr -d '[]') ||
11041                         error "get fid for d$i failed"
11042                 check_path "$tdir/striped_dir/d$i" $FSNAME $FID --link 0 ||
11043                         error "check path $tdir/striped_dir/d$i failed"
11044         done
11045
11046         return 0
11047 }
11048 run_test 162b "striped directory path lookup sanity"
11049
11050 # LU-4239: Verify fid2path works with paths 100 or more directories deep
11051 test_162c() {
11052         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.51) ]] &&
11053                 skip "Need MDS version at least 2.7.51" && return
11054         test_mkdir $DIR/$tdir.local
11055         test_mkdir $DIR/$tdir.remote
11056         local lpath=$tdir.local
11057         local rpath=$tdir.remote
11058
11059         for ((i = 0; i <= 101; i++)); do
11060                 lpath="$lpath/$i"
11061                 mkdir $DIR/$lpath
11062                 FID=$($LFS path2fid $DIR/$lpath | tr -d '[]') ||
11063                         error "get fid for local directory $DIR/$lpath failed"
11064                 check_path "$DIR/$lpath" $MOUNT $FID --link 0 ||
11065                         error "check path for local directory $DIR/$lpath failed"
11066
11067                 rpath="$rpath/$i"
11068                 test_mkdir $DIR/$rpath
11069                 FID=$($LFS path2fid $DIR/$rpath | tr -d '[]') ||
11070                         error "get fid for remote directory $DIR/$rpath failed"
11071                 check_path "$DIR/$rpath" $MOUNT $FID --link 0 ||
11072                         error "check path for remote directory $DIR/$rpath failed"
11073         done
11074
11075         return 0
11076 }
11077 run_test 162c "fid2path works with paths 100 or more directories deep"
11078
11079 test_169() {
11080         # do directio so as not to populate the page cache
11081         log "creating a 10 Mb file"
11082         $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
11083         log "starting reads"
11084         dd if=$DIR/$tfile of=/dev/null bs=4096 &
11085         log "truncating the file"
11086         $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
11087         log "killing dd"
11088         kill %+ || true # reads might have finished
11089         echo "wait until dd is finished"
11090         wait
11091         log "removing the temporary file"
11092         rm -rf $DIR/$tfile || error "tmp file removal failed"
11093 }
11094 run_test 169 "parallel read and truncate should not deadlock"
11095
11096 test_170() {
11097         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11098         $LCTL clear     # bug 18514
11099         $LCTL debug_daemon start $TMP/${tfile}_log_good
11100         touch $DIR/$tfile
11101         $LCTL debug_daemon stop
11102         sed -e "s/^...../a/g" $TMP/${tfile}_log_good > $TMP/${tfile}_log_bad ||
11103                error "sed failed to read log_good"
11104
11105         $LCTL debug_daemon start $TMP/${tfile}_log_good
11106         rm -rf $DIR/$tfile
11107         $LCTL debug_daemon stop
11108
11109         $LCTL df $TMP/${tfile}_log_bad > $TMP/${tfile}_log_bad.out 2>&1 ||
11110                error "lctl df log_bad failed"
11111
11112         local bad_line=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
11113         local good_line1=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
11114
11115         $LCTL df $TMP/${tfile}_log_good > $TMP/${tfile}_log_good.out 2>&1
11116         local good_line2=$(tail -n 1 $TMP/${tfile}_log_good.out | awk '{print $5}')
11117
11118         [ "$bad_line" ] && [ "$good_line1" ] && [ "$good_line2" ] ||
11119                 error "bad_line good_line1 good_line2 are empty"
11120
11121         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
11122         cat $TMP/${tfile}_log_bad >> $TMP/${tfile}_logs_corrupt
11123         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
11124
11125         $LCTL df $TMP/${tfile}_logs_corrupt > $TMP/${tfile}_log_bad.out 2>&1
11126         local bad_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
11127         local good_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
11128
11129         [ "$bad_line_new" ] && [ "$good_line_new" ] ||
11130                 error "bad_line_new good_line_new are empty"
11131
11132         local expected_good=$((good_line1 + good_line2*2))
11133
11134         rm -f $TMP/${tfile}*
11135         # LU-231, short malformed line may not be counted into bad lines
11136         if [ $bad_line -ne $bad_line_new ] &&
11137                    [ $bad_line -ne $((bad_line_new - 1)) ]; then
11138                 error "expected $bad_line bad lines, but got $bad_line_new"
11139                 return 1
11140         fi
11141
11142         if [ $expected_good -ne $good_line_new ]; then
11143                 error "expected $expected_good good lines, but got $good_line_new"
11144                 return 2
11145         fi
11146         true
11147 }
11148 run_test 170 "test lctl df to handle corrupted log ====================="
11149
11150 test_171() { # bug20592
11151         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11152 #define OBD_FAIL_PTLRPC_DUMP_LOG         0x50e
11153         $LCTL set_param fail_loc=0x50e
11154         $LCTL set_param fail_val=3000
11155         multiop_bg_pause $DIR/$tfile O_s || true
11156         local MULTIPID=$!
11157         kill -USR1 $MULTIPID
11158         # cause log dump
11159         sleep 3
11160         wait $MULTIPID
11161         if dmesg | grep "recursive fault"; then
11162                 error "caught a recursive fault"
11163         fi
11164         $LCTL set_param fail_loc=0
11165         true
11166 }
11167 run_test 171 "test libcfs_debug_dumplog_thread stuck in do_exit() ======"
11168
11169 # it would be good to share it with obdfilter-survey/iokit-libecho code
11170 setup_obdecho_osc () {
11171         local rc=0
11172         local ost_nid=$1
11173         local obdfilter_name=$2
11174         echo "Creating new osc for $obdfilter_name on $ost_nid"
11175         # make sure we can find loopback nid
11176         $LCTL add_uuid $ost_nid $ost_nid >/dev/null 2>&1
11177
11178         [ $rc -eq 0 ] && { $LCTL attach osc ${obdfilter_name}_osc     \
11179                            ${obdfilter_name}_osc_UUID || rc=2; }
11180         [ $rc -eq 0 ] && { $LCTL --device ${obdfilter_name}_osc setup \
11181                            ${obdfilter_name}_UUID  $ost_nid || rc=3; }
11182         return $rc
11183 }
11184
11185 cleanup_obdecho_osc () {
11186         local obdfilter_name=$1
11187         $LCTL --device ${obdfilter_name}_osc cleanup >/dev/null
11188         $LCTL --device ${obdfilter_name}_osc detach  >/dev/null
11189         return 0
11190 }
11191
11192 obdecho_test() {
11193         local OBD=$1
11194         local node=$2
11195         local pages=${3:-64}
11196         local rc=0
11197         local id
11198
11199         local count=10
11200         local obd_size=$(get_obd_size $node $OBD)
11201         local page_size=$(get_page_size $node)
11202         if [[ -n "$obd_size" ]]; then
11203                 local new_count=$((obd_size / (pages * page_size / 1024)))
11204                 [[ $new_count -ge $count ]] || count=$new_count
11205         fi
11206
11207         do_facet $node "$LCTL attach echo_client ec ec_uuid" || rc=1
11208         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec setup $OBD" ||
11209                            rc=2; }
11210         if [ $rc -eq 0 ]; then
11211             id=$(do_facet $node "$LCTL --device ec create 1"  | awk '/object id/ {print $6}')
11212             [ ${PIPESTATUS[0]} -eq 0 -a -n "$id" ] || rc=3
11213         fi
11214         echo "New object id is $id"
11215         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec getattr $id" ||
11216                            rc=4; }
11217         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec "                 \
11218                            "test_brw $count w v $pages $id" || rc=4; }
11219         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec destroy $id 1" ||
11220                            rc=4; }
11221         [ $rc -eq 0 -o $rc -gt 2 ] && { do_facet $node "$LCTL --device ec "    \
11222                                         "cleanup" || rc=5; }
11223         [ $rc -eq 0 -o $rc -gt 1 ] && { do_facet $node "$LCTL --device ec "    \
11224                                         "detach" || rc=6; }
11225         [ $rc -ne 0 ] && echo "obecho_create_test failed: $rc"
11226         return $rc
11227 }
11228
11229 test_180a() {
11230         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11231         remote_ost_nodsh && skip "remote OST with nodsh" && return
11232         local rc=0
11233         local rmmod_local=0
11234
11235         if ! module_loaded obdecho; then
11236             load_module obdecho/obdecho
11237             rmmod_local=1
11238         fi
11239
11240         local osc=$($LCTL dl | grep -v mdt | awk '$3 == "osc" {print $4; exit}')
11241         local host=$(lctl get_param -n osc.$osc.import |
11242                              awk '/current_connection:/ {print $2}' )
11243         local target=$(lctl get_param -n osc.$osc.import |
11244                              awk '/target:/ {print $2}' )
11245         target=${target%_UUID}
11246
11247         [[ -n $target ]]  && { setup_obdecho_osc $host $target || rc=1; } || rc=1
11248         [ $rc -eq 0 ] && { obdecho_test ${target}_osc client || rc=2; }
11249         [[ -n $target ]] && cleanup_obdecho_osc $target
11250         [ $rmmod_local -eq 1 ] && rmmod obdecho
11251         return $rc
11252 }
11253 run_test 180a "test obdecho on osc"
11254
11255 test_180b() {
11256         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11257         remote_ost_nodsh && skip "remote OST with nodsh" && return
11258         local rc=0
11259         local rmmod_remote=0
11260
11261         do_facet ost1 "lsmod | grep -q obdecho || "                      \
11262                       "{ insmod ${LUSTRE}/obdecho/obdecho.ko || "        \
11263                       "modprobe obdecho; }" && rmmod_remote=1
11264         target=$(do_facet ost1 $LCTL dl | awk '/obdfilter/ {print $4;exit}')
11265         [[ -n $target ]] && { obdecho_test $target ost1 || rc=1; }
11266         [ $rmmod_remote -eq 1 ] && do_facet ost1 "rmmod obdecho"
11267         return $rc
11268 }
11269 run_test 180b "test obdecho directly on obdfilter"
11270
11271 test_180c() { # LU-2598
11272         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11273         remote_ost_nodsh && skip "remote OST with nodsh" && return
11274         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.0) ]] &&
11275                 skip "Need MDS version at least 2.4.0" && return
11276
11277         local rc=0
11278         local rmmod_remote=false
11279         local pages=16384 # 64MB bulk I/O RPC size
11280         local target
11281
11282         do_rpc_nodes $(facet_active_host ost1) load_module obdecho/obdecho &&
11283                 rmmod_remote=true || error "failed to load module obdecho"
11284
11285         target=$(do_facet ost1 $LCTL dl | awk '/obdfilter/ { print $4 }' |
11286                 head -n1)
11287         if [ -n "$target" ]; then
11288                 obdecho_test "$target" ost1 "$pages" || rc=${PIPESTATUS[0]}
11289         else
11290                 echo "there is no obdfilter target on ost1"
11291                 rc=2
11292         fi
11293         $rmmod_remote && do_facet ost1 "rmmod obdecho" || true
11294         return $rc
11295 }
11296 run_test 180c "test huge bulk I/O size on obdfilter, don't LASSERT"
11297
11298 test_181() { # bug 22177
11299         test_mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
11300         # create enough files to index the directory
11301         createmany -o $DIR/$tdir/foobar 4000
11302         # print attributes for debug purpose
11303         lsattr -d .
11304         # open dir
11305         multiop_bg_pause $DIR/$tdir D_Sc || return 1
11306         MULTIPID=$!
11307         # remove the files & current working dir
11308         unlinkmany $DIR/$tdir/foobar 4000
11309         rmdir $DIR/$tdir
11310         kill -USR1 $MULTIPID
11311         wait $MULTIPID
11312         stat $DIR/$tdir && error "open-unlinked dir was not removed!"
11313         return 0
11314 }
11315 run_test 181 "Test open-unlinked dir ========================"
11316
11317 test_182() {
11318         local fcount=1000
11319         local tcount=10
11320
11321         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
11322
11323         $LCTL set_param mdc.*.rpc_stats=clear
11324
11325         for (( i = 0; i < $tcount; i++ )) ; do
11326                 mkdir $DIR/$tdir/$i
11327         done
11328
11329         for (( i = 0; i < $tcount; i++ )) ; do
11330                 createmany -o $DIR/$tdir/$i/f- $fcount &
11331         done
11332         wait
11333
11334         for (( i = 0; i < $tcount; i++ )) ; do
11335                 unlinkmany $DIR/$tdir/$i/f- $fcount &
11336         done
11337         wait
11338
11339         $LCTL get_param mdc.*.rpc_stats
11340
11341         rm -rf $DIR/$tdir
11342 }
11343 run_test 182 "Test parallel modify metadata operations ================"
11344
11345 test_183() { # LU-2275
11346         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11347         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.56) ]] &&
11348                 skip "Need MDS version at least 2.3.56" && return
11349
11350         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11351         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
11352         echo aaa > $DIR/$tdir/$tfile
11353
11354 #define OBD_FAIL_MDS_NEGATIVE_POSITIVE  0x148
11355         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x148
11356
11357         ls -l $DIR/$tdir && error "ls succeeded, should have failed"
11358         cat $DIR/$tdir/$tfile && error "cat succeeded, should have failed"
11359
11360         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
11361
11362         # Flush negative dentry cache
11363         touch $DIR/$tdir/$tfile
11364
11365         # We are not checking for any leaked references here, they'll
11366         # become evident next time we do cleanup with module unload.
11367         rm -rf $DIR/$tdir
11368 }
11369 run_test 183 "No crash or request leak in case of strange dispositions ========"
11370
11371 # test suite 184 is for LU-2016, LU-2017
11372 test_184a() {
11373         check_swap_layouts_support && return 0
11374
11375         dir0=$DIR/$tdir/$testnum
11376         test_mkdir -p -c1 $dir0 || error "creating dir $dir0"
11377         ref1=/etc/passwd
11378         ref2=/etc/group
11379         file1=$dir0/f1
11380         file2=$dir0/f2
11381         $SETSTRIPE -c1 $file1
11382         cp $ref1 $file1
11383         $SETSTRIPE -c2 $file2
11384         cp $ref2 $file2
11385         gen1=$($GETSTRIPE -g $file1)
11386         gen2=$($GETSTRIPE -g $file2)
11387
11388         $LFS swap_layouts $file1 $file2 || error "swap of file layout failed"
11389         gen=$($GETSTRIPE -g $file1)
11390         [[ $gen1 != $gen ]] ||
11391                 "Layout generation on $file1 does not change"
11392         gen=$($GETSTRIPE -g $file2)
11393         [[ $gen2 != $gen ]] ||
11394                 "Layout generation on $file2 does not change"
11395
11396         cmp $ref1 $file2 || error "content compare failed ($ref1 != $file2)"
11397         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
11398 }
11399 run_test 184a "Basic layout swap"
11400
11401 test_184b() {
11402         check_swap_layouts_support && return 0
11403
11404         dir0=$DIR/$tdir/$testnum
11405         mkdir -p $dir0 || error "creating dir $dir0"
11406         file1=$dir0/f1
11407         file2=$dir0/f2
11408         file3=$dir0/f3
11409         dir1=$dir0/d1
11410         dir2=$dir0/d2
11411         mkdir $dir1 $dir2
11412         $SETSTRIPE -c1 $file1
11413         $SETSTRIPE -c2 $file2
11414         $SETSTRIPE -c1 $file3
11415         chown $RUNAS_ID $file3
11416         gen1=$($GETSTRIPE -g $file1)
11417         gen2=$($GETSTRIPE -g $file2)
11418
11419         $LFS swap_layouts $dir1 $dir2 &&
11420                 error "swap of directories layouts should fail"
11421         $LFS swap_layouts $dir1 $file1 &&
11422                 error "swap of directory and file layouts should fail"
11423         $RUNAS $LFS swap_layouts $file1 $file2 &&
11424                 error "swap of file we cannot write should fail"
11425         $LFS swap_layouts $file1 $file3 &&
11426                 error "swap of file with different owner should fail"
11427         /bin/true # to clear error code
11428 }
11429 run_test 184b "Forbidden layout swap (will generate errors)"
11430
11431 test_184c() {
11432         check_swap_layouts_support && return 0
11433
11434         local dir0=$DIR/$tdir/$testnum
11435         mkdir -p $dir0 || error "creating dir $dir0"
11436
11437         local ref1=$dir0/ref1
11438         local ref2=$dir0/ref2
11439         local file1=$dir0/file1
11440         local file2=$dir0/file2
11441         # create a file large enough for the concurrent test
11442         dd if=/dev/urandom of=$ref1 bs=1M count=$((RANDOM % 50 + 20))
11443         dd if=/dev/urandom of=$ref2 bs=1M count=$((RANDOM % 50 + 20))
11444         echo "ref file size: ref1($(stat -c %s $ref1))," \
11445              "ref2($(stat -c %s $ref2))"
11446
11447         cp $ref2 $file2
11448         dd if=$ref1 of=$file1 bs=16k &
11449         local DD_PID=$!
11450
11451         # Make sure dd starts to copy file
11452         while [ ! -f $file1 ]; do sleep 0.1; done
11453
11454         $LFS swap_layouts $file1 $file2
11455         local rc=$?
11456         wait $DD_PID
11457         [[ $? == 0 ]] || error "concurrent write on $file1 failed"
11458         [[ $rc == 0 ]] || error "swap of $file1 and $file2 failed"
11459
11460         # how many bytes copied before swapping layout
11461         local copied=$(stat -c %s $file2)
11462         local remaining=$(stat -c %s $ref1)
11463         remaining=$((remaining - copied))
11464         echo "Copied $copied bytes before swapping layout..."
11465
11466         cmp -n $copied $file1 $ref2 | grep differ &&
11467                 error "Content mismatch [0, $copied) of ref2 and file1"
11468         cmp -n $copied $file2 $ref1 ||
11469                 error "Content mismatch [0, $copied) of ref1 and file2"
11470         cmp -i $copied:$copied -n $remaining $file1 $ref1 ||
11471                 error "Content mismatch [$copied, EOF) of ref1 and file1"
11472
11473         # clean up
11474         rm -f $ref1 $ref2 $file1 $file2
11475 }
11476 run_test 184c "Concurrent write and layout swap"
11477
11478 test_184d() {
11479         check_swap_layouts_support && return 0
11480         [ -z "$(which getfattr 2>/dev/null)" ] &&
11481                 skip "no getfattr command" && return 0
11482
11483         local file1=$DIR/$tdir/$tfile-1
11484         local file2=$DIR/$tdir/$tfile-2
11485         local file3=$DIR/$tdir/$tfile-3
11486         local lovea1
11487         local lovea2
11488
11489         mkdir -p $DIR/$tdir
11490         touch $file1 || error "create $file1 failed"
11491         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file2 ||
11492                 error "create $file2 failed"
11493         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file3 ||
11494                 error "create $file3 failed"
11495         lovea1=$($LFS getstripe $file1 | sed 1d)
11496
11497         $LFS swap_layouts $file2 $file3 ||
11498                 error "swap $file2 $file3 layouts failed"
11499         $LFS swap_layouts $file1 $file2 ||
11500                 error "swap $file1 $file2 layouts failed"
11501
11502         lovea2=$($LFS getstripe $file2 | sed 1d)
11503         [ "$lovea1" == "$lovea2" ] || error "lovea $lovea1 != $lovea2"
11504
11505         lovea1=$(getfattr -n trusted.lov $file1 | grep ^trusted)
11506         [[ -z "$lovea1" ]] || error "$file1 shouldn't have lovea"
11507 }
11508 run_test 184d "allow stripeless layouts swap"
11509
11510 test_184e() {
11511         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.94) ]] ||
11512                 { skip "Need MDS version at least 2.6.94"; return 0; }
11513         check_swap_layouts_support && return 0
11514         [ -z "$(which getfattr 2>/dev/null)" ] &&
11515                 skip "no getfattr command" && return 0
11516
11517         local file1=$DIR/$tdir/$tfile-1
11518         local file2=$DIR/$tdir/$tfile-2
11519         local file3=$DIR/$tdir/$tfile-3
11520         local lovea
11521
11522         mkdir -p $DIR/$tdir
11523         touch $file1 || error "create $file1 failed"
11524         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file2 ||
11525                 error "create $file2 failed"
11526         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file3 ||
11527                 error "create $file3 failed"
11528
11529         $LFS swap_layouts $file1 $file2 ||
11530                 error "swap $file1 $file2 layouts failed"
11531
11532         lovea=$(getfattr -n trusted.lov $file1 | grep ^trusted)
11533         [[ -z "$lovea" ]] || error "$file1 shouldn't have lovea"
11534
11535         echo 123 > $file1 || error "Should be able to write into $file1"
11536
11537         $LFS swap_layouts $file1 $file3 ||
11538                 error "swap $file1 $file3 layouts failed"
11539
11540         echo 123 > $file1 || error "Should be able to write into $file1"
11541
11542         rm -rf $file1 $file2 $file3
11543 }
11544 run_test 184e "Recreate layout after stripeless layout swaps"
11545
11546 test_185() { # LU-2441
11547         # LU-3553 - no volatile file support in old servers
11548         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.60) ]] ||
11549                 { skip "Need MDS version at least 2.3.60"; return 0; }
11550
11551         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
11552         touch $DIR/$tdir/spoo
11553         local mtime1=$(stat -c "%Y" $DIR/$tdir)
11554         local fid=$($MULTIOP $DIR/$tdir VFw4096c) ||
11555                 error "cannot create/write a volatile file"
11556         [ "$FILESET" == "" ] &&
11557         $CHECKSTAT -t file $MOUNT/.lustre/fid/$fid 2>/dev/null &&
11558                 error "FID is still valid after close"
11559
11560         multiop_bg_pause $DIR/$tdir vVw4096_c
11561         local multi_pid=$!
11562
11563         local OLD_IFS=$IFS
11564         IFS=":"
11565         local fidv=($fid)
11566         IFS=$OLD_IFS
11567         # assume that the next FID for this client is sequential, since stdout
11568         # is unfortunately eaten by multiop_bg_pause
11569         local n=$((${fidv[1]} + 1))
11570         local next_fid="${fidv[0]}:$(printf "0x%x" $n):${fidv[2]}"
11571         if [ "$FILESET" == "" ]; then
11572                 $CHECKSTAT -t file $MOUNT/.lustre/fid/$next_fid ||
11573                         error "FID is missing before close"
11574         fi
11575         kill -USR1 $multi_pid
11576         # 1 second delay, so if mtime change we will see it
11577         sleep 1
11578         local mtime2=$(stat -c "%Y" $DIR/$tdir)
11579         [[ $mtime1 == $mtime2 ]] || error "mtime has changed"
11580 }
11581 run_test 185 "Volatile file support"
11582
11583 test_187a() {
11584         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11585         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.0) ] &&
11586                 skip "Need MDS version at least 2.3.0" && return
11587
11588         local dir0=$DIR/$tdir/$testnum
11589         mkdir -p $dir0 || error "creating dir $dir0"
11590
11591         local file=$dir0/file1
11592         dd if=/dev/urandom of=$file count=10 bs=1M conv=fsync
11593         local dv1=$($LFS data_version $file)
11594         dd if=/dev/urandom of=$file seek=10 count=1 bs=1M conv=fsync
11595         local dv2=$($LFS data_version $file)
11596         [[ $dv1 != $dv2 ]] ||
11597                 error "data version did not change on write $dv1 == $dv2"
11598
11599         # clean up
11600         rm -f $file1
11601 }
11602 run_test 187a "Test data version change"
11603
11604 test_187b() {
11605         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11606         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.0) ] &&
11607                 skip "Need MDS version at least 2.3.0" && return
11608
11609         local dir0=$DIR/$tdir/$testnum
11610         mkdir -p $dir0 || error "creating dir $dir0"
11611
11612         declare -a DV=$($MULTIOP $dir0 Vw1000xYw1000xY | cut -f3 -d" ")
11613         [[ ${DV[0]} != ${DV[1]} ]] ||
11614                 error "data version did not change on write"\
11615                       " ${DV[0]} == ${DV[1]}"
11616
11617         # clean up
11618         rm -f $file1
11619 }
11620 run_test 187b "Test data version change on volatile file"
11621
11622 test_200() {
11623         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11624         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
11625         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
11626
11627         local POOL=${POOL:-cea1}
11628         local POOL_ROOT=${POOL_ROOT:-$DIR/d200.pools}
11629         local POOL_DIR_NAME=${POOL_DIR_NAME:-dir_tst}
11630         # Pool OST targets
11631         local first_ost=0
11632         local last_ost=$(($OSTCOUNT - 1))
11633         local ost_step=2
11634         local ost_list=$(seq $first_ost $ost_step $last_ost)
11635         local ost_range="$first_ost $last_ost $ost_step"
11636         local test_path=$POOL_ROOT/$POOL_DIR_NAME
11637         local file_dir=$POOL_ROOT/file_tst
11638         local subdir=$test_path/subdir
11639
11640         local rc=0
11641         while : ; do
11642                 # former test_200a test_200b
11643                 pool_add $POOL                          || { rc=$? ; break; }
11644                 pool_add_targets  $POOL $ost_range      || { rc=$? ; break; }
11645                 # former test_200c test_200d
11646                 mkdir -p $test_path
11647                 pool_set_dir      $POOL $test_path      || { rc=$? ; break; }
11648                 pool_check_dir    $POOL $test_path      || { rc=$? ; break; }
11649                 mkdir -p $subdir
11650                 pool_check_dir    $POOL $subdir         || { rc=$? ; break; }
11651                 pool_dir_rel_path $POOL $POOL_DIR_NAME $POOL_ROOT \
11652                                                         || { rc=$? ; break; }
11653                 # former test_200e test_200f
11654                 local files=$((OSTCOUNT*3))
11655                 pool_alloc_files  $POOL $test_path $files "$ost_list" \
11656                                                         || { rc=$? ; break; }
11657                 pool_create_files $POOL $file_dir $files "$ost_list" \
11658                                                         || { rc=$? ; break; }
11659                 # former test_200g test_200h
11660                 pool_lfs_df $POOL                       || { rc=$? ; break; }
11661                 pool_file_rel_path $POOL $test_path     || { rc=$? ; break; }
11662
11663                 # former test_201a test_201b test_201c
11664                 pool_remove_first_target $POOL          || { rc=$? ; break; }
11665
11666                 local f=$test_path/$tfile
11667                 pool_remove_all_targets $POOL $f        || { rc=$? ; break; }
11668                 pool_remove $POOL $f                    || { rc=$? ; break; }
11669                 break
11670         done
11671
11672         cleanup_pools
11673         return $rc
11674 }
11675 run_test 200 "OST pools"
11676
11677 # usage: default_attr <count | size | offset>
11678 default_attr() {
11679         $LCTL get_param -n lov.$FSNAME-clilov-\*.stripe${1}
11680 }
11681
11682 # usage: check_default_stripe_attr
11683 check_default_stripe_attr() {
11684         ACTUAL=$($GETSTRIPE $* $DIR/$tdir)
11685         case $1 in
11686         --stripe-count|--count)
11687                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr count);;
11688         --stripe-size|--size)
11689                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr size);;
11690         --stripe-index|--index)
11691                 EXPECTED=-1;;
11692         *)
11693                 error "unknown getstripe attr '$1'"
11694         esac
11695
11696         [ $ACTUAL != $EXPECTED ] &&
11697                 error "$DIR/$tdir has $1 '$ACTUAL', not '$EXPECTED'"
11698 }
11699
11700 test_204a() {
11701         test_mkdir -p $DIR/$tdir
11702         $SETSTRIPE --stripe-count 0 --stripe-size 0 --stripe-index -1 $DIR/$tdir
11703
11704         check_default_stripe_attr --stripe-count
11705         check_default_stripe_attr --stripe-size
11706         check_default_stripe_attr --stripe-index
11707
11708         return 0
11709 }
11710 run_test 204a "Print default stripe attributes ================="
11711
11712 test_204b() {
11713         test_mkdir -p $DIR/$tdir
11714         $SETSTRIPE --stripe-count 1 $DIR/$tdir
11715
11716         check_default_stripe_attr --stripe-size
11717         check_default_stripe_attr --stripe-index
11718
11719         return 0
11720 }
11721 run_test 204b "Print default stripe size and offset  ==========="
11722
11723 test_204c() {
11724         test_mkdir -p $DIR/$tdir
11725         $SETSTRIPE --stripe-size 65536 $DIR/$tdir
11726
11727         check_default_stripe_attr --stripe-count
11728         check_default_stripe_attr --stripe-index
11729
11730         return 0
11731 }
11732 run_test 204c "Print default stripe count and offset ==========="
11733
11734 test_204d() {
11735         test_mkdir -p $DIR/$tdir
11736         $SETSTRIPE --stripe-index 0 $DIR/$tdir
11737
11738         check_default_stripe_attr --stripe-count
11739         check_default_stripe_attr --stripe-size
11740
11741         return 0
11742 }
11743 run_test 204d "Print default stripe count and size ============="
11744
11745 test_204e() {
11746         test_mkdir -p $DIR/$tdir
11747         $SETSTRIPE -d $DIR/$tdir
11748
11749         check_default_stripe_attr --stripe-count --raw
11750         check_default_stripe_attr --stripe-size --raw
11751         check_default_stripe_attr --stripe-index --raw
11752
11753         return 0
11754 }
11755 run_test 204e "Print raw stripe attributes ================="
11756
11757 test_204f() {
11758         test_mkdir -p $DIR/$tdir
11759         $SETSTRIPE --stripe-count 1 $DIR/$tdir
11760
11761         check_default_stripe_attr --stripe-size --raw
11762         check_default_stripe_attr --stripe-index --raw
11763
11764         return 0
11765 }
11766 run_test 204f "Print raw stripe size and offset  ==========="
11767
11768 test_204g() {
11769         test_mkdir -p $DIR/$tdir
11770         $SETSTRIPE --stripe-size 65536 $DIR/$tdir
11771
11772         check_default_stripe_attr --stripe-count --raw
11773         check_default_stripe_attr --stripe-index --raw
11774
11775         return 0
11776 }
11777 run_test 204g "Print raw stripe count and offset ==========="
11778
11779 test_204h() {
11780         test_mkdir -p $DIR/$tdir
11781         $SETSTRIPE --stripe-index 0 $DIR/$tdir
11782
11783         check_default_stripe_attr --stripe-count --raw
11784         check_default_stripe_attr --stripe-size --raw
11785
11786         return 0
11787 }
11788 run_test 204h "Print raw stripe count and size ============="
11789
11790 # Figure out which job scheduler is being used, if any,
11791 # or use a fake one
11792 if [ -n "$SLURM_JOB_ID" ]; then # SLURM
11793         JOBENV=SLURM_JOB_ID
11794 elif [ -n "$LSB_JOBID" ]; then # Load Sharing Facility
11795         JOBENV=LSB_JOBID
11796 elif [ -n "$PBS_JOBID" ]; then # PBS/Maui/Moab
11797         JOBENV=PBS_JOBID
11798 elif [ -n "$LOADL_STEPID" ]; then # LoadLeveller
11799         JOBENV=LOADL_STEP_ID
11800 elif [ -n "$JOB_ID" ]; then # Sun Grid Engine
11801         JOBENV=JOB_ID
11802 else
11803         $LCTL list_param jobid_name > /dev/null 2>&1
11804         if [ $? -eq 0 ]; then
11805                 JOBENV=nodelocal
11806         else
11807                 JOBENV=FAKE_JOBID
11808         fi
11809 fi
11810
11811 verify_jobstats() {
11812         local cmd=($1)
11813         shift
11814         local facets="$@"
11815
11816 # we don't really need to clear the stats for this test to work, since each
11817 # command has a unique jobid, but it makes debugging easier if needed.
11818 #       for facet in $facets; do
11819 #               local dev=$(convert_facet2label $facet)
11820 #               # clear old jobstats
11821 #               do_facet $facet lctl set_param *.$dev.job_stats="clear"
11822 #       done
11823
11824         # use a new JobID for each test, or we might see an old one
11825         [ "$JOBENV" = "FAKE_JOBID" ] &&
11826                 FAKE_JOBID=id.$testnum.$(basename ${cmd[0]}).$RANDOM
11827
11828         JOBVAL=${!JOBENV}
11829
11830         [ "$JOBENV" = "nodelocal" ] && {
11831                 FAKE_JOBID=id.$testnum.$(basename ${cmd[0]}).$RANDOM
11832                 $LCTL set_param jobid_name=$FAKE_JOBID
11833                 JOBVAL=$FAKE_JOBID
11834         }
11835
11836         log "Test: ${cmd[*]}"
11837         log "Using JobID environment variable $JOBENV=$JOBVAL"
11838
11839         if [ $JOBENV = "FAKE_JOBID" ]; then
11840                 FAKE_JOBID=$JOBVAL ${cmd[*]}
11841         else
11842                 ${cmd[*]}
11843         fi
11844
11845         # all files are created on OST0000
11846         for facet in $facets; do
11847                 local stats="*.$(convert_facet2label $facet).job_stats"
11848                 if [ $(do_facet $facet lctl get_param $stats |
11849                        grep -c $JOBVAL) -ne 1 ]; then
11850                         do_facet $facet lctl get_param $stats
11851                         error "No jobstats for $JOBVAL found on $facet::$stats"
11852                 fi
11853         done
11854 }
11855
11856 jobstats_set() {
11857         trap 0
11858         NEW_JOBENV=${1:-$OLD_JOBENV}
11859         do_facet mgs $LCTL conf_param $FSNAME.sys.jobid_var=$NEW_JOBENV
11860         wait_update $HOSTNAME "$LCTL get_param -n jobid_var" $NEW_JOBENV
11861 }
11862
11863 cleanup_205() {
11864         do_facet $SINGLEMDS \
11865                 $LCTL set_param mdt.*.job_cleanup_interval=$OLD_INTERVAL
11866         [ $OLD_JOBENV != $JOBENV ] && jobstats_set $OLD_JOBENV
11867         do_facet $SINGLEMDS lctl --device $MDT0 changelog_deregister $CL_USER
11868 }
11869
11870 test_205() { # Job stats
11871         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11872         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
11873         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11874         remote_ost_nodsh && skip "remote OST with nodsh" && return
11875
11876         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep jobstats)" ] &&
11877                 skip "Server doesn't support jobstats" && return 0
11878         [[ $JOBID_VAR = disable ]] && skip "jobstats is disabled" && return
11879
11880         OLD_JOBENV=$($LCTL get_param -n jobid_var)
11881         if [ $OLD_JOBENV != $JOBENV ]; then
11882                 jobstats_set $JOBENV
11883                 trap cleanup_205 EXIT
11884         fi
11885
11886         CL_USER=$(do_facet $SINGLEMDS lctl --device $MDT0 changelog_register -n)
11887         echo "Registered as changelog user $CL_USER"
11888
11889         OLD_INTERVAL=$(do_facet $SINGLEMDS \
11890                        lctl get_param -n mdt.*.job_cleanup_interval)
11891         local interval_new=5
11892         do_facet $SINGLEMDS \
11893                 $LCTL set_param mdt.*.job_cleanup_interval=$interval_new
11894         local start=$SECONDS
11895
11896         local cmd
11897         # mkdir
11898         cmd="mkdir $DIR/$tdir"
11899         verify_jobstats "$cmd" "$SINGLEMDS"
11900         # rmdir
11901         cmd="rmdir $DIR/$tdir"
11902         verify_jobstats "$cmd" "$SINGLEMDS"
11903         # mkdir on secondary MDT
11904         if [ $MDSCOUNT -gt 1 ]; then
11905                 cmd="lfs mkdir -i 1 $DIR/$tdir.remote"
11906                 verify_jobstats "$cmd" "mds2"
11907         fi
11908         # mknod
11909         cmd="mknod $DIR/$tfile c 1 3"
11910         verify_jobstats "$cmd" "$SINGLEMDS"
11911         # unlink
11912         cmd="rm -f $DIR/$tfile"
11913         verify_jobstats "$cmd" "$SINGLEMDS"
11914         # create all files on OST0000 so verify_jobstats can find OST stats
11915         # open & close
11916         cmd="$SETSTRIPE -i 0 -c 1 $DIR/$tfile"
11917         verify_jobstats "$cmd" "$SINGLEMDS"
11918         # setattr
11919         cmd="touch $DIR/$tfile"
11920         verify_jobstats "$cmd" "$SINGLEMDS ost1"
11921         # write
11922         cmd="dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 oflag=sync"
11923         verify_jobstats "$cmd" "ost1"
11924         # read
11925         cancel_lru_locks osc
11926         cmd="dd if=$DIR/$tfile of=/dev/null bs=1M count=1 iflag=direct"
11927         verify_jobstats "$cmd" "ost1"
11928         # truncate
11929         cmd="$TRUNCATE $DIR/$tfile 0"
11930         verify_jobstats "$cmd" "$SINGLEMDS ost1"
11931         # rename
11932         cmd="mv -f $DIR/$tfile $DIR/$tdir.rename"
11933         verify_jobstats "$cmd" "$SINGLEMDS"
11934         # jobstats expiry - sleep until old stats should be expired
11935         local left=$((interval_new + 2 - (SECONDS - start)))
11936         [ $left -ge 0 ] && echo "sleep $left for expiry" && sleep $((left + 1))
11937         cmd="mkdir $DIR/$tdir.expire"
11938         verify_jobstats "$cmd" "$SINGLEMDS"
11939         [ $(do_facet $SINGLEMDS lctl get_param *.*.job_stats |
11940             grep -c "job_id.*mkdir") -gt 1 ] && error "old jobstats not expired"
11941
11942         # Ensure that jobid are present in changelog (if supported by MDS)
11943         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.52) ]
11944         then
11945                 $LFS changelog $MDT0 | tail -9
11946                 jobids=$($LFS changelog $MDT0 | tail -9 | grep -c "j=")
11947                 [ $jobids -eq 9 ] ||
11948                         error "Wrong changelog jobid count $jobids != 9"
11949
11950                 # LU-5862
11951                 JOBENV="disable"
11952                 jobstats_set $JOBENV
11953                 touch $DIR/$tfile
11954                 $LFS changelog $MDT0 | tail -1
11955                 jobids=$($LFS changelog $MDT0 | tail -1 | grep -c "j=")
11956                 [ $jobids -eq 0 ] ||
11957                         error "Unexpected jobids when jobid_var=$JOBENV"
11958         fi
11959
11960         cleanup_205
11961 }
11962 run_test 205 "Verify job stats"
11963
11964 # LU-1480, LU-1773 and LU-1657
11965 test_206() {
11966         mkdir -p $DIR/$tdir
11967         $SETSTRIPE -c -1 $DIR/$tdir
11968 #define OBD_FAIL_LOV_INIT 0x1403
11969         $LCTL set_param fail_loc=0xa0001403
11970         $LCTL set_param fail_val=1
11971         touch $DIR/$tdir/$tfile || true
11972 }
11973 run_test 206 "fail lov_init_raid0() doesn't lbug"
11974
11975 test_207a() {
11976         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
11977         local fsz=`stat -c %s $DIR/$tfile`
11978         cancel_lru_locks mdc
11979
11980         # do not return layout in getattr intent
11981 #define OBD_FAIL_MDS_NO_LL_GETATTR 0x170
11982         $LCTL set_param fail_loc=0x170
11983         local sz=`stat -c %s $DIR/$tfile`
11984
11985         [ $fsz -eq $sz ] || error "file size expected $fsz, actual $sz"
11986
11987         rm -rf $DIR/$tfile
11988 }
11989 run_test 207a "can refresh layout at glimpse"
11990
11991 test_207b() {
11992         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
11993         local cksum=`md5sum $DIR/$tfile`
11994         local fsz=`stat -c %s $DIR/$tfile`
11995         cancel_lru_locks mdc
11996         cancel_lru_locks osc
11997
11998         # do not return layout in getattr intent
11999 #define OBD_FAIL_MDS_NO_LL_OPEN 0x171
12000         $LCTL set_param fail_loc=0x171
12001
12002         # it will refresh layout after the file is opened but before read issues
12003         echo checksum is "$cksum"
12004         echo "$cksum" |md5sum -c --quiet || error "file differs"
12005
12006         rm -rf $DIR/$tfile
12007 }
12008 run_test 207b "can refresh layout at open"
12009
12010 test_208() {
12011         # FIXME: in this test suite, only RD lease is used. This is okay
12012         # for now as only exclusive open is supported. After generic lease
12013         # is done, this test suite should be revised. - Jinshan
12014
12015         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12016         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.4.52) ]] ||
12017                 { skip "Need MDS version at least 2.4.52"; return 0; }
12018
12019         echo "==== test 1: verify get lease work"
12020         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:eRE+eU || error "get lease error"
12021
12022         echo "==== test 2: verify lease can be broken by upcoming open"
12023         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E-eUc &
12024         local PID=$!
12025         sleep 1
12026
12027         $MULTIOP $DIR/$tfile oO_RDONLY:c
12028         kill -USR1 $PID && wait $PID || error "break lease error"
12029
12030         echo "==== test 3: verify lease can't be granted if an open already exists"
12031         $MULTIOP $DIR/$tfile oO_RDONLY:_c &
12032         local PID=$!
12033         sleep 1
12034
12035         $MULTIOP $DIR/$tfile oO_RDONLY:eReUc && error "apply lease should fail"
12036         kill -USR1 $PID && wait $PID || error "open file error"
12037
12038         echo "==== test 4: lease can sustain over recovery"
12039         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E+eUc &
12040         PID=$!
12041         sleep 1
12042
12043         fail mds1
12044
12045         kill -USR1 $PID && wait $PID || error "lease broken over recovery"
12046
12047         echo "==== test 5: lease broken can't be regained by replay"
12048         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E-eUc &
12049         PID=$!
12050         sleep 1
12051
12052         # open file to break lease and then recovery
12053         $MULTIOP $DIR/$tfile oO_RDWR:c || error "open file error"
12054         fail mds1
12055
12056         kill -USR1 $PID && wait $PID || error "lease not broken over recovery"
12057
12058         rm -f $DIR/$tfile
12059 }
12060 run_test 208 "Exclusive open"
12061
12062 test_209() {
12063         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep disp_stripe)" ] &&
12064                 skip_env "must have disp_stripe" && return
12065
12066         touch $DIR/$tfile
12067         sync; sleep 5; sync;
12068
12069         echo 3 > /proc/sys/vm/drop_caches
12070         req_before=$(awk '/ptlrpc_cache / { print $2 }' /proc/slabinfo)
12071
12072         # open/close 500 times
12073         for i in $(seq 500); do
12074                 cat $DIR/$tfile
12075         done
12076
12077         echo 3 > /proc/sys/vm/drop_caches
12078         req_after=$(awk '/ptlrpc_cache / { print $2 }' /proc/slabinfo)
12079
12080         echo "before: $req_before, after: $req_after"
12081         [ $((req_after - req_before)) -ge 300 ] &&
12082                 error "open/close requests are not freed"
12083         return 0
12084 }
12085 run_test 209 "read-only open/close requests should be freed promptly"
12086
12087 test_212() {
12088         size=`date +%s`
12089         size=$((size % 8192 + 1))
12090         dd if=/dev/urandom of=$DIR/f212 bs=1k count=$size
12091         sendfile $DIR/f212 $DIR/f212.xyz || error "sendfile wrong"
12092         rm -f $DIR/f212 $DIR/f212.xyz
12093 }
12094 run_test 212 "Sendfile test ============================================"
12095
12096 test_213() {
12097         dd if=/dev/zero of=$DIR/$tfile bs=4k count=4
12098         cancel_lru_locks osc
12099         lctl set_param fail_loc=0x8000040f
12100         # generate a read lock
12101         cat $DIR/$tfile > /dev/null
12102         # write to the file, it will try to cancel the above read lock.
12103         cat /etc/hosts >> $DIR/$tfile
12104 }
12105 run_test 213 "OSC lock completion and cancel race don't crash - bug 18829"
12106
12107 test_214() { # for bug 20133
12108         mkdir -p $DIR/$tdir/d214c || error "mkdir $DIR/$tdir/d214c failed"
12109         for (( i=0; i < 340; i++ )) ; do
12110                 touch $DIR/$tdir/d214c/a$i
12111         done
12112
12113         ls -l $DIR/$tdir || error "ls -l $DIR/d214p failed"
12114         mv $DIR/$tdir/d214c $DIR/ || error "mv $DIR/d214p/d214c $DIR/ failed"
12115         ls $DIR/d214c || error "ls $DIR/d214c failed"
12116         rm -rf $DIR/$tdir || error "rm -rf $DIR/d214* failed"
12117         rm -rf $DIR/d214* || error "rm -rf $DIR/d214* failed"
12118 }
12119 run_test 214 "hash-indexed directory test - bug 20133"
12120
12121 # having "abc" as 1st arg, creates $TMP/lnet_abc.out and $TMP/lnet_abc.sys
12122 create_lnet_proc_files() {
12123         lctl get_param -n $1 >$TMP/lnet_$1.out || error "cannot read lnet.$1"
12124         sysctl lnet.$1 >$TMP/lnet_$1.sys_tmp || error "cannot read lnet.$1"
12125
12126         sed "s/^lnet.$1\ =\ //g" "$TMP/lnet_$1.sys_tmp" >$TMP/lnet_$1.sys
12127         rm -f "$TMP/lnet_$1.sys_tmp"
12128 }
12129
12130 # counterpart of create_lnet_proc_files
12131 remove_lnet_proc_files() {
12132         rm -f $TMP/lnet_$1.out $TMP/lnet_$1.sys
12133 }
12134
12135 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
12136 # 3rd arg as regexp for body
12137 check_lnet_proc_stats() {
12138         local l=$(cat "$TMP/lnet_$1" |wc -l)
12139         [ $l = 1 ] || (cat "$TMP/lnet_$1" && error "$2 is not of 1 line: $l")
12140
12141         grep -E "$3" "$TMP/lnet_$1" || (cat "$TMP/lnet_$1" && error "$2 misformatted")
12142 }
12143
12144 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
12145 # 3rd arg as regexp for body, 4th arg as regexp for 1st line, 5th arg is
12146 # optional and can be regexp for 2nd line (lnet.routes case)
12147 check_lnet_proc_entry() {
12148         local blp=2          # blp stands for 'position of 1st line of body'
12149         [ -z "$5" ] || blp=3 # lnet.routes case
12150
12151         local l=$(cat "$TMP/lnet_$1" |wc -l)
12152         # subtracting one from $blp because the body can be empty
12153         [ "$l" -ge "$(($blp - 1))" ] || (cat "$TMP/lnet_$1" && error "$2 is too short: $l")
12154
12155         sed -n '1 p' "$TMP/lnet_$1" |grep -E "$4" >/dev/null ||
12156                 (cat "$TMP/lnet_$1" && error "1st line of $2 misformatted")
12157
12158         [ "$5" = "" ] || sed -n '2 p' "$TMP/lnet_$1" |grep -E "$5" >/dev/null ||
12159                 (cat "$TMP/lnet_$1" && error "2nd line of $2 misformatted")
12160
12161         # bail out if any unexpected line happened
12162         sed -n "$blp p" "$TMP/lnet_$1" | grep -Ev "$3"
12163         [ "$?" != 0 ] || error "$2 misformatted"
12164 }
12165
12166 test_215() { # for bugs 18102, 21079, 21517
12167         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12168         local N='(0|[1-9][0-9]*)'       # non-negative numeric
12169         local P='[1-9][0-9]*'           # positive numeric
12170         local I='(0|-?[1-9][0-9]*|NA)'  # any numeric (0 | >0 | <0) or NA if no value
12171         local NET='[a-z][a-z0-9]*'      # LNET net like o2ib2
12172         local ADDR='[0-9.]+'            # LNET addr like 10.0.0.1
12173         local NID="$ADDR@$NET"          # LNET nid like 10.0.0.1@o2ib2
12174
12175         local L1 # regexp for 1st line
12176         local L2 # regexp for 2nd line (optional)
12177         local BR # regexp for the rest (body)
12178
12179         # lnet.stats should look as 11 space-separated non-negative numerics
12180         BR="^$N $N $N $N $N $N $N $N $N $N $N$"
12181         create_lnet_proc_files "stats"
12182         check_lnet_proc_stats "stats.sys" "lnet.stats" "$BR"
12183         remove_lnet_proc_files "stats"
12184
12185         # lnet.routes should look like this:
12186         # Routing disabled/enabled
12187         # net hops priority state router
12188         # where net is a string like tcp0, hops > 0, priority >= 0,
12189         # state is up/down,
12190         # router is a string like 192.168.1.1@tcp2
12191         L1="^Routing (disabled|enabled)$"
12192         L2="^net +hops +priority +state +router$"
12193         BR="^$NET +$N +(0|1) +(up|down) +$NID$"
12194         create_lnet_proc_files "routes"
12195         check_lnet_proc_entry "routes.sys" "lnet.routes" "$BR" "$L1" "$L2"
12196         remove_lnet_proc_files "routes"
12197
12198         # lnet.routers should look like this:
12199         # ref rtr_ref alive_cnt state last_ping ping_sent deadline down_ni router
12200         # where ref > 0, rtr_ref > 0, alive_cnt >= 0, state is up/down,
12201         # last_ping >= 0, ping_sent is boolean (0/1), deadline and down_ni are
12202         # numeric (0 or >0 or <0), router is a string like 192.168.1.1@tcp2
12203         L1="^ref +rtr_ref +alive_cnt +state +last_ping +ping_sent +deadline +down_ni +router$"
12204         BR="^$P +$P +$N +(up|down) +$N +(0|1) +$I +$I +$NID$"
12205         create_lnet_proc_files "routers"
12206         check_lnet_proc_entry "routers.sys" "lnet.routers" "$BR" "$L1"
12207         remove_lnet_proc_files "routers"
12208
12209         # lnet.peers should look like this:
12210         # nid refs state last max rtr min tx min queue
12211         # where nid is a string like 192.168.1.1@tcp2, refs > 0,
12212         # state is up/down/NA, max >= 0. last, rtr, min, tx, min are
12213         # numeric (0 or >0 or <0), queue >= 0.
12214         L1="^nid +refs +state +last +max +rtr +min +tx +min +queue$"
12215         BR="^$NID +$P +(up|down|NA) +$I +$N +$I +$I +$I +$I +$N$"
12216         create_lnet_proc_files "peers"
12217         check_lnet_proc_entry "peers.sys" "lnet.peers" "$BR" "$L1"
12218         remove_lnet_proc_files "peers"
12219
12220         # lnet.buffers  should look like this:
12221         # pages count credits min
12222         # where pages >=0, count >=0, credits and min are numeric (0 or >0 or <0)
12223         L1="^pages +count +credits +min$"
12224         BR="^ +$N +$N +$I +$I$"
12225         create_lnet_proc_files "buffers"
12226         check_lnet_proc_entry "buffers.sys" "lnet.buffers" "$BR" "$L1"
12227         remove_lnet_proc_files "buffers"
12228
12229         # lnet.nis should look like this:
12230         # nid status alive refs peer rtr max tx min
12231         # where nid is a string like 192.168.1.1@tcp2, status is up/down,
12232         # alive is numeric (0 or >0 or <0), refs >= 0, peer >= 0,
12233         # rtr >= 0, max >=0, tx and min are numeric (0 or >0 or <0).
12234         L1="^nid +status +alive +refs +peer +rtr +max +tx +min$"
12235         BR="^$NID +(up|down) +$I +$N +$N +$N +$N +$I +$I$"
12236         create_lnet_proc_files "nis"
12237         check_lnet_proc_entry "nis.sys" "lnet.nis" "$BR" "$L1"
12238         remove_lnet_proc_files "nis"
12239
12240         # can we successfully write to lnet.stats?
12241         lctl set_param -n stats=0 || error "cannot write to lnet.stats"
12242         sysctl -w lnet.stats=0 || error "cannot write to lnet.stats"
12243 }
12244 run_test 215 "lnet exists and has proper content - bugs 18102, 21079, 21517"
12245
12246 test_216() { # bug 20317
12247         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12248         remote_ost_nodsh && skip "remote OST with nodsh" && return
12249
12250         local node
12251         local facets=$(get_facets OST)
12252         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
12253
12254         save_lustre_params client "osc.*.contention_seconds" > $p
12255         save_lustre_params $facets \
12256                 "ldlm.namespaces.filter-*.max_nolock_bytes" >> $p
12257         save_lustre_params $facets \
12258                 "ldlm.namespaces.filter-*.contended_locks" >> $p
12259         save_lustre_params $facets \
12260                 "ldlm.namespaces.filter-*.contention_seconds" >> $p
12261         clear_osc_stats
12262
12263         # agressive lockless i/o settings
12264         for node in $(osts_nodes); do
12265                 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'
12266         done
12267         lctl set_param -n osc.*.contention_seconds 60
12268
12269         $DIRECTIO write $DIR/$tfile 0 10 4096
12270         $CHECKSTAT -s 40960 $DIR/$tfile
12271
12272         # disable lockless i/o
12273         for node in $(osts_nodes); do
12274                 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'
12275         done
12276         lctl set_param -n osc.*.contention_seconds 0
12277         clear_osc_stats
12278
12279         dd if=/dev/zero of=$DIR/$tfile count=0
12280         $CHECKSTAT -s 0 $DIR/$tfile
12281
12282         restore_lustre_params <$p
12283         rm -f $p
12284         rm $DIR/$tfile
12285 }
12286 run_test 216 "check lockless direct write works and updates file size and kms correctly"
12287
12288 test_217() { # bug 22430
12289         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12290         local node
12291         local nid
12292
12293         for node in $(nodes_list); do
12294                 nid=$(host_nids_address $node $NETTYPE)
12295                 if [[ $nid = *-* ]] ; then
12296                         echo "lctl ping $nid@$NETTYPE"
12297                         lctl ping $nid@$NETTYPE
12298                 else
12299                         echo "skipping $node (no hyphen detected)"
12300                 fi
12301         done
12302 }
12303 run_test 217 "check lctl ping for hostnames with hiphen ('-')"
12304
12305 test_218() {
12306        # do directio so as not to populate the page cache
12307        log "creating a 10 Mb file"
12308        $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
12309        log "starting reads"
12310        dd if=$DIR/$tfile of=/dev/null bs=4096 &
12311        log "truncating the file"
12312        $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
12313        log "killing dd"
12314        kill %+ || true # reads might have finished
12315        echo "wait until dd is finished"
12316        wait
12317        log "removing the temporary file"
12318        rm -rf $DIR/$tfile || error "tmp file removal failed"
12319 }
12320 run_test 218 "parallel read and truncate should not deadlock ======================="
12321
12322 test_219() {
12323         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12324         # write one partial page
12325         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1
12326         # set no grant so vvp_io_commit_write will do sync write
12327         $LCTL set_param fail_loc=0x411
12328         # write a full page at the end of file
12329         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=1 conv=notrunc
12330
12331         $LCTL set_param fail_loc=0
12332         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=3
12333         $LCTL set_param fail_loc=0x411
12334         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1 seek=2 conv=notrunc
12335
12336         # LU-4201
12337         dd if=/dev/zero of=$DIR/$tfile-2 bs=1024 count=1
12338         $CHECKSTAT -s 1024 $DIR/$tfile-2 || error "checkstat wrong size"
12339 }
12340 run_test 219 "LU-394: Write partial won't cause uncontiguous pages vec at LND"
12341
12342 test_220() { #LU-325
12343         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12344         remote_ost_nodsh && skip "remote OST with nodsh" && return
12345         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12346         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
12347         local OSTIDX=0
12348
12349         # create on MDT0000 so the last_id and next_id are correct
12350         mkdir $DIR/$tdir
12351         local OST=$($LFS df $DIR | awk '/OST:'$OSTIDX'/ { print $1 }')
12352         OST=${OST%_UUID}
12353
12354         # on the mdt's osc
12355         local mdtosc_proc1=$(get_mdtosc_proc_path $SINGLEMDS $OST)
12356         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
12357                         osc.$mdtosc_proc1.prealloc_last_id)
12358         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
12359                         osc.$mdtosc_proc1.prealloc_next_id)
12360
12361         $LFS df -i
12362
12363         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=-1
12364         #define OBD_FAIL_OST_ENOINO              0x229
12365         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0x229
12366         do_facet mgs $LCTL pool_new $FSNAME.$TESTNAME || return 1
12367         do_facet mgs $LCTL pool_add $FSNAME.$TESTNAME $OST || return 2
12368
12369         $SETSTRIPE $DIR/$tdir -i $OSTIDX -c 1 -p $FSNAME.$TESTNAME
12370
12371         MDSOBJS=$((last_id - next_id))
12372         echo "preallocated objects on MDS is $MDSOBJS" "($last_id - $next_id)"
12373
12374         blocks=$($LFS df $MOUNT | awk '($1 == '$OSTIDX') { print $4 }')
12375         echo "OST still has $count kbytes free"
12376
12377         echo "create $MDSOBJS files @next_id..."
12378         createmany -o $DIR/$tdir/f $MDSOBJS || return 3
12379
12380         local last_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
12381                         osc.$mdtosc_proc1.prealloc_last_id)
12382         local next_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
12383                         osc.$mdtosc_proc1.prealloc_next_id)
12384
12385         echo "after creation, last_id=$last_id2, next_id=$next_id2"
12386         $LFS df -i
12387
12388         echo "cleanup..."
12389
12390         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=0
12391         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0
12392
12393         do_facet mgs $LCTL pool_remove $FSNAME.$TESTNAME $OST || return 4
12394         do_facet mgs $LCTL pool_destroy $FSNAME.$TESTNAME || return 5
12395         echo "unlink $MDSOBJS files @$next_id..."
12396         unlinkmany $DIR/$tdir/f $MDSOBJS || return 6
12397 }
12398 run_test 220 "preallocated MDS objects still used if ENOSPC from OST"
12399
12400 test_221() {
12401         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12402         dd if=`which date` of=$MOUNT/date oflag=sync
12403         chmod +x $MOUNT/date
12404
12405         #define OBD_FAIL_LLITE_FAULT_TRUNC_RACE  0x1401
12406         $LCTL set_param fail_loc=0x80001401
12407
12408         $MOUNT/date > /dev/null
12409         rm -f $MOUNT/date
12410 }
12411 run_test 221 "make sure fault and truncate race to not cause OOM"
12412
12413 test_222a () {
12414         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12415        rm -rf $DIR/$tdir
12416        test_mkdir -p $DIR/$tdir
12417        $SETSTRIPE -c 1 -i 0 $DIR/$tdir
12418        createmany -o $DIR/$tdir/$tfile 10
12419        cancel_lru_locks mdc
12420        cancel_lru_locks osc
12421        #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
12422        $LCTL set_param fail_loc=0x31a
12423        ls -l $DIR/$tdir > /dev/null || error "AGL for ls failed"
12424        $LCTL set_param fail_loc=0
12425        rm -r $DIR/$tdir
12426 }
12427 run_test 222a "AGL for ls should not trigger CLIO lock failure ================"
12428
12429 test_222b () {
12430         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12431        rm -rf $DIR/$tdir
12432        test_mkdir -p $DIR/$tdir
12433        $SETSTRIPE -c 1 -i 0 $DIR/$tdir
12434        createmany -o $DIR/$tdir/$tfile 10
12435        cancel_lru_locks mdc
12436        cancel_lru_locks osc
12437        #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
12438        $LCTL set_param fail_loc=0x31a
12439        rm -r $DIR/$tdir || "AGL for rmdir failed"
12440        $LCTL set_param fail_loc=0
12441 }
12442 run_test 222b "AGL for rmdir should not trigger CLIO lock failure ============="
12443
12444 test_223 () {
12445         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12446        rm -rf $DIR/$tdir
12447        test_mkdir -p $DIR/$tdir
12448        $SETSTRIPE -c 1 -i 0 $DIR/$tdir
12449        createmany -o $DIR/$tdir/$tfile 10
12450        cancel_lru_locks mdc
12451        cancel_lru_locks osc
12452        #define OBD_FAIL_LDLM_AGL_NOLOCK          0x31b
12453        $LCTL set_param fail_loc=0x31b
12454        ls -l $DIR/$tdir > /dev/null || error "reenqueue failed"
12455        $LCTL set_param fail_loc=0
12456        rm -r $DIR/$tdir
12457 }
12458 run_test 223 "osc reenqueue if without AGL lock granted ======================="
12459
12460 test_224a() { # LU-1039, MRP-303
12461         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12462         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB   0x508
12463         $LCTL set_param fail_loc=0x508
12464         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 conv=fsync
12465         $LCTL set_param fail_loc=0
12466         df $DIR
12467 }
12468 run_test 224a "Don't panic on bulk IO failure"
12469
12470 test_224b() { # LU-1039, MRP-303
12471         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12472         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
12473         cancel_lru_locks osc
12474         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB2   0x515
12475         $LCTL set_param fail_loc=0x515
12476         dd of=/dev/null if=$DIR/$tfile bs=4096 count=1
12477         $LCTL set_param fail_loc=0
12478         df $DIR
12479 }
12480 run_test 224b "Don't panic on bulk IO failure"
12481
12482 test_224c() { # LU-6441
12483         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12484         local pages_per_rpc=$($LCTL get_param \
12485                                 osc.*.max_pages_per_rpc)
12486         local at_max=$($LCTL get_param -n at_max)
12487         local timeout=$($LCTL get_param -n timeout)
12488         local test_at="$LCTL get_param -n at_max"
12489         local param_at="$FSNAME.sys.at_max"
12490         local test_timeout="$LCTL get_param -n timeout"
12491         local param_timeout="$FSNAME.sys.timeout"
12492
12493         $LCTL set_param -n osc.*.max_pages_per_rpc=1024
12494
12495         set_conf_param_and_check client "$test_at" "$param_at" 0 ||
12496                 error "conf_param at_max=0 failed"
12497         set_conf_param_and_check client "$test_timeout" "$param_timeout" 5 ||
12498                 error "conf_param timeout=5 failed"
12499
12500         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB3   0x520
12501         $LCTL set_param fail_loc=0x520
12502         dd if=/dev/zero of=$DIR/$tfile bs=8MB count=1
12503         sync
12504         $LCTL set_param fail_loc=0
12505
12506         set_conf_param_and_check client "$test_at" "$param_at" $at_max ||
12507                 error "conf_param at_max=$at_max failed"
12508         set_conf_param_and_check client "$test_timeout" "$param_timeout" \
12509                 $timeout || error "conf_param timeout=$timeout failed"
12510
12511         $LCTL set_param -n $pages_per_rpc
12512 }
12513 run_test 224c "Don't hang if one of md lost during large bulk RPC"
12514
12515 MDSSURVEY=${MDSSURVEY:-$(which mds-survey 2>/dev/null || true)}
12516 test_225a () {
12517         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12518         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12519         if [ -z ${MDSSURVEY} ]; then
12520               skip_env "mds-survey not found" && return
12521         fi
12522
12523         [ $MDSCOUNT -ge 2 ] &&
12524                 skip "skipping now for more than one MDT" && return
12525
12526        [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ] ||
12527             { skip "Need MDS version at least 2.2.51"; return; }
12528
12529        local mds=$(facet_host $SINGLEMDS)
12530        local target=$(do_nodes $mds 'lctl dl' | \
12531                       awk "{if (\$2 == \"UP\" && \$3 == \"mdt\") {print \$4}}")
12532
12533        local cmd1="file_count=1000 thrhi=4"
12534        local cmd2="dir_count=2 layer=mdd stripe_count=0"
12535        local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
12536        local cmd="$cmd1 $cmd2 $cmd3"
12537
12538        rm -f ${TMP}/mds_survey*
12539        echo + $cmd
12540        eval $cmd || error "mds-survey with zero-stripe failed"
12541        cat ${TMP}/mds_survey*
12542        rm -f ${TMP}/mds_survey*
12543 }
12544 run_test 225a "Metadata survey sanity with zero-stripe"
12545
12546 test_225b () {
12547         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12548         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12549         if [ -z ${MDSSURVEY} ]; then
12550               skip_env "mds-survey not found" && return
12551         fi
12552         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ] ||
12553             { skip "Need MDS version at least 2.2.51"; return; }
12554
12555         if [ $($LCTL dl | grep -c osc) -eq 0 ]; then
12556               skip_env "Need to mount OST to test" && return
12557         fi
12558
12559         [ $MDSCOUNT -ge 2 ] &&
12560                 skip "skipping now for more than one MDT" && return
12561        local mds=$(facet_host $SINGLEMDS)
12562        local target=$(do_nodes $mds 'lctl dl' | \
12563                       awk "{if (\$2 == \"UP\" && \$3 == \"mdt\") {print \$4}}")
12564
12565        local cmd1="file_count=1000 thrhi=4"
12566        local cmd2="dir_count=2 layer=mdd stripe_count=1"
12567        local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
12568        local cmd="$cmd1 $cmd2 $cmd3"
12569
12570        rm -f ${TMP}/mds_survey*
12571        echo + $cmd
12572        eval $cmd || error "mds-survey with stripe_count failed"
12573        cat ${TMP}/mds_survey*
12574        rm -f ${TMP}/mds_survey*
12575 }
12576 run_test 225b "Metadata survey sanity with stripe_count = 1"
12577
12578 mcreate_path2fid () {
12579         local mode=$1
12580         local major=$2
12581         local minor=$3
12582         local name=$4
12583         local desc=$5
12584         local path=$DIR/$tdir/$name
12585         local fid
12586         local rc
12587         local fid_path
12588
12589         $MCREATE --mode=$1 --major=$2 --minor=$3 $path ||
12590                 error "cannot create $desc"
12591
12592         fid=$($LFS path2fid $path | tr -d '[' | tr -d ']')
12593         rc=$?
12594         [ $rc -ne 0 ] && error "cannot get fid of a $desc"
12595
12596         fid_path=$($LFS fid2path $MOUNT $fid)
12597         rc=$?
12598         [ $rc -ne 0 ] && error "cannot get path of $desc by $DIR $path $fid"
12599
12600         [ "$path" == "$fid_path" ] ||
12601                 error "fid2path returned $fid_path, expected $path"
12602
12603         echo "pass with $path and $fid"
12604 }
12605
12606 test_226a () {
12607         rm -rf $DIR/$tdir
12608         mkdir -p $DIR/$tdir
12609
12610         mcreate_path2fid 0010666 0 0 fifo "FIFO"
12611         mcreate_path2fid 0020666 1 3 null "character special file (null)"
12612         mcreate_path2fid 0020666 1 255 none "character special file (no device)"
12613         mcreate_path2fid 0040666 0 0 dir "directory"
12614         mcreate_path2fid 0060666 7 0 loop0 "block special file (loop)"
12615         mcreate_path2fid 0100666 0 0 file "regular file"
12616         mcreate_path2fid 0120666 0 0 link "symbolic link"
12617         mcreate_path2fid 0140666 0 0 sock "socket"
12618 }
12619 run_test 226a "call path2fid and fid2path on files of all type"
12620
12621 test_226b () {
12622         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
12623         rm -rf $DIR/$tdir
12624         local MDTIDX=1
12625
12626         mkdir -p $DIR/$tdir
12627         $LFS setdirstripe -i $MDTIDX $DIR/$tdir/remote_dir ||
12628                 error "create remote directory failed"
12629         mcreate_path2fid 0010666 0 0 "remote_dir/fifo" "FIFO"
12630         mcreate_path2fid 0020666 1 3 "remote_dir/null" \
12631                                 "character special file (null)"
12632         mcreate_path2fid 0020666 1 255 "remote_dir/none" \
12633                                 "character special file (no device)"
12634         mcreate_path2fid 0040666 0 0 "remote_dir/dir" "directory"
12635         mcreate_path2fid 0060666 7 0 "remote_dir/loop0" \
12636                                 "block special file (loop)"
12637         mcreate_path2fid 0100666 0 0 "remote_dir/file" "regular file"
12638         mcreate_path2fid 0120666 0 0 "remote_dir/link" "symbolic link"
12639         mcreate_path2fid 0140666 0 0 "remote_dir/sock" "socket"
12640 }
12641 run_test 226b "call path2fid and fid2path on files of all type under remote dir"
12642
12643 # LU-1299 Executing or running ldd on a truncated executable does not
12644 # cause an out-of-memory condition.
12645 test_227() {
12646         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12647         [ -z "$(which ldd)" ] && skip "should have ldd tool" && return
12648         dd if=$(which date) of=$MOUNT/date bs=1k count=1
12649         chmod +x $MOUNT/date
12650
12651         $MOUNT/date > /dev/null
12652         ldd $MOUNT/date > /dev/null
12653         rm -f $MOUNT/date
12654 }
12655 run_test 227 "running truncated executable does not cause OOM"
12656
12657 # LU-1512 try to reuse idle OI blocks
12658 test_228a() {
12659         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12660         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12661         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
12662                 skip "non-ldiskfs backend" && return
12663
12664         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
12665         local myDIR=$DIR/$tdir
12666
12667         mkdir -p $myDIR
12668         #define OBD_FAIL_SEQ_EXHAUST             0x1002
12669         $LCTL set_param fail_loc=0x80001002
12670         createmany -o $myDIR/t- 10000
12671         $LCTL set_param fail_loc=0
12672         # The guard is current the largest FID holder
12673         touch $myDIR/guard
12674         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
12675                     tr -d '[')
12676         local IDX=$(($SEQ % 64))
12677
12678         do_facet $SINGLEMDS sync
12679         # Make sure journal flushed.
12680         sleep 6
12681         local blk1=$(do_facet $SINGLEMDS \
12682                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
12683                      grep Blockcount | awk '{print $4}')
12684
12685         # Remove old files, some OI blocks will become idle.
12686         unlinkmany $myDIR/t- 10000
12687         # Create new files, idle OI blocks should be reused.
12688         createmany -o $myDIR/t- 2000
12689         do_facet $SINGLEMDS sync
12690         # Make sure journal flushed.
12691         sleep 6
12692         local blk2=$(do_facet $SINGLEMDS \
12693                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
12694                      grep Blockcount | awk '{print $4}')
12695
12696         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
12697 }
12698 run_test 228a "try to reuse idle OI blocks"
12699
12700 test_228b() {
12701         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12702         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12703         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
12704                 skip "non-ldiskfs backend" && return
12705
12706         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
12707         local myDIR=$DIR/$tdir
12708
12709         mkdir -p $myDIR
12710         #define OBD_FAIL_SEQ_EXHAUST             0x1002
12711         $LCTL set_param fail_loc=0x80001002
12712         createmany -o $myDIR/t- 10000
12713         $LCTL set_param fail_loc=0
12714         # The guard is current the largest FID holder
12715         touch $myDIR/guard
12716         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
12717                     tr -d '[')
12718         local IDX=$(($SEQ % 64))
12719
12720         do_facet $SINGLEMDS sync
12721         # Make sure journal flushed.
12722         sleep 6
12723         local blk1=$(do_facet $SINGLEMDS \
12724                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
12725                      grep Blockcount | awk '{print $4}')
12726
12727         # Remove old files, some OI blocks will become idle.
12728         unlinkmany $myDIR/t- 10000
12729
12730         # stop the MDT
12731         stop $SINGLEMDS || error "Fail to stop MDT."
12732         # remount the MDT
12733         start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS || error "Fail to start MDT."
12734
12735         df $MOUNT || error "Fail to df."
12736         # Create new files, idle OI blocks should be reused.
12737         createmany -o $myDIR/t- 2000
12738         do_facet $SINGLEMDS sync
12739         # Make sure journal flushed.
12740         sleep 6
12741         local blk2=$(do_facet $SINGLEMDS \
12742                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
12743                      grep Blockcount | awk '{print $4}')
12744
12745         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
12746 }
12747 run_test 228b "idle OI blocks can be reused after MDT restart"
12748
12749 #LU-1881
12750 test_228c() {
12751         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12752         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12753         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
12754                 skip "non-ldiskfs backend" && return
12755
12756         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
12757         local myDIR=$DIR/$tdir
12758
12759         mkdir -p $myDIR
12760         #define OBD_FAIL_SEQ_EXHAUST             0x1002
12761         $LCTL set_param fail_loc=0x80001002
12762         # 20000 files can guarantee there are index nodes in the OI file
12763         createmany -o $myDIR/t- 20000
12764         $LCTL set_param fail_loc=0
12765         # The guard is current the largest FID holder
12766         touch $myDIR/guard
12767         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
12768                     tr -d '[')
12769         local IDX=$(($SEQ % 64))
12770
12771         do_facet $SINGLEMDS sync
12772         # Make sure journal flushed.
12773         sleep 6
12774         local blk1=$(do_facet $SINGLEMDS \
12775                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
12776                      grep Blockcount | awk '{print $4}')
12777
12778         # Remove old files, some OI blocks will become idle.
12779         unlinkmany $myDIR/t- 20000
12780         rm -f $myDIR/guard
12781         # The OI file should become empty now
12782
12783         # Create new files, idle OI blocks should be reused.
12784         createmany -o $myDIR/t- 2000
12785         do_facet $SINGLEMDS sync
12786         # Make sure journal flushed.
12787         sleep 6
12788         local blk2=$(do_facet $SINGLEMDS \
12789                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
12790                      grep Blockcount | awk '{print $4}')
12791
12792         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
12793 }
12794 run_test 228c "NOT shrink the last entry in OI index node to recycle idle leaf"
12795
12796 test_229() { # LU-2482, LU-3448
12797         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.53) ] &&
12798                 skip "No HSM $(lustre_build_version $SINGLEMDS) MDS < 2.4.53" &&
12799                 return
12800         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12801         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
12802
12803         rm -f $DIR/$tfile
12804
12805         # Create a file with a released layout and stripe count 2.
12806         $MULTIOP $DIR/$tfile H2c ||
12807                 error "failed to create file with released layout"
12808
12809         $GETSTRIPE -v $DIR/$tfile
12810
12811         local pattern=$($GETSTRIPE -L $DIR/$tfile)
12812         [ X"$pattern" = X"80000001" ] || error "pattern error ($pattern)"
12813
12814         local stripe_count=$($GETSTRIPE -c $DIR/$tfile) || error "getstripe"
12815         [ $stripe_count -eq 2 ] || error "stripe count not 2 ($stripe_count)"
12816         stat $DIR/$tfile || error "failed to stat released file"
12817
12818         chown $RUNAS_ID $DIR/$tfile ||
12819                 error "chown $RUNAS_ID $DIR/$tfile failed"
12820
12821         chgrp $RUNAS_ID $DIR/$tfile ||
12822                 error "chgrp $RUNAS_ID $DIR/$tfile failed"
12823
12824         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
12825         rm $DIR/$tfile || error "failed to remove released file"
12826 }
12827 run_test 229 "getstripe/stat/rm/attr changes work on released files"
12828
12829 test_230a() {
12830         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12831         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
12832         local MDTIDX=1
12833
12834         test_mkdir $DIR/$tdir
12835         test_mkdir -i0 -c1 $DIR/$tdir/test_230_local
12836         local mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230_local)
12837         [ $mdt_idx -ne 0 ] &&
12838                 error "create local directory on wrong MDT $mdt_idx"
12839
12840         $LFS mkdir -i $MDTIDX $DIR/$tdir/test_230 ||
12841                         error "create remote directory failed"
12842         local mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230)
12843         [ $mdt_idx -ne $MDTIDX ] &&
12844                 error "create remote directory on wrong MDT $mdt_idx"
12845
12846         createmany -o $DIR/$tdir/test_230/t- 10 ||
12847                 error "create files on remote directory failed"
12848         mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230/t-0)
12849         [ $mdt_idx -ne $MDTIDX ] && error "create files on wrong MDT $mdt_idx"
12850         rm -r $DIR/$tdir || error "unlink remote directory failed"
12851 }
12852 run_test 230a "Create remote directory and files under the remote directory"
12853
12854 test_230b() {
12855         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12856         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
12857         local MDTIDX=1
12858         local mdt_index
12859         local i
12860         local file
12861         local pid
12862         local stripe_count
12863         local migrate_dir=$DIR/$tdir/migrate_dir
12864         local other_dir=$DIR/$tdir/other_dir
12865
12866         test_mkdir $DIR/$tdir
12867         test_mkdir -i0 -c1 $migrate_dir
12868         test_mkdir -i0 -c1 $other_dir
12869         for ((i=0; i<10; i++)); do
12870                 mkdir -p $migrate_dir/dir_${i}
12871                 createmany -o $migrate_dir/dir_${i}/f 10 ||
12872                         error "create files under remote dir failed $i"
12873         done
12874
12875         cp /etc/passwd $migrate_dir/$tfile
12876         cp /etc/passwd $other_dir/$tfile
12877         chattr +SAD $migrate_dir
12878         chattr +SAD $migrate_dir/$tfile
12879
12880         local old_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
12881         local old_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
12882         local old_dir_mode=$(stat -c%f $migrate_dir)
12883         local old_file_mode=$(stat -c%f $migrate_dir/$tfile)
12884
12885         mkdir -p $migrate_dir/dir_default_stripe2
12886         $SETSTRIPE -c 2 $migrate_dir/dir_default_stripe2
12887         $SETSTRIPE -c 2 $migrate_dir/${tfile}_stripe2
12888
12889         mkdir -p $other_dir
12890         ln $migrate_dir/$tfile $other_dir/luna
12891         ln $migrate_dir/$tfile $migrate_dir/sofia
12892         ln $other_dir/$tfile $migrate_dir/david
12893         ln -s $migrate_dir/$tfile $other_dir/zachary
12894         ln -s $migrate_dir/$tfile $migrate_dir/${tfile}_ln
12895         ln -s $other_dir/$tfile $migrate_dir/${tfile}_ln_other
12896
12897         $LFS migrate -m $MDTIDX $migrate_dir ||
12898                 error "fails on migrating remote dir to MDT1"
12899
12900         echo "migratate to MDT1, then checking.."
12901         for ((i = 0; i < 10; i++)); do
12902                 for file in $(find $migrate_dir/dir_${i}); do
12903                         mdt_index=$($LFS getstripe -M $file)
12904                         [ $mdt_index == $MDTIDX ] ||
12905                                 error "$file is not on MDT${MDTIDX}"
12906                 done
12907         done
12908
12909         # the multiple link file should still in MDT0
12910         mdt_index=$($LFS getstripe -M $migrate_dir/$tfile)
12911         [ $mdt_index == 0 ] ||
12912                 error "$file is not on MDT${MDTIDX}"
12913
12914         local new_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
12915         [ "$old_dir_flag" = "$new_dir_flag" ] ||
12916                 error " expect $old_dir_flag get $new_dir_flag"
12917
12918         local new_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
12919         [ "$old_file_flag" = "$new_file_flag" ] ||
12920                 error " expect $old_file_flag get $new_file_flag"
12921
12922         local new_dir_mode=$(stat -c%f $migrate_dir)
12923         [ "$old_dir_mode" = "$new_dir_mode" ] ||
12924                 error "expect mode $old_dir_mode get $new_dir_mode"
12925
12926         local new_file_mode=$(stat -c%f $migrate_dir/$tfile)
12927         [ "$old_file_mode" = "$new_file_mode" ] ||
12928                 error "expect mode $old_file_mode get $new_file_mode"
12929
12930         diff /etc/passwd $migrate_dir/$tfile ||
12931                 error "$tfile different after migration"
12932
12933         diff /etc/passwd $other_dir/luna ||
12934                 error "luna different after migration"
12935
12936         diff /etc/passwd $migrate_dir/sofia ||
12937                 error "sofia different after migration"
12938
12939         diff /etc/passwd $migrate_dir/david ||
12940                 error "david different after migration"
12941
12942         diff /etc/passwd $other_dir/zachary ||
12943                 error "zachary different after migration"
12944
12945         diff /etc/passwd $migrate_dir/${tfile}_ln ||
12946                 error "${tfile}_ln different after migration"
12947
12948         diff /etc/passwd $migrate_dir/${tfile}_ln_other ||
12949                 error "${tfile}_ln_other different after migration"
12950
12951         stripe_count=$($LFS getstripe -c $migrate_dir/dir_default_stripe2)
12952         [ $stripe_count = 2 ] ||
12953                 error "dir strpe_count $d != 2 after migration."
12954
12955         stripe_count=$($LFS getstripe -c $migrate_dir/${tfile}_stripe2)
12956         [ $stripe_count = 2 ] ||
12957                 error "file strpe_count $d != 2 after migration."
12958
12959         #migrate back to MDT0
12960         MDTIDX=0
12961
12962         $LFS migrate -m $MDTIDX $migrate_dir ||
12963                 error "fails on migrating remote dir to MDT0"
12964
12965         echo "migrate back to MDT0, checking.."
12966         for file in $(find $migrate_dir); do
12967                 mdt_index=$($LFS getstripe -M $file)
12968                 [ $mdt_index == $MDTIDX ] ||
12969                         error "$file is not on MDT${MDTIDX}"
12970         done
12971
12972         local new_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
12973         [ "$old_dir_flag" = "$new_dir_flag" ] ||
12974                 error " expect $old_dir_flag get $new_dir_flag"
12975
12976         local new_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
12977         [ "$old_file_flag" = "$new_file_flag" ] ||
12978                 error " expect $old_file_flag get $new_file_flag"
12979
12980         local new_dir_mode=$(stat -c%f $migrate_dir)
12981         [ "$old_dir_mode" = "$new_dir_mode" ] ||
12982                 error "expect mode $old_dir_mode get $new_dir_mode"
12983
12984         local new_file_mode=$(stat -c%f $migrate_dir/$tfile)
12985         [ "$old_file_mode" = "$new_file_mode" ] ||
12986                 error "expect mode $old_file_mode get $new_file_mode"
12987
12988         diff /etc/passwd ${migrate_dir}/$tfile ||
12989                 error "$tfile different after migration"
12990
12991         diff /etc/passwd ${other_dir}/luna ||
12992                 error "luna different after migration"
12993
12994         diff /etc/passwd ${migrate_dir}/sofia ||
12995                 error "sofia different after migration"
12996
12997         diff /etc/passwd ${other_dir}/zachary ||
12998                 error "zachary different after migration"
12999
13000         diff /etc/passwd $migrate_dir/${tfile}_ln ||
13001                 error "${tfile}_ln different after migration"
13002
13003         diff /etc/passwd $migrate_dir/${tfile}_ln_other ||
13004                 error "${tfile}_ln_other different after migration"
13005
13006         stripe_count=$($LFS getstripe -c ${migrate_dir}/dir_default_stripe2)
13007         [ $stripe_count = 2 ] ||
13008                 error "dir strpe_count $d != 2 after migration."
13009
13010         stripe_count=$($LFS getstripe -c ${migrate_dir}/${tfile}_stripe2)
13011         [ $stripe_count = 2 ] ||
13012                 error "file strpe_count $d != 2 after migration."
13013
13014         rm -rf $DIR/$tdir || error "rm dir failed after migration"
13015 }
13016 run_test 230b "migrate directory"
13017
13018 test_230c() {
13019         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13020         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13021         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13022         local MDTIDX=1
13023         local mdt_index
13024         local file
13025         local migrate_dir=$DIR/$tdir/migrate_dir
13026
13027         #If migrating directory fails in the middle, all entries of
13028         #the directory is still accessiable.
13029         test_mkdir $DIR/$tdir
13030         test_mkdir -i0 -c1 $migrate_dir
13031         stat $migrate_dir
13032         createmany -o $migrate_dir/f 10 ||
13033                 error "create files under ${migrate_dir} failed"
13034
13035         #failed after migrating 5 entries
13036         #OBD_FAIL_MIGRATE_ENTRIES       0x1801
13037         do_facet mds1 lctl set_param fail_loc=0x20001801
13038         do_facet mds1 lctl  set_param fail_val=5
13039         local t=$(ls $migrate_dir | wc -l)
13040         $LFS migrate --mdt-index $MDTIDX $migrate_dir &&
13041                 error "migrate should fail after 5 entries"
13042
13043         mkdir $migrate_dir/dir &&
13044                 error "mkdir succeeds under migrating directory"
13045         touch $migrate_dir/file &&
13046                 error "touch file succeeds under migrating directory"
13047
13048         local u=$(ls $migrate_dir | wc -l)
13049         [ "$u" == "$t" ] || error "$u != $t during migration"
13050
13051         for file in $(find $migrate_dir); do
13052                 stat $file || error "stat $file failed"
13053         done
13054
13055         do_facet mds1 lctl set_param fail_loc=0
13056         do_facet mds1 lctl set_param fail_val=0
13057
13058         $LFS migrate -m $MDTIDX $migrate_dir ||
13059                 error "migrate open files should failed with open files"
13060
13061         echo "Finish migration, then checking.."
13062         for file in $(find $migrate_dir); do
13063                 mdt_index=$($LFS getstripe -M $file)
13064                 [ $mdt_index == $MDTIDX ] ||
13065                         error "$file is not on MDT${MDTIDX}"
13066         done
13067
13068         rm -rf $DIR/$tdir || error "rm dir failed after migration"
13069 }
13070 run_test 230c "check directory accessiblity if migration is failed"
13071
13072 test_230d() {
13073         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13074         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13075         local MDTIDX=1
13076         local mdt_index
13077         local migrate_dir=$DIR/$tdir/migrate_dir
13078         local i
13079         local j
13080
13081         test_mkdir $DIR/$tdir
13082         test_mkdir -i0 -c1 $migrate_dir
13083
13084         for ((i=0; i<100; i++)); do
13085                 test_mkdir -i0 -c1 $migrate_dir/dir_${i}
13086                 createmany -o $migrate_dir/dir_${i}/f 100 ||
13087                         error "create files under remote dir failed $i"
13088         done
13089
13090         $LFS migrate -m $MDTIDX $migrate_dir ||
13091                 error "migrate remote dir error"
13092
13093         echo "Finish migration, then checking.."
13094         for file in $(find $migrate_dir); do
13095                 mdt_index=$($LFS getstripe -M $file)
13096                 [ $mdt_index == $MDTIDX ] ||
13097                         error "$file is not on MDT${MDTIDX}"
13098         done
13099
13100         rm -rf $DIR/$tdir || error "rm dir failed after migration"
13101 }
13102 run_test 230d "check migrate big directory"
13103
13104 test_230e() {
13105         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13106         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13107         local i
13108         local j
13109         local a_fid
13110         local b_fid
13111
13112         mkdir -p $DIR/$tdir
13113         mkdir $DIR/$tdir/migrate_dir
13114         mkdir $DIR/$tdir/other_dir
13115         touch $DIR/$tdir/migrate_dir/a
13116         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/b
13117         ls $DIR/$tdir/other_dir
13118
13119         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
13120                 error "migrate dir fails"
13121
13122         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir)
13123         [ $mdt_index == 1 ] || error "migrate_dir is not on MDT1"
13124
13125         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
13126         [ $mdt_index == 0 ] || error "a is not on MDT0"
13127
13128         $LFS migrate -m 1 $DIR/$tdir/other_dir ||
13129                 error "migrate dir fails"
13130
13131         mdt_index=$($LFS getstripe -M $DIR/$tdir/other_dir)
13132         [ $mdt_index == 1 ] || error "other_dir is not on MDT1"
13133
13134         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
13135         [ $mdt_index == 1 ] || error "a is not on MDT1"
13136
13137         mdt_index=$($LFS getstripe -M $DIR/$tdir/other_dir/b)
13138         [ $mdt_index == 1 ] || error "b is not on MDT1"
13139
13140         a_fid=$($LFS path2fid $DIR/$tdir/migrate_dir/a)
13141         b_fid=$($LFS path2fid $DIR/$tdir/other_dir/b)
13142
13143         [ "$a_fid" = "$b_fid" ] || error "different fid after migration"
13144
13145         rm -rf $DIR/$tdir || error "rm dir failed after migration"
13146 }
13147 run_test 230e "migrate mulitple local link files"
13148
13149 test_230f() {
13150         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13151         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13152         local a_fid
13153         local ln_fid
13154
13155         mkdir -p $DIR/$tdir
13156         mkdir $DIR/$tdir/migrate_dir
13157         $LFS mkdir -i1 $DIR/$tdir/other_dir
13158         touch $DIR/$tdir/migrate_dir/a
13159         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/ln1
13160         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/ln2
13161         ls $DIR/$tdir/other_dir
13162
13163         # a should be migrated to MDT1, since no other links on MDT0
13164         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
13165                 error "migrate dir fails"
13166         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir)
13167         [ $mdt_index == 1 ] || error "migrate_dir is not on MDT1"
13168         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
13169         [ $mdt_index == 1 ] || error "a is not on MDT1"
13170
13171         # a should stay on MDT1, because it is a mulitple link file
13172         $LFS migrate -m 0 $DIR/$tdir/migrate_dir ||
13173                 error "migrate dir fails"
13174         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
13175         [ $mdt_index == 1 ] || error "a is not on MDT1"
13176
13177         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
13178                 error "migrate dir fails"
13179
13180         a_fid=$($LFS path2fid $DIR/$tdir/migrate_dir/a)
13181         ln_fid=$($LFS path2fid $DIR/$tdir/other_dir/ln1)
13182         [ "$a_fid" = "$ln_fid" ] || error "different fid after migrate to MDT1"
13183
13184         rm -rf $DIR/$tdir/other_dir/ln1 || error "unlink ln1 fails"
13185         rm -rf $DIR/$tdir/other_dir/ln2 || error "unlink ln2 fails"
13186
13187         # a should be migrated to MDT0, since no other links on MDT1
13188         $LFS migrate -m 0 $DIR/$tdir/migrate_dir ||
13189                 error "migrate dir fails"
13190         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
13191         [ $mdt_index == 0 ] || error "a is not on MDT0"
13192
13193         rm -rf $DIR/$tdir || error "rm dir failed after migration"
13194 }
13195 run_test 230f "migrate mulitple remote link files"
13196
13197 test_230g() {
13198         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13199         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13200
13201         mkdir -p $DIR/$tdir/migrate_dir
13202
13203         $LFS migrate -m 1000 $DIR/$tdir/migrate_dir &&
13204                 error "migrating dir to non-exist MDT succeeds"
13205         true
13206 }
13207 run_test 230g "migrate dir to non-exist MDT"
13208
13209 test_230h() {
13210         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13211         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13212         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.64) ] &&
13213                 skip "Need MDS version at least 2.7.64" && return
13214         local mdt_index
13215
13216         mkdir -p $DIR/$tdir/migrate_dir
13217
13218         $LFS migrate -m1 $DIR &&
13219                 error "migrating mountpoint1 should fail"
13220
13221         $LFS migrate -m1 $DIR/$tdir/.. &&
13222                 error "migrating mountpoint2 should fail"
13223
13224         $LFS migrate -m1 $DIR/$tdir/migrate_dir/.. ||
13225                 error "migrating $tdir fail"
13226
13227         mdt_index=$($LFS getstripe -M $DIR/$tdir)
13228         [ $mdt_index == 1 ] || error "$mdt_index != 1 after migration"
13229
13230         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir)
13231         [ $mdt_index == 1 ] || error "$mdt_index != 1 after migration"
13232
13233 }
13234 run_test 230h "migrate .. and root"
13235
13236 test_230i() {
13237         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13238         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13239
13240         mkdir -p $DIR/$tdir/migrate_dir
13241
13242         $LFS migrate -m 1 $DIR/$tdir/migrate_dir/ ||
13243                 error "migration fails with a tailing slash"
13244
13245         $LFS migrate -m 0 $DIR/$tdir/migrate_dir// ||
13246                 error "migration fails with two tailing slashes"
13247 }
13248 run_test 230i "lfs migrate -m tolerates trailing slashes"
13249
13250 test_231a()
13251 {
13252         # For simplicity this test assumes that max_pages_per_rpc
13253         # is the same across all OSCs
13254         local max_pages=$($LCTL get_param -n osc.*.max_pages_per_rpc | head -n1)
13255         local bulk_size=$((max_pages * 4096))
13256
13257         mkdir -p $DIR/$tdir
13258
13259         # clear the OSC stats
13260         $LCTL set_param osc.*.stats=0 &>/dev/null
13261         stop_writeback
13262
13263         # Client writes $bulk_size - there must be 1 rpc for $max_pages.
13264         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=$bulk_size count=1 \
13265                 oflag=direct &>/dev/null || error "dd failed"
13266
13267         sync; sleep 1; sync # just to be safe
13268         local nrpcs=$($LCTL get_param osc.*.stats |awk '/ost_write/ {print $2}')
13269         if [ x$nrpcs != "x1" ]; then
13270                 $LCTL get_param osc.*.stats
13271                 error "found $nrpcs ost_write RPCs, not 1 as expected"
13272         fi
13273
13274         start_writeback
13275         # Drop the OSC cache, otherwise we will read from it
13276         cancel_lru_locks osc
13277
13278         # clear the OSC stats
13279         $LCTL set_param osc.*.stats=0 &>/dev/null
13280
13281         # Client reads $bulk_size.
13282         dd if=$DIR/$tdir/$tfile of=/dev/null bs=$bulk_size count=1 \
13283                 iflag=direct &>/dev/null || error "dd failed"
13284
13285         nrpcs=$($LCTL get_param osc.*.stats | awk '/ost_read/ { print $2 }')
13286         if [ x$nrpcs != "x1" ]; then
13287                 $LCTL get_param osc.*.stats
13288                 error "found $nrpcs ost_read RPCs, not 1 as expected"
13289         fi
13290 }
13291 run_test 231a "checking that reading/writing of BRW RPC size results in one RPC"
13292
13293 test_231b() {
13294         mkdir -p $DIR/$tdir
13295         local i
13296         for i in {0..1023}; do
13297                 dd if=/dev/zero of=$DIR/$tdir/$tfile conv=notrunc \
13298                         seek=$((2 * i)) bs=4096 count=1 &>/dev/null ||
13299                         error "dd of=$DIR/$tdir/$tfile seek=$((2 * i)) failed"
13300         done
13301         sync
13302 }
13303 run_test 231b "must not assert on fully utilized OST request buffer"
13304
13305 test_232() {
13306         mkdir -p $DIR/$tdir
13307         #define OBD_FAIL_LDLM_OST_LVB            0x31c
13308         $LCTL set_param fail_loc=0x31c
13309
13310         # ignore dd failure
13311         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=1 || true
13312
13313         $LCTL set_param fail_loc=0
13314         umount_client $MOUNT || error "umount failed"
13315         mount_client $MOUNT || error "mount failed"
13316 }
13317 run_test 232 "failed lock should not block umount"
13318
13319 test_233a() {
13320         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.64) ] ||
13321         { skip "Need MDS version at least 2.3.64"; return; }
13322         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
13323
13324         local fid=$($LFS path2fid $MOUNT)
13325         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
13326                 error "cannot access $MOUNT using its FID '$fid'"
13327 }
13328 run_test 233a "checking that OBF of the FS root succeeds"
13329
13330 test_233b() {
13331         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.5.90) ] ||
13332         { skip "Need MDS version at least 2.5.90"; return; }
13333         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
13334
13335         local fid=$($LFS path2fid $MOUNT/.lustre)
13336         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
13337                 error "cannot access $MOUNT/.lustre using its FID '$fid'"
13338
13339         fid=$($LFS path2fid $MOUNT/.lustre/fid)
13340         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
13341                 error "cannot access $MOUNT/.lustre/fid using its FID '$fid'"
13342 }
13343 run_test 233b "checking that OBF of the FS .lustre succeeds"
13344
13345 test_234() {
13346         local p="$TMP/sanityN-$TESTNAME.parameters"
13347         save_lustre_params client "llite.*.xattr_cache" > $p
13348         lctl set_param llite.*.xattr_cache 1 ||
13349                 { skip "xattr cache is not supported"; return 0; }
13350
13351         mkdir -p $DIR/$tdir || error "mkdir failed"
13352         touch $DIR/$tdir/$tfile || error "touch failed"
13353         # OBD_FAIL_LLITE_XATTR_ENOMEM
13354         $LCTL set_param fail_loc=0x1405
13355         # output of the form: attr 2 4 44 3 fc13 x86_64
13356         V=($(IFS=".-" rpm -q attr))
13357         if [[ ${V[1]} > 2 || ${V[2]} > 4 || ${V[3]} > 44 ||
13358               ${V[1]} = 2 && ${V[2]} = 4 && ${V[3]} = 44 && ${V[4]} > 6 ]]; then
13359                 # attr pre-2.4.44-7 had a bug with rc
13360                 # LU-3703 - SLES 11 and FC13 clients have older attr
13361                 getfattr -n user.attr $DIR/$tdir/$tfile &&
13362                         error "getfattr should have failed with ENOMEM"
13363         else
13364                 skip "LU-3703: attr version $(getfattr --version) too old"
13365         fi
13366         $LCTL set_param fail_loc=0x0
13367         rm -rf $DIR/$tdir
13368
13369         restore_lustre_params < $p
13370         rm -f $p
13371 }
13372 run_test 234 "xattr cache should not crash on ENOMEM"
13373
13374 test_235() {
13375         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.52) ] &&
13376                 skip "Need MDS version at least 2.4.52" && return
13377         flock_deadlock $DIR/$tfile
13378         local RC=$?
13379         case $RC in
13380                 0)
13381                 ;;
13382                 124) error "process hangs on a deadlock"
13383                 ;;
13384                 *) error "error executing flock_deadlock $DIR/$tfile"
13385                 ;;
13386         esac
13387 }
13388 run_test 235 "LU-1715: flock deadlock detection does not work properly"
13389
13390 #LU-2935
13391 test_236() {
13392         check_swap_layouts_support && return 0
13393         test_mkdir -p -c1 $DIR/$tdir || error "mkdir $tdir failed"
13394
13395         local ref1=/etc/passwd
13396         local ref2=/etc/group
13397         local file1=$DIR/$tdir/f1
13398         local file2=$DIR/$tdir/f2
13399
13400         $SETSTRIPE -c 1 $file1 || error "cannot setstripe on '$file1': rc = $?"
13401         cp $ref1 $file1 || error "cp $ref1 $file1 failed: rc = $?"
13402         $SETSTRIPE -c 2 $file2 || error "cannot setstripe on '$file2': rc = $?"
13403         cp $ref2 $file2 || error "cp $ref2 $file2 failed: rc = $?"
13404         local fd=$(free_fd)
13405         local cmd="exec $fd<>$file2"
13406         eval $cmd
13407         rm $file2
13408         $LFS swap_layouts $file1 /proc/self/fd/${fd} ||
13409                 error "cannot swap layouts of '$file1' and /proc/self/fd/${fd}"
13410         cmd="exec $fd>&-"
13411         eval $cmd
13412         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
13413
13414         #cleanup
13415         rm -rf $DIR/$tdir
13416 }
13417 run_test 236 "Layout swap on open unlinked file"
13418
13419 # test to verify file handle related system calls
13420 # (name_to_handle_at/open_by_handle_at)
13421 # The new system calls are supported in glibc >= 2.14.
13422
13423 test_237() {
13424         echo "Test file_handle syscalls" > $DIR/$tfile ||
13425                 error "write failed"
13426         check_fhandle_syscalls $DIR/$tfile ||
13427                 error "check_fhandle_syscalls failed"
13428 }
13429 run_test 237 "Verify name_to_handle_at/open_by_handle_at syscalls"
13430
13431 # LU-4659 linkea consistency
13432 test_238() {
13433         local server_version=$(lustre_version_code $SINGLEMDS)
13434
13435         [[ $server_version -gt $(version_code 2.5.57) ]] ||
13436                 [[ $server_version -gt $(version_code 2.5.1) &&
13437                    $server_version -lt $(version_code 2.5.50) ]] ||
13438                 { skip "Need MDS version at least 2.5.58 or 2.5.2+"; return; }
13439
13440         touch $DIR/$tfile
13441         ln $DIR/$tfile $DIR/$tfile.lnk
13442         touch $DIR/$tfile.new
13443         mv $DIR/$tfile.new $DIR/$tfile
13444         local fid1=$($LFS path2fid $DIR/$tfile)
13445         local fid2=$($LFS path2fid $DIR/$tfile.lnk)
13446         local path1=$($LFS fid2path $FSNAME "$fid1")
13447         [ $tfile == $path1 ] || error "linkea inconsistent: $tfile $fid1 $path1"
13448         local path2=$($LFS fid2path $FSNAME "$fid2")
13449         [ $tfile.lnk == $path2 ] ||
13450                 error "linkea inconsistent: $tfile.lnk $fid2 $path2!"
13451         rm -f $DIR/$tfile*
13452 }
13453 run_test 238 "Verify linkea consistency"
13454
13455 test_239() {
13456         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.60) ] &&
13457                 skip "Need MDS version at least 2.5.60" && return
13458         local list=$(comma_list $(mdts_nodes))
13459
13460         mkdir -p $DIR/$tdir
13461         createmany -o $DIR/$tdir/f- 5000
13462         unlinkmany $DIR/$tdir/f- 5000
13463         do_nodes $list "lctl set_param -n osp*.*.sync_changes 1"
13464         changes=$(do_nodes $list "lctl get_param -n osc.*MDT*.sync_changes \
13465                         osc.*MDT*.sync_in_flight" | calc_sum)
13466         [ "$changes" -eq 0 ] || error "$changes not synced"
13467 }
13468 run_test 239 "osp_sync test"
13469
13470 test_239a() { #LU-5297
13471         touch $DIR/$tfile
13472         #define OBD_FAIL_OSP_CHECK_INVALID_REC     0x2100
13473         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2100
13474         chgrp $RUNAS_GID $DIR/$tfile
13475         wait_delete_completed
13476 }
13477 run_test 239a "process invalid osp sync record correctly"
13478
13479 test_239b() { #LU-5297
13480         touch $DIR/$tfile1
13481         #define OBD_FAIL_OSP_CHECK_ENOMEM     0x2101
13482         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2101
13483         chgrp $RUNAS_GID $DIR/$tfile1
13484         wait_delete_completed
13485         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
13486         touch $DIR/$tfile2
13487         chgrp $RUNAS_GID $DIR/$tfile2
13488         wait_delete_completed
13489 }
13490 run_test 239b "process osp sync record with ENOMEM error correctly"
13491
13492 test_240() {
13493         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13494
13495         mkdir -p $DIR/$tdir
13496
13497         $LFS mkdir -i 0 $DIR/$tdir/d0 ||
13498                 error "failed to mkdir $DIR/$tdir/d0 on MDT0"
13499         $LFS mkdir -i 1 $DIR/$tdir/d0/d1 ||
13500                 error "failed to mkdir $DIR/$tdir/d0/d1 on MDT1"
13501
13502         umount_client $MOUNT || error "umount failed"
13503         #define OBD_FAIL_TGT_DELAY_CONDITIONAL   0x713
13504         do_facet mds2 lctl set_param fail_loc=0x713 fail_val=1
13505         mount_client $MOUNT || error "failed to mount client"
13506
13507         echo "stat $DIR/$tdir/d0/d1, should not fail/ASSERT"
13508         stat $DIR/$tdir/d0/d1 || error "fail to stat $DIR/$tdir/d0/d1"
13509 }
13510 run_test 240 "race between ldlm enqueue and the connection RPC (no ASSERT)"
13511
13512 test_241_bio() {
13513         for LOOP in $(seq $1); do
13514                 dd if=$DIR/$tfile of=/dev/null bs=40960 count=1 2>/dev/null
13515                 cancel_lru_locks osc || true
13516         done
13517 }
13518
13519 test_241_dio() {
13520         for LOOP in $(seq $1); do
13521                 dd if=$DIR/$tfile of=/dev/null bs=40960 count=1 \
13522                                                 iflag=direct 2>/dev/null
13523         done
13524 }
13525
13526 test_241() {
13527         dd if=/dev/zero of=$DIR/$tfile count=1 bs=40960
13528         ls -la $DIR/$tfile
13529         cancel_lru_locks osc
13530         test_241_bio 1000 &
13531         PID=$!
13532         test_241_dio 1000
13533         wait $PID
13534 }
13535 run_test 241 "bio vs dio"
13536
13537 test_241b() {
13538         dd if=/dev/zero of=$DIR/$tfile count=1 bs=40960
13539         ls -la $DIR/$tfile
13540         test_241_dio 1000 &
13541         PID=$!
13542         test_241_dio 1000
13543         wait $PID
13544 }
13545 run_test 241b "dio vs dio"
13546
13547 test_242() {
13548         mkdir -p $DIR/$tdir
13549         touch $DIR/$tdir/$tfile
13550
13551         #define OBD_FAIL_MDS_READPAGE_PACK      0x105
13552         do_facet mds1 lctl set_param fail_loc=0x105
13553         /bin/ls $DIR/$tdir && error "ls $DIR/$tdir should fail"
13554
13555         do_facet mds1 lctl set_param fail_loc=0
13556         /bin/ls $DIR/$tdir || error "ls $DIR/$tdir failed"
13557 }
13558 run_test 242 "mdt_readpage failure should not cause directory unreadable"
13559
13560 test_243()
13561 {
13562         test_mkdir -p $DIR/$tdir
13563         group_lock_test -d $DIR/$tdir || error "A group lock test failed"
13564 }
13565 run_test 243 "various group lock tests"
13566
13567 test_244()
13568 {
13569         test_mkdir -p $DIR/$tdir
13570         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=35
13571         sendfile_grouplock $DIR/$tdir/$tfile || \
13572                 error "sendfile+grouplock failed"
13573         rm -rf $DIR/$tdir
13574 }
13575 run_test 244 "sendfile with group lock tests"
13576
13577 test_245() {
13578         local flagname="multi_mod_rpcs"
13579         local connect_data_name="max_mod_rpcs"
13580         local out
13581
13582         # check if multiple modify RPCs flag is set
13583         out=$($LCTL get_param mdc.$FSNAME-MDT0000-*.import |
13584                 grep "connect_flags:")
13585         echo "$out"
13586
13587         echo "$out" | grep -qw $flagname
13588         if [ $? -ne 0 ]; then
13589                 echo "connect flag $flagname is not set"
13590                 return
13591         fi
13592
13593         # check if multiple modify RPCs data is set
13594         out=$($LCTL get_param mdc.$FSNAME-MDT0000-*.import)
13595         echo "$out"
13596
13597         echo "$out" | grep -qw $connect_data_name ||
13598                 error "import should have connect data $connect_data_name"
13599 }
13600 run_test 245 "check mdc connection flag/data: multiple modify RPCs"
13601
13602 test_246() { # LU-7371
13603         [ $(lustre_version_code ost1) -lt $(version_code 2.7.62) ] &&
13604                 skip "Need OST version >= 2.7.62" && return 0
13605         do_facet ost1 $LCTL set_param fail_val=4095
13606 #define OBD_FAIL_OST_READ_SIZE          0x234
13607         do_facet ost1 $LCTL set_param fail_loc=0x234
13608         $LFS setstripe $DIR/$tfile -i 0 -c 1
13609         dd if=/dev/zero of=$DIR/$tfile bs=4095 count=1 > /dev/null 2>&1
13610         cancel_lru_locks $FSNAME-OST0000
13611         dd if=$DIR/$tfile of=/dev/null bs=1048576 || error "Read failed"
13612 }
13613 run_test 246 "Read file of size 4095 should return right length"
13614
13615 test_247a() {
13616         lctl get_param -n mdc.$FSNAME-MDT0000*.import |
13617                 grep -q subtree ||
13618                 { skip "Fileset feature is not supported"; return; }
13619
13620         local submount=${MOUNT}_$tdir
13621
13622         mkdir $MOUNT/$tdir
13623         mkdir -p $submount || error "mkdir $submount failed"
13624         FILESET="$FILESET/$tdir" mount_client $submount ||
13625                 error "mount $submount failed"
13626         echo foo > $submount/$tfile || error "write $submount/$tfile failed"
13627         [ $(cat $MOUNT/$tdir/$tfile) = "foo" ] ||
13628                 error "read $MOUNT/$tdir/$tfile failed"
13629         umount_client $submount || error "umount $submount failed"
13630         rmdir $submount
13631 }
13632 run_test 247a "mount subdir as fileset"
13633
13634 test_247b() {
13635         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
13636                 { skip "Fileset feature is not supported"; return; }
13637
13638         local submount=${MOUNT}_$tdir
13639
13640         rm -rf $MOUNT/$tdir
13641         mkdir -p $submount || error "mkdir $submount failed"
13642         SKIP_FILESET=1
13643         FILESET="$FILESET/$tdir" mount_client $submount &&
13644                 error "mount $submount should fail"
13645         rmdir $submount
13646 }
13647 run_test 247b "mount subdir that dose not exist"
13648
13649 test_247c() {
13650         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
13651                 { skip "Fileset feature is not supported"; return; }
13652
13653         local submount=${MOUNT}_$tdir
13654
13655         mkdir -p $MOUNT/$tdir/dir1
13656         mkdir -p $submount || error "mkdir $submount failed"
13657         FILESET="$FILESET/$tdir" mount_client $submount ||
13658                 error "mount $submount failed"
13659         local fid=$($LFS path2fid $MOUNT/)
13660         $LFS fid2path $submount $fid && error "fid2path should fail"
13661         umount_client $submount || error "umount $submount failed"
13662         rmdir $submount
13663 }
13664 run_test 247c "running fid2path outside root"
13665
13666 test_247d() {
13667         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
13668                 { skip "Fileset feature is not supported"; return; }
13669
13670         local submount=${MOUNT}_$tdir
13671
13672         mkdir -p $MOUNT/$tdir/dir1
13673         mkdir -p $submount || error "mkdir $submount failed"
13674         FILESET="$FILESET/$tdir" mount_client $submount ||
13675                 error "mount $submount failed"
13676         local fid=$($LFS path2fid $submount/dir1)
13677         $LFS fid2path $submount $fid || error "fid2path should succeed"
13678         umount_client $submount || error "umount $submount failed"
13679         rmdir $submount
13680 }
13681 run_test 247d "running fid2path inside root"
13682
13683 # LU-8037
13684 test_247e() {
13685         lctl get_param -n mdc.$FSNAME-MDT0000*.import |
13686                 grep -q subtree ||
13687                 { skip "Fileset feature is not supported"; return; }
13688
13689         local submount=${MOUNT}_$tdir
13690
13691         mkdir $MOUNT/$tdir
13692         mkdir -p $submount || error "mkdir $submount failed"
13693         FILESET="$FILESET/.." mount_client $submount &&
13694                 error "mount $submount should fail"
13695         rmdir $submount
13696 }
13697 run_test 247e "mount .. as fileset"
13698
13699 test_248() {
13700         local my_error=error
13701
13702         # This test case is time sensitive and maloo uses kvm to run auto test.
13703         # Therefore the complete time of I/O task is unreliable and depends on
13704         # the work load on the host machine when the task is running.
13705         which virt-what 2> /dev/null && [ "$(virt-what)" != "kvm" ] ||
13706                 { echo "no virt-what installed or running in kvm; ignore error";
13707                   my_error="error_ignore env=kvm"; }
13708
13709         # create a large file for fast read verification
13710         dd if=/dev/zero of=$DIR/$tfile bs=128M count=1 > /dev/null 2>&1
13711
13712         # make sure the file is created correctly
13713         $CHECKSTAT -s $((128*1024*1024)) $DIR/$tfile ||
13714                 { rm -f $DIR/$tfile; skip "file creation error" && return; }
13715
13716         local saved_fast_read=$($LCTL get_param -n llite.*.fast_read)
13717
13718         echo "Test 1: verify that fast read is 4 times faster on cache read"
13719
13720         # small read with fast read enabled
13721         $LCTL set_param -n llite.*.fast_read=1
13722         local t_fast=$(eval time -p dd if=$DIR/$tfile of=/dev/null bs=4k 2>&1 |
13723                    awk '/real/ { print $2 }')
13724
13725         # small read with fast read disabled
13726         $LCTL set_param -n llite.*.fast_read=0
13727         local t_slow=$(eval time -p dd if=$DIR/$tfile of=/dev/null bs=4k 2>&1 |
13728                    awk '/real/ { print $2 }')
13729
13730         # verify that fast read is 4 times faster for cache read
13731         [ $(bc <<< "4 * $t_fast < $t_slow") -eq 1 ] ||
13732                 $my_error "fast read was not 4 times faster: $t_fast vs $t_slow"
13733
13734         echo "Test 2: verify the performance between big and small read"
13735         $LCTL set_param -n llite.*.fast_read=1
13736
13737         # 1k non-cache read
13738         cancel_lru_locks osc
13739         local t_1k=$(eval time -p dd if=$DIR/$tfile of=/dev/null bs=1k 2>&1 |
13740              awk '/real/ { print $2 }')
13741
13742         # 1M non-cache read
13743         cancel_lru_locks osc
13744         local t_1m=$(eval time -p dd if=$DIR/$tfile of=/dev/null bs=1M 2>&1 |
13745              awk '/real/ { print $2 }')
13746
13747         # verify that big IO is not 4 times faster than small IO
13748         [ $(bc <<< "4 * $t_1k >= $t_1m") -eq 1 ] ||
13749                 $my_error "bigger IO is way too fast: $t_1k vs $t_1m"
13750
13751         $LCTL set_param -n llite.*.fast_read=$saved_fast_read
13752         rm -f $DIR/$tfile
13753 }
13754 run_test 248 "fast read verification"
13755
13756 test_249() { # LU-7890
13757         rm -f $DIR/$tfile
13758         $SETSTRIPE -c 1 $DIR/$tfile
13759
13760         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.53) ] &&
13761         skip "Need at least version 2.8.54"
13762
13763         # Offset 2T == 4k * 512M
13764         dd if=/dev/zero of=$DIR/$tfile bs=4k count=1 seek=512M ||
13765                 error "dd to 2T offset failed"
13766 }
13767 run_test 249 "Write above 2T file size"
13768
13769 test_250() {
13770         [ "$(facet_fstype ost$(($($GETSTRIPE -i $DIR/$tfile) + 1)))" = "zfs" ] \
13771          && skip "no 16TB file size limit on ZFS" && return
13772
13773         $SETSTRIPE -c 1 $DIR/$tfile
13774         # ldiskfs extent file size limit is (16TB - 4KB - 1) bytes
13775         local size=$((16 * 1024 * 1024 * 1024 * 1024 - 4096 - 1))
13776         $TRUNCATE $DIR/$tfile $size || error "truncate $tfile to $size failed"
13777         dd if=/dev/zero of=$DIR/$tfile bs=10 count=1 oflag=append \
13778                 conv=notrunc,fsync && error "append succeeded"
13779         return 0
13780 }
13781 run_test 250 "Write above 16T limit"
13782
13783 test_251() {
13784         $SETSTRIPE -c -1 -S 1048576 $DIR/$tfile
13785
13786         #define OBD_FAIL_LLITE_LOST_LAYOUT 0x1407
13787         #Skip once - writing the first stripe will succeed
13788         $LCTL set_param fail_loc=0xa0001407 fail_val=1
13789         $MULTIOP $DIR/$tfile o:O_RDWR:w2097152c 2>&1 | grep -q "short write" &&
13790                 error "short write happened"
13791
13792         $LCTL set_param fail_loc=0xa0001407 fail_val=1
13793         $MULTIOP $DIR/$tfile or2097152c 2>&1 | grep -q "short read" &&
13794                 error "short read happened"
13795
13796         rm -f $DIR/$tfile
13797 }
13798 run_test 251 "Handling short read and write correctly"
13799
13800 test_252() {
13801         local tgt
13802         local dev
13803         local out
13804         local uuid
13805         local num
13806         local gen
13807
13808         if [ "$(facet_fstype ost1)" != "ldiskfs" -o \
13809              "$(facet_fstype mds1)" != "ldiskfs" ]; then
13810                 skip "can only run lr_reader on ldiskfs target"
13811                 return
13812         fi
13813
13814         # check lr_reader on OST0000
13815         tgt=ost1
13816         dev=$(facet_device $tgt)
13817         out=$(do_facet $tgt $LR_READER $dev)
13818         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
13819         echo "$out"
13820         uuid=$(echo "$out" | grep -i uuid | awk '{ print $2 }')
13821         [ "$uuid" == "$(ostuuid_from_index 0)" ] ||
13822                 error "Invalid uuid returned by $LR_READER on target $tgt"
13823         echo -e "uuid returned by $LR_READER is '$uuid'\n"
13824
13825         # check lr_reader -c on MDT0000
13826         tgt=mds1
13827         dev=$(facet_device $tgt)
13828         if ! do_facet $tgt $LR_READER -h | grep -q OPTIONS; then
13829                 echo "$LR_READER does not support additional options"
13830                 return 0
13831         fi
13832         out=$(do_facet $tgt $LR_READER -c $dev)
13833         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
13834         echo "$out"
13835         num=$(echo "$out" | grep -c "mdtlov")
13836         [ "$num" -eq $((MDSCOUNT - 1)) ] ||
13837                 error "Invalid number of mdtlov clients returned by $LR_READER"
13838         echo -e "Number of mdtlov clients returned by $LR_READER is '$num'\n"
13839
13840         # check lr_reader -cr on MDT0000
13841         out=$(do_facet $tgt $LR_READER -cr $dev)
13842         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
13843         echo "$out"
13844         echo "$out" | grep -q "^reply_data:$" ||
13845                 error "$LR_READER should have returned 'reply_data' section"
13846         num=$(echo "$out" | grep -c "client_generation")
13847         echo -e "Number of reply data returned by $LR_READER is '$num'\n"
13848 }
13849 run_test 252 "check lr_reader tool"
13850
13851 test_254() {
13852         local cl_user
13853
13854         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13855         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13856         do_facet mds1 $LCTL get_param -n mdd.$MDT0.changelog_size ||
13857                 { skip "MDS does not support changelog_size" && return; }
13858
13859         cl_user=$(do_facet mds1 $LCTL --device $MDT0 changelog_register -n)
13860         echo "Registered as changelog user $cl_user"
13861
13862         $LFS changelog_clear $MDT0 $cl_user 0
13863
13864         local size1=$(do_facet mds1 \
13865                       $LCTL get_param -n mdd.$MDT0.changelog_size)
13866         echo "Changelog size $size1"
13867
13868         rm -rf $DIR/$tdir
13869         $LFS mkdir -i 0 $DIR/$tdir
13870         # change something
13871         mkdir -p $DIR/$tdir/pics/2008/zachy
13872         touch $DIR/$tdir/pics/2008/zachy/timestamp
13873         cp /etc/hosts $DIR/$tdir/pics/2008/zachy/pic1.jpg
13874         mv $DIR/$tdir/pics/2008/zachy $DIR/$tdir/pics/zach
13875         ln $DIR/$tdir/pics/zach/pic1.jpg $DIR/$tdir/pics/2008/portland.jpg
13876         ln -s $DIR/$tdir/pics/2008/portland.jpg $DIR/$tdir/pics/desktop.jpg
13877         rm $DIR/$tdir/pics/desktop.jpg
13878
13879         local size2=$(do_facet mds1 \
13880                       $LCTL get_param -n mdd.$MDT0.changelog_size)
13881         echo "Changelog size after work $size2"
13882
13883         do_facet mds1 $LCTL --device $MDT0 changelog_deregister $cl_user
13884
13885         if (( size2 <= size1 )); then
13886                 error "Changelog size after work should be greater than original"
13887         fi
13888         return 0
13889 }
13890 run_test 254 "Check changelog size"
13891
13892 test_256() {
13893         local cl_user
13894         local cat_sl
13895         local mdt_dev
13896
13897         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13898         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13899         [ "$(facet_fstype mds1)" != "ldiskfs" ] &&
13900                 skip "non-ldiskfs backend" && return
13901
13902         mdt_dev=$(mdsdevname 1)
13903         echo $mdt_dev
13904         cl_user=$(do_facet mds1 \
13905         "$LCTL get_param -n mdd.$MDT0.changelog_users | grep cl")
13906         if [[ -n $cl_user ]]; then
13907                 skip "active changelog user"
13908                 return
13909         fi
13910
13911         cl_user=$(do_facet mds1 $LCTL --device $MDT0 changelog_register -n)
13912         echo "Registered as changelog user $cl_user"
13913
13914         rm -rf $DIR/$tdir
13915         mkdir -p $DIR/$tdir
13916
13917         $LFS changelog_clear $MDT0 $cl_user 0
13918
13919         # change something
13920         touch $DIR/$tdir/{1..10}
13921
13922         # stop the MDT
13923         stop mds1 || error "Fail to stop MDT."
13924
13925         # remount the MDT
13926         start mds1 $mdt_dev $MDS_MOUNT_OPTS || error "Fail to start MDT."
13927
13928         #after mount new plainllog is used
13929         touch $DIR/$tdir/{11..19}
13930         cat_sl=$(do_facet mds1 \
13931         "$DEBUGFS -R \\\"dump changelog_catalog cat.dmp\\\" $mdt_dev; \
13932          llog_reader cat.dmp | grep \\\"type=1064553b\\\" | wc -l")
13933
13934         if (( cat_sl != 2 )); then
13935                 do_facet mds1 $LCTL --device $MDT0 changelog_deregister $cl_user
13936                 error "Changelog catalog has wrong number of slots $cat_sl"
13937         fi
13938
13939         $LFS changelog_clear $MDT0 $cl_user 0
13940
13941         cat_sl=$(do_facet mds1 \
13942         "$DEBUGFS -R \\\"dump changelog_catalog cat.dmp\\\" $mdt_dev; \
13943          llog_reader cat.dmp | grep \\\"type=1064553b\\\" | wc -l")
13944
13945         do_facet mds1 $LCTL --device $MDT0 changelog_deregister $cl_user
13946
13947         if (( cat_sl == 2 )); then
13948                 error "Empty plain llog was not deleted from changelog catalog"
13949         fi
13950         if (( cat_sl != 1 )); then
13951                 error "Active plain llog shouldn\`t be deleted from catalog"
13952         fi
13953 }
13954 run_test 256 "Check llog delete for empty and not full state"
13955
13956 cleanup_test_300() {
13957         trap 0
13958         umask $SAVE_UMASK
13959 }
13960 test_striped_dir() {
13961         local mdt_index=$1
13962         local stripe_count
13963         local stripe_index
13964
13965         mkdir -p $DIR/$tdir
13966
13967         SAVE_UMASK=$(umask)
13968         trap cleanup_test_300 RETURN EXIT
13969
13970         $LFS setdirstripe -i $mdt_index -c 2 -t all_char -m 755 \
13971                                                 $DIR/$tdir/striped_dir ||
13972                 error "set striped dir error"
13973
13974         local mode=$(stat -c%a $DIR/$tdir/striped_dir)
13975         [ "$mode" = "755" ] || error "expect 755 got $mode"
13976
13977         $LFS getdirstripe $DIR/$tdir/striped_dir > /dev/null 2>&1 ||
13978                 error "getdirstripe failed"
13979         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir)
13980         if [ "$stripe_count" != "2" ]; then
13981                 error "stripe_count is $stripe_count, expect 2"
13982         fi
13983
13984         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir)
13985         if [ "$stripe_index" != "$mdt_index" ]; then
13986                 error "stripe_index is $stripe_index, expect $mdt_index"
13987         fi
13988
13989         [ $(stat -c%h $DIR/$tdir/striped_dir) == '2' ] ||
13990                 error "nlink error after create striped dir"
13991
13992         mkdir $DIR/$tdir/striped_dir/a
13993         mkdir $DIR/$tdir/striped_dir/b
13994
13995         stat $DIR/$tdir/striped_dir/a ||
13996                 error "create dir under striped dir failed"
13997         stat $DIR/$tdir/striped_dir/b ||
13998                 error "create dir under striped dir failed"
13999
14000         [ $(stat -c%h $DIR/$tdir/striped_dir) == '4' ] ||
14001                 error "nlink error after mkdir"
14002
14003         rmdir $DIR/$tdir/striped_dir/a
14004         [ $(stat -c%h $DIR/$tdir/striped_dir) == '3' ] ||
14005                 error "nlink error after rmdir"
14006
14007         rmdir $DIR/$tdir/striped_dir/b
14008         [ $(stat -c%h $DIR/$tdir/striped_dir) == '2' ] ||
14009                 error "nlink error after rmdir"
14010
14011         chattr +i $DIR/$tdir/striped_dir
14012         createmany -o $DIR/$tdir/striped_dir/f 10 &&
14013                 error "immutable flags not working under striped dir!"
14014         chattr -i $DIR/$tdir/striped_dir
14015
14016         rmdir $DIR/$tdir/striped_dir ||
14017                 error "rmdir striped dir error"
14018
14019         cleanup_test_300
14020
14021         true
14022 }
14023
14024 test_300a() {
14025         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
14026                 skip "skipped for lustre < 2.7.0" && return
14027         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14028         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14029
14030         test_striped_dir 0 || error "failed on striped dir on MDT0"
14031         test_striped_dir 1 || error "failed on striped dir on MDT0"
14032 }
14033 run_test 300a "basic striped dir sanity test"
14034
14035 test_300b() {
14036         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
14037                 skip "skipped for lustre < 2.7.0" && return
14038         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14039         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14040         local i
14041         local mtime1
14042         local mtime2
14043         local mtime3
14044
14045         test_mkdir $DIR/$tdir || error "mkdir fail"
14046         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir ||
14047                 error "set striped dir error"
14048         for ((i=0; i<10; i++)); do
14049                 mtime1=$(stat -c %Y $DIR/$tdir/striped_dir)
14050                 sleep 1
14051                 touch $DIR/$tdir/striped_dir/file_$i ||
14052                                         error "touch error $i"
14053                 mtime2=$(stat -c %Y $DIR/$tdir/striped_dir)
14054                 [ $mtime1 -eq $mtime2 ] &&
14055                         error "mtime not change after create"
14056                 sleep 1
14057                 rm -f $DIR/$tdir/striped_dir/file_$i ||
14058                                         error "unlink error $i"
14059                 mtime3=$(stat -c %Y $DIR/$tdir/striped_dir)
14060                 [ $mtime2 -eq $mtime3 ] &&
14061                         error "mtime did not change after unlink"
14062         done
14063         true
14064 }
14065 run_test 300b "check ctime/mtime for striped dir"
14066
14067 test_300c() {
14068         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
14069                 skip "skipped for lustre < 2.7.0" && return
14070         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14071         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14072         local file_count
14073
14074         mkdir -p $DIR/$tdir
14075         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir ||
14076                 error "set striped dir error"
14077
14078         chown $RUNAS_ID:$RUNAS_GID $DIR/$tdir/striped_dir ||
14079                 error "chown striped dir failed"
14080
14081         $RUNAS createmany -o $DIR/$tdir/striped_dir/f 5000 ||
14082                 error "create 5k files failed"
14083
14084         file_count=$(ls $DIR/$tdir/striped_dir | wc -l)
14085
14086         [ "$file_count" = 5000 ] || error "file count $file_count != 5000"
14087
14088         rm -rf $DIR/$tdir
14089 }
14090 run_test 300c "chown && check ls under striped directory"
14091
14092 test_300d() {
14093         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
14094                 skip "skipped for lustre < 2.7.0" && return
14095         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14096         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14097         local stripe_count
14098         local file
14099
14100         mkdir -p $DIR/$tdir
14101         $SETSTRIPE -c 2 $DIR/$tdir
14102
14103         #local striped directory
14104         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir ||
14105                 error "set striped dir error"
14106         createmany -o $DIR/$tdir/striped_dir/f 10 ||
14107                 error "create 10 files failed"
14108
14109         #remote striped directory
14110         $LFS setdirstripe -i 1 -c 2 $DIR/$tdir/remote_striped_dir ||
14111                 error "set striped dir error"
14112         createmany -o $DIR/$tdir/remote_striped_dir/f 10 ||
14113                 error "create 10 files failed"
14114
14115         for file in $(find $DIR/$tdir); do
14116                 stripe_count=$($GETSTRIPE -c $file)
14117                 [ $stripe_count -eq 2 ] ||
14118                         error "wrong stripe $stripe_count for $file"
14119         done
14120
14121         rm -rf $DIR/$tdir
14122 }
14123 run_test 300d "check default stripe under striped directory"
14124
14125 test_300e() {
14126         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
14127                 skip "Need MDS version at least 2.7.55" && return
14128         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14129         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14130         local stripe_count
14131         local file
14132
14133         mkdir -p $DIR/$tdir
14134
14135         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir ||
14136                 error "set striped dir error"
14137
14138         touch $DIR/$tdir/striped_dir/a
14139         touch $DIR/$tdir/striped_dir/b
14140         touch $DIR/$tdir/striped_dir/c
14141
14142         mkdir $DIR/$tdir/striped_dir/dir_a
14143         mkdir $DIR/$tdir/striped_dir/dir_b
14144         mkdir $DIR/$tdir/striped_dir/dir_c
14145
14146         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir/stp_a ||
14147                 error "set striped dir under striped dir error"
14148
14149         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir/stp_b ||
14150                 error "set striped dir under striped dir error"
14151
14152         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir/stp_c ||
14153                 error "set striped dir under striped dir error"
14154
14155         mrename $DIR/$tdir/striped_dir/dir_a $DIR/$tdir/striped_dir/dir_b ||
14156                 error "rename dir under striped dir fails"
14157
14158         mrename $DIR/$tdir/striped_dir/stp_a $DIR/$tdir/striped_dir/stp_b ||
14159                 error "rename dir under different stripes fails"
14160
14161         mrename $DIR/$tdir/striped_dir/a $DIR/$tdir/striped_dir/c ||
14162                 error "rename file under striped dir should succeed"
14163
14164         mrename $DIR/$tdir/striped_dir/dir_b $DIR/$tdir/striped_dir/dir_c ||
14165                 error "rename dir under striped dir should succeed"
14166
14167         rm -rf $DIR/$tdir
14168 }
14169 run_test 300e "check rename under striped directory"
14170
14171 test_300f() {
14172         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
14173                 skip "Need MDS version at least 2.7.55" && return
14174         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14175         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14176         local stripe_count
14177         local file
14178
14179         rm -rf $DIR/$tdir
14180         mkdir -p $DIR/$tdir
14181
14182         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir ||
14183                 error "set striped dir error"
14184
14185         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir1 ||
14186                 error "set striped dir error"
14187
14188         touch $DIR/$tdir/striped_dir/a
14189         mkdir $DIR/$tdir/striped_dir/dir_a
14190         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir/stp_a ||
14191                 error "create striped dir under striped dir fails"
14192
14193         touch $DIR/$tdir/striped_dir1/b
14194         mkdir $DIR/$tdir/striped_dir1/dir_b
14195         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir/stp_b ||
14196                 error "create striped dir under striped dir fails"
14197
14198         mrename $DIR/$tdir/striped_dir/dir_a $DIR/$tdir/striped_dir1/dir_b ||
14199                 error "rename dir under different striped dir should fail"
14200
14201         mrename $DIR/$tdir/striped_dir/stp_a $DIR/$tdir/striped_dir1/stp_b ||
14202                 error "rename striped dir under diff striped dir should fail"
14203
14204         mrename $DIR/$tdir/striped_dir/a $DIR/$tdir/striped_dir1/a ||
14205                 error "rename file under diff striped dirs fails"
14206
14207         rm -rf $DIR/$tdir
14208 }
14209 run_test 300f "check rename cross striped directory"
14210
14211 test_300_check_default_striped_dir()
14212 {
14213         local dirname=$1
14214         local default_count=$2
14215         local default_index=$3
14216         local stripe_count
14217         local stripe_index
14218         local dir_stripe_index
14219         local dir
14220
14221         echo "checking $dirname $default_count $default_index"
14222         $LFS setdirstripe -D -c $default_count -i $default_index \
14223                                 -t all_char $DIR/$tdir/$dirname ||
14224                 error "set default stripe on striped dir error"
14225         stripe_count=$($LFS getdirstripe -D -c $DIR/$tdir/$dirname)
14226         [ $stripe_count -eq $default_count ] ||
14227                 error "expect $default_count get $stripe_count for $dirname"
14228
14229         stripe_index=$($LFS getdirstripe -D -i $DIR/$tdir/$dirname)
14230         [ $stripe_index -eq $default_index ] ||
14231                 error "expect $default_index get $stripe_index for $dirname"
14232
14233         mkdir $DIR/$tdir/$dirname/{test1,test2,test3,test4} ||
14234                                                 error "create dirs failed"
14235
14236         createmany -o $DIR/$tdir/$dirname/f- 10 || error "create files failed"
14237         unlinkmany $DIR/$tdir/$dirname/f- 10    || error "unlink files failed"
14238         for dir in $(find $DIR/$tdir/$dirname/*); do
14239                 stripe_count=$($LFS getdirstripe -c $dir)
14240                 [ $stripe_count -eq $default_count ] ||
14241                 [ $stripe_count -eq 0 -o $default_count -eq 1 ] ||
14242                 error "stripe count $default_count != $stripe_count for $dir"
14243
14244                 stripe_index=$($LFS getdirstripe -i $dir)
14245                 [ $default_index -eq -1 -o $stripe_index -eq $default_index ] ||
14246                         error "$stripe_index != $default_index for $dir"
14247
14248                 #check default stripe
14249                 stripe_count=$($LFS getdirstripe -D -c $dir)
14250                 [ $stripe_count -eq $default_count ] ||
14251                 error "default count $default_count != $stripe_count for $dir"
14252
14253                 stripe_index=$($LFS getdirstripe -D -i $dir)
14254                 [ $stripe_index -eq $default_index ] ||
14255                 error "default index $default_index != $stripe_index for $dir"
14256         done
14257         rmdir $DIR/$tdir/$dirname/* || error "rmdir failed"
14258 }
14259
14260 test_300g() {
14261         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
14262                 skip "Need MDS version at least 2.7.55" && return
14263         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14264         local dir
14265         local stripe_count
14266         local stripe_index
14267
14268         mkdir $DIR/$tdir
14269         mkdir $DIR/$tdir/normal_dir
14270
14271         test_300_check_default_striped_dir normal_dir $MDSCOUNT 1
14272         test_300_check_default_striped_dir normal_dir 1 0
14273         test_300_check_default_striped_dir normal_dir 2 1
14274         test_300_check_default_striped_dir normal_dir 2 -1
14275
14276         #delete default stripe information
14277         echo "delete default stripeEA"
14278         $LFS setdirstripe -d $DIR/$tdir/normal_dir ||
14279                 error "set default stripe on striped dir error"
14280
14281         mkdir -p $DIR/$tdir/normal_dir/{test1,test2,test3,test4}
14282         for dir in $(find $DIR/$tdir/normal_dir/*); do
14283                 stripe_count=$($LFS getdirstripe -c $dir)
14284                 [ $stripe_count -eq 0 ] ||
14285                         error "expect 1 get $stripe_count for $dir"
14286                 stripe_index=$($LFS getdirstripe -i $dir)
14287                 [ $stripe_index -eq 0 ] ||
14288                         error "expect 0 get $stripe_index for $dir"
14289         done
14290 }
14291 run_test 300g "check default striped directory for normal directory"
14292
14293 test_300h() {
14294         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
14295                 skip "Need MDS version at least 2.7.55" && return
14296         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14297         local dir
14298         local stripe_count
14299
14300         mkdir $DIR/$tdir
14301         $LFS setdirstripe -i 0 -c $MDSCOUNT -t all_char \
14302                                         $DIR/$tdir/striped_dir ||
14303                 error "set striped dir error"
14304
14305         test_300_check_default_striped_dir striped_dir $MDSCOUNT 1
14306         test_300_check_default_striped_dir striped_dir 1 0
14307         test_300_check_default_striped_dir striped_dir 2 1
14308         test_300_check_default_striped_dir striped_dir 2 -1
14309
14310         #delete default stripe information
14311         $LFS setdirstripe -d $DIR/$tdir/striped_dir ||
14312                 error "set default stripe on striped dir error"
14313
14314         mkdir -p $DIR/$tdir/striped_dir/{test1,test2,test3,test4}
14315         for dir in $(find $DIR/$tdir/striped_dir/*); do
14316                 stripe_count=$($LFS getdirstripe -c $dir)
14317                 [ $stripe_count -eq 0 ] ||
14318                         error "expect 1 get $stripe_count for $dir"
14319         done
14320 }
14321 run_test 300h "check default striped directory for striped directory"
14322
14323 test_300i() {
14324         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
14325                 skip "Need MDS version at least 2.7.55" && return
14326         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14327         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14328         local stripe_count
14329         local file
14330
14331         mkdir $DIR/$tdir
14332
14333         $LFS setdirstripe -i 0 -c$MDSCOUNT -t all_char $DIR/$tdir/striped_dir ||
14334                 error "set striped dir error"
14335
14336         createmany -o $DIR/$tdir/striped_dir/f- 10 ||
14337                 error "create files under striped dir failed"
14338
14339         # unfortunately, we need to umount to clear dir layout cache for now
14340         # once we fully implement dir layout, we can drop this
14341         umount_client $MOUNT || error "umount failed"
14342         mount_client $MOUNT || error "mount failed"
14343
14344         #set the stripe to be unknown hash type
14345         #define OBD_FAIL_UNKNOWN_LMV_STRIPE     0x1901
14346         $LCTL set_param fail_loc=0x1901
14347         for ((i = 0; i < 10; i++)); do
14348                 $CHECKSTAT -t file $DIR/$tdir/striped_dir/f-$i ||
14349                         error "stat f-$i failed"
14350                 rm $DIR/$tdir/striped_dir/f-$i || error "unlink f-$i failed"
14351         done
14352
14353         touch $DIR/$tdir/striped_dir/f0 &&
14354                 error "create under striped dir with unknown hash should fail"
14355
14356         $LCTL set_param fail_loc=0
14357
14358         umount_client $MOUNT || error "umount failed"
14359         mount_client $MOUNT || error "mount failed"
14360
14361         return 0
14362 }
14363 run_test 300i "client handle unknown hash type striped directory"
14364
14365 test_300j() {
14366         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14367         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
14368                 skip "Need MDS version at least 2.7.55" && return
14369         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14370         local stripe_count
14371         local file
14372
14373         mkdir $DIR/$tdir
14374
14375         #define OBD_FAIL_SPLIT_UPDATE_REC       0x1702
14376         $LCTL set_param fail_loc=0x1702
14377         $LFS setdirstripe -i 0 -c$MDSCOUNT -t all_char $DIR/$tdir/striped_dir ||
14378                 error "set striped dir error"
14379
14380         createmany -o $DIR/$tdir/striped_dir/f- 10 ||
14381                 error "create files under striped dir failed"
14382
14383         $LCTL set_param fail_loc=0
14384
14385         rm -rf $DIR/$tdir || error "unlink striped dir fails"
14386
14387         return 0
14388 }
14389 run_test 300j "test large update record"
14390
14391 test_300k() {
14392         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
14393                 skip "Need MDS version at least 2.7.55" && return
14394         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14395         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14396         local stripe_count
14397         local file
14398
14399         mkdir $DIR/$tdir
14400
14401         #define OBD_FAIL_LARGE_STRIPE   0x1703
14402         $LCTL set_param fail_loc=0x1703
14403         $LFS setdirstripe -i 0 -c512 $DIR/$tdir/striped_dir ||
14404                 error "set striped dir error"
14405         $LCTL set_param fail_loc=0
14406
14407         $LFS getdirstripe $DIR/$tdir/striped_dir ||
14408                 error "getstripeddir fails"
14409         rm -rf $DIR/$tdir/striped_dir ||
14410                 error "unlink striped dir fails"
14411
14412         return 0
14413 }
14414 run_test 300k "test large striped directory"
14415
14416 test_300l() {
14417         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
14418                 skip "Need MDS version at least 2.7.55" && return
14419         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14420         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14421         local stripe_index
14422
14423         test_mkdir -p $DIR/$tdir/striped_dir
14424         chown $RUNAS_ID $DIR/$tdir/striped_dir ||
14425                         error "chown $RUNAS_ID failed"
14426         $LFS setdirstripe -i 1 -D $DIR/$tdir/striped_dir ||
14427                 error "set default striped dir failed"
14428
14429         #define OBD_FAIL_MDS_STALE_DIR_LAYOUT    0x158
14430         $LCTL set_param fail_loc=0x80000158
14431         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir || error "create dir fails"
14432
14433         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir/test_dir)
14434         [ $stripe_index -eq 1 ] ||
14435                 error "expect 1 get $stripe_index for $dir"
14436 }
14437 run_test 300l "non-root user to create dir under striped dir with stale layout"
14438
14439 test_300m() {
14440         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
14441                 skip "Need MDS version at least 2.7.55" && return
14442         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14443         [ $MDSCOUNT -ge 2 ] && skip "Only for single MDT" && return
14444
14445         mkdir -p $DIR/$tdir/striped_dir
14446         $LFS setdirstripe -D -c 1 $DIR/$tdir/striped_dir ||
14447                 error "set default stripes dir error"
14448
14449         mkdir $DIR/$tdir/striped_dir/a || error "mkdir a fails"
14450
14451         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir/a)
14452         [ $stripe_count -eq 0 ] ||
14453                         error "expect 0 get $stripe_count for a"
14454
14455         $LFS setdirstripe -D -c 2 $DIR/$tdir/striped_dir ||
14456                 error "set default stripes dir error"
14457
14458         mkdir $DIR/$tdir/striped_dir/b || error "mkdir b fails"
14459
14460         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir/b)
14461         [ $stripe_count -eq 0 ] ||
14462                         error "expect 0 get $stripe_count for b"
14463
14464         $LFS setdirstripe -D -c1 -i2 $DIR/$tdir/striped_dir ||
14465                 error "set default stripes dir error"
14466
14467         mkdir $DIR/$tdir/striped_dir/c &&
14468                 error "default stripe_index is invalid, mkdir c should fails"
14469
14470         rm -rf $DIR/$tdir || error "rmdir fails"
14471 }
14472 run_test 300m "setstriped directory on single MDT FS"
14473
14474 cleanup_300n() {
14475         local list=$(comma_list $(mdts_nodes))
14476
14477         trap 0
14478         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
14479 }
14480
14481 test_300n() {
14482         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
14483                 skip "Need MDS version at least 2.7.55" && return
14484         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14485         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14486         local stripe_index
14487         local list=$(comma_list $(mdts_nodes))
14488
14489         trap cleanup_300n RETURN EXIT
14490         mkdir -p $DIR/$tdir
14491         chmod 777 $DIR/$tdir
14492         $RUNAS $LFS setdirstripe -i0 -c$MDSCOUNT \
14493                                 $DIR/$tdir/striped_dir > /dev/null 2>&1 &&
14494                 error "create striped dir succeeds with gid=0"
14495
14496         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=-1
14497         $RUNAS $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir ||
14498                 error "create striped dir fails with gid=-1"
14499
14500         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
14501         $RUNAS $LFS setdirstripe -i 1 -c$MDSCOUNT -D \
14502                                 $DIR/$tdir/striped_dir > /dev/null 2>&1 &&
14503                 error "set default striped dir succeeds with gid=0"
14504
14505
14506         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=-1
14507         $RUNAS $LFS setdirstripe -i 1 -c$MDSCOUNT -D $DIR/$tdir/striped_dir ||
14508                 error "set default striped dir fails with gid=-1"
14509
14510
14511         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
14512         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir ||
14513                                         error "create test_dir fails"
14514         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir1 ||
14515                                         error "create test_dir1 fails"
14516         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir2 ||
14517                                         error "create test_dir2 fails"
14518         cleanup_300n
14519 }
14520 run_test 300n "non-root user to create dir under striped dir with default EA"
14521
14522 test_300o() {
14523         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
14524                 skip "Need MDS version at least 2.7.55" && return
14525         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14526         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14527         local numfree1
14528         local numfree2
14529
14530         mkdir -p $DIR/$tdir
14531
14532         numfree1=$(lctl get_param -n mdc.*MDT0000*.filesfree)
14533         numfree2=$(lctl get_param -n mdc.*MDT0001*.filesfree)
14534         if [ $numfree1 -lt 66000 -o $numfree2 -lt 66000 ]; then
14535                 skip "not enough free inodes $numfree1 $numfree2"
14536                 return
14537         fi
14538
14539         numfree1=$(lctl get_param -n mdc.*MDT0000-mdc-*.kbytesfree)
14540         numfree2=$(lctl get_param -n mdc.*MDT0001-mdc-*.kbytesfree)
14541         if [ $numfree1 -lt 300000 -o $numfree2 -lt 300000 ]; then
14542                 skip "not enough free space $numfree1 $numfree2"
14543                 return
14544         fi
14545
14546         $LFS setdirstripe -c2 $DIR/$tdir/striped_dir ||
14547                 error "setdirstripe fails"
14548
14549         createmany -d $DIR/$tdir/striped_dir/d 131000 ||
14550                 error "create dirs fails"
14551
14552         $LCTL set_param ldlm.namespaces.*mdc-*.lru_size=0
14553         ls $DIR/$tdir/striped_dir > /dev/null ||
14554                 error "ls striped dir fails"
14555         unlinkmany -d $DIR/$tdir/striped_dir/d 131000 ||
14556                 error "unlink big striped dir fails"
14557 }
14558 run_test 300o "unlink big sub stripe(> 65000 subdirs)"
14559
14560 test_300p() {
14561         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14562         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14563
14564         mkdir -p $DIR/$tdir
14565
14566         #define OBD_FAIL_OUT_ENOSPC     0x1704
14567         do_facet mds2 lctl set_param fail_loc=0x80001704
14568         $LFS setdirstripe -c2 $DIR/$tdir/bad_striped_dir > /dev/null 2>&1 &&
14569                         error "create striped directory should fail"
14570
14571         [ -e $DIR/$tdir/bad_striped_dir ] && error "striped dir exists"
14572
14573         $LFS setdirstripe -c2 $DIR/$tdir/bad_striped_dir
14574         true
14575 }
14576 run_test 300p "create striped directory without space"
14577
14578 test_300q() {
14579         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14580         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14581
14582         local fd=$(free_fd)
14583         local cmd="exec $fd<$tdir"
14584         cd $DIR
14585         $LFS mkdir -c $MDSCOUNT $tdir || error "create $tdir fails"
14586         eval $cmd
14587         cmd="exec $fd<&-"
14588         trap "eval $cmd" EXIT
14589         cd $tdir || error "cd $tdir fails"
14590         rmdir  ../$tdir || error "rmdir $tdir fails"
14591         mkdir local_dir && error "create dir succeeds"
14592         $LFS setdirstripe -i1 remote_dir && error "create remote dir succeeds"
14593         eval $cmd
14594         return 0
14595 }
14596 run_test 300q "create remote directory under orphan directory"
14597
14598 prepare_remote_file() {
14599         mkdir $DIR/$tdir/src_dir ||
14600                 error "create remote source failed"
14601
14602         cp /etc/hosts $DIR/$tdir/src_dir/a || error
14603         touch $DIR/$tdir/src_dir/a
14604
14605         $LFS mkdir -i 1 $DIR/$tdir/tgt_dir ||
14606                 error "create remote target dir failed"
14607
14608         touch $DIR/$tdir/tgt_dir/b
14609
14610         mrename $DIR/$tdir/src_dir/a $DIR/$tdir/tgt_dir/b ||
14611                 error "rename dir cross MDT failed!"
14612
14613         $CHECKSTAT -t file $DIR/$tdir/src_dir/a &&
14614                 error "src_child still exists after rename"
14615
14616         $CHECKSTAT -t file $DIR/$tdir/tgt_dir/b ||
14617                 error "missing file(a) after rename"
14618
14619         diff /etc/hosts $DIR/$tdir/tgt_dir/b ||
14620                 error "diff after rename"
14621 }
14622
14623 test_310a() {
14624         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 4 MDTs" && return
14625         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14626         local remote_file=$DIR/$tdir/tgt_dir/b
14627
14628         mkdir -p $DIR/$tdir
14629
14630         prepare_remote_file || error "prepare remote file failed"
14631
14632         #open-unlink file
14633         $OPENUNLINK $remote_file $remote_file || error
14634         $CHECKSTAT -a $remote_file || error
14635 }
14636 run_test 310a "open unlink remote file"
14637
14638 test_310b() {
14639         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 4 MDTs" && return
14640         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14641         local remote_file=$DIR/$tdir/tgt_dir/b
14642
14643         mkdir -p $DIR/$tdir
14644
14645         prepare_remote_file || error "prepare remote file failed"
14646
14647         ln $remote_file $DIR/$tfile || error "link failed for remote file"
14648         $MULTIOP $DIR/$tfile Ouc || error "mulitop failed"
14649         $CHECKSTAT -t file $remote_file || error "check file failed"
14650 }
14651 run_test 310b "unlink remote file with multiple links while open"
14652
14653 test_310c() {
14654         [[ $MDSCOUNT -lt 4 ]] && skip "needs >= 4 MDTs" && return
14655         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14656         local remote_file=$DIR/$tdir/tgt_dir/b
14657
14658         mkdir -p $DIR/$tdir
14659
14660         prepare_remote_file || error "prepare remote file failed"
14661
14662         ln $remote_file $DIR/$tfile || error "link failed for remote file"
14663         multiop_bg_pause $remote_file O_uc ||
14664                         error "mulitop failed for remote file"
14665         MULTIPID=$!
14666         $MULTIOP $DIR/$tfile Ouc
14667         kill -USR1 $MULTIPID
14668         wait $MULTIPID
14669 }
14670 run_test 310c "open-unlink remote file with multiple links"
14671
14672 test_400a() { # LU-1606, was conf-sanity test_74
14673         local extra_flags=''
14674         local out=$TMP/$tfile
14675         local prefix=/usr/include/lustre
14676         local prog
14677
14678         if ! which $CC > /dev/null 2>&1; then
14679                 skip_env "$CC is not installed"
14680                 return 0
14681         fi
14682
14683         if ! [[ -d $prefix ]]; then
14684                 # Assume we're running in tree and fixup the include path.
14685                 extra_flags+=" -I$LUSTRE/../libcfs/include"
14686                 extra_flags+=" -I$LUSTRE/include"
14687                 extra_flags+=" -L$LUSTRE/utils"
14688         fi
14689
14690         for prog in $LUSTRE_TESTS_API_DIR/*.c; do
14691                 $CC -Wall -Werror $extra_flags -llustreapi -o $out $prog ||
14692                         error "client api broken"
14693         done
14694         rm -f $out
14695 }
14696 run_test 400a "Lustre client api program can compile and link"
14697
14698 test_400b() { # LU-1606, LU-5011
14699         local header
14700         local out=$TMP/$tfile
14701         local prefix=/usr/include/lustre
14702
14703         # We use a hard coded prefix so that this test will not fail
14704         # when run in tree. There are headers in lustre/include/lustre/
14705         # that are not packaged (like lustre_idl.h) and have more
14706         # complicated include dependencies (like config.h and lnet/types.h).
14707         # Since this test about correct packaging we just skip them when
14708         # they don't exist (see below) rather than try to fixup cppflags.
14709
14710         if ! which $CC > /dev/null 2>&1; then
14711                 skip_env "$CC is not installed"
14712                 return 0
14713         fi
14714
14715         for header in $prefix/*.h; do
14716                 if ! [[ -f "$header" ]]; then
14717                         continue
14718                 fi
14719
14720                 if [[ "$(basename $header)" == liblustreapi.h ]]; then
14721                         continue # liblustreapi.h is deprecated.
14722                 fi
14723
14724                 $CC -Wall -Werror -include $header -c -x c /dev/null -o $out ||
14725                         error "cannot compile '$header'"
14726         done
14727         rm -f $out
14728 }
14729 run_test 400b "packaged headers can be compiled"
14730
14731 test_401a() { #LU-7437
14732         #count the number of parameters by "list_param -R"
14733         local params=$($LCTL list_param -R '*' 2>/dev/null | wc -l)
14734         #count the number of parameters by listing proc files
14735         local procs=$(find -L $proc_dirs -mindepth 1 -printf '%P\n' 2>/dev/null|
14736                       sort -u | wc -l)
14737
14738         [ $params -eq $procs ] ||
14739                 error "found $params parameters vs. $procs proc files"
14740
14741         # test the list_param -D option only returns directories
14742         params=$($LCTL list_param -R -D '*' 2>/dev/null | wc -l)
14743         #count the number of parameters by listing proc directories
14744         procs=$(find -L $proc_dirs -mindepth 1 -type d -printf '%P\n' 2>/dev/null |
14745                 sort -u | wc -l)
14746
14747         [ $params -eq $procs ] ||
14748                 error "found $params parameters vs. $procs proc files"
14749 }
14750 run_test 401a "Verify if 'lctl list_param -R' can list parameters recursively"
14751
14752 test_401b() {
14753         local save=$($LCTL get_param -n jobid_var)
14754         local tmp=testing
14755
14756         $LCTL set_param foo=bar jobid_var=$tmp bar=baz &&
14757                 error "no error returned when setting bad parameters"
14758
14759         local jobid_new=$($LCTL get_param -n foe jobid_var baz)
14760         [[ "$jobid_new" == "$tmp" ]] || error "jobid tmp $jobid_new != $tmp"
14761
14762         $LCTL set_param -n fog=bam jobid_var=$save bat=fog
14763         local jobid_old=$($LCTL get_param -n foe jobid_var bag)
14764         [[ "$jobid_old" == "$save" ]] || error "jobid new $jobid_old != $save"
14765 }
14766 run_test 401b "Verify 'lctl {get,set}_param' continue after error"
14767
14768 test_401c() {
14769         local jobid_var_old=$($LCTL get_param -n jobid_var)
14770         local jobid_var_new
14771
14772         $LCTL set_param jobid_var= &&
14773                 error "no error returned for 'set_param a='"
14774
14775         jobid_var_new=$($LCTL get_param -n jobid_var)
14776         [[ "$jobid_var_old" == "$jobid_var_new" ]] ||
14777                 error "jobid_var was changed by setting without value"
14778
14779         $LCTL set_param jobid_var &&
14780                 error "no error returned for 'set_param a'"
14781
14782         jobid_var_new=$($LCTL get_param -n jobid_var)
14783         [[ "$jobid_var_old" == "$jobid_var_new" ]] ||
14784                 error "jobid_var was changed by setting without value"
14785 }
14786 run_test 401c "Verify 'lctl set_param' without value fails in either format."
14787
14788 test_401d() {
14789         local jobid_var_old=$($LCTL get_param -n jobid_var)
14790         local jobid_var_new
14791         local new_value="foo=bar"
14792
14793         $LCTL set_param jobid_var=$new_value ||
14794                 error "'set_param a=b' did not accept a value containing '='"
14795
14796         jobid_var_new=$($LCTL get_param -n jobid_var)
14797         [[ "$jobid_var_new" == "$new_value" ]] ||
14798                 error "'set_param a=b' failed on a value containing '='"
14799
14800         # Reset the jobid_var to test the other format
14801         $LCTL set_param jobid_var=$jobid_var_old
14802         jobid_var_new=$($LCTL get_param -n jobid_var)
14803         [[ "$jobid_var_new" == "$jobid_var_old" ]] ||
14804                 error "failed to reset jobid_var"
14805
14806         $LCTL set_param jobid_var $new_value ||
14807                 error "'set_param a b' did not accept a value containing '='"
14808
14809         jobid_var_new=$($LCTL get_param -n jobid_var)
14810         [[ "$jobid_var_new" == "$new_value" ]] ||
14811                 error "'set_param a b' failed on a value containing '='"
14812
14813         $LCTL set_param jobid_var $jobid_var_old
14814         jobid_var_new=$($LCTL get_param -n jobid_var)
14815         [[ "$jobid_var_new" == "$jobid_var_old" ]] ||
14816                 error "failed to reset jobid_var"
14817 }
14818 run_test 401d "Verify 'lctl set_param' accepts values containing '='"
14819
14820 test_402() {
14821         $LFS setdirstripe -i 0 $DIR/$tdir || error "setdirstripe -i 0 failed"
14822 #define OBD_FAIL_MDS_FLD_LOOKUP 0x15c
14823         do_facet mds1 "lctl set_param fail_loc=0x8000015c"
14824         touch $DIR/$tdir/$tfile && error "touch should fail with ENOENT" ||
14825                 echo "Touch failed - OK"
14826 }
14827 run_test 402 "Return ENOENT to lod_generate_and_set_lovea"
14828
14829 test_403() {
14830         local file1=$DIR/$tfile.1
14831         local file2=$DIR/$tfile.2
14832         local tfile=$TMP/$tfile
14833
14834         rm -f $file1 $file2 $tfile
14835
14836         touch $file1
14837         ln $file1 $file2
14838
14839         # 30 sec OBD_TIMEOUT in ll_getattr()
14840         # right before populating st_nlink
14841         $LCTL set_param fail_loc=0x80001409
14842         stat -c %h $file1 > $tfile &
14843
14844         # create an alias, drop all locks and reclaim the dentry
14845         < $file2
14846         cancel_lru_locks mdc
14847         cancel_lru_locks osc
14848         sysctl -w vm.drop_caches=2
14849
14850         wait
14851
14852         [ `cat $tfile` -gt 0 ] || error "wrong nlink count: `cat $tfile`"
14853
14854         rm -f $tfile $file1 $file2
14855 }
14856 run_test 403 "i_nlink should not drop to zero due to aliasing"
14857
14858 test_404() { # LU-6601
14859         local mosps=$(do_facet $SINGLEMDS $LCTL dl |
14860                 awk '/osp .*-osc-MDT/ { print $4}')
14861
14862         local osp
14863         for osp in $mosps; do
14864                 echo "Deactivate: " $osp
14865                 do_facet $SINGLEMDS $LCTL --device %$osp deactivate
14866                 local stat=$(do_facet $SINGLEMDS $LCTL dl |
14867                         awk -vp=$osp '$4 == p { print $2 }')
14868                 [ $stat = IN ] || {
14869                         do_facet $SINGLEMDS $LCTL dl | grep -w $osp
14870                         error "deactivate error"
14871                 }
14872                 echo "Activate: " $osp
14873                 do_facet $SINGLEMDS $LCTL --device %$osp activate
14874                 local stat=$(do_facet $SINGLEMDS $LCTL dl |
14875                         awk -vp=$osp '$4 == p { print $2 }')
14876                 [ $stat = UP ] || {
14877                         do_facet $SINGLEMDS $LCTL dl | grep -w $osp
14878                         error "activate error"
14879                 }
14880         done
14881 }
14882 run_test 404 "validate manual {de}activated works properly for OSPs"
14883
14884 test_405() {
14885         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.92) ] &&
14886                 skip "Layout swap lock is not supported" && return
14887
14888         check_swap_layouts_support && return 0
14889
14890         test_mkdir -p $DIR/$tdir
14891         swap_lock_test -d $DIR/$tdir ||
14892                 error "One layout swap locked test failed"
14893 }
14894 run_test 405 "Various layout swap lock tests"
14895
14896 #
14897 # tests that do cleanup/setup should be run at the end
14898 #
14899
14900 test_900() {
14901         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14902         local ls
14903         #define OBD_FAIL_MGC_PAUSE_PROCESS_LOG   0x903
14904         $LCTL set_param fail_loc=0x903
14905
14906         cancel_lru_locks MGC
14907
14908         FAIL_ON_ERROR=true cleanup
14909         FAIL_ON_ERROR=true setup
14910 }
14911 run_test 900 "umount should not race with any mgc requeue thread"
14912
14913 complete $SECONDS
14914 [ -f $EXT2_DEV ] && rm $EXT2_DEV || true
14915 check_and_cleanup_lustre
14916 if [ "$I_MOUNTED" != "yes" ]; then
14917         lctl set_param debug="$OLDDEBUG" 2> /dev/null || true
14918 fi
14919 exit_status