Whamcloud - gitweb
f8478a21e1491d34b2ce32a36d4cc93aa2ac97ac
[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
83         ALWAYS_EXCEPT="$ALWAYS_EXCEPT  65ic    180"
84         #                                               13    (min)"
85         [ "$SLOW" = "no" ] && EXCEPT_SLOW="$EXCEPT_SLOW 51b"
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         local size
1021         size=$(getconf PAGE_SIZE 2>/dev/null)
1022         echo -n ${size:-4096}
1023 }
1024
1025 simple_cleanup_common() {
1026         trap 0
1027         rm -rf $DIR/$tdir
1028         wait_delete_completed
1029 }
1030
1031 max_pages_per_rpc() {
1032         $LCTL get_param -n mdc.*.max_pages_per_rpc | head -n1
1033 }
1034
1035 test_24v() {
1036         local NRFILES=100000
1037         local FREE_INODES=$(mdt_free_inodes 0)
1038         [[ $FREE_INODES -lt $NRFILES ]] &&
1039                 skip "not enough free inodes $FREE_INODES required $NRFILES" &&
1040                 return
1041
1042         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1043         trap simple_cleanup_common EXIT
1044
1045         # Performance issue on ZFS see LU-4072 (c.f. LU-2887)
1046         [ $(facet_fstype $SINGLEMDS) = "zfs" ] && NRFILES=10000
1047
1048         test_mkdir -p $DIR/$tdir
1049         createmany -m $DIR/$tdir/$tfile $NRFILES
1050
1051         cancel_lru_locks mdc
1052         lctl set_param mdc.*.stats clear
1053
1054         ls $DIR/$tdir >/dev/null || error "error in listing large dir"
1055
1056         # LU-5 large readdir
1057         # DIRENT_SIZE = 32 bytes for sizeof(struct lu_dirent) +
1058         #               8 bytes for name(filename is mostly 5 in this test) +
1059         #               8 bytes for luda_type
1060         # take into account of overhead in lu_dirpage header and end mark in
1061         # each page, plus one in RPC_NUM calculation.
1062         DIRENT_SIZE=48
1063         RPC_SIZE=$(($(max_pages_per_rpc) * $(page_size)))
1064         RPC_NUM=$(((NRFILES * DIRENT_SIZE + RPC_SIZE - 1) / RPC_SIZE + 1))
1065         mds_readpage=$(lctl get_param mdc.*MDT0000*.stats |
1066                                 awk '/^mds_readpage/ {print $2}')
1067         [[ $mds_readpage -gt $RPC_NUM ]] &&
1068                 error "large readdir doesn't take effect"
1069
1070         simple_cleanup_common
1071 }
1072 run_test 24v "list directory with large files (handle hash collision, bug: 17560)"
1073
1074 test_24w() { # bug21506
1075         SZ1=234852
1076         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=4096 || return 1
1077         dd if=/dev/zero bs=$SZ1 count=1 >> $DIR/$tfile || return 2
1078         dd if=$DIR/$tfile of=$DIR/${tfile}_left bs=1M skip=4097 || return 3
1079         SZ2=`ls -l $DIR/${tfile}_left | awk '{print $5}'`
1080         [[ "$SZ1" -eq "$SZ2" ]] ||
1081                 error "Error reading at the end of the file $tfile"
1082 }
1083 run_test 24w "Reading a file larger than 4Gb"
1084
1085 test_24x() {
1086         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
1087
1088         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.56) ]] &&
1089                 skip "Need MDS version at least 2.7.56" && return
1090
1091         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1092         local MDTIDX=1
1093         local remote_dir=$DIR/$tdir/remote_dir
1094
1095         test_mkdir -p $DIR/$tdir
1096         $LFS mkdir -i $MDTIDX $remote_dir ||
1097                 error "create remote directory failed"
1098
1099         test_mkdir -p $DIR/$tdir/src_dir
1100         touch $DIR/$tdir/src_file
1101         test_mkdir -p $remote_dir/tgt_dir
1102         touch $remote_dir/tgt_file
1103
1104         mrename $DIR/$tdir/src_dir $remote_dir/tgt_dir ||
1105                 error "rename dir cross MDT failed!"
1106
1107         mrename $DIR/$tdir/src_file $remote_dir/tgt_file ||
1108                 error "rename file cross MDT failed!"
1109
1110         touch $DIR/$tdir/ln_file
1111         ln $DIR/$tdir/ln_file $remote_dir/ln_name ||
1112                 error "ln file cross MDT failed"
1113
1114         rm -rf $DIR/$tdir || error "Can not delete directories"
1115 }
1116 run_test 24x "cross MDT rename/link"
1117
1118 test_24y() {
1119         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
1120         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1121         local MDTIDX=1
1122         local remote_dir=$DIR/$tdir/remote_dir
1123
1124         test_mkdir -p $DIR/$tdir
1125         $LFS mkdir -i $MDTIDX $remote_dir ||
1126                    error "create remote directory failed"
1127
1128         test_mkdir -p $remote_dir/src_dir
1129         touch $remote_dir/src_file
1130         test_mkdir -p $remote_dir/tgt_dir
1131         touch $remote_dir/tgt_file
1132
1133         mrename $remote_dir/src_dir $remote_dir/tgt_dir ||
1134                 error "rename subdir in the same remote dir failed!"
1135
1136         mrename $remote_dir/src_file $remote_dir/tgt_file ||
1137                 error "rename files in the same remote dir failed!"
1138
1139         ln $remote_dir/tgt_file $remote_dir/tgt_file1 ||
1140                 error "link files in the same remote dir failed!"
1141
1142         rm -rf $DIR/$tdir || error "Can not delete directories"
1143 }
1144 run_test 24y "rename/link on the same dir should succeed"
1145
1146 test_24A() { # LU-3182
1147         local NFILES=5000
1148
1149         rm -rf $DIR/$tdir
1150         test_mkdir -p $DIR/$tdir
1151         createmany -m $DIR/$tdir/$tfile $NFILES
1152         local t=$(ls $DIR/$tdir | wc -l)
1153         local u=$(ls $DIR/$tdir | sort -u | wc -l)
1154         local v=$(ls -ai $DIR/$tdir | sort -u | wc -l)
1155         if [ $t -ne $NFILES -o $u -ne $NFILES -o $v -ne $((NFILES + 2)) ] ; then
1156                 error "Expected $NFILES files, got $t ($u unique $v .&..)"
1157         fi
1158
1159         rm -rf $DIR/$tdir || error "Can not delete directories"
1160 }
1161 run_test 24A "readdir() returns correct number of entries."
1162
1163 test_24B() { # LU-4805
1164         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
1165         local count
1166
1167         test_mkdir $DIR/$tdir
1168         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir ||
1169                 error "create striped dir failed"
1170
1171         count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1172         [ $count -eq 2 ] || error "Expected 2, got $count"
1173
1174         touch $DIR/$tdir/striped_dir/a
1175
1176         count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1177         [ $count -eq 3 ] || error "Expected 3, got $count"
1178
1179         touch $DIR/$tdir/striped_dir/.f
1180
1181         count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1182         [ $count -eq 4 ] || error "Expected 4, got $count"
1183
1184         rm -rf $DIR/$tdir || error "Can not delete directories"
1185 }
1186 run_test 24B "readdir for striped dir return correct number of entries"
1187
1188 test_24C() {
1189         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
1190
1191         mkdir $DIR/$tdir
1192         mkdir $DIR/$tdir/d0
1193         mkdir $DIR/$tdir/d1
1194
1195         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/d0/striped_dir ||
1196                 error "create striped dir failed"
1197
1198         cd $DIR/$tdir/d0/striped_dir
1199
1200         local d0_ino=$(ls -i -l -a $DIR/$tdir | grep "d0" | awk '{print $1}')
1201         local d1_ino=$(ls -i -l -a $DIR/$tdir | grep "d1" | awk '{print $1}')
1202         local parent_ino=$(ls -i -l -a | grep "\.\." | awk '{print $1}')
1203
1204         [ "$d0_ino" = "$parent_ino" ] ||
1205                 error ".. wrong, expect $d0_ino, get $parent_ino"
1206
1207         mv $DIR/$tdir/d0/striped_dir $DIR/$tdir/d1/ ||
1208                 error "mv striped dir failed"
1209
1210         parent_ino=$(ls -i -l -a | grep "\.\." | awk '{print $1}')
1211
1212         [ "$d1_ino" = "$parent_ino" ] ||
1213                 error ".. wrong after mv, expect $d1_ino, get $parent_ino"
1214 }
1215 run_test 24C "check .. in striped dir"
1216
1217 test_24D() { # LU-6101
1218         local NFILES=50000
1219
1220         rm -rf $DIR/$tdir
1221         mkdir -p $DIR/$tdir
1222         createmany -m $DIR/$tdir/$tfile $NFILES
1223         local t=$(ls $DIR/$tdir | wc -l)
1224         local u=$(ls $DIR/$tdir | sort -u | wc -l)
1225         local v=$(ls -ai $DIR/$tdir | sort -u | wc -l)
1226         if [ $t -ne $NFILES -o $u -ne $NFILES -o $v -ne $((NFILES + 2)) ] ; then
1227                 error "Expected $NFILES files, got $t ($u unique $v .&..)"
1228         fi
1229
1230         rm -rf $DIR/$tdir || error "Can not delete directories"
1231 }
1232 run_test 24D "readdir() returns correct number of entries after cursor reload"
1233
1234 test_24E() {
1235         [[ $MDSCOUNT -lt 4 ]] && skip "needs >= 4 MDTs" && return
1236         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1237
1238         mkdir -p $DIR/$tdir
1239         mkdir $DIR/$tdir/src_dir
1240         $LFS mkdir -i 1 $DIR/$tdir/src_dir/src_child ||
1241                 error "create remote source failed"
1242
1243         touch $DIR/$tdir/src_dir/src_child/a
1244
1245         $LFS mkdir -i 2 $DIR/$tdir/tgt_dir ||
1246                 error "create remote target dir failed"
1247
1248         $LFS mkdir -i 3 $DIR/$tdir/tgt_dir/tgt_child ||
1249                 error "create remote target child failed"
1250
1251         mrename $DIR/$tdir/src_dir/src_child $DIR/$tdir/tgt_dir/tgt_child ||
1252                 error "rename dir cross MDT failed!"
1253
1254         find $DIR/$tdir
1255
1256         $CHECKSTAT -t dir $DIR/$tdir/src_dir/src_child &&
1257                 error "src_child still exists after rename"
1258
1259         $CHECKSTAT -t file $DIR/$tdir/tgt_dir/tgt_child/a ||
1260                 error "missing file(a) after rename"
1261
1262         rm -rf $DIR/$tdir || error "Can not delete directories"
1263 }
1264 run_test 24E "cross MDT rename/link"
1265
1266 test_25a() {
1267         echo '== symlink sanity ============================================='
1268
1269         test_mkdir $DIR/d25
1270         ln -s d25 $DIR/s25
1271         touch $DIR/s25/foo || error
1272 }
1273 run_test 25a "create file in symlinked directory ==============="
1274
1275 test_25b() {
1276         [ ! -d $DIR/d25 ] && test_25a
1277         $CHECKSTAT -t file $DIR/s25/foo || error
1278 }
1279 run_test 25b "lookup file in symlinked directory ==============="
1280
1281 test_26a() {
1282         test_mkdir $DIR/d26
1283         test_mkdir $DIR/d26/d26-2
1284         ln -s d26/d26-2 $DIR/s26
1285         touch $DIR/s26/foo || error
1286 }
1287 run_test 26a "multiple component symlink ======================="
1288
1289 test_26b() {
1290         test_mkdir -p $DIR/d26b/d26-2
1291         ln -s d26b/d26-2/foo $DIR/s26-2
1292         touch $DIR/s26-2 || error
1293 }
1294 run_test 26b "multiple component symlink at end of lookup ======"
1295
1296 test_26c() {
1297         test_mkdir $DIR/d26.2
1298         touch $DIR/d26.2/foo
1299         ln -s d26.2 $DIR/s26.2-1
1300         ln -s s26.2-1 $DIR/s26.2-2
1301         ln -s s26.2-2 $DIR/s26.2-3
1302         chmod 0666 $DIR/s26.2-3/foo
1303 }
1304 run_test 26c "chain of symlinks ================================"
1305
1306 # recursive symlinks (bug 439)
1307 test_26d() {
1308         ln -s d26-3/foo $DIR/d26-3
1309 }
1310 run_test 26d "create multiple component recursive symlink ======"
1311
1312 test_26e() {
1313         [ ! -h $DIR/d26-3 ] && test_26d
1314         rm $DIR/d26-3
1315 }
1316 run_test 26e "unlink multiple component recursive symlink ======"
1317
1318 # recursive symlinks (bug 7022)
1319 test_26f() {
1320         test_mkdir -p $DIR/$tdir
1321         test_mkdir $DIR/$tdir/$tfile   || error "mkdir $DIR/$tdir/$tfile failed"
1322         cd $DIR/$tdir/$tfile           || error "cd $DIR/$tdir/$tfile failed"
1323         test_mkdir -p lndir/bar1      || error "mkdir lndir/bar1 failed"
1324         test_mkdir $DIR/$tdir/$tfile/$tfile   || error "mkdir $tfile failed"
1325         cd $tfile                || error "cd $tfile failed"
1326         ln -s .. dotdot          || error "ln dotdot failed"
1327         ln -s dotdot/lndir lndir || error "ln lndir failed"
1328         cd $DIR/$tdir                 || error "cd $DIR/$tdir failed"
1329         output=`ls $tfile/$tfile/lndir/bar1`
1330         [ "$output" = bar1 ] && error "unexpected output"
1331         rm -r $tfile             || error "rm $tfile failed"
1332         $CHECKSTAT -a $DIR/$tfile || error "$tfile not gone"
1333 }
1334 run_test 26f "rm -r of a directory which has recursive symlink ="
1335
1336 test_27a() {
1337         echo '== stripe sanity =============================================='
1338         test_mkdir -p $DIR/d27 || error "mkdir failed"
1339         $GETSTRIPE $DIR/d27
1340         $SETSTRIPE -c 1 $DIR/d27/f0 || error "setstripe failed"
1341         $CHECKSTAT -t file $DIR/d27/f0 || error "checkstat failed"
1342         log "== test_27a: write to one stripe file ========================="
1343         cp /etc/hosts $DIR/d27/f0 || error
1344 }
1345 run_test 27a "one stripe file =================================="
1346
1347 test_27b() {
1348         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping 2-stripe test" && return
1349         test_mkdir -p $DIR/d27
1350         $SETSTRIPE -c 2 $DIR/d27/f01 || error "setstripe failed"
1351         $GETSTRIPE -c $DIR/d27/f01
1352         [ $($GETSTRIPE -c $DIR/d27/f01) -eq 2 ] ||
1353                 error "two-stripe file doesn't have two stripes"
1354
1355         dd if=/dev/zero of=$DIR/d27/f01 bs=4k count=4 || error "dd failed"
1356 }
1357 run_test 27b "create and write to two stripe file"
1358
1359 test_27d() {
1360         test_mkdir -p $DIR/d27
1361         $SETSTRIPE -c 0 -i -1 -S 0 $DIR/d27/fdef || error "setstripe failed"
1362         $CHECKSTAT -t file $DIR/d27/fdef || error "checkstat failed"
1363         dd if=/dev/zero of=$DIR/d27/fdef bs=4k count=4 || error
1364 }
1365 run_test 27d "create file with default settings ================"
1366
1367 test_27e() {
1368         # LU-5839 adds check for existed layout before setting it
1369         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.56) ]] &&
1370                 skip "Need MDS version at least 2.7.56" && return
1371         test_mkdir -p $DIR/d27
1372         $SETSTRIPE -c 2 $DIR/d27/f12 || error "setstripe failed"
1373         $SETSTRIPE -c 2 $DIR/d27/f12 && error "setstripe succeeded twice"
1374         $CHECKSTAT -t file $DIR/d27/f12 || error "checkstat failed"
1375 }
1376 run_test 27e "setstripe existing file (should return error) ======"
1377
1378 test_27f() {
1379         test_mkdir $DIR/$tdir
1380         $SETSTRIPE -S 100 -i 0 -c 1 $DIR/$tdir/$tfile &&
1381                 error "$SETSTRIPE $DIR/$tdir/$tfile failed"
1382         $CHECKSTAT -t file $DIR/$tdir/$tfile &&
1383                 error "$CHECKSTAT -t file $DIR/$tdir/$tfile should fail"
1384         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=4k count=4 || error "dd failed"
1385         $GETSTRIPE $DIR/$tdir/$tfile || error "$GETSTRIPE failed"
1386 }
1387 run_test 27f "setstripe with bad stripe size (should return error)"
1388
1389 test_27g() {
1390         test_mkdir -p $DIR/d27
1391         $MCREATE $DIR/d27/fnone || error "mcreate failed"
1392         $GETSTRIPE $DIR/d27/fnone 2>&1 | grep "no stripe info" ||
1393                 error "$DIR/d27/fnone has object"
1394 }
1395 run_test 27g "$GETSTRIPE with no objects"
1396
1397 test_27i() {
1398         test_mkdir $DIR/$tdir
1399         touch $DIR/$tdir/$tfile || error "touch failed"
1400         [[ $($GETSTRIPE -c $DIR/$tdir/$tfile) -gt 0 ]] ||
1401                 error "missing objects"
1402 }
1403 run_test 27i "$GETSTRIPE with some objects"
1404
1405 test_27j() {
1406         test_mkdir -p $DIR/d27
1407         $SETSTRIPE -i $OSTCOUNT $DIR/d27/f27j && error "setstripe failed"||true
1408 }
1409 run_test 27j "setstripe with bad stripe offset (should return error)"
1410
1411 test_27k() { # bug 2844
1412         test_mkdir -p $DIR/d27
1413         FILE=$DIR/d27/f27k
1414         LL_MAX_BLKSIZE=$((4 * 1024 * 1024))
1415         [ ! -d $DIR/d27 ] && test_mkdir -p $DIR d27
1416         $SETSTRIPE -S 67108864 $FILE || error "setstripe failed"
1417         BLKSIZE=`stat $FILE | awk '/IO Block:/ { print $7 }'`
1418         [ $BLKSIZE -le $LL_MAX_BLKSIZE ] || error "1:$BLKSIZE > $LL_MAX_BLKSIZE"
1419         dd if=/dev/zero of=$FILE bs=4k count=1
1420         BLKSIZE=`stat $FILE | awk '/IO Block:/ { print $7 }'`
1421         [ $BLKSIZE -le $LL_MAX_BLKSIZE ] || error "2:$BLKSIZE > $LL_MAX_BLKSIZE"
1422 }
1423 run_test 27k "limit i_blksize for broken user apps ============="
1424
1425 test_27l() {
1426         test_mkdir -p $DIR/d27
1427         mcreate $DIR/f27l || error "creating file"
1428         $RUNAS $SETSTRIPE -c 1 $DIR/f27l && \
1429                 error "setstripe should have failed" || true
1430 }
1431 run_test 27l "check setstripe permissions (should return error)"
1432
1433 test_27m() {
1434         [[ $OSTCOUNT -lt 2 ]] && skip_env "$OSTCOUNT < 2 OSTs -- skipping" &&
1435                 return
1436
1437         ORIGFREE=$($LCTL get_param -n lov.$FSNAME-clilov-*.kbytesavail |
1438                    head -n1)
1439         if [[ $ORIGFREE -gt $MAXFREE ]]; then
1440                 skip "$ORIGFREE > $MAXFREE skipping out-of-space test on OST0"
1441                 return
1442         fi
1443         trap simple_cleanup_common EXIT
1444         test_mkdir -p $DIR/$tdir
1445         $SETSTRIPE -i 0 -c 1 $DIR/$tdir/f27m_1
1446         dd if=/dev/zero of=$DIR/$tdir/f27m_1 bs=1024 count=$MAXFREE &&
1447                 error "dd should fill OST0"
1448         i=2
1449         while $SETSTRIPE -i 0 -c 1 $DIR/$tdir/f27m_$i; do
1450                 i=$((i + 1))
1451                 [ $i -gt 256 ] && break
1452         done
1453         i=$((i + 1))
1454         touch $DIR/$tdir/f27m_$i
1455         [ `$GETSTRIPE $DIR/$tdir/f27m_$i | grep -A 10 obdidx | awk '{print $1}'| grep -w "0"` ] &&
1456                 error "OST0 was full but new created file still use it"
1457         i=$((i + 1))
1458         touch $DIR/$tdir/f27m_$i
1459         [ `$GETSTRIPE $DIR/$tdir/f27m_$i | grep -A 10 obdidx | awk '{print $1}'| grep -w "0"` ] &&
1460                 error "OST0 was full but new created file still use it"
1461         simple_cleanup_common
1462 }
1463 run_test 27m "create file while OST0 was full =================="
1464
1465 sleep_maxage() {
1466         local DELAY=$(do_facet $SINGLEMDS lctl get_param -n lov.*.qos_maxage | head -n 1 | awk '{print $1 * 2}')
1467         sleep $DELAY
1468 }
1469
1470 # OSCs keep a NOSPC flag that will be reset after ~5s (qos_maxage)
1471 # if the OST isn't full anymore.
1472 reset_enospc() {
1473         local OSTIDX=${1:-""}
1474
1475         local list=$(comma_list $(osts_nodes))
1476         [ "$OSTIDX" ] && list=$(facet_host ost$((OSTIDX + 1)))
1477
1478         do_nodes $list lctl set_param fail_loc=0
1479         sync    # initiate all OST_DESTROYs from MDS to OST
1480         sleep_maxage
1481 }
1482
1483 exhaust_precreations() {
1484         local OSTIDX=$1
1485         local FAILLOC=$2
1486         local FAILIDX=${3:-$OSTIDX}
1487         local ofacet=ost$((OSTIDX + 1))
1488
1489         test_mkdir -p -c1 $DIR/$tdir
1490         local mdtidx=$($LFS getstripe -M $DIR/$tdir)
1491         local mfacet=mds$((mdtidx + 1))
1492         echo OSTIDX=$OSTIDX MDTIDX=$mdtidx
1493
1494         local OST=$(ostname_from_index $OSTIDX)
1495
1496         # on the mdt's osc
1497         local mdtosc_proc1=$(get_mdtosc_proc_path $mfacet $OST)
1498         local last_id=$(do_facet $mfacet lctl get_param -n \
1499                         osc.$mdtosc_proc1.prealloc_last_id)
1500         local next_id=$(do_facet $mfacet lctl get_param -n \
1501                         osc.$mdtosc_proc1.prealloc_next_id)
1502
1503         local mdtosc_proc2=$(get_mdtosc_proc_path $mfacet)
1504         do_facet $mfacet lctl get_param osc.$mdtosc_proc2.prealloc*
1505
1506         test_mkdir -p $DIR/$tdir/${OST}
1507         $SETSTRIPE -i $OSTIDX -c 1 $DIR/$tdir/${OST}
1508 #define OBD_FAIL_OST_ENOSPC              0x215
1509         do_facet $ofacet lctl set_param fail_val=$FAILIDX fail_loc=0x215
1510         echo "Creating to objid $last_id on ost $OST..."
1511         createmany -o $DIR/$tdir/${OST}/f $next_id $((last_id - next_id + 2))
1512         do_facet $mfacet lctl get_param osc.$mdtosc_proc2.prealloc*
1513         do_facet $ofacet lctl set_param fail_loc=$FAILLOC
1514         sleep_maxage
1515 }
1516
1517 exhaust_all_precreations() {
1518         local i
1519         for (( i=0; i < OSTCOUNT; i++ )) ; do
1520                 exhaust_precreations $i $1 -1
1521         done
1522 }
1523
1524 test_27n() {
1525         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
1526         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1527         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1528         remote_ost_nodsh && skip "remote OST with nodsh" && return
1529
1530         reset_enospc
1531         rm -f $DIR/$tdir/$tfile
1532         exhaust_precreations 0 0x80000215
1533         $SETSTRIPE -c -1 $DIR/$tdir
1534         touch $DIR/$tdir/$tfile || error
1535         $GETSTRIPE $DIR/$tdir/$tfile
1536         reset_enospc
1537 }
1538 run_test 27n "create file with some full OSTs =================="
1539
1540 test_27o() {
1541         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
1542         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1543         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1544         remote_ost_nodsh && skip "remote OST with nodsh" && return
1545
1546         reset_enospc
1547         rm -f $DIR/$tdir/$tfile
1548         exhaust_all_precreations 0x215
1549
1550         touch $DIR/$tdir/$tfile && error "able to create $DIR/$tdir/$tfile"
1551
1552         reset_enospc
1553         rm -rf $DIR/$tdir/*
1554 }
1555 run_test 27o "create file with all full OSTs (should error) ===="
1556
1557 test_27p() {
1558         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
1559         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1560         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1561         remote_ost_nodsh && skip "remote OST with nodsh" && return
1562
1563         reset_enospc
1564         rm -f $DIR/$tdir/$tfile
1565         test_mkdir -p $DIR/$tdir
1566
1567         $MCREATE $DIR/$tdir/$tfile || error "mcreate failed"
1568         $TRUNCATE $DIR/$tdir/$tfile 80000000 || error "truncate failed"
1569         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1570
1571         exhaust_precreations 0 0x80000215
1572         echo foo >> $DIR/$tdir/$tfile || error "append failed"
1573         $CHECKSTAT -s 80000004 $DIR/$tdir/$tfile || error "checkstat failed"
1574         $GETSTRIPE $DIR/$tdir/$tfile
1575
1576         reset_enospc
1577 }
1578 run_test 27p "append to a truncated file with some full OSTs ==="
1579
1580 test_27q() {
1581         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
1582         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1583         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1584         remote_ost_nodsh && skip "remote OST with nodsh" && return
1585
1586         reset_enospc
1587         rm -f $DIR/$tdir/$tfile
1588
1589         test_mkdir -p $DIR/$tdir
1590         $MCREATE $DIR/$tdir/$tfile || error "mcreate $DIR/$tdir/$tfile failed"
1591         $TRUNCATE $DIR/$tdir/$tfile 80000000 ||error "truncate $DIR/$tdir/$tfile failed"
1592         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1593
1594         exhaust_all_precreations 0x215
1595
1596         echo foo >> $DIR/$tdir/$tfile && error "append succeeded"
1597         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat 2 failed"
1598
1599         reset_enospc
1600 }
1601 run_test 27q "append to truncated file with all OSTs full (should error) ==="
1602
1603 test_27r() {
1604         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
1605         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1606         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1607         remote_ost_nodsh && skip "remote OST with nodsh" && return
1608
1609         reset_enospc
1610         rm -f $DIR/$tdir/$tfile
1611         exhaust_precreations 0 0x80000215
1612
1613         $SETSTRIPE -i 0 -c 2 $DIR/$tdir/$tfile # && error
1614
1615         reset_enospc
1616 }
1617 run_test 27r "stripe file with some full OSTs (shouldn't LBUG) ="
1618
1619 test_27s() { # bug 10725
1620         test_mkdir -p $DIR/$tdir
1621         local stripe_size=$((4096 * 1024 * 1024))       # 2^32
1622         local stripe_count=0
1623         [ $OSTCOUNT -eq 1 ] || stripe_count=2
1624         $SETSTRIPE -S $stripe_size -c $stripe_count $DIR/$tdir &&
1625                 error "stripe width >= 2^32 succeeded" || true
1626
1627 }
1628 run_test 27s "lsm_xfersize overflow (should error) (bug 10725)"
1629
1630 test_27t() { # bug 10864
1631         WDIR=$(pwd)
1632         WLFS=$(which lfs)
1633         cd $DIR
1634         touch $tfile
1635         $WLFS getstripe $tfile
1636         cd $WDIR
1637 }
1638 run_test 27t "check that utils parse path correctly"
1639
1640 test_27u() { # bug 4900
1641         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
1642         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1643         local index
1644         local list=$(comma_list $(mdts_nodes))
1645
1646 #define OBD_FAIL_MDS_OSC_PRECREATE      0x139
1647         do_nodes $list $LCTL set_param fail_loc=0x139
1648         test_mkdir -p $DIR/$tdir
1649         rm -rf $DIR/$tdir/*
1650         createmany -o $DIR/$tdir/t- 1000
1651         do_nodes $list $LCTL set_param fail_loc=0
1652
1653         TLOG=$DIR/$tfile.getstripe
1654         $GETSTRIPE $DIR/$tdir > $TLOG
1655         OBJS=$(awk -vobj=0 '($1 == 0) { obj += 1 } END { print obj; }' $TLOG)
1656         unlinkmany $DIR/$tdir/t- 1000
1657         [[ $OBJS -gt 0 ]] &&
1658                 error "$OBJS objects created on OST-0. See $TLOG" || pass
1659 }
1660 run_test 27u "skip object creation on OSC w/o objects =========="
1661
1662 test_27v() { # bug 4900
1663         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
1664         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1665         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1666         remote_ost_nodsh && skip "remote OST with nodsh" && return
1667
1668         exhaust_all_precreations 0x215
1669         reset_enospc
1670
1671         test_mkdir -p $DIR/$tdir
1672         $SETSTRIPE -c 1 $DIR/$tdir         # 1 stripe / file
1673
1674         touch $DIR/$tdir/$tfile
1675         #define OBD_FAIL_TGT_DELAY_PRECREATE     0x705
1676         # all except ost1
1677         for (( i=1; i < OSTCOUNT; i++ )); do
1678                 do_facet ost$i lctl set_param fail_loc=0x705
1679         done
1680         local START=`date +%s`
1681         createmany -o $DIR/$tdir/$tfile 32
1682
1683         local FINISH=`date +%s`
1684         local TIMEOUT=`lctl get_param -n timeout`
1685         local PROCESS=$((FINISH - START))
1686         [ $PROCESS -ge $((TIMEOUT / 2)) ] && \
1687                error "$FINISH - $START >= $TIMEOUT / 2"
1688         sleep $((TIMEOUT / 2 - PROCESS))
1689         reset_enospc
1690 }
1691 run_test 27v "skip object creation on slow OST ================="
1692
1693 test_27w() { # bug 10997
1694         test_mkdir -p $DIR/$tdir || error "mkdir failed"
1695         $SETSTRIPE -S 65536 $DIR/$tdir/f0 || error "setstripe failed"
1696         [ $($GETSTRIPE -S $DIR/$tdir/f0) -ne 65536 ] &&
1697                 error "stripe size $size != 65536" || true
1698         [ $($GETSTRIPE -d $DIR/$tdir | grep -c "stripe_count") -ne 1 ] &&
1699                 error "$GETSTRIPE -d $DIR/$tdir failed" || true
1700 }
1701 run_test 27w "check $SETSTRIPE -S option"
1702
1703 test_27wa() {
1704         [[ $OSTCOUNT -lt 2 ]] &&
1705                 skip_env "skipping multiple stripe count/offset test" && return
1706
1707         test_mkdir -p $DIR/$tdir || error "mkdir failed"
1708         for i in $(seq 1 $OSTCOUNT); do
1709                 offset=$((i - 1))
1710                 $SETSTRIPE -c $i -i $offset $DIR/$tdir/f$i ||
1711                         error "setstripe -c $i -i $offset failed"
1712                 count=$($GETSTRIPE -c $DIR/$tdir/f$i)
1713                 index=$($GETSTRIPE -i $DIR/$tdir/f$i)
1714                 [ $count -ne $i ] && error "stripe count $count != $i" || true
1715                 [ $index -ne $offset ] &&
1716                         error "stripe offset $index != $offset" || true
1717         done
1718 }
1719 run_test 27wa "check $SETSTRIPE -c -i options"
1720
1721 test_27x() {
1722         remote_ost_nodsh && skip "remote OST with nodsh" && return
1723         [[ $OSTCOUNT -lt 2 ]] && skip_env "$OSTCOUNT < 2 OSTs" && return
1724         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1725         OFFSET=$(($OSTCOUNT - 1))
1726         OSTIDX=0
1727         local OST=$(ostname_from_index $OSTIDX)
1728
1729         test_mkdir -p $DIR/$tdir
1730         $SETSTRIPE -c 1 $DIR/$tdir      # 1 stripe per file
1731         do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 1
1732         sleep_maxage
1733         createmany -o $DIR/$tdir/$tfile $OSTCOUNT
1734         for i in `seq 0 $OFFSET`; do
1735                 [ `$GETSTRIPE $DIR/$tdir/$tfile$i | grep -A 10 obdidx | awk '{print $1}' | grep -w "$OSTIDX"` ] &&
1736                 error "OST0 was degraded but new created file still use it"
1737         done
1738         do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 0
1739 }
1740 run_test 27x "create files while OST0 is degraded"
1741
1742 test_27y() {
1743         [[ $OSTCOUNT -lt 2 ]] &&
1744                 skip_env "$OSTCOUNT < 2 OSTs -- skipping" && return
1745         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1746         remote_ost_nodsh && skip "remote OST with nodsh" && return
1747         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1748
1749         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS $FSNAME-OST0000)
1750         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
1751             osc.$mdtosc.prealloc_last_id)
1752         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
1753             osc.$mdtosc.prealloc_next_id)
1754         local fcount=$((last_id - next_id))
1755         [[ $fcount -eq 0 ]] && skip "not enough space on OST0" && return
1756         [[ $fcount -gt $OSTCOUNT ]] && fcount=$OSTCOUNT
1757
1758         local MDS_OSCS=$(do_facet $SINGLEMDS lctl dl |
1759                          awk '/[oO][sS][cC].*md[ts]/ { print $4 }')
1760         local OST_DEACTIVE_IDX=-1
1761         local OSC
1762         local OSTIDX
1763         local OST
1764
1765         for OSC in $MDS_OSCS; do
1766                 OST=$(osc_to_ost $OSC)
1767                 OSTIDX=$(index_from_ostuuid $OST)
1768                 if [ $OST_DEACTIVE_IDX == -1 ]; then
1769                         OST_DEACTIVE_IDX=$OSTIDX
1770                 fi
1771                 if [ $OSTIDX != $OST_DEACTIVE_IDX ]; then
1772                         echo $OSC "is Deactivated:"
1773                         do_facet $SINGLEMDS lctl --device  %$OSC deactivate
1774                 fi
1775         done
1776
1777         OSTIDX=$(index_from_ostuuid $OST)
1778         test_mkdir -p $DIR/$tdir
1779         $SETSTRIPE -c 1 $DIR/$tdir      # 1 stripe / file
1780
1781         for OSC in $MDS_OSCS; do
1782                 OST=$(osc_to_ost $OSC)
1783                 OSTIDX=$(index_from_ostuuid $OST)
1784                 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
1785                         echo $OST "is degraded:"
1786                         do_facet ost$((OSTIDX+1)) lctl set_param -n \
1787                                                 obdfilter.$OST.degraded=1
1788                 fi
1789         done
1790
1791         sleep_maxage
1792         createmany -o $DIR/$tdir/$tfile $fcount
1793
1794         for OSC in $MDS_OSCS; do
1795                 OST=$(osc_to_ost $OSC)
1796                 OSTIDX=$(index_from_ostuuid $OST)
1797                 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
1798                         echo $OST "is recovered from degraded:"
1799                         do_facet ost$((OSTIDX+1)) lctl set_param -n \
1800                                                 obdfilter.$OST.degraded=0
1801                 else
1802                         do_facet $SINGLEMDS lctl --device %$OSC activate
1803                 fi
1804         done
1805
1806         # all osp devices get activated, hence -1 stripe count restored
1807         local stripecnt=0
1808
1809         # sleep 2*lod_qos_maxage seconds waiting for lod qos to notice osp
1810         # devices get activated.
1811         sleep_maxage
1812         $SETSTRIPE -c -1 $DIR/$tfile
1813         stripecnt=$($GETSTRIPE -c $DIR/$tfile)
1814         rm -f $DIR/$tfile
1815         [ $stripecnt -ne $OSTCOUNT ] &&
1816                 error "Of $OSTCOUNT OSTs, only $stripecnt is available"
1817         return 0
1818 }
1819 run_test 27y "create files while OST0 is degraded and the rest inactive"
1820
1821 check_seq_oid()
1822 {
1823         log "check file $1"
1824
1825         lmm_count=$($GETSTRIPE -c $1)
1826         lmm_seq=$($GETSTRIPE -v $1 | awk '/lmm_seq/ { print $2 }')
1827         lmm_oid=$($GETSTRIPE -v $1 | awk '/lmm_object_id/ { print $2 }')
1828
1829         local old_ifs="$IFS"
1830         IFS=$'[:]'
1831         fid=($($LFS path2fid $1))
1832         IFS="$old_ifs"
1833
1834         log "FID seq ${fid[1]}, oid ${fid[2]} ver ${fid[3]}"
1835         log "LOV seq $lmm_seq, oid $lmm_oid, count: $lmm_count"
1836
1837         # compare lmm_seq and lu_fid->f_seq
1838         [ $lmm_seq = ${fid[1]} ] || { error "SEQ mismatch"; return 1; }
1839         # compare lmm_object_id and lu_fid->oid
1840         [ $lmm_oid = ${fid[2]} ] || { error "OID mismatch"; return 2; }
1841
1842         # check the trusted.fid attribute of the OST objects of the file
1843         local have_obdidx=false
1844         local stripe_nr=0
1845         $GETSTRIPE $1 | while read obdidx oid hex seq; do
1846                 # skip lines up to and including "obdidx"
1847                 [ -z "$obdidx" ] && break
1848                 [ "$obdidx" = "obdidx" ] && have_obdidx=true && continue
1849                 $have_obdidx || continue
1850
1851                 local ost=$((obdidx + 1))
1852                 local dev=$(ostdevname $ost)
1853                 local oid_hex
1854
1855                 log "want: stripe:$stripe_nr ost:$obdidx oid:$oid/$hex seq:$seq"
1856
1857                 seq=$(echo $seq | sed -e "s/^0x//g")
1858                 if [ $seq == 0 ] || [ $(facet_fstype ost$ost) == zfs ]; then
1859                         oid_hex=$(echo $oid)
1860                 else
1861                         oid_hex=$(echo $hex | sed -e "s/^0x//g")
1862                 fi
1863                 local obj_file="O/$seq/d$((oid %32))/$oid_hex"
1864
1865                 local ff
1866                 #
1867                 # Don't unmount/remount the OSTs if we don't need to do that.
1868                 # LU-2577 changes filter_fid to be smaller, so debugfs needs
1869                 # update too, until that use mount/ll_decode_filter_fid/mount.
1870                 # Re-enable when debugfs will understand new filter_fid.
1871                 #
1872                 if false && [ $(facet_fstype ost$ost) == ldiskfs ]; then
1873                         ff=$(do_facet ost$ost "$DEBUGFS -c -R 'stat $obj_file' \
1874                                 $dev 2>/dev/null" | grep "parent=")
1875                 else
1876                         stop ost$ost
1877                         mount_fstype ost$ost
1878                         ff=$(do_facet ost$ost $LL_DECODE_FILTER_FID \
1879                                 $(facet_mntpt ost$ost)/$obj_file)
1880                         unmount_fstype ost$ost
1881                         start ost$ost $dev $OST_MOUNT_OPTS
1882                         clients_up
1883                 fi
1884
1885                 [ -z "$ff" ] && error "$obj_file: no filter_fid info"
1886
1887                 echo "$ff" | sed -e 's#.*objid=#got: objid=#'
1888
1889                 # /mnt/O/0/d23/23: objid=23 seq=0 parent=[0x200000400:0x1e:0x1]
1890                 # fid: objid=23 seq=0 parent=[0x200000400:0x1e:0x0] stripe=1
1891                 local ff_parent=$(echo $ff|sed -e 's/.*parent=.//')
1892                 local ff_pseq=$(echo $ff_parent | cut -d: -f1)
1893                 local ff_poid=$(echo $ff_parent | cut -d: -f2)
1894                 local ff_pstripe
1895                 if echo $ff_parent | grep -q 'stripe='; then
1896                         ff_pstripe=$(echo $ff_parent | sed -e 's/.*stripe=//')
1897                 else
1898                         #
1899                         # $LL_DECODE_FILTER_FID does not print "stripe="; look
1900                         # into f_ver in this case.  See the comment on
1901                         # ff_parent.
1902                         #
1903                         ff_pstripe=$(echo $ff_parent | cut -d: -f3 |
1904                                 sed -e 's/\]//')
1905                 fi
1906
1907                 # compare lmm_seq and filter_fid->ff_parent.f_seq
1908                 [ $ff_pseq = $lmm_seq ] ||
1909                         error "FF parent SEQ $ff_pseq != $lmm_seq"
1910                 # compare lmm_object_id and filter_fid->ff_parent.f_oid
1911                 [ $ff_poid = $lmm_oid ] ||
1912                         error "FF parent OID $ff_poid != $lmm_oid"
1913                 (($ff_pstripe == $stripe_nr)) ||
1914                         error "FF stripe $ff_pstripe != $stripe_nr"
1915
1916                 stripe_nr=$((stripe_nr + 1))
1917         done
1918 }
1919
1920 test_27z() {
1921         remote_ost_nodsh && skip "remote OST with nodsh" && return
1922         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1923         test_mkdir -p $DIR/$tdir
1924
1925         $SETSTRIPE -c 1 -i 0 -S 64k $DIR/$tdir/$tfile-1 ||
1926                 { error "setstripe -c -1 failed"; return 1; }
1927         # We need to send a write to every object to get parent FID info set.
1928         # This _should_ also work for setattr, but does not currently.
1929         # touch $DIR/$tdir/$tfile-1 ||
1930         dd if=/dev/zero of=$DIR/$tdir/$tfile-1 bs=1M count=1 ||
1931                 { error "dd $tfile-1 failed"; return 2; }
1932         $SETSTRIPE -c -1 -i $((OSTCOUNT - 1)) -S 1M $DIR/$tdir/$tfile-2 ||
1933                 { error "setstripe -c -1 failed"; return 3; }
1934         dd if=/dev/zero of=$DIR/$tdir/$tfile-2 bs=1M count=$OSTCOUNT ||
1935                 { error "dd $tfile-2 failed"; return 4; }
1936
1937         # make sure write RPCs have been sent to OSTs
1938         sync; sleep 5; sync
1939
1940         check_seq_oid $DIR/$tdir/$tfile-1 || return 5
1941         check_seq_oid $DIR/$tdir/$tfile-2 || return 6
1942 }
1943 run_test 27z "check SEQ/OID on the MDT and OST filesystems"
1944
1945 test_27A() { # b=19102
1946         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1947         local restore_size=$($GETSTRIPE -S $MOUNT)
1948         local restore_count=$($GETSTRIPE -c $MOUNT)
1949         local restore_offset=$($GETSTRIPE -i $MOUNT)
1950         $SETSTRIPE -c 0 -i -1 -S 0 $MOUNT
1951         wait_update $HOSTNAME "$GETSTRIPE -c $MOUNT | sed 's/  *//g'" "1" 20 ||
1952                 error "stripe count $($GETSTRIPE -c $MOUNT) != 1"
1953         local default_size=$($GETSTRIPE -S $MOUNT)
1954         local default_offset=$($GETSTRIPE -i $MOUNT)
1955         local dsize=$((1024 * 1024))
1956         [ $default_size -eq $dsize ] ||
1957                 error "stripe size $default_size != $dsize"
1958         [ $default_offset -eq -1 ] ||error "stripe offset $default_offset != -1"
1959         $SETSTRIPE -c $restore_count -i $restore_offset -S $restore_size $MOUNT
1960 }
1961 run_test 27A "check filesystem-wide default LOV EA values"
1962
1963 test_27B() { # LU-2523
1964         test_mkdir -p $DIR/$tdir
1965         rm -f $DIR/$tdir/f0 $DIR/$tdir/f1
1966         touch $DIR/$tdir/f0
1967         # open f1 with O_LOV_DELAY_CREATE
1968         # rename f0 onto f1
1969         # call setstripe ioctl on open file descriptor for f1
1970         # close
1971         multiop $DIR/$tdir/f1 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:nB1c \
1972                 $DIR/$tdir/f0
1973
1974         rm -f $DIR/$tdir/f1
1975         # open f1 with O_LOV_DELAY_CREATE
1976         # unlink f1
1977         # call setstripe ioctl on open file descriptor for f1
1978         # close
1979         multiop $DIR/$tdir/f1 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:uB1c
1980
1981         # Allow multiop to fail in imitation of NFS's busted semantics.
1982         true
1983 }
1984 run_test 27B "call setstripe on open unlinked file/rename victim"
1985
1986 test_27C() { #LU-2871
1987         [[ $OSTCOUNT -lt 2 ]] && skip "needs >= 2 OSTs" && return
1988
1989         declare -a ost_idx
1990         local index
1991         local found
1992         local i
1993         local j
1994
1995         test_mkdir -p $DIR/$tdir
1996         cd $DIR/$tdir
1997         for i in $(seq 0 $((OSTCOUNT - 1))); do
1998                 # set stripe across all OSTs starting from OST$i
1999                 $SETSTRIPE -i $i -c -1 $tfile$i
2000                 # get striping information
2001                 ost_idx=($($GETSTRIPE $tfile$i |
2002                          tail -n $((OSTCOUNT + 1)) | awk '{print $1}'))
2003                 echo ${ost_idx[@]}
2004
2005                 # check the layout
2006                 [ ${#ost_idx[@]} -eq $OSTCOUNT ] ||
2007                         error "${#ost_idx[@]} != $OSTCOUNT"
2008
2009                 for index in $(seq 0 $((OSTCOUNT - 1))); do
2010                         found=0
2011                         for j in $(echo ${ost_idx[@]}); do
2012                                 if [ $index -eq $j ]; then
2013                                         found=1
2014                                         break
2015                                 fi
2016                         done
2017                         [ $found = 1 ] ||
2018                                 error "Can not find $index in ${ost_idx[@]}"
2019                 done
2020         done
2021 }
2022 run_test 27C "check full striping across all OSTs"
2023
2024 test_27D() {
2025         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
2026         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
2027         remote_mds_nodsh && skip "remote MDS with nodsh" && return
2028         local POOL=${POOL:-testpool}
2029         local first_ost=0
2030         local last_ost=$(($OSTCOUNT - 1))
2031         local ost_step=1
2032         local ost_list=$(seq $first_ost $ost_step $last_ost)
2033         local ost_range="$first_ost $last_ost $ost_step"
2034
2035         test_mkdir -p $DIR/$tdir
2036         pool_add $POOL || error "pool_add failed"
2037         pool_add_targets $POOL $ost_range || error "pool_add_targets failed"
2038
2039         local skip27D
2040         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.64) ] &&
2041                 skip27D = "-s 29"
2042         llapi_layout_test -d$DIR/$tdir -p$POOL -o$OSTCOUNT $skip27D ||
2043                 error "llapi_layout_test failed"
2044
2045         cleanup_pools || error "cleanup_pools failed"
2046 }
2047 run_test 27D "validate llapi_layout API"
2048
2049 # Verify that default_easize is increased from its initial value after
2050 # accessing a widely striped file.
2051 test_27E() {
2052         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
2053         [ $(lustre_version_code client) -lt $(version_code 2.5.57) ] &&
2054                 skip "client does not have LU-3338 fix" && return
2055
2056         # 72 bytes is the minimum space required to store striping
2057         # information for a file striped across one OST:
2058         # (sizeof(struct lov_user_md_v3) +
2059         #  sizeof(struct lov_user_ost_data_v1))
2060         local min_easize=72
2061         $LCTL set_param -n llite.*.default_easize $min_easize ||
2062                 error "lctl set_param failed"
2063         local easize=$($LCTL get_param -n llite.*.default_easize)
2064
2065         [ $easize -eq $min_easize ] ||
2066                 error "failed to set default_easize"
2067
2068         $LFS setstripe -c $OSTCOUNT $DIR/$tfile ||
2069                 error "setstripe failed"
2070         cat $DIR/$tfile
2071         rm $DIR/$tfile
2072
2073         easize=$($LCTL get_param -n llite.*.default_easize)
2074
2075         [ $easize -gt $min_easize ] ||
2076                 error "default_easize not updated"
2077 }
2078 run_test 27E "check that default extended attribute size properly increases"
2079
2080 test_27F() { # LU-5346/LU-7975
2081
2082         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2083
2084         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.51) ]] &&
2085                 skip "Need MDS version at least 2.8.51" && return
2086
2087         test_mkdir -p $DIR/$tdir
2088         rm -f $DIR/$tdir/f0
2089         $SETSTRIPE -c 2 $DIR/$tdir
2090
2091         # stop all OSTs to reproduce situation for LU-7975 ticket
2092         for num in $(seq $OSTCOUNT); do
2093                 stop ost$num
2094         done
2095
2096         # open/create f0 with O_LOV_DELAY_CREATE
2097         # truncate f0 to a non-0 size
2098         # close
2099         multiop $DIR/$tdir/f0 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:T1050000c
2100
2101         $CHECKSTAT -s 1050000 $DIR/$tdir/f0 || error "checkstat failed"
2102         # open/write it again to force delayed layout creation
2103         cat /etc/hosts > $DIR/$tdir/f0 &
2104         catpid=$!
2105
2106         # restart OSTs
2107         for num in $(seq $OSTCOUNT); do
2108                 start ost$num $(ostdevname $num) $OST_MOUNT_OPTS ||
2109                         error "ost$num failed to start"
2110         done
2111
2112         wait $catpid || error "cat failed"
2113
2114         cmp /etc/hosts $DIR/$tdir/f0 || error "cmp failed"
2115         [[ $($GETSTRIPE -c $DIR/$tdir/f0) == 2 ]] || error "wrong stripecount"
2116
2117 }
2118 run_test 27F "Client resend delayed layout creation with non-zero size"
2119
2120 # createtest also checks that device nodes are created and
2121 # then visible correctly (#2091)
2122 test_28() { # bug 2091
2123         test_mkdir $DIR/d28
2124         $CREATETEST $DIR/d28/ct || error
2125 }
2126 run_test 28 "create/mknod/mkdir with bad file types ============"
2127
2128 test_29() {
2129         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return 0
2130         sync; sleep 1; sync # flush out any dirty pages from previous tests
2131         cancel_lru_locks
2132         test_mkdir $DIR/d29
2133         touch $DIR/d29/foo
2134         log 'first d29'
2135         ls -l $DIR/d29
2136
2137         declare -i LOCKCOUNTORIG=0
2138         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
2139                 let LOCKCOUNTORIG=$LOCKCOUNTORIG+$lock_count
2140         done
2141         [ $LOCKCOUNTORIG -eq 0 ] && error "No mdc lock count" && return 1
2142
2143         declare -i LOCKUNUSEDCOUNTORIG=0
2144         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
2145                 let LOCKUNUSEDCOUNTORIG=$LOCKUNUSEDCOUNTORIG+$unused_count
2146         done
2147
2148         log 'second d29'
2149         ls -l $DIR/d29
2150         log 'done'
2151
2152         declare -i LOCKCOUNTCURRENT=0
2153         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
2154                 let LOCKCOUNTCURRENT=$LOCKCOUNTCURRENT+$lock_count
2155         done
2156
2157         declare -i LOCKUNUSEDCOUNTCURRENT=0
2158         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
2159                 let LOCKUNUSEDCOUNTCURRENT=$LOCKUNUSEDCOUNTCURRENT+$unused_count
2160         done
2161
2162         if [[ $LOCKCOUNTCURRENT -gt $LOCKCOUNTORIG ]]; then
2163                 $LCTL set_param -n ldlm.dump_namespaces ""
2164                 error "CURRENT: $LOCKCOUNTCURRENT > $LOCKCOUNTORIG"
2165                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
2166                 log "dumped log to $TMP/test_29.dk (bug 5793)"
2167                 return 2
2168         fi
2169         if [[ $LOCKUNUSEDCOUNTCURRENT -gt $LOCKUNUSEDCOUNTORIG ]]; then
2170                 error "UNUSED: $LOCKUNUSEDCOUNTCURRENT > $LOCKUNUSEDCOUNTORIG"
2171                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
2172                 log "dumped log to $TMP/test_29.dk (bug 5793)"
2173                 return 3
2174         fi
2175 }
2176 run_test 29 "IT_GETATTR regression  ============================"
2177
2178 test_30a() { # was test_30
2179         cp $(which ls) $DIR || cp /bin/ls $DIR
2180         $DIR/ls / || error
2181         rm $DIR/ls
2182 }
2183 run_test 30a "execute binary from Lustre (execve) =============="
2184
2185 test_30b() {
2186         cp `which ls` $DIR || cp /bin/ls $DIR
2187         chmod go+rx $DIR/ls
2188         $RUNAS $DIR/ls / || error
2189         rm $DIR/ls
2190 }
2191 run_test 30b "execute binary from Lustre as non-root ==========="
2192
2193 test_30c() { # b=22376
2194         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2195         cp `which ls` $DIR || cp /bin/ls $DIR
2196         chmod a-rw $DIR/ls
2197         cancel_lru_locks mdc
2198         cancel_lru_locks osc
2199         $RUNAS $DIR/ls / || error
2200         rm -f $DIR/ls
2201 }
2202 run_test 30c "execute binary from Lustre without read perms ===="
2203
2204 test_31a() {
2205         $OPENUNLINK $DIR/f31 $DIR/f31 || error
2206         $CHECKSTAT -a $DIR/f31 || error
2207 }
2208 run_test 31a "open-unlink file =================================="
2209
2210 test_31b() {
2211         touch $DIR/f31 || error
2212         ln $DIR/f31 $DIR/f31b || error
2213         $MULTIOP $DIR/f31b Ouc || error
2214         $CHECKSTAT -t file $DIR/f31 || error
2215 }
2216 run_test 31b "unlink file with multiple links while open ======="
2217
2218 test_31c() {
2219         touch $DIR/f31 || error
2220         ln $DIR/f31 $DIR/f31c || error
2221         multiop_bg_pause $DIR/f31 O_uc || return 1
2222         MULTIPID=$!
2223         $MULTIOP $DIR/f31c Ouc
2224         kill -USR1 $MULTIPID
2225         wait $MULTIPID
2226 }
2227 run_test 31c "open-unlink file with multiple links ============="
2228
2229 test_31d() {
2230         opendirunlink $DIR/d31d $DIR/d31d || error
2231         $CHECKSTAT -a $DIR/d31d || error
2232 }
2233 run_test 31d "remove of open directory ========================="
2234
2235 test_31e() { # bug 2904
2236         openfilleddirunlink $DIR/d31e || error
2237 }
2238 run_test 31e "remove of open non-empty directory ==============="
2239
2240 test_31f() { # bug 4554
2241         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2242         set -vx
2243         test_mkdir $DIR/d31f
2244         $SETSTRIPE -S 1048576 -c 1 $DIR/d31f
2245         cp /etc/hosts $DIR/d31f
2246         ls -l $DIR/d31f
2247         $GETSTRIPE $DIR/d31f/hosts
2248         multiop_bg_pause $DIR/d31f D_c || return 1
2249         MULTIPID=$!
2250
2251         rm -rv $DIR/d31f || error "first of $DIR/d31f"
2252         test_mkdir $DIR/d31f
2253         $SETSTRIPE -S 1048576 -c 1 $DIR/d31f
2254         cp /etc/hosts $DIR/d31f
2255         ls -l $DIR/d31f
2256         $GETSTRIPE $DIR/d31f/hosts
2257         multiop_bg_pause $DIR/d31f D_c || return 1
2258         MULTIPID2=$!
2259
2260         kill -USR1 $MULTIPID || error "first opendir $MULTIPID not running"
2261         wait $MULTIPID || error "first opendir $MULTIPID failed"
2262
2263         sleep 6
2264
2265         kill -USR1 $MULTIPID2 || error "second opendir $MULTIPID not running"
2266         wait $MULTIPID2 || error "second opendir $MULTIPID2 failed"
2267         set +vx
2268 }
2269 run_test 31f "remove of open directory with open-unlink file ==="
2270
2271 test_31g() {
2272         echo "-- cross directory link --"
2273         test_mkdir -c1 $DIR/${tdir}ga
2274         test_mkdir -c1 $DIR/${tdir}gb
2275         touch $DIR/${tdir}ga/f
2276         ln $DIR/${tdir}ga/f $DIR/${tdir}gb/g
2277         $CHECKSTAT -t file $DIR/${tdir}ga/f || error "source"
2278         [ `stat -c%h $DIR/${tdir}ga/f` == '2' ] || error "source nlink"
2279         $CHECKSTAT -t file $DIR/${tdir}gb/g || error "target"
2280         [ `stat -c%h $DIR/${tdir}gb/g` == '2' ] || error "target nlink"
2281 }
2282 run_test 31g "cross directory link==============="
2283
2284 test_31h() {
2285         echo "-- cross directory link --"
2286         test_mkdir -c1 $DIR/${tdir}
2287         test_mkdir -c1 $DIR/${tdir}/dir
2288         touch $DIR/${tdir}/f
2289         ln $DIR/${tdir}/f $DIR/${tdir}/dir/g
2290         $CHECKSTAT -t file $DIR/${tdir}/f || error "source"
2291         [ `stat -c%h $DIR/${tdir}/f` == '2' ] || error "source nlink"
2292         $CHECKSTAT -t file $DIR/${tdir}/dir/g || error "target"
2293         [ `stat -c%h $DIR/${tdir}/dir/g` == '2' ] || error "target nlink"
2294 }
2295 run_test 31h "cross directory link under child==============="
2296
2297 test_31i() {
2298         echo "-- cross directory link --"
2299         test_mkdir -c1 $DIR/$tdir
2300         test_mkdir -c1 $DIR/$tdir/dir
2301         touch $DIR/$tdir/dir/f
2302         ln $DIR/$tdir/dir/f $DIR/$tdir/g
2303         $CHECKSTAT -t file $DIR/$tdir/dir/f || error "source"
2304         [ `stat -c%h $DIR/$tdir/dir/f` == '2' ] || error "source nlink"
2305         $CHECKSTAT -t file $DIR/$tdir/g || error "target"
2306         [ `stat -c%h $DIR/$tdir/g` == '2' ] || error "target nlink"
2307 }
2308 run_test 31i "cross directory link under parent==============="
2309
2310 test_31j() {
2311         test_mkdir -c1 -p $DIR/$tdir
2312         test_mkdir -c1 -p $DIR/$tdir/dir1
2313         ln $DIR/$tdir/dir1 $DIR/$tdir/dir2 && error "ln for dir"
2314         link $DIR/$tdir/dir1 $DIR/$tdir/dir3 && error "link for dir"
2315         mlink $DIR/$tdir/dir1 $DIR/$tdir/dir4 && error "mlink for dir"
2316         mlink $DIR/$tdir/dir1 $DIR/$tdir/dir1 && error "mlink to the same dir"
2317         return 0
2318 }
2319 run_test 31j "link for directory==============="
2320
2321 test_31k() {
2322         test_mkdir -c1 -p $DIR/$tdir
2323         touch $DIR/$tdir/s
2324         touch $DIR/$tdir/exist
2325         mlink $DIR/$tdir/s $DIR/$tdir/t || error "mlink"
2326         mlink $DIR/$tdir/s $DIR/$tdir/exist && error "mlink to exist file"
2327         mlink $DIR/$tdir/s $DIR/$tdir/s && error "mlink to the same file"
2328         mlink $DIR/$tdir/s $DIR/$tdir && error "mlink to parent dir"
2329         mlink $DIR/$tdir $DIR/$tdir/s && error "mlink parent dir to target"
2330         mlink $DIR/$tdir/not-exist $DIR/$tdir/foo && error "mlink non-existing to new"
2331         mlink $DIR/$tdir/not-exist $DIR/$tdir/s && error "mlink non-existing to exist"
2332         return 0
2333 }
2334 run_test 31k "link to file: the same, non-existing, dir==============="
2335
2336 test_31m() {
2337         mkdir $DIR/d31m
2338         touch $DIR/d31m/s
2339         mkdir $DIR/d31m2
2340         touch $DIR/d31m2/exist
2341         mlink $DIR/d31m/s $DIR/d31m2/t || error "mlink"
2342         mlink $DIR/d31m/s $DIR/d31m2/exist && error "mlink to exist file"
2343         mlink $DIR/d31m/s $DIR/d31m2 && error "mlink to parent dir"
2344         mlink $DIR/d31m2 $DIR/d31m/s && error "mlink parent dir to target"
2345         mlink $DIR/d31m/not-exist $DIR/d31m2/foo && error "mlink non-existing to new"
2346         mlink $DIR/d31m/not-exist $DIR/d31m2/s && error "mlink non-existing to exist"
2347         return 0
2348 }
2349 run_test 31m "link to file: the same, non-existing, dir==============="
2350
2351 test_31n() {
2352         touch $DIR/$tfile || error "cannot create '$DIR/$tfile'"
2353         nlink=$(stat --format=%h $DIR/$tfile)
2354         [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
2355         local fd=$(free_fd)
2356         local cmd="exec $fd<$DIR/$tfile"
2357         eval $cmd
2358         cmd="exec $fd<&-"
2359         trap "eval $cmd" EXIT
2360         nlink=$(stat --dereference --format=%h /proc/self/fd/$fd)
2361         [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
2362         rm $DIR/$tfile || error "cannot remove '$DIR/$tfile'"
2363         nlink=$(stat --dereference --format=%h /proc/self/fd/$fd)
2364         [ ${nlink:--1} -eq 0 ] || error "nlink is $nlink, expected 0"
2365         eval $cmd
2366 }
2367 run_test 31n "check link count of unlinked file"
2368
2369 link_one() {
2370         local TEMPNAME=$(mktemp $1_XXXXXX)
2371         mlink $TEMPNAME $1 2> /dev/null &&
2372                 echo "$BASHPID: link $TEMPNAME to $1 succeeded"
2373         munlink $TEMPNAME
2374 }
2375
2376 test_31o() { # LU-2901
2377         test_mkdir -p $DIR/$tdir
2378         for LOOP in $(seq 100); do
2379                 rm -f $DIR/$tdir/$tfile*
2380                 for THREAD in $(seq 8); do
2381                         link_one $DIR/$tdir/$tfile.$LOOP &
2382                 done
2383                 wait
2384                 local LINKS=$(ls -1 $DIR/$tdir | grep -c $tfile.$LOOP)
2385                 [[ $LINKS -gt 1 ]] && ls $DIR/$tdir &&
2386                         error "$LINKS duplicate links to $tfile.$LOOP" &&
2387                         break || true
2388         done
2389 }
2390 run_test 31o "duplicate hard links with same filename"
2391
2392 test_31p() {
2393         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2394
2395         test_mkdir $DIR/$tdir
2396         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2397         $LFS setdirstripe -D -c2 -t all_char $DIR/$tdir/striped_dir
2398
2399         opendirunlink $DIR/$tdir/striped_dir/test1 ||
2400                 error "open unlink test1 failed"
2401         opendirunlink $DIR/$tdir/striped_dir/test2 ||
2402                 error "open unlink test2 failed"
2403
2404         $CHECKSTAT -a $DIR/$tdir/striped_dir/test1 ||
2405                 error "test1 still exists"
2406         $CHECKSTAT -a $DIR/$tdir/striped_dir/test2 ||
2407                 error "test2 still exists"
2408 }
2409 run_test 31p "remove of open striped directory"
2410
2411 cleanup_test32_mount() {
2412         local rc=0
2413         trap 0
2414         local loopdev=$(losetup -a | grep $EXT2_DEV | sed -ne 's/:.*$/p')
2415         $UMOUNT $DIR/$tdir/ext2-mountpoint || rc=$?
2416         losetup -d $loopdev || true
2417         rm -rf $DIR/$tdir/ext2-mountpoint
2418         return $rc
2419 }
2420
2421 test_32a() {
2422         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2423         echo "== more mountpoints and symlinks ================="
2424         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2425         trap cleanup_test32_mount EXIT
2426         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2427         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2428         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/.. || error
2429         cleanup_test32_mount
2430 }
2431 run_test 32a "stat d32a/ext2-mountpoint/.. ====================="
2432
2433 test_32b() {
2434         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2435         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2436         trap cleanup_test32_mount EXIT
2437         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2438         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2439         ls -al $DIR/$tdir/ext2-mountpoint/.. || error
2440         cleanup_test32_mount
2441 }
2442 run_test 32b "open d32b/ext2-mountpoint/.. ====================="
2443
2444 test_32c() {
2445         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2446         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2447         trap cleanup_test32_mount EXIT
2448         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2449         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2450         test_mkdir -p $DIR/$tdir/d2/test_dir
2451         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/../d2/test_dir || error
2452         cleanup_test32_mount
2453 }
2454 run_test 32c "stat d32c/ext2-mountpoint/../d2/test_dir ========="
2455
2456 test_32d() {
2457         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2458         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2459         trap cleanup_test32_mount EXIT
2460         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2461         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2462         test_mkdir -p $DIR/$tdir/d2/test_dir
2463         ls -al $DIR/$tdir/ext2-mountpoint/../d2/test_dir || error
2464         cleanup_test32_mount
2465 }
2466 run_test 32d "open d32d/ext2-mountpoint/../d2/test_dir ========="
2467
2468 test_32e() {
2469         [ -e $DIR/d32e ] && rm -fr $DIR/d32e
2470         test_mkdir -p $DIR/d32e/tmp
2471         TMP_DIR=$DIR/d32e/tmp
2472         ln -s $DIR/d32e $TMP_DIR/symlink11
2473         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2474         $CHECKSTAT -t link $DIR/d32e/tmp/symlink11 || error
2475         $CHECKSTAT -t link $DIR/d32e/symlink01 || error
2476 }
2477 run_test 32e "stat d32e/symlink->tmp/symlink->lustre-subdir ===="
2478
2479 test_32f() {
2480         [ -e $DIR/d32f ] && rm -fr $DIR/d32f
2481         test_mkdir -p $DIR/d32f/tmp
2482         TMP_DIR=$DIR/d32f/tmp
2483         ln -s $DIR/d32f $TMP_DIR/symlink11
2484         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2485         ls $DIR/d32f/tmp/symlink11  || error
2486         ls $DIR/d32f/symlink01 || error
2487 }
2488 run_test 32f "open d32f/symlink->tmp/symlink->lustre-subdir ===="
2489
2490 test_32g() {
2491         TMP_DIR=$DIR/$tdir/tmp
2492         test_mkdir -p $DIR/$tdir/tmp
2493         test_mkdir $DIR/${tdir}2
2494         ln -s $DIR/${tdir}2 $TMP_DIR/symlink12
2495         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2496         $CHECKSTAT -t link $TMP_DIR/symlink12 || error
2497         $CHECKSTAT -t link $DIR/$tdir/symlink02 || error
2498         $CHECKSTAT -t dir -f $TMP_DIR/symlink12 || error
2499         $CHECKSTAT -t dir -f $DIR/$tdir/symlink02 || error
2500 }
2501 run_test 32g "stat d32g/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2502
2503 test_32h() {
2504         rm -fr $DIR/$tdir $DIR/${tdir}2
2505         TMP_DIR=$DIR/$tdir/tmp
2506         test_mkdir -p $DIR/$tdir/tmp
2507         test_mkdir $DIR/${tdir}2
2508         ln -s $DIR/${tdir}2 $TMP_DIR/symlink12
2509         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2510         ls $TMP_DIR/symlink12 || error
2511         ls $DIR/$tdir/symlink02  || error
2512 }
2513 run_test 32h "open d32h/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2514
2515 test_32i() {
2516         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2517         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2518         trap cleanup_test32_mount EXIT
2519         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2520         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2521         touch $DIR/$tdir/test_file
2522         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../test_file || error
2523         cleanup_test32_mount
2524 }
2525 run_test 32i "stat d32i/ext2-mountpoint/../test_file ==========="
2526
2527 test_32j() {
2528         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2529         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2530         trap cleanup_test32_mount EXIT
2531         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2532         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2533         touch $DIR/$tdir/test_file
2534         cat $DIR/$tdir/ext2-mountpoint/../test_file || error
2535         cleanup_test32_mount
2536 }
2537 run_test 32j "open d32j/ext2-mountpoint/../test_file ==========="
2538
2539 test_32k() {
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
2545         test_mkdir -p $DIR/$tdir/d2
2546         touch $DIR/$tdir/d2/test_file || error
2547         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../d2/test_file || error
2548         cleanup_test32_mount
2549 }
2550 run_test 32k "stat d32k/ext2-mountpoint/../d2/test_file ========"
2551
2552 test_32l() {
2553         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2554         rm -fr $DIR/$tdir
2555         trap cleanup_test32_mount EXIT
2556         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2557         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2558         test_mkdir -p $DIR/$tdir/d2
2559         touch $DIR/$tdir/d2/test_file
2560         cat  $DIR/$tdir/ext2-mountpoint/../d2/test_file || error
2561         cleanup_test32_mount
2562 }
2563 run_test 32l "open d32l/ext2-mountpoint/../d2/test_file ========"
2564
2565 test_32m() {
2566         rm -fr $DIR/d32m
2567         test_mkdir -p $DIR/d32m/tmp
2568         TMP_DIR=$DIR/d32m/tmp
2569         ln -s $DIR $TMP_DIR/symlink11
2570         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2571         $CHECKSTAT -t link $DIR/d32m/tmp/symlink11 || error
2572         $CHECKSTAT -t link $DIR/d32m/symlink01 || error
2573 }
2574 run_test 32m "stat d32m/symlink->tmp/symlink->lustre-root ======"
2575
2576 test_32n() {
2577         rm -fr $DIR/d32n
2578         test_mkdir -p $DIR/d32n/tmp
2579         TMP_DIR=$DIR/d32n/tmp
2580         ln -s $DIR $TMP_DIR/symlink11
2581         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2582         ls -l $DIR/d32n/tmp/symlink11  || error
2583         ls -l $DIR/d32n/symlink01 || error
2584 }
2585 run_test 32n "open d32n/symlink->tmp/symlink->lustre-root ======"
2586
2587 test_32o() {
2588         touch $DIR/$tfile
2589         test_mkdir -p $DIR/d32o/tmp
2590         TMP_DIR=$DIR/d32o/tmp
2591         ln -s $DIR/$tfile $TMP_DIR/symlink12
2592         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2593         $CHECKSTAT -t link $DIR/d32o/tmp/symlink12 || error
2594         $CHECKSTAT -t link $DIR/d32o/symlink02 || error
2595         $CHECKSTAT -t file -f $DIR/d32o/tmp/symlink12 || error
2596         $CHECKSTAT -t file -f $DIR/d32o/symlink02 || error
2597 }
2598 run_test 32o "stat d32o/symlink->tmp/symlink->lustre-root/$tfile"
2599
2600 test_32p() {
2601     log 32p_1
2602         rm -fr $DIR/d32p
2603     log 32p_2
2604         rm -f $DIR/$tfile
2605     log 32p_3
2606         touch $DIR/$tfile
2607     log 32p_4
2608         test_mkdir -p $DIR/d32p/tmp
2609     log 32p_5
2610         TMP_DIR=$DIR/d32p/tmp
2611     log 32p_6
2612         ln -s $DIR/$tfile $TMP_DIR/symlink12
2613     log 32p_7
2614         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2615     log 32p_8
2616         cat $DIR/d32p/tmp/symlink12 || error
2617     log 32p_9
2618         cat $DIR/d32p/symlink02 || error
2619     log 32p_10
2620 }
2621 run_test 32p "open d32p/symlink->tmp/symlink->lustre-root/$tfile"
2622
2623 cleanup_testdir_mount() {
2624         local rc=0
2625         trap 0
2626         local loopdev=$(losetup -a | grep $EXT2_DEV | sed -ne 's/:.*$/p')
2627         $UMOUNT $DIR/$tdir || rc=$?
2628         losetup -d $loopdev || true
2629         rm -rf $DIR/$tdir
2630         return $rc
2631 }
2632
2633 test_32q() {
2634         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2635         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2636         trap cleanup_testdir_mount EXIT
2637         test_mkdir -p $DIR/$tdir
2638         touch $DIR/$tdir/under_the_mount
2639         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir
2640         ls $DIR/$tdir | grep "\<under_the_mount\>" && error
2641         cleanup_testdir_mount
2642 }
2643 run_test 32q "stat follows mountpoints in Lustre (should return error)"
2644
2645 test_32r() {
2646         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2647         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2648         trap cleanup_testdir_mount EXIT
2649         test_mkdir -p $DIR/$tdir
2650         touch $DIR/$tdir/under_the_mount
2651         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir
2652         ls $DIR/$tdir | grep -q under_the_mount && error || true
2653         cleanup_testdir_mount
2654 }
2655 run_test 32r "opendir follows mountpoints in Lustre (should return error)"
2656
2657 test_33aa() {
2658         rm -f $DIR/$tfile
2659         touch $DIR/$tfile
2660         chmod 444 $DIR/$tfile
2661         chown $RUNAS_ID $DIR/$tfile
2662         log 33_1
2663         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
2664         log 33_2
2665 }
2666 run_test 33aa "write file with mode 444 (should return error) ===="
2667
2668 test_33a() {
2669         rm -fr $DIR/d33
2670         test_mkdir -p $DIR/d33
2671         chown $RUNAS_ID $DIR/d33
2672         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/d33/f33|| error "create"
2673         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/d33/f33 && \
2674                 error "open RDWR" || true
2675 }
2676 run_test 33a "test open file(mode=0444) with O_RDWR (should return error)"
2677
2678 test_33b() {
2679         rm -fr $DIR/d33
2680         test_mkdir -p $DIR/d33
2681         chown $RUNAS_ID $DIR/d33
2682         $RUNAS $OPENFILE -f 1286739555 $DIR/d33/f33 || true
2683 }
2684 run_test 33b "test open file with malformed flags (No panic)"
2685
2686 test_33c() {
2687         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2688         local ostnum
2689         local ostname
2690         local write_bytes
2691         local all_zeros
2692
2693         remote_ost_nodsh && skip "remote OST with nodsh" && return
2694         all_zeros=:
2695         rm -fr $DIR/d33
2696         test_mkdir -p $DIR/d33
2697         # Read: 0, Write: 4, create/destroy: 2/0, stat: 1, punch: 0
2698
2699         sync
2700         for ostnum in $(seq $OSTCOUNT); do
2701                 # test-framework's OST numbering is one-based, while Lustre's
2702                 # is zero-based
2703                 ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2704                 # Parsing llobdstat's output sucks; we could grep the /proc
2705                 # path, but that's likely to not be as portable as using the
2706                 # llobdstat utility.  So we parse lctl output instead.
2707                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2708                         obdfilter/$ostname/stats |
2709                         awk '/^write_bytes/ {print $7}' )
2710                 echo "baseline_write_bytes@$OSTnum/$ostname=$write_bytes"
2711                 if (( ${write_bytes:-0} > 0 ))
2712                 then
2713                         all_zeros=false
2714                         break;
2715                 fi
2716         done
2717
2718         $all_zeros || return 0
2719
2720         # Write four bytes
2721         echo foo > $DIR/d33/bar
2722         # Really write them
2723         sync
2724
2725         # Total up write_bytes after writing.  We'd better find non-zeros.
2726         for ostnum in $(seq $OSTCOUNT); do
2727                 ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2728                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2729                         obdfilter/$ostname/stats |
2730                         awk '/^write_bytes/ {print $7}' )
2731                 echo "write_bytes@$OSTnum/$ostname=$write_bytes"
2732                 if (( ${write_bytes:-0} > 0 ))
2733                 then
2734                         all_zeros=false
2735                         break;
2736                 fi
2737         done
2738
2739         if $all_zeros
2740         then
2741                 for ostnum in $(seq $OSTCOUNT); do
2742                         ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2743                         echo "Check that write_bytes is present in obdfilter/*/stats:"
2744                         do_facet ost$ostnum lctl get_param -n \
2745                                 obdfilter/$ostname/stats
2746                 done
2747                 error "OST not keeping write_bytes stats (b22312)"
2748         fi
2749 }
2750 run_test 33c "test llobdstat and write_bytes"
2751
2752 test_33d() {
2753         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
2754         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2755         local MDTIDX=1
2756         local remote_dir=$DIR/$tdir/remote_dir
2757
2758         test_mkdir -p $DIR/$tdir
2759         $LFS mkdir -i $MDTIDX $remote_dir ||
2760                 error "create remote directory failed"
2761
2762         touch $remote_dir/$tfile
2763         chmod 444 $remote_dir/$tfile
2764         chown $RUNAS_ID $remote_dir/$tfile
2765
2766         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
2767
2768         chown $RUNAS_ID $remote_dir
2769         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 ||
2770                                         error "create" || true
2771         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 &&
2772                                     error "open RDWR" || true
2773         $RUNAS $OPENFILE -f 1286739555 $remote_dir/f33 || true
2774 }
2775 run_test 33d "openfile with 444 modes and malformed flags under remote dir"
2776
2777 test_33e() {
2778         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2779
2780         mkdir $DIR/$tdir
2781
2782         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2783         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
2784         mkdir $DIR/$tdir/local_dir
2785
2786         local s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
2787         local s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
2788         local l_mode=$(stat -c%f $DIR/$tdir/local_dir)
2789
2790         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
2791                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode"
2792
2793         rmdir $DIR/$tdir/* || error "rmdir failed"
2794
2795         umask 777
2796         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2797         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
2798         mkdir $DIR/$tdir/local_dir
2799
2800         s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
2801         s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
2802         l_mode=$(stat -c%f $DIR/$tdir/local_dir)
2803
2804         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
2805                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode 777"
2806
2807         rmdir $DIR/$tdir/* || error "rmdir(umask 777) failed"
2808
2809         umask 000
2810         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2811         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
2812         mkdir $DIR/$tdir/local_dir
2813
2814         s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
2815         s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
2816         l_mode=$(stat -c%f $DIR/$tdir/local_dir)
2817
2818         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
2819                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode 0"
2820 }
2821 run_test 33e "mkdir and striped directory should have same mode"
2822
2823 cleanup_33f() {
2824         trap 0
2825         do_facet $SINGLEMDS $LCTL set_param mdt.*.enable_remote_dir_gid=0
2826 }
2827
2828 test_33f() {
2829         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2830         remote_mds_nodsh && skip "remote MDS with nodsh" && return
2831
2832         mkdir $DIR/$tdir
2833         chmod go+rwx $DIR/$tdir
2834         do_facet $SINGLEMDS $LCTL set_param mdt.*.enable_remote_dir_gid=-1
2835         trap cleanup_33f EXIT
2836
2837         $RUNAS lfs mkdir -c$MDSCOUNT $DIR/$tdir/striped_dir ||
2838                 error "cannot create striped directory"
2839
2840         $RUNAS touch $DIR/$tdir/striped_dir/{0..16} ||
2841                 error "cannot create files in striped directory"
2842
2843         $RUNAS rm $DIR/$tdir/striped_dir/{0..16} ||
2844                 error "cannot remove files in striped directory"
2845
2846         $RUNAS rmdir $DIR/$tdir/striped_dir ||
2847                 error "cannot remove striped directory"
2848
2849         cleanup_33f
2850 }
2851 run_test 33f "nonroot user can create, access, and remove a striped directory"
2852
2853 TEST_34_SIZE=${TEST_34_SIZE:-2000000000000}
2854 test_34a() {
2855         rm -f $DIR/f34
2856         $MCREATE $DIR/f34 || error
2857         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2858         $TRUNCATE $DIR/f34 $TEST_34_SIZE || error
2859         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2860         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2861 }
2862 run_test 34a "truncate file that has not been opened ==========="
2863
2864 test_34b() {
2865         [ ! -f $DIR/f34 ] && test_34a
2866         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2867         $OPENFILE -f O_RDONLY $DIR/f34
2868         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2869         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2870 }
2871 run_test 34b "O_RDONLY opening file doesn't create objects ====="
2872
2873 test_34c() {
2874         [ ! -f $DIR/f34 ] && test_34a
2875         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2876         $OPENFILE -f O_RDWR $DIR/f34
2877         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" && error
2878         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2879 }
2880 run_test 34c "O_RDWR opening file-with-size works =============="
2881
2882 test_34d() {
2883         [ ! -f $DIR/f34 ] && test_34a
2884         dd if=/dev/zero of=$DIR/f34 conv=notrunc bs=4k count=1 || error
2885         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2886         rm $DIR/f34
2887 }
2888 run_test 34d "write to sparse file ============================="
2889
2890 test_34e() {
2891         rm -f $DIR/f34e
2892         $MCREATE $DIR/f34e || error
2893         $TRUNCATE $DIR/f34e 1000 || error
2894         $CHECKSTAT -s 1000 $DIR/f34e || error
2895         $OPENFILE -f O_RDWR $DIR/f34e
2896         $CHECKSTAT -s 1000 $DIR/f34e || error
2897 }
2898 run_test 34e "create objects, some with size and some without =="
2899
2900 test_34f() { # bug 6242, 6243
2901         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2902         SIZE34F=48000
2903         rm -f $DIR/f34f
2904         $MCREATE $DIR/f34f || error
2905         $TRUNCATE $DIR/f34f $SIZE34F || error "truncating $DIR/f3f to $SIZE34F"
2906         dd if=$DIR/f34f of=$TMP/f34f
2907         $CHECKSTAT -s $SIZE34F $TMP/f34f || error "$TMP/f34f not $SIZE34F bytes"
2908         dd if=/dev/zero of=$TMP/f34fzero bs=$SIZE34F count=1
2909         cmp $DIR/f34f $TMP/f34fzero || error "$DIR/f34f not all zero"
2910         cmp $TMP/f34f $TMP/f34fzero || error "$TMP/f34f not all zero"
2911         rm $TMP/f34f $TMP/f34fzero $DIR/f34f
2912 }
2913 run_test 34f "read from a file with no objects until EOF ======="
2914
2915 test_34g() {
2916         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2917         dd if=/dev/zero of=$DIR/$tfile bs=1 count=100 seek=$TEST_34_SIZE || error
2918         $TRUNCATE $DIR/$tfile $((TEST_34_SIZE / 2))|| error
2919         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile || error "truncate failed"
2920         cancel_lru_locks osc
2921         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile || \
2922                 error "wrong size after lock cancel"
2923
2924         $TRUNCATE $DIR/$tfile $TEST_34_SIZE || error
2925         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile || \
2926                 error "expanding truncate failed"
2927         cancel_lru_locks osc
2928         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile || \
2929                 error "wrong expanded size after lock cancel"
2930 }
2931 run_test 34g "truncate long file ==============================="
2932
2933 test_34h() {
2934         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2935         local gid=10
2936         local sz=1000
2937
2938         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10 || error
2939         sync # Flush the cache so that multiop below does not block on cache
2940              # flush when getting the group lock
2941         $MULTIOP $DIR/$tfile OG${gid}T${sz}g${gid}c &
2942         MULTIPID=$!
2943
2944         # Since just timed wait is not good enough, let's do a sync write
2945         # that way we are sure enough time for a roundtrip + processing
2946         # passed + 2 seconds of extra margin.
2947         dd if=/dev/zero of=$DIR/${tfile}-1 bs=4096 oflag=direct count=1
2948         rm $DIR/${tfile}-1
2949         sleep 2
2950
2951         if [[ `ps h -o comm -p $MULTIPID` == "multiop" ]]; then
2952                 error "Multiop blocked on ftruncate, pid=$MULTIPID"
2953                 kill -9 $MULTIPID
2954         fi
2955         wait $MULTIPID
2956         local nsz=`stat -c %s $DIR/$tfile`
2957         [[ $nsz == $sz ]] || error "New size wrong $nsz != $sz"
2958 }
2959 run_test 34h "ftruncate file under grouplock should not block"
2960
2961 test_35a() {
2962         cp /bin/sh $DIR/f35a
2963         chmod 444 $DIR/f35a
2964         chown $RUNAS_ID $DIR/f35a
2965         $RUNAS $DIR/f35a && error || true
2966         rm $DIR/f35a
2967 }
2968 run_test 35a "exec file with mode 444 (should return and not leak) ====="
2969
2970 test_36a() {
2971         rm -f $DIR/f36
2972         utime $DIR/f36 || error
2973 }
2974 run_test 36a "MDS utime check (mknod, utime) ==================="
2975
2976 test_36b() {
2977         echo "" > $DIR/f36
2978         utime $DIR/f36 || error
2979 }
2980 run_test 36b "OST utime check (open, utime) ===================="
2981
2982 test_36c() {
2983         rm -f $DIR/d36/f36
2984         test_mkdir $DIR/d36
2985         chown $RUNAS_ID $DIR/d36
2986         $RUNAS utime $DIR/d36/f36 || error
2987 }
2988 run_test 36c "non-root MDS utime check (mknod, utime) =========="
2989
2990 test_36d() {
2991         [ ! -d $DIR/d36 ] && test_36c
2992         echo "" > $DIR/d36/f36
2993         $RUNAS utime $DIR/d36/f36 || error
2994 }
2995 run_test 36d "non-root OST utime check (open, utime) ==========="
2996
2997 test_36e() {
2998         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID -- skipping" && return
2999         test_mkdir -p $DIR/$tdir
3000         touch $DIR/$tdir/$tfile
3001         $RUNAS utime $DIR/$tdir/$tfile && \
3002                 error "utime worked, expected failure" || true
3003 }
3004 run_test 36e "utime on non-owned file (should return error) ===="
3005
3006 subr_36fh() {
3007         local fl="$1"
3008         local LANG_SAVE=$LANG
3009         local LC_LANG_SAVE=$LC_LANG
3010         export LANG=C LC_LANG=C # for date language
3011
3012         DATESTR="Dec 20  2000"
3013         test_mkdir -p $DIR/$tdir
3014         lctl set_param fail_loc=$fl
3015         date; date +%s
3016         cp /etc/hosts $DIR/$tdir/$tfile
3017         sync & # write RPC generated with "current" inode timestamp, but delayed
3018         sleep 1
3019         touch --date="$DATESTR" $DIR/$tdir/$tfile # setattr timestamp in past
3020         LS_BEFORE="`ls -l $DIR/$tdir/$tfile`" # old timestamp from client cache
3021         cancel_lru_locks osc
3022         LS_AFTER="`ls -l $DIR/$tdir/$tfile`"  # timestamp from OST object
3023         date; date +%s
3024         [ "$LS_BEFORE" != "$LS_AFTER" ] && \
3025                 echo "BEFORE: $LS_BEFORE" && \
3026                 echo "AFTER : $LS_AFTER" && \
3027                 echo "WANT  : $DATESTR" && \
3028                 error "$DIR/$tdir/$tfile timestamps changed" || true
3029
3030         export LANG=$LANG_SAVE LC_LANG=$LC_LANG_SAVE
3031 }
3032
3033 test_36f() {
3034         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3035         #define OBD_FAIL_OST_BRW_PAUSE_BULK 0x214
3036         subr_36fh "0x80000214"
3037 }
3038 run_test 36f "utime on file racing with OST BRW write =========="
3039
3040 test_36g() {
3041         remote_ost_nodsh && skip "remote OST with nodsh" && return
3042         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3043         local fmd_max_age
3044         local fmd_before
3045         local fmd_after
3046
3047         test_mkdir -p $DIR/$tdir
3048         fmd_max_age=$(do_facet ost1 \
3049                 "lctl get_param -n obdfilter.*.client_cache_seconds 2> /dev/null | \
3050                 head -n 1")
3051
3052         fmd_before=$(do_facet ost1 \
3053                 "awk '/ll_fmd_cache/ {print \\\$2}' /proc/slabinfo")
3054         touch $DIR/$tdir/$tfile
3055         sleep $((fmd_max_age + 12))
3056         fmd_after=$(do_facet ost1 \
3057                 "awk '/ll_fmd_cache/ {print \\\$2}' /proc/slabinfo")
3058
3059         echo "fmd_before: $fmd_before"
3060         echo "fmd_after: $fmd_after"
3061         [[ $fmd_after -gt $fmd_before ]] &&
3062                 echo "AFTER: $fmd_after > BEFORE: $fmd_before" &&
3063                 error "fmd didn't expire after ping" || true
3064 }
3065 run_test 36g "filter mod data cache expiry ====================="
3066
3067 test_36h() {
3068         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3069         #define OBD_FAIL_OST_BRW_PAUSE_BULK2 0x227
3070         subr_36fh "0x80000227"
3071 }
3072 run_test 36h "utime on file racing with OST BRW write =========="
3073
3074 test_36i() {
3075         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
3076
3077         test_mkdir $DIR/$tdir
3078         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir
3079
3080         local mtime=$(stat -c%Y $DIR/$tdir/striped_dir)
3081         local new_mtime=$((mtime + 200))
3082
3083         #change Modify time of striped dir
3084         touch -m -d @$new_mtime $DIR/$tdir/striped_dir ||
3085                         error "change mtime failed"
3086
3087         local got=$(stat -c%Y $DIR/$tdir/striped_dir)
3088
3089         [ "$new_mtime" = "$got" ] || error "expect $new_mtime got $got"
3090 }
3091 run_test 36i "change mtime on striped directory"
3092
3093 # test_37 - duplicate with tests 32q 32r
3094
3095 test_38() {
3096         local file=$DIR/$tfile
3097         touch $file
3098         openfile -f O_DIRECTORY $file
3099         local RC=$?
3100         local ENOTDIR=20
3101         [ $RC -eq 0 ] && error "opened file $file with O_DIRECTORY" || true
3102         [ $RC -eq $ENOTDIR ] || error "error $RC should be ENOTDIR ($ENOTDIR)"
3103 }
3104 run_test 38 "open a regular file with O_DIRECTORY should return -ENOTDIR ==="
3105
3106 test_39() {
3107         touch $DIR/$tfile
3108         touch $DIR/${tfile}2
3109 #       ls -l  $DIR/$tfile $DIR/${tfile}2
3110 #       ls -lu  $DIR/$tfile $DIR/${tfile}2
3111 #       ls -lc  $DIR/$tfile $DIR/${tfile}2
3112         sleep 2
3113         $OPENFILE -f O_CREAT:O_TRUNC:O_WRONLY $DIR/${tfile}2
3114         if [ ! $DIR/${tfile}2 -nt $DIR/$tfile ]; then
3115                 echo "mtime"
3116                 ls -l --full-time $DIR/$tfile $DIR/${tfile}2
3117                 echo "atime"
3118                 ls -lu --full-time $DIR/$tfile $DIR/${tfile}2
3119                 echo "ctime"
3120                 ls -lc --full-time $DIR/$tfile $DIR/${tfile}2
3121                 error "O_TRUNC didn't change timestamps"
3122         fi
3123 }
3124 run_test 39 "mtime changed on create ==========================="
3125
3126 test_39b() {
3127         test_mkdir -p -c1 $DIR/$tdir
3128         cp -p /etc/passwd $DIR/$tdir/fopen
3129         cp -p /etc/passwd $DIR/$tdir/flink
3130         cp -p /etc/passwd $DIR/$tdir/funlink
3131         cp -p /etc/passwd $DIR/$tdir/frename
3132         ln $DIR/$tdir/funlink $DIR/$tdir/funlink2
3133
3134         sleep 1
3135         echo "aaaaaa" >> $DIR/$tdir/fopen
3136         echo "aaaaaa" >> $DIR/$tdir/flink
3137         echo "aaaaaa" >> $DIR/$tdir/funlink
3138         echo "aaaaaa" >> $DIR/$tdir/frename
3139
3140         local open_new=`stat -c %Y $DIR/$tdir/fopen`
3141         local link_new=`stat -c %Y $DIR/$tdir/flink`
3142         local unlink_new=`stat -c %Y $DIR/$tdir/funlink`
3143         local rename_new=`stat -c %Y $DIR/$tdir/frename`
3144
3145         cat $DIR/$tdir/fopen > /dev/null
3146         ln $DIR/$tdir/flink $DIR/$tdir/flink2
3147         rm -f $DIR/$tdir/funlink2
3148         mv -f $DIR/$tdir/frename $DIR/$tdir/frename2
3149
3150         for (( i=0; i < 2; i++ )) ; do
3151                 local open_new2=`stat -c %Y $DIR/$tdir/fopen`
3152                 local link_new2=`stat -c %Y $DIR/$tdir/flink`
3153                 local unlink_new2=`stat -c %Y $DIR/$tdir/funlink`
3154                 local rename_new2=`stat -c %Y $DIR/$tdir/frename2`
3155
3156                 [ $open_new2 -eq $open_new ] || error "open file reverses mtime"
3157                 [ $link_new2 -eq $link_new ] || error "link file reverses mtime"
3158                 [ $unlink_new2 -eq $unlink_new ] || error "unlink file reverses mtime"
3159                 [ $rename_new2 -eq $rename_new ] || error "rename file reverses mtime"
3160
3161                 cancel_lru_locks osc
3162                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3163         done
3164 }
3165 run_test 39b "mtime change on open, link, unlink, rename  ======"
3166
3167 # this should be set to past
3168 TEST_39_MTIME=`date -d "1 year ago" +%s`
3169
3170 # bug 11063
3171 test_39c() {
3172         touch $DIR1/$tfile
3173         sleep 2
3174         local mtime0=`stat -c %Y $DIR1/$tfile`
3175
3176         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3177         local mtime1=`stat -c %Y $DIR1/$tfile`
3178         [ "$mtime1" = $TEST_39_MTIME ] || \
3179                 error "mtime is not set to past: $mtime1, should be $TEST_39_MTIME"
3180
3181         local d1=`date +%s`
3182         echo hello >> $DIR1/$tfile
3183         local d2=`date +%s`
3184         local mtime2=`stat -c %Y $DIR1/$tfile`
3185         [ "$mtime2" -ge "$d1" ] && [ "$mtime2" -le "$d2" ] || \
3186                 error "mtime is not updated on write: $d1 <= $mtime2 <= $d2"
3187
3188         mv $DIR1/$tfile $DIR1/$tfile-1
3189
3190         for (( i=0; i < 2; i++ )) ; do
3191                 local mtime3=`stat -c %Y $DIR1/$tfile-1`
3192                 [ "$mtime2" = "$mtime3" ] || \
3193                         error "mtime ($mtime2) changed (to $mtime3) on rename"
3194
3195                 cancel_lru_locks osc
3196                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3197         done
3198 }
3199 run_test 39c "mtime change on rename ==========================="
3200
3201 # bug 21114
3202 test_39d() {
3203         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3204         touch $DIR1/$tfile
3205
3206         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3207
3208         for (( i=0; i < 2; i++ )) ; do
3209                 local mtime=`stat -c %Y $DIR1/$tfile`
3210                 [ $mtime = $TEST_39_MTIME ] || \
3211                         error "mtime($mtime) 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 39d "create, utime, stat =============================="
3218
3219 # bug 21114
3220 test_39e() {
3221         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3222         touch $DIR1/$tfile
3223         local mtime1=`stat -c %Y $DIR1/$tfile`
3224
3225         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3226
3227         for (( i=0; i < 2; i++ )) ; do
3228                 local mtime2=`stat -c %Y $DIR1/$tfile`
3229                 [ $mtime2 = $TEST_39_MTIME ] || \
3230                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
3231
3232                 cancel_lru_locks osc
3233                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3234         done
3235 }
3236 run_test 39e "create, stat, utime, stat ========================"
3237
3238 # bug 21114
3239 test_39f() {
3240         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3241         touch $DIR1/$tfile
3242         mtime1=`stat -c %Y $DIR1/$tfile`
3243
3244         sleep 2
3245         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3246
3247         for (( i=0; i < 2; i++ )) ; do
3248                 local mtime2=`stat -c %Y $DIR1/$tfile`
3249                 [ $mtime2 = $TEST_39_MTIME ] || \
3250                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
3251
3252                 cancel_lru_locks osc
3253                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3254         done
3255 }
3256 run_test 39f "create, stat, sleep, utime, stat ================="
3257
3258 # bug 11063
3259 test_39g() {
3260         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3261         echo hello >> $DIR1/$tfile
3262         local mtime1=`stat -c %Y $DIR1/$tfile`
3263
3264         sleep 2
3265         chmod o+r $DIR1/$tfile
3266
3267         for (( i=0; i < 2; i++ )) ; do
3268                 local mtime2=`stat -c %Y $DIR1/$tfile`
3269                 [ "$mtime1" = "$mtime2" ] || \
3270                         error "lost mtime: $mtime2, should be $mtime1"
3271
3272                 cancel_lru_locks osc
3273                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3274         done
3275 }
3276 run_test 39g "write, chmod, stat ==============================="
3277
3278 # bug 11063
3279 test_39h() {
3280         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3281         touch $DIR1/$tfile
3282         sleep 1
3283
3284         local d1=`date`
3285         echo hello >> $DIR1/$tfile
3286         local mtime1=`stat -c %Y $DIR1/$tfile`
3287
3288         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3289         local d2=`date`
3290         if [ "$d1" != "$d2" ]; then
3291                 echo "write and touch not within one second"
3292         else
3293                 for (( i=0; i < 2; i++ )) ; do
3294                         local mtime2=`stat -c %Y $DIR1/$tfile`
3295                         [ "$mtime2" = $TEST_39_MTIME ] || \
3296                                 error "lost mtime: $mtime2, should be $TEST_39_MTIME"
3297
3298                         cancel_lru_locks osc
3299                         if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3300                 done
3301         fi
3302 }
3303 run_test 39h "write, utime within one second, stat ============="
3304
3305 test_39i() {
3306         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3307         touch $DIR1/$tfile
3308         sleep 1
3309
3310         echo hello >> $DIR1/$tfile
3311         local mtime1=`stat -c %Y $DIR1/$tfile`
3312
3313         mv $DIR1/$tfile $DIR1/$tfile-1
3314
3315         for (( i=0; i < 2; i++ )) ; do
3316                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
3317
3318                 [ "$mtime1" = "$mtime2" ] || \
3319                         error "lost mtime: $mtime2, should be $mtime1"
3320
3321                 cancel_lru_locks osc
3322                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3323         done
3324 }
3325 run_test 39i "write, rename, stat =============================="
3326
3327 test_39j() {
3328         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3329         start_full_debug_logging
3330         touch $DIR1/$tfile
3331         sleep 1
3332
3333         #define OBD_FAIL_OSC_DELAY_SETTIME       0x412
3334         lctl set_param fail_loc=0x80000412
3335         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c ||
3336                 error "multiop failed"
3337         local multipid=$!
3338         local mtime1=`stat -c %Y $DIR1/$tfile`
3339
3340         mv $DIR1/$tfile $DIR1/$tfile-1
3341
3342         kill -USR1 $multipid
3343         wait $multipid || error "multiop close failed"
3344
3345         for (( i=0; i < 2; i++ )) ; do
3346                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
3347                 [ "$mtime1" = "$mtime2" ] ||
3348                         error "mtime is lost on close: $mtime2, " \
3349                               "should be $mtime1"
3350
3351                 cancel_lru_locks osc
3352                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3353         done
3354         lctl set_param fail_loc=0
3355         stop_full_debug_logging
3356 }
3357 run_test 39j "write, rename, close, stat ======================="
3358
3359 test_39k() {
3360         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3361         touch $DIR1/$tfile
3362         sleep 1
3363
3364         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c || error "multiop failed"
3365         local multipid=$!
3366         local mtime1=`stat -c %Y $DIR1/$tfile`
3367
3368         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3369
3370         kill -USR1 $multipid
3371         wait $multipid || error "multiop close failed"
3372
3373         for (( i=0; i < 2; i++ )) ; do
3374                 local mtime2=`stat -c %Y $DIR1/$tfile`
3375
3376                 [ "$mtime2" = $TEST_39_MTIME ] || \
3377                         error "mtime is lost on close: $mtime2, should be $TEST_39_MTIME"
3378
3379                 cancel_lru_locks osc
3380                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3381         done
3382 }
3383 run_test 39k "write, utime, close, stat ========================"
3384
3385 # this should be set to future
3386 TEST_39_ATIME=`date -d "1 year" +%s`
3387
3388 test_39l() {
3389         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3390         remote_mds_nodsh && skip "remote MDS with nodsh" && return
3391         local atime_diff=$(do_facet $SINGLEMDS \
3392                                 lctl get_param -n mdd.*MDT0000*.atime_diff)
3393         rm -rf $DIR/$tdir
3394         mkdir -p $DIR/$tdir
3395
3396         # test setting directory atime to future
3397         touch -a -d @$TEST_39_ATIME $DIR/$tdir
3398         local atime=$(stat -c %X $DIR/$tdir)
3399         [ "$atime" = $TEST_39_ATIME ] ||
3400                 error "atime is not set to future: $atime, $TEST_39_ATIME"
3401
3402         # test setting directory atime from future to now
3403         local now=$(date +%s)
3404         touch -a -d @$now $DIR/$tdir
3405
3406         atime=$(stat -c %X $DIR/$tdir)
3407         [ "$atime" -eq "$now"  ] ||
3408                 error "atime is not updated from future: $atime, $now"
3409
3410         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=2
3411         sleep 3
3412
3413         # test setting directory atime when now > dir atime + atime_diff
3414         local d1=$(date +%s)
3415         ls $DIR/$tdir
3416         local d2=$(date +%s)
3417         cancel_lru_locks mdc
3418         atime=$(stat -c %X $DIR/$tdir)
3419         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] ||
3420                 error "atime is not updated  : $atime, should be $d2"
3421
3422         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=60
3423         sleep 3
3424
3425         # test not setting directory atime when now < dir atime + atime_diff
3426         ls $DIR/$tdir
3427         cancel_lru_locks mdc
3428         atime=$(stat -c %X $DIR/$tdir)
3429         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] ||
3430                 error "atime is updated to $atime, should remain $d1<atime<$d2"
3431
3432         do_facet $SINGLEMDS \
3433                 lctl set_param -n mdd.*MDT0000*.atime_diff=$atime_diff
3434 }
3435 run_test 39l "directory atime update ==========================="
3436
3437 test_39m() {
3438         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3439         touch $DIR1/$tfile
3440         sleep 2
3441         local far_past_mtime=$(date -d "May 29 1953" +%s)
3442         local far_past_atime=$(date -d "Dec 17 1903" +%s)
3443
3444         touch -m -d @$far_past_mtime $DIR1/$tfile
3445         touch -a -d @$far_past_atime $DIR1/$tfile
3446
3447         for (( i=0; i < 2; i++ )) ; do
3448                 local timestamps=$(stat -c "%X %Y" $DIR1/$tfile)
3449                 [ "$timestamps" = "$far_past_atime $far_past_mtime" ] || \
3450                         error "atime or mtime set incorrectly"
3451
3452                 cancel_lru_locks osc
3453                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3454         done
3455 }
3456 run_test 39m "test atime and mtime before 1970"
3457
3458 test_39n() { # LU-3832
3459         remote_mds_nodsh && skip "remote MDS with nodsh" && return
3460         local atime_diff=$(do_facet $SINGLEMDS \
3461                 lctl get_param -n mdd.*MDT0000*.atime_diff)
3462         local atime0
3463         local atime1
3464         local atime2
3465
3466         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=1
3467
3468         rm -rf $DIR/$tfile
3469         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 status=noxfer
3470         atime0=$(stat -c %X $DIR/$tfile)
3471
3472         sleep 5
3473         $MULTIOP $DIR/$tfile oO_RDONLY:O_NOATIME:r4096c
3474         atime1=$(stat -c %X $DIR/$tfile)
3475
3476         sleep 5
3477         cancel_lru_locks mdc
3478         cancel_lru_locks osc
3479         $MULTIOP $DIR/$tfile oO_RDONLY:O_NOATIME:r4096c
3480         atime2=$(stat -c %X $DIR/$tfile)
3481
3482         do_facet $SINGLEMDS \
3483                 lctl set_param -n mdd.*MDT0000*.atime_diff=$atime_diff
3484
3485         [ "$atime0" -eq "$atime1" ] || error "atime0 $atime0 != atime1 $atime1"
3486         [ "$atime1" -eq "$atime2" ] || error "atime0 $atime0 != atime1 $atime1"
3487 }
3488 run_test 39n "check that O_NOATIME is honored"
3489
3490 test_39o() {
3491         TESTDIR=$DIR/$tdir/$tfile
3492         [ -e $TESTDIR ] && rm -rf $TESTDIR
3493         mkdir -p $TESTDIR
3494         cd $TESTDIR
3495         links1=2
3496         ls
3497         mkdir a b
3498         ls
3499         links2=$(stat -c %h .)
3500         [ $(($links1 + 2)) != $links2 ] &&
3501                 error "wrong links count $(($links1 + 2)) != $links2"
3502         rmdir b
3503         links3=$(stat -c %h .)
3504         [ $(($links1 + 1)) != $links3 ] &&
3505                 error "wrong links count $links1 != $links3"
3506         return 0
3507 }
3508 run_test 39o "directory cached attributes updated after create ========"
3509
3510 test_39p() {
3511         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
3512         local MDTIDX=1
3513         TESTDIR=$DIR/$tdir/$tfile
3514         [ -e $TESTDIR ] && rm -rf $TESTDIR
3515         test_mkdir -p $TESTDIR
3516         cd $TESTDIR
3517         links1=2
3518         ls
3519         $LFS mkdir -i $MDTIDX $TESTDIR/remote_dir1
3520         $LFS mkdir -i $MDTIDX $TESTDIR/remote_dir2
3521         ls
3522         links2=$(stat -c %h .)
3523         [ $(($links1 + 2)) != $links2 ] &&
3524                 error "wrong links count $(($links1 + 2)) != $links2"
3525         rmdir remote_dir2
3526         links3=$(stat -c %h .)
3527         [ $(($links1 + 1)) != $links3 ] &&
3528                 error "wrong links count $links1 != $links3"
3529         return 0
3530 }
3531 run_test 39p "remote directory cached attributes updated after create ========"
3532
3533
3534 test_39q() { # LU-8041
3535         local testdir=$DIR/$tdir
3536         mkdir -p $testdir
3537         multiop_bg_pause $testdir D_c || error "multiop failed"
3538         local multipid=$!
3539         cancel_lru_locks mdc
3540         kill -USR1 $multipid
3541         local atime=$(stat -c %X $testdir)
3542         [ "$atime" -ne 0 ] || error "atime is zero"
3543 }
3544 run_test 39q "close won't zero out atime"
3545
3546 test_40() {
3547         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
3548         $RUNAS $OPENFILE -f O_WRONLY:O_TRUNC $DIR/$tfile &&
3549                 error "openfile O_WRONLY:O_TRUNC $tfile failed"
3550         $CHECKSTAT -t file -s 4096 $DIR/$tfile ||
3551                 error "$tfile is not 4096 bytes in size"
3552 }
3553 run_test 40 "failed open(O_TRUNC) doesn't truncate ============="
3554
3555 test_41() {
3556         # bug 1553
3557         small_write $DIR/f41 18
3558 }
3559 run_test 41 "test small file write + fstat ====================="
3560
3561 count_ost_writes() {
3562         lctl get_param -n osc.*.stats |
3563                 awk -vwrites=0 '/ost_write/ { writes += $2 } \
3564                         END { printf("%0.0f", writes) }'
3565 }
3566
3567 # decent default
3568 WRITEBACK_SAVE=500
3569 DIRTY_RATIO_SAVE=40
3570 MAX_DIRTY_RATIO=50
3571 BG_DIRTY_RATIO_SAVE=10
3572 MAX_BG_DIRTY_RATIO=25
3573
3574 start_writeback() {
3575         trap 0
3576         # in 2.6, restore /proc/sys/vm/dirty_writeback_centisecs,
3577         # dirty_ratio, dirty_background_ratio
3578         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
3579                 sysctl -w vm.dirty_writeback_centisecs=$WRITEBACK_SAVE
3580                 sysctl -w vm.dirty_background_ratio=$BG_DIRTY_RATIO_SAVE
3581                 sysctl -w vm.dirty_ratio=$DIRTY_RATIO_SAVE
3582         else
3583                 # if file not here, we are a 2.4 kernel
3584                 kill -CONT `pidof kupdated`
3585         fi
3586 }
3587
3588 stop_writeback() {
3589         # setup the trap first, so someone cannot exit the test at the
3590         # exact wrong time and mess up a machine
3591         trap start_writeback EXIT
3592         # in 2.6, save and 0 /proc/sys/vm/dirty_writeback_centisecs
3593         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
3594                 WRITEBACK_SAVE=`sysctl -n vm.dirty_writeback_centisecs`
3595                 sysctl -w vm.dirty_writeback_centisecs=0
3596                 sysctl -w vm.dirty_writeback_centisecs=0
3597                 # save and increase /proc/sys/vm/dirty_ratio
3598                 DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_ratio`
3599                 sysctl -w vm.dirty_ratio=$MAX_DIRTY_RATIO
3600                 # save and increase /proc/sys/vm/dirty_background_ratio
3601                 BG_DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_background_ratio`
3602                 sysctl -w vm.dirty_background_ratio=$MAX_BG_DIRTY_RATIO
3603         else
3604                 # if file not here, we are a 2.4 kernel
3605                 kill -STOP `pidof kupdated`
3606         fi
3607 }
3608
3609 # ensure that all stripes have some grant before we test client-side cache
3610 setup_test42() {
3611         for i in `seq -f $DIR/f42-%g 1 $OSTCOUNT`; do
3612                 dd if=/dev/zero of=$i bs=4k count=1
3613                 rm $i
3614         done
3615 }
3616
3617 # Tests 42* verify that our behaviour is correct WRT caching, file closure,
3618 # file truncation, and file removal.
3619 test_42a() {
3620         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3621         setup_test42
3622         cancel_lru_locks osc
3623         stop_writeback
3624         sync; sleep 1; sync # just to be safe
3625         BEFOREWRITES=`count_ost_writes`
3626         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur_grant_bytes | grep "[0-9]"
3627         dd if=/dev/zero of=$DIR/f42a bs=1024 count=100
3628         AFTERWRITES=`count_ost_writes`
3629         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
3630                 error "$BEFOREWRITES < $AFTERWRITES"
3631         start_writeback
3632 }
3633 run_test 42a "ensure that we don't flush on close =============="
3634
3635 test_42b() {
3636         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3637         setup_test42
3638         cancel_lru_locks osc
3639         stop_writeback
3640         sync
3641         dd if=/dev/zero of=$DIR/f42b bs=1024 count=100
3642         BEFOREWRITES=$(count_ost_writes)
3643         $MUNLINK $DIR/f42b || error "$MUNLINK $DIR/f42b: $?"
3644         AFTERWRITES=$(count_ost_writes)
3645         if [[ $BEFOREWRITES -lt $AFTERWRITES ]]; then
3646                 error "$BEFOREWRITES < $AFTERWRITES on unlink"
3647         fi
3648         BEFOREWRITES=$(count_ost_writes)
3649         sync || error "sync: $?"
3650         AFTERWRITES=$(count_ost_writes)
3651         if [[ $BEFOREWRITES -lt $AFTERWRITES ]]; then
3652                 error "$BEFOREWRITES < $AFTERWRITES on sync"
3653         fi
3654         dmesg | grep 'error from obd_brw_async' && error 'error writing back'
3655         start_writeback
3656         return 0
3657 }
3658 run_test 42b "test destroy of file with cached dirty data ======"
3659
3660 # if these tests just want to test the effect of truncation,
3661 # they have to be very careful.  consider:
3662 # - the first open gets a {0,EOF}PR lock
3663 # - the first write conflicts and gets a {0, count-1}PW
3664 # - the rest of the writes are under {count,EOF}PW
3665 # - the open for truncate tries to match a {0,EOF}PR
3666 #   for the filesize and cancels the PWs.
3667 # any number of fixes (don't get {0,EOF} on open, match
3668 # composite locks, do smarter file size management) fix
3669 # this, but for now we want these tests to verify that
3670 # the cancellation with truncate intent works, so we
3671 # start the file with a full-file pw lock to match against
3672 # until the truncate.
3673 trunc_test() {
3674         test=$1
3675         file=$DIR/$test
3676         offset=$2
3677         cancel_lru_locks osc
3678         stop_writeback
3679         # prime the file with 0,EOF PW to match
3680         touch $file
3681         $TRUNCATE $file 0
3682         sync; sync
3683         # now the real test..
3684         dd if=/dev/zero of=$file bs=1024 count=100
3685         BEFOREWRITES=`count_ost_writes`
3686         $TRUNCATE $file $offset
3687         cancel_lru_locks osc
3688         AFTERWRITES=`count_ost_writes`
3689         start_writeback
3690 }
3691
3692 test_42c() {
3693         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3694         trunc_test 42c 1024
3695         [ $BEFOREWRITES -eq $AFTERWRITES ] && \
3696             error "beforewrites $BEFOREWRITES == afterwrites $AFTERWRITES on truncate"
3697         rm $file
3698 }
3699 run_test 42c "test partial truncate of file with cached dirty data"
3700
3701 test_42d() {
3702         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3703         trunc_test 42d 0
3704         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
3705             error "beforewrites $BEFOREWRITES != afterwrites $AFTERWRITES on truncate"
3706         rm $file
3707 }
3708 run_test 42d "test complete truncate of file with cached dirty data"
3709
3710 test_42e() { # bug22074
3711         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3712         local TDIR=$DIR/${tdir}e
3713         local pagesz=$(page_size)
3714         local pages=16 # hardcoded 16 pages, don't change it.
3715         local files=$((OSTCOUNT * 500)) # hopefully 500 files on each OST
3716         local proc_osc0="osc.${FSNAME}-OST0000-osc-[^MDT]*"
3717         local max_dirty_mb
3718         local warmup_files
3719
3720         test_mkdir -p $DIR/${tdir}e
3721         $SETSTRIPE -c 1 $TDIR
3722         createmany -o $TDIR/f $files
3723
3724         max_dirty_mb=$($LCTL get_param -n $proc_osc0/max_dirty_mb)
3725
3726         # we assume that with $OSTCOUNT files, at least one of them will
3727         # be allocated on OST0.
3728         warmup_files=$((OSTCOUNT * max_dirty_mb))
3729         createmany -o $TDIR/w $warmup_files
3730
3731         # write a large amount of data into one file and sync, to get good
3732         # avail_grant number from OST.
3733         for ((i=0; i<$warmup_files; i++)); do
3734                 idx=$($GETSTRIPE -i $TDIR/w$i)
3735                 [ $idx -ne 0 ] && continue
3736                 dd if=/dev/zero of=$TDIR/w$i bs="$max_dirty_mb"M count=1
3737                 break
3738         done
3739         [[ $i -gt $warmup_files ]] && error "OST0 is still cold"
3740         sync
3741         $LCTL get_param $proc_osc0/cur_dirty_bytes
3742         $LCTL get_param $proc_osc0/cur_grant_bytes
3743
3744         # create as much dirty pages as we can while not to trigger the actual
3745         # RPCs directly. but depends on the env, VFS may trigger flush during this
3746         # period, hopefully we are good.
3747         for ((i=0; i<$warmup_files; i++)); do
3748                 idx=$($GETSTRIPE -i $TDIR/w$i)
3749                 [ $idx -ne 0 ] && continue
3750                 dd if=/dev/zero of=$TDIR/w$i bs=1M count=1 2>/dev/null
3751         done
3752         $LCTL get_param $proc_osc0/cur_dirty_bytes
3753         $LCTL get_param $proc_osc0/cur_grant_bytes
3754
3755         # perform the real test
3756         $LCTL set_param $proc_osc0/rpc_stats 0
3757         for ((;i<$files; i++)); do
3758                 [ $($GETSTRIPE -i $TDIR/f$i) -eq 0 ] || continue
3759                 dd if=/dev/zero of=$TDIR/f$i bs=$pagesz count=$pages 2>/dev/null
3760         done
3761         sync
3762         $LCTL get_param $proc_osc0/rpc_stats
3763
3764         local percent=0
3765         local have_ppr=false
3766         $LCTL get_param $proc_osc0/rpc_stats |
3767                 while read PPR RRPC RPCT RCUM BAR WRPC WPCT WCUM; do
3768                         # skip lines until we are at the RPC histogram data
3769                         [ "$PPR" == "pages" ] && have_ppr=true && continue
3770                         $have_ppr || continue
3771
3772                         # we only want the percent stat for < 16 pages
3773                         [[ $(echo $PPR | tr -d ':') -ge $pages ]] && break
3774
3775                         percent=$((percent + WPCT))
3776                         if [[ $percent -gt 15 ]]; then
3777                                 error "less than 16-pages write RPCs" \
3778                                       "$percent% > 15%"
3779                                 break
3780                         fi
3781                 done
3782         rm -rf $TDIR
3783 }
3784 run_test 42e "verify sub-RPC writes are not done synchronously"
3785
3786 test_43() {
3787         test_mkdir -p $DIR/$tdir
3788         cp -p /bin/ls $DIR/$tdir/$tfile
3789         $MULTIOP $DIR/$tdir/$tfile Ow_c &
3790         pid=$!
3791         # give multiop a chance to open
3792         sleep 1
3793
3794         $DIR/$tdir/$tfile && error || true
3795         kill -USR1 $pid
3796 }
3797 run_test 43 "execution of file opened for write should return -ETXTBSY"
3798
3799 test_43a() {
3800         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3801         test_mkdir -p $DIR/$tdir
3802         cp -p `which $MULTIOP` $DIR/$tdir/multiop ||
3803                         cp -p multiop $DIR/$tdir/multiop
3804         MULTIOP_PROG=$DIR/$tdir/multiop multiop_bg_pause $TMP/$tfile.junk O_c ||
3805                         return 1
3806         MULTIOP_PID=$!
3807         $MULTIOP $DIR/$tdir/multiop Oc && error "expected error, got success"
3808         kill -USR1 $MULTIOP_PID || return 2
3809         wait $MULTIOP_PID || return 3
3810         rm $TMP/$tfile.junk $DIR/$tdir/multiop
3811 }
3812 run_test 43a "open(RDWR) of file being executed should return -ETXTBSY"
3813
3814 test_43b() {
3815         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3816         test_mkdir -p $DIR/$tdir
3817         cp -p `which $MULTIOP` $DIR/$tdir/multiop ||
3818                         cp -p multiop $DIR/$tdir/multiop
3819         MULTIOP_PROG=$DIR/$tdir/multiop multiop_bg_pause $TMP/$tfile.junk O_c ||
3820                         return 1
3821         MULTIOP_PID=$!
3822         $TRUNCATE $DIR/$tdir/multiop 0 && error "expected error, got success"
3823         kill -USR1 $MULTIOP_PID || return 2
3824         wait $MULTIOP_PID || return 3
3825         rm $TMP/$tfile.junk $DIR/$tdir/multiop
3826 }
3827 run_test 43b "truncate of file being executed should return -ETXTBSY"
3828
3829 test_43c() {
3830         local testdir="$DIR/$tdir"
3831         test_mkdir -p $DIR/$tdir
3832         cp $SHELL $testdir/
3833         ( cd $(dirname $SHELL) && md5sum $(basename $SHELL) ) | \
3834                 ( cd $testdir && md5sum -c)
3835 }
3836 run_test 43c "md5sum of copy into lustre========================"
3837
3838 test_44() {
3839         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping 2-stripe test" && return
3840         dd if=/dev/zero of=$DIR/f1 bs=4k count=1 seek=1023
3841         dd if=$DIR/f1 bs=4k count=1 > /dev/null
3842 }
3843 run_test 44 "zero length read from a sparse stripe ============="
3844
3845 test_44a() {
3846         local nstripe=$($LCTL lov_getconfig $DIR | grep default_stripe_count: |
3847                 awk '{ print $2 }')
3848         [ -z "$nstripe" ] && skip "can't get stripe info" && return
3849         [[ $nstripe -gt $OSTCOUNT ]] &&
3850             skip "Wrong default_stripe_count: $nstripe (OSTCOUNT: $OSTCOUNT)" &&
3851             return
3852         local stride=$($LCTL lov_getconfig $DIR | grep default_stripe_size: |
3853                 awk '{ print $2 }')
3854         if [[ $nstripe -eq 0 || $nstripe -eq -1 ]]; then
3855                 nstripe=$($LCTL lov_getconfig $DIR | grep obd_count: |
3856                         awk '{ print $2 }')
3857         fi
3858
3859         OFFSETS="0 $((stride/2)) $((stride-1))"
3860         for offset in $OFFSETS; do
3861                 for i in $(seq 0 $((nstripe-1))); do
3862                         local GLOBALOFFSETS=""
3863                         # size in Bytes
3864                         local size=$((((i + 2 * $nstripe )*$stride + $offset)))
3865                         local myfn=$DIR/d44a-$size
3866                         echo "--------writing $myfn at $size"
3867                         ll_sparseness_write $myfn $size ||
3868                                 error "ll_sparseness_write"
3869                         GLOBALOFFSETS="$GLOBALOFFSETS $size"
3870                         ll_sparseness_verify $myfn $GLOBALOFFSETS ||
3871                                 error "ll_sparseness_verify $GLOBALOFFSETS"
3872
3873                         for j in $(seq 0 $((nstripe-1))); do
3874                                 # size in Bytes
3875                                 size=$((((j + $nstripe )*$stride + $offset)))
3876                                 ll_sparseness_write $myfn $size ||
3877                                         error "ll_sparseness_write"
3878                                 GLOBALOFFSETS="$GLOBALOFFSETS $size"
3879                         done
3880                         ll_sparseness_verify $myfn $GLOBALOFFSETS ||
3881                                 error "ll_sparseness_verify $GLOBALOFFSETS"
3882                         rm -f $myfn
3883                 done
3884         done
3885 }
3886 run_test 44a "test sparse pwrite ==============================="
3887
3888 dirty_osc_total() {
3889         tot=0
3890         for d in `lctl get_param -n osc.*.cur_dirty_bytes`; do
3891                 tot=$(($tot + $d))
3892         done
3893         echo $tot
3894 }
3895 do_dirty_record() {
3896         before=`dirty_osc_total`
3897         echo executing "\"$*\""
3898         eval $*
3899         after=`dirty_osc_total`
3900         echo before $before, after $after
3901 }
3902 test_45() {
3903         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3904         f="$DIR/f45"
3905         # Obtain grants from OST if it supports it
3906         echo blah > ${f}_grant
3907         stop_writeback
3908         sync
3909         do_dirty_record "echo blah > $f"
3910         [[ $before -eq $after ]] && error "write wasn't cached"
3911         do_dirty_record "> $f"
3912         [[ $before -gt $after ]] || error "truncate didn't lower dirty count"
3913         do_dirty_record "echo blah > $f"
3914         [[ $before -eq $after ]] && error "write wasn't cached"
3915         do_dirty_record "sync"
3916         [[ $before -gt $after ]] || error "writeback didn't lower dirty count"
3917         do_dirty_record "echo blah > $f"
3918         [[ $before -eq $after ]] && error "write wasn't cached"
3919         do_dirty_record "cancel_lru_locks osc"
3920         [[ $before -gt $after ]] ||
3921                 error "lock cancellation didn't lower dirty count"
3922         start_writeback
3923 }
3924 run_test 45 "osc io page accounting ============================"
3925
3926 # in a 2 stripe file (lov.sh), page 1023 maps to page 511 in its object.  this
3927 # test tickles a bug where re-dirtying a page was failing to be mapped to the
3928 # objects offset and an assert hit when an rpc was built with 1023's mapped
3929 # offset 511 and 511's raw 511 offset. it also found general redirtying bugs.
3930 test_46() {
3931         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3932         f="$DIR/f46"
3933         stop_writeback
3934         sync
3935         dd if=/dev/zero of=$f bs=`page_size` seek=511 count=1
3936         sync
3937         dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=1023 count=1
3938         dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=511 count=1
3939         sync
3940         start_writeback
3941 }
3942 run_test 46 "dirtying a previously written page ================"
3943
3944 # test_47 is removed "Device nodes check" is moved to test_28
3945
3946 test_48a() { # bug 2399
3947         [ $(facet_fstype $SINGLEMDS) = "zfs" ] &&
3948         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.63) ] &&
3949                 skip "MDS prior to 2.3.63 handle ZFS dir .. incorrectly" &&
3950                 return
3951         test_mkdir $DIR/$tdir
3952         cd $DIR/$tdir
3953         mv $DIR/$tdir $DIR/$tdir.new || error "move directory failed"
3954         test_mkdir $DIR/$tdir || error "recreate directory failed"
3955         touch foo || error "'touch foo' failed after recreating cwd"
3956         test_mkdir bar || error "'mkdir foo' failed after recreating cwd"
3957         touch .foo || error "'touch .foo' failed after recreating cwd"
3958         test_mkdir .bar || error "'mkdir .foo' failed after recreating cwd"
3959         ls . > /dev/null || error "'ls .' failed after recreating cwd"
3960         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
3961         cd . || error "'cd .' failed after recreating cwd"
3962         test_mkdir . && error "'mkdir .' worked after recreating cwd"
3963         rmdir . && error "'rmdir .' worked after recreating cwd"
3964         ln -s . baz || error "'ln -s .' failed after recreating cwd"
3965         cd .. || error "'cd ..' failed after recreating cwd"
3966 }
3967 run_test 48a "Access renamed working dir (should return errors)="
3968
3969 test_48b() { # bug 2399
3970         rm -rf $DIR/$tdir
3971         test_mkdir $DIR/$tdir
3972         cd $DIR/$tdir
3973         rmdir $DIR/$tdir || error "remove cwd $DIR/$tdir failed"
3974         touch foo && error "'touch foo' worked after removing cwd"
3975         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         ls . > /dev/null && error "'ls .' worked after removing cwd"
3979         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
3980         test_mkdir . && error "'mkdir .' worked after removing cwd"
3981         rmdir . && error "'rmdir .' worked after removing cwd"
3982         ln -s . foo && error "'ln -s .' worked after removing cwd"
3983         cd .. || echo "'cd ..' failed after removing cwd `pwd`"  #bug 3517
3984 }
3985 run_test 48b "Access removed working dir (should return errors)="
3986
3987 test_48c() { # 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 touch foo && error "touch foo worked after removing cwd"
3995         $TRACE test_mkdir foo && error "'mkdir foo' worked after removing cwd"
3996         touch .foo && error "touch .foo worked after removing cwd"
3997         test_mkdir .foo && error "mkdir .foo worked after removing cwd"
3998         $TRACE ls . && error "'ls .' worked after removing cwd"
3999         $TRACE ls .. || error "'ls ..' failed after removing cwd"
4000         $TRACE test_mkdir . && error "'mkdir .' worked after removing cwd"
4001         $TRACE rmdir . && error "'rmdir .' worked after removing cwd"
4002         $TRACE ln -s . foo && error "'ln -s .' worked after removing cwd"
4003         $TRACE cd .. || echo "'cd ..' failed after removing cwd `pwd`" #bug 3415
4004 }
4005 run_test 48c "Access removed working subdir (should return errors)"
4006
4007 test_48d() { # bug 2350
4008         #lctl set_param debug=-1
4009         #set -vx
4010         rm -rf $DIR/$tdir
4011         test_mkdir -p $DIR/$tdir/dir
4012         cd $DIR/$tdir/dir
4013         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
4014         $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
4015         $TRACE touch foo && error "'touch foo' worked after removing parent"
4016         $TRACE test_mkdir foo && error "mkdir foo worked after removing parent"
4017         touch .foo && error "'touch .foo' worked after removing parent"
4018         test_mkdir .foo && error "mkdir .foo worked after removing parent"
4019         $TRACE ls . && error "'ls .' worked after removing parent"
4020         $TRACE ls .. && error "'ls ..' worked after removing parent"
4021         $TRACE test_mkdir . && error "'mkdir .' worked after removing parent"
4022         $TRACE rmdir . && error "'rmdir .' worked after removing parent"
4023         $TRACE ln -s . foo && error "'ln -s .' worked after removing parent"
4024         true
4025 }
4026 run_test 48d "Access removed parent subdir (should return errors)"
4027
4028 test_48e() { # bug 4134
4029         #lctl set_param debug=-1
4030         #set -vx
4031         rm -rf $DIR/$tdir
4032         test_mkdir -p $DIR/$tdir/dir
4033         cd $DIR/$tdir/dir
4034         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
4035         $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
4036         $TRACE touch $DIR/$tdir || error "'touch $DIR/$tdir' failed"
4037         $TRACE chmod +x $DIR/$tdir || error "'chmod +x $DIR/$tdir' failed"
4038         # On a buggy kernel addition of "touch foo" after cd .. will
4039         # produce kernel oops in lookup_hash_it
4040         touch ../foo && error "'cd ..' worked after recreate parent"
4041         cd $DIR
4042         $TRACE rm $DIR/$tdir || error "rm '$DIR/$tdir' failed"
4043 }
4044 run_test 48e "Access to recreated parent subdir (should return errors)"
4045
4046 test_49() { # LU-1030
4047         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4048         remote_ost_nodsh && skip "remote OST with nodsh" && return
4049         # get ost1 size - lustre-OST0000
4050         ost1_size=$(do_facet ost1 $LFS df | grep ${ost1_svc} |
4051                 awk '{ print $4 }')
4052         # write 800M at maximum
4053         [[ $ost1_size -lt 2 ]] && ost1_size=2
4054         [[ $ost1_size -gt 819200 ]] && ost1_size=819200
4055
4056         $SETSTRIPE -c 1 -i 0 $DIR/$tfile
4057         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((ost1_size >> 2)) &
4058         local dd_pid=$!
4059
4060         # change max_pages_per_rpc while writing the file
4061         local osc1_mppc=osc.$(get_osc_import_name client ost1).max_pages_per_rpc
4062         local orig_mppc=$($LCTL get_param -n $osc1_mppc)
4063         # loop until dd process exits
4064         while ps ax -opid | grep -wq $dd_pid; do
4065                 $LCTL set_param $osc1_mppc=$((RANDOM % 256 + 1))
4066                 sleep $((RANDOM % 5 + 1))
4067         done
4068         # restore original max_pages_per_rpc
4069         $LCTL set_param $osc1_mppc=$orig_mppc
4070         rm $DIR/$tfile || error "rm $DIR/$tfile failed"
4071 }
4072 run_test 49 "Change max_pages_per_rpc won't break osc extent"
4073
4074 test_50() {
4075         # bug 1485
4076         test_mkdir $DIR/$tdir
4077         cd $DIR/$tdir
4078         ls /proc/$$/cwd || error "ls /proc/$$/cwd failed"
4079 }
4080 run_test 50 "special situations: /proc symlinks  ==============="
4081
4082 test_51a() {    # was test_51
4083         # bug 1516 - create an empty entry right after ".." then split dir
4084         test_mkdir -c1 $DIR/$tdir
4085         touch $DIR/$tdir/foo
4086         $MCREATE $DIR/$tdir/bar
4087         rm $DIR/$tdir/foo
4088         createmany -m $DIR/$tdir/longfile 201
4089         FNUM=202
4090         while [[ $(ls -sd $DIR/$tdir | awk '{ print $1 }') -eq 4 ]]; do
4091                 $MCREATE $DIR/$tdir/longfile$FNUM
4092                 FNUM=$(($FNUM + 1))
4093                 echo -n "+"
4094         done
4095         echo
4096         ls -l $DIR/$tdir > /dev/null || error "ls -l $DIR/$tdir failed"
4097 }
4098 run_test 51a "special situations: split htree with empty entry =="
4099
4100 cleanup_print_lfs_df () {
4101         trap 0
4102         $LFS df
4103         $LFS df -i
4104 }
4105
4106 test_51b() {
4107         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4108         local dir=$DIR/$tdir
4109
4110         local nrdirs=$((65536 + 100))
4111
4112         # cleanup the directory
4113         rm -fr $dir
4114
4115         test_mkdir -p -c1 $dir
4116
4117         $LFS df
4118         $LFS df -i
4119         local mdtidx=$(printf "%04x" $($LFS getstripe -M $dir))
4120         local numfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.filesfree)
4121         [[ $numfree -lt $nrdirs ]] &&
4122                 skip "not enough free inodes ($numfree) on MDT$mdtidx" &&
4123                 return
4124
4125         # need to check free space for the directories as well
4126         local blkfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.kbytesavail)
4127         numfree=$(( blkfree / $(fs_inode_ksize) ))
4128         [[ $numfree -lt $nrdirs ]] && skip "not enough blocks ($numfree)" &&
4129                 return
4130
4131         trap cleanup_print_lfsdf EXIT
4132
4133         # create files
4134         createmany -d $dir/d $nrdirs ||
4135                 error "failed to create $nrdirs subdirs in MDT$mdtidx:$dir"
4136
4137         # really created :
4138         nrdirs=$(ls -U $dir | wc -l)
4139
4140         # unlink all but 100 subdirectories, then check it still works
4141         local left=100
4142         local delete=$((nrdirs - left))
4143
4144         $LFS df
4145         $LFS df -i
4146
4147         # for ldiskfs the nlink count should be 1, but this is OSD specific
4148         # and so this is listed for informational purposes only
4149         echo "nlink before: $(stat -c %h $dir), created before: $nrdirs"
4150         unlinkmany -d $dir/d $delete ||
4151                 error "unlink of first $delete subdirs failed"
4152
4153         echo "nlink between: $(stat -c %h $dir)"
4154         local found=$(ls -U $dir | wc -l)
4155         [ $found -ne $left ] &&
4156                 error "can't find subdirs: found only $found, expected $left"
4157
4158         unlinkmany -d $dir/d $delete $left ||
4159                 error "unlink of second $left subdirs failed"
4160         # regardless of whether the backing filesystem tracks nlink accurately
4161         # or not, the nlink count shouldn't be more than "." and ".." here
4162         local after=$(stat -c %h $dir)
4163         [[ $after -gt 2 ]] && error "nlink after: $after > 2" ||
4164                 echo "nlink after: $after"
4165
4166         cleanup_print_lfs_df
4167 }
4168 run_test 51b "exceed 64k subdirectory nlink limit on create, verify unlink"
4169
4170 test_51d() {
4171         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4172         [[ $OSTCOUNT -lt 3 ]] &&
4173                 skip_env "skipping test with few OSTs" && return
4174         test_mkdir -p $DIR/$tdir
4175         createmany -o $DIR/$tdir/t- 1000
4176         $GETSTRIPE $DIR/$tdir > $TMP/$tfile
4177         for N in $(seq 0 $((OSTCOUNT - 1))); do
4178                 OBJS[$N]=$(awk -vobjs=0 '($1 == '$N') { objs += 1 } \
4179                         END { printf("%0.0f", objs) }' $TMP/$tfile)
4180                 OBJS0[$N]=$(grep -A 1 idx $TMP/$tfile | awk -vobjs=0 \
4181                         '($1 == '$N') { objs += 1 } \
4182                         END { printf("%0.0f", objs) }')
4183                 log "OST$N has ${OBJS[$N]} objects, ${OBJS0[$N]} are index 0"
4184         done
4185         unlinkmany $DIR/$tdir/t- 1000
4186
4187         NLAST=0
4188         for N in $(seq 1 $((OSTCOUNT - 1))); do
4189                 [[ ${OBJS[$N]} -lt $((${OBJS[$NLAST]} - 20)) ]] &&
4190                         error "OST $N has less objects vs OST $NLAST" \
4191                               " (${OBJS[$N]} < ${OBJS[$NLAST]}"
4192                 [[ ${OBJS[$N]} -gt $((${OBJS[$NLAST]} + 20)) ]] &&
4193                         error "OST $N has less objects vs OST $NLAST" \
4194                               " (${OBJS[$N]} < ${OBJS[$NLAST]}"
4195
4196                 [[ ${OBJS0[$N]} -lt $((${OBJS0[$NLAST]} - 20)) ]] &&
4197                         error "OST $N has less #0 objects vs OST $NLAST" \
4198                               " (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
4199                 [[ ${OBJS0[$N]} -gt $((${OBJS0[$NLAST]} + 20)) ]] &&
4200                         error "OST $N has less #0 objects vs OST $NLAST" \
4201                               " (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
4202                 NLAST=$N
4203         done
4204         rm -f $TMP/$tfile
4205 }
4206 run_test 51d "check object distribution"
4207
4208 test_51e() {
4209         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
4210                 skip "Only applicable to ldiskfs-based MDTs"
4211                 return
4212         fi
4213
4214         test_mkdir -c1 $DIR/$tdir       || error "create $tdir failed"
4215         test_mkdir -c1 $DIR/$tdir/d0    || error "create d0 failed"
4216
4217         touch $DIR/$tdir/d0/foo
4218         createmany -l $DIR/$tdir/d0/foo $DIR/$tdir/d0/f- 65001 &&
4219                 error "file exceed 65000 nlink limit!"
4220         unlinkmany $DIR/$tdir/d0/f- 65001
4221         return 0
4222 }
4223 run_test 51e "check file nlink limit"
4224
4225 test_52a() {
4226         [ -f $DIR/$tdir/foo ] && chattr -a $DIR/$tdir/foo
4227         test_mkdir -p $DIR/$tdir
4228         touch $DIR/$tdir/foo
4229         chattr +a $DIR/$tdir/foo || error "chattr +a failed"
4230         echo bar >> $DIR/$tdir/foo || error "append bar failed"
4231         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
4232         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
4233         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
4234                                         error "link worked"
4235         echo foo >> $DIR/$tdir/foo || error "append foo failed"
4236         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
4237         lsattr $DIR/$tdir/foo | egrep -q "^-+a[-e]+ $DIR/$tdir/foo" ||
4238                                                      error "lsattr"
4239         chattr -a $DIR/$tdir/foo || error "chattr -a failed"
4240         cp -r $DIR/$tdir $TMP/
4241         rm -fr $DIR/$tdir $TMP/$tdir || error "cleanup rm failed"
4242 }
4243 run_test 52a "append-only flag test (should return errors)"
4244
4245 test_52b() {
4246         [ -f $DIR/$tdir/foo ] && chattr -i $DIR/$tdir/foo
4247         test_mkdir -p $DIR/$tdir
4248         touch $DIR/$tdir/foo
4249         chattr +i $DIR/$tdir/foo || error "chattr +i failed"
4250         cat test > $DIR/$tdir/foo && error "cat test worked"
4251         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
4252         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
4253         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
4254                                         error "link worked"
4255         echo foo >> $DIR/$tdir/foo && error "echo worked"
4256         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
4257         [ -f $DIR/$tdir/foo ] || error "$tdir/foo is not a file"
4258         [ -f $DIR/$tdir/foo_ren ] && error "$tdir/foo_ren is not a file"
4259         lsattr $DIR/$tdir/foo | egrep -q "^-+i[-e]+ $DIR/$tdir/foo" ||
4260                                                         error "lsattr"
4261         chattr -i $DIR/$tdir/foo || error "chattr failed"
4262
4263         rm -fr $DIR/$tdir || error "unable to remove $DIR/$tdir"
4264 }
4265 run_test 52b "immutable flag test (should return errors) ======="
4266
4267 test_53() {
4268         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4269         remote_mds_nodsh && skip "remote MDS with nodsh" && return
4270         remote_ost_nodsh && skip "remote OST with nodsh" && return
4271
4272         local param
4273         local param_seq
4274         local ostname
4275         local mds_last
4276         local mds_last_seq
4277         local ost_last
4278         local ost_last_seq
4279         local ost_last_id
4280         local ostnum
4281         local node
4282         local found=false
4283         local support_last_seq=true
4284
4285         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.60) ]] ||
4286                 support_last_seq=false
4287
4288         # only test MDT0000
4289         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS)
4290         local value
4291         for value in $(do_facet $SINGLEMDS \
4292                        $LCTL get_param osc.$mdtosc.prealloc_last_id) ; do
4293                 param=$(echo ${value[0]} | cut -d "=" -f1)
4294                 ostname=$(echo $param | cut -d "." -f2 | cut -d - -f 1-2)
4295
4296                 if $support_last_seq; then
4297                         param_seq=$(echo $param |
4298                                 sed -e s/prealloc_last_id/prealloc_last_seq/g)
4299                         mds_last_seq=$(do_facet $SINGLEMDS \
4300                                        $LCTL get_param -n $param_seq)
4301                 fi
4302                 mds_last=$(do_facet $SINGLEMDS $LCTL get_param -n $param)
4303
4304                 ostnum=$(index_from_ostuuid ${ostname}_UUID)
4305                 node=$(facet_active_host ost$((ostnum+1)))
4306                 param="obdfilter.$ostname.last_id"
4307                 for ost_last in $(do_node $node $LCTL get_param -n $param) ; do
4308                         echo "$ostname.last_id=$ost_last; MDS.last_id=$mds_last"
4309                         ost_last_id=$ost_last
4310
4311                         if $support_last_seq; then
4312                                 ost_last_id=$(echo $ost_last |
4313                                               awk -F':' '{print $2}' |
4314                                               sed -e "s/^0x//g")
4315                                 ost_last_seq=$(echo $ost_last |
4316                                                awk -F':' '{print $1}')
4317                                 [[ $ost_last_seq = $mds_last_seq ]] || continue
4318                         fi
4319
4320                         if [[ $ost_last_id != $mds_last ]]; then
4321                                 error "$ost_last_id != $mds_last"
4322                         else
4323                                 found=true
4324                                 break
4325                         fi
4326                 done
4327         done
4328         $found || error "can not match last_seq/last_id for $mdtosc"
4329         return 0
4330 }
4331 run_test 53 "verify that MDS and OSTs agree on pre-creation ===="
4332
4333 test_54a() {
4334         $SOCKETSERVER $DIR/socket ||
4335                 error "$SOCKETSERVER $DIR/socket failed: $?"
4336         $SOCKETCLIENT $DIR/socket ||
4337                 error "$SOCKETCLIENT $DIR/socket failed: $?"
4338         $MUNLINK $DIR/socket || error "$MUNLINK $DIR/socket failed: $?"
4339 }
4340 run_test 54a "unix domain socket test =========================="
4341
4342 test_54b() {
4343         f="$DIR/f54b"
4344         mknod $f c 1 3
4345         chmod 0666 $f
4346         dd if=/dev/zero of=$f bs=$(page_size) count=1
4347 }
4348 run_test 54b "char device works in lustre ======================"
4349
4350 find_loop_dev() {
4351         [ -b /dev/loop/0 ] && LOOPBASE=/dev/loop/
4352         [ -b /dev/loop0 ] && LOOPBASE=/dev/loop
4353         [ -z "$LOOPBASE" ] && echo "/dev/loop/0 and /dev/loop0 gone?" && return
4354
4355         for i in $(seq 3 7); do
4356                 losetup $LOOPBASE$i > /dev/null 2>&1 && continue
4357                 LOOPDEV=$LOOPBASE$i
4358                 LOOPNUM=$i
4359                 break
4360         done
4361 }
4362
4363 cleanup_54c() {
4364         local rc=0
4365         loopdev="$DIR/loop54c"
4366
4367         trap 0
4368         $UMOUNT $DIR/$tdir || rc=$?
4369         losetup -d $loopdev || true
4370         losetup -d $LOOPDEV || true
4371         rm -rf $loopdev $DIR/$tfile $DIR/$tdir
4372         return $rc
4373 }
4374
4375 test_54c() {
4376         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4377         loopdev="$DIR/loop54c"
4378
4379         find_loop_dev
4380         [ -z "$LOOPNUM" ] && echo "couldn't find empty loop device" && return
4381         trap cleanup_54c EXIT
4382         mknod $loopdev b 7 $LOOPNUM
4383         echo "make a loop file system with $DIR/$tfile on $loopdev ($LOOPNUM)."
4384         dd if=/dev/zero of=$DIR/$tfile bs=$(get_page_size client) seek=1024 count=1 > /dev/null
4385         losetup $loopdev $DIR/$tfile ||
4386                 error "can't set up $loopdev for $DIR/$tfile"
4387         mkfs.ext2 $loopdev || error "mke2fs on $loopdev"
4388         test_mkdir -p $DIR/$tdir
4389         mount -t ext2 $loopdev $DIR/$tdir ||
4390                 error "error mounting $loopdev on $DIR/$tdir"
4391         dd if=/dev/zero of=$DIR/$tdir/tmp bs=$(get_page_size client) count=30 ||
4392                 error "dd write"
4393         df $DIR/$tdir
4394         dd if=$DIR/$tdir/tmp of=/dev/zero bs=$(get_page_size client) count=30 ||
4395                 error "dd read"
4396         cleanup_54c
4397 }
4398 run_test 54c "block device works in lustre ====================="
4399
4400 test_54d() {
4401         f="$DIR/f54d"
4402         string="aaaaaa"
4403         mknod $f p
4404         [ "$string" = $(echo $string > $f | cat $f) ] || error "$f != $string"
4405 }
4406 run_test 54d "fifo device works in lustre ======================"
4407
4408 test_54e() {
4409         f="$DIR/f54e"
4410         string="aaaaaa"
4411         cp -aL /dev/console $f
4412         echo $string > $f || error "echo $string to $f failed"
4413 }
4414 run_test 54e "console/tty device works in lustre ======================"
4415
4416 #The test_55 used to be iopen test and it was removed by bz#24037.
4417 #run_test 55 "check iopen_connect_dentry() ======================"
4418
4419 test_56a() {    # was test_56
4420         rm -rf $DIR/$tdir
4421         $SETSTRIPE -d $DIR
4422         test_mkdir -p $DIR/$tdir/dir
4423         NUMFILES=3
4424         NUMFILESx2=$(($NUMFILES * 2))
4425         for i in $(seq 1 $NUMFILES); do
4426                 touch $DIR/$tdir/file$i
4427                 touch $DIR/$tdir/dir/file$i
4428         done
4429
4430         # test lfs getstripe with --recursive
4431         FILENUM=$($GETSTRIPE --recursive $DIR/$tdir | grep -c obdidx)
4432         [[ $FILENUM -eq $NUMFILESx2 ]] ||
4433                 error "$GETSTRIPE --recursive: found $FILENUM, not $NUMFILESx2"
4434         FILENUM=$($GETSTRIPE $DIR/$tdir | grep -c obdidx)
4435         [[ $FILENUM -eq $NUMFILES ]] ||
4436                 error "$GETSTRIPE $DIR/$tdir: found $FILENUM, not $NUMFILES"
4437         echo "$GETSTRIPE --recursive passed."
4438
4439         # test lfs getstripe with file instead of dir
4440         FILENUM=$($GETSTRIPE $DIR/$tdir/file1 | grep -c obdidx)
4441         [[ $FILENUM -eq 1 ]] ||
4442                 error "$GETSTRIPE $DIR/$tdir/file1: found $FILENUM, not 1"
4443         echo "$GETSTRIPE file1 passed."
4444
4445         #test lfs getstripe with --verbose
4446         [[ $($GETSTRIPE --verbose $DIR/$tdir |
4447                 grep -c lmm_magic) -eq $NUMFILES ]] ||
4448                 error "$GETSTRIPE --verbose $DIR/$tdir: want $NUMFILES"
4449         [[ $($GETSTRIPE $DIR/$tdir | grep -c lmm_magic) -eq 0 ]] ||
4450                 error "$GETSTRIPE $DIR/$tdir: showed lmm_magic"
4451
4452         #test lfs getstripe with -v prints lmm_fid
4453         [[ $($GETSTRIPE -v $DIR/$tdir | grep -c lmm_fid) -eq $NUMFILES ]] ||
4454                 error "$GETSTRIPE -v $DIR/$tdir: want $NUMFILES lmm_fid: lines"
4455         [[ $($GETSTRIPE $DIR/$tdir | grep -c lmm_fid) -eq 0 ]] ||
4456                 error "$GETSTRIPE $DIR/$tdir: showed lmm_fid"
4457         echo "$GETSTRIPE --verbose passed."
4458
4459         #check for FID information
4460         local fid1=$($GETSTRIPE --fid $DIR/$tdir/file1)
4461         local fid2=$($GETSTRIPE --verbose $DIR/$tdir/file1 |
4462                        awk '/lmm_fid: / { print $2 }')
4463         local fid3=$($LFS path2fid $DIR/$tdir/file1)
4464         [ "$fid1" != "$fid2" ] &&
4465                 error "getstripe --fid $fid1 != getstripe --verbose $fid2"
4466         [ "$fid1" != "$fid3" ] &&
4467                 error "getstripe --fid $fid1 != lfs path2fid $fid3"
4468         echo "$GETSTRIPE --fid passed."
4469
4470         #test lfs getstripe with --obd
4471         $GETSTRIPE --obd wrong_uuid $DIR/$tdir 2>&1 |
4472                 grep -q "unknown obduuid" ||
4473                 error "$GETSTRIPE --obd wrong_uuid should return error message"
4474
4475         [[ $OSTCOUNT -lt 2 ]] &&
4476                 skip_env "skipping other $GETSTRIPE --obd test" && return
4477
4478         OSTIDX=1
4479         OBDUUID=$(ostuuid_from_index $OSTIDX)
4480         FILENUM=$($GETSTRIPE -ir $DIR/$tdir | grep "^$OSTIDX\$" | wc -l)
4481         FOUND=$($GETSTRIPE -r --obd $OBDUUID $DIR/$tdir | grep obdidx | wc -l)
4482         [[ $FOUND -eq $FILENUM ]] ||
4483                 error "$GETSTRIPE --obd wrong: found $FOUND, expected $FILENUM"
4484         [[ $($GETSTRIPE -r -v --obd $OBDUUID $DIR/$tdir |
4485                 sed '/^[         ]*'${OSTIDX}'[  ]/d' |
4486                 sed -n '/^[      ]*[0-9][0-9]*[  ]/p' | wc -l) -eq 0 ]] ||
4487                 error "$GETSTRIPE --obd: should not show file on other obd"
4488         echo "$GETSTRIPE --obd passed"
4489 }
4490 run_test 56a "check $GETSTRIPE"
4491
4492 test_56b() {
4493         test_mkdir $DIR/$tdir
4494         NUMDIRS=3
4495         for i in $(seq 1 $NUMDIRS); do
4496                 test_mkdir $DIR/$tdir/dir$i
4497         done
4498
4499         # test lfs getdirstripe default mode is non-recursion, which is
4500         # different from lfs getstripe
4501         dircnt=$($LFS getdirstripe $DIR/$tdir | grep -c lmv_stripe_count)
4502         [[ $dircnt -eq 1 ]] ||
4503                 error "$LFS getdirstripe: found $dircnt, not 1"
4504         dircnt=$($LFS getdirstripe --recursive $DIR/$tdir |
4505                 grep -c lmv_stripe_count)
4506         [[ $dircnt -eq $((NUMDIRS + 1)) ]] ||
4507                 error "$LFS getdirstripe --recursive: found $dircnt, \
4508                         not $((NUMDIRS + 1))"
4509 }
4510 run_test 56b "check $LFS getdirstripe"
4511
4512 NUMFILES=3
4513 NUMDIRS=3
4514 setup_56() {
4515         local LOCAL_NUMFILES="$1"
4516         local LOCAL_NUMDIRS="$2"
4517         local MKDIR_PARAMS="$3"
4518         local DIR_STRIPE_PARAMS="$4"
4519
4520         if [ ! -d "$TDIR" ] ; then
4521                 test_mkdir -p $DIR_STRIPE_PARAMS $TDIR
4522                 [ "$MKDIR_PARAMS" ] && $SETSTRIPE $MKDIR_PARAMS $TDIR
4523                 for i in `seq 1 $LOCAL_NUMFILES` ; do
4524                         touch $TDIR/file$i
4525                 done
4526                 for i in `seq 1 $LOCAL_NUMDIRS` ; do
4527                         test_mkdir $DIR_STRIPE_PARAMS $TDIR/dir$i
4528                         for j in `seq 1 $LOCAL_NUMFILES` ; do
4529                                 touch $TDIR/dir$i/file$j
4530                         done
4531                 done
4532         fi
4533 }
4534
4535 setup_56_special() {
4536         LOCAL_NUMFILES=$1
4537         LOCAL_NUMDIRS=$2
4538         setup_56 $1 $2
4539         if [ ! -e "$TDIR/loop1b" ] ; then
4540                 for i in `seq 1 $LOCAL_NUMFILES` ; do
4541                         mknod $TDIR/loop${i}b b 7 $i
4542                         mknod $TDIR/null${i}c c 1 3
4543                         ln -s $TDIR/file1 $TDIR/link${i}l
4544                 done
4545                 for i in `seq 1 $LOCAL_NUMDIRS` ; do
4546                         mknod $TDIR/dir$i/loop${i}b b 7 $i
4547                         mknod $TDIR/dir$i/null${i}c c 1 3
4548                         ln -s $TDIR/dir$i/file1 $TDIR/dir$i/link${i}l
4549                 done
4550         fi
4551 }
4552
4553 test_56g() {
4554         $SETSTRIPE -d $DIR
4555
4556         TDIR=$DIR/${tdir}g
4557         setup_56 $NUMFILES $NUMDIRS
4558
4559         EXPECTED=$(($NUMDIRS + 2))
4560         # test lfs find with -name
4561         for i in $(seq 1 $NUMFILES) ; do
4562                 NUMS=$($LFIND -name "*$i" $TDIR | wc -l)
4563                 [ $NUMS -eq $EXPECTED ] ||
4564                         error "lfs find -name \"*$i\" $TDIR wrong: "\
4565                               "found $NUMS, expected $EXPECTED"
4566         done
4567 }
4568 run_test 56g "check lfs find -name ============================="
4569
4570 test_56h() {
4571         $SETSTRIPE -d $DIR
4572
4573         TDIR=$DIR/${tdir}g
4574         setup_56 $NUMFILES $NUMDIRS
4575
4576         EXPECTED=$(((NUMDIRS + 1) * (NUMFILES - 1) + NUMFILES))
4577         # test lfs find with ! -name
4578         for i in $(seq 1 $NUMFILES) ; do
4579                 NUMS=$($LFIND ! -name "*$i" $TDIR | wc -l)
4580                 [ $NUMS -eq $EXPECTED ] ||
4581                         error "lfs find ! -name \"*$i\" $TDIR wrong: "\
4582                               "found $NUMS, expected $EXPECTED"
4583         done
4584 }
4585 run_test 56h "check lfs find ! -name ============================="
4586
4587 test_56i() {
4588        tdir=${tdir}i
4589        test_mkdir -p $DIR/$tdir
4590        UUID=$(ostuuid_from_index 0 $DIR/$tdir)
4591        CMD="$LFIND -ost $UUID $DIR/$tdir"
4592        OUT=$($CMD)
4593        [ -z "$OUT" ] || error "\"$CMD\" returned directory '$OUT'"
4594 }
4595 run_test 56i "check 'lfs find -ost UUID' skips directories ======="
4596
4597 test_56j() {
4598         TDIR=$DIR/${tdir}g
4599         setup_56_special $NUMFILES $NUMDIRS
4600
4601         EXPECTED=$((NUMDIRS + 1))
4602         CMD="$LFIND -type d $TDIR"
4603         NUMS=$($CMD | wc -l)
4604         [ $NUMS -eq $EXPECTED ] ||
4605                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4606 }
4607 run_test 56j "check lfs find -type d ============================="
4608
4609 test_56k() {
4610         TDIR=$DIR/${tdir}g
4611         setup_56_special $NUMFILES $NUMDIRS
4612
4613         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4614         CMD="$LFIND -type f $TDIR"
4615         NUMS=$($CMD | wc -l)
4616         [ $NUMS -eq $EXPECTED ] ||
4617                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4618 }
4619 run_test 56k "check lfs find -type f ============================="
4620
4621 test_56l() {
4622         TDIR=$DIR/${tdir}g
4623         setup_56_special $NUMFILES $NUMDIRS
4624
4625         EXPECTED=$((NUMDIRS + NUMFILES))
4626         CMD="$LFIND -type b $TDIR"
4627         NUMS=$($CMD | wc -l)
4628         [ $NUMS -eq $EXPECTED ] ||
4629                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4630 }
4631 run_test 56l "check lfs find -type b ============================="
4632
4633 test_56m() {
4634         TDIR=$DIR/${tdir}g
4635         setup_56_special $NUMFILES $NUMDIRS
4636
4637         EXPECTED=$((NUMDIRS + NUMFILES))
4638         CMD="$LFIND -type c $TDIR"
4639         NUMS=$($CMD | wc -l)
4640         [ $NUMS -eq $EXPECTED ] ||
4641                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4642 }
4643 run_test 56m "check lfs find -type c ============================="
4644
4645 test_56n() {
4646         TDIR=$DIR/${tdir}g
4647         setup_56_special $NUMFILES $NUMDIRS
4648
4649         EXPECTED=$((NUMDIRS + NUMFILES))
4650         CMD="$LFIND -type l $TDIR"
4651         NUMS=$($CMD | wc -l)
4652         [ $NUMS -eq $EXPECTED ] ||
4653                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4654 }
4655 run_test 56n "check lfs find -type l ============================="
4656
4657 test_56o() {
4658         TDIR=$DIR/${tdir}o
4659         setup_56 $NUMFILES $NUMDIRS
4660         utime $TDIR/file1 > /dev/null || error "utime (1)"
4661         utime $TDIR/file2 > /dev/null || error "utime (2)"
4662         utime $TDIR/dir1 > /dev/null || error "utime (3)"
4663         utime $TDIR/dir2 > /dev/null || error "utime (4)"
4664         utime $TDIR/dir1/file1 > /dev/null || error "utime (5)"
4665         dd if=/dev/zero count=1 >> $TDIR/dir1/file1 && sync
4666
4667         EXPECTED=4
4668         NUMS=`$LFIND -mtime +0 $TDIR | wc -l`
4669         [ $NUMS -eq $EXPECTED ] || \
4670                 error "lfs find -mtime +0 $TDIR wrong: found $NUMS, expected $EXPECTED"
4671
4672         EXPECTED=12
4673         CMD="$LFIND -mtime 0 $TDIR"
4674         NUMS=$($CMD | wc -l)
4675         [ $NUMS -eq $EXPECTED ] ||
4676                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4677 }
4678 run_test 56o "check lfs find -mtime for old files =========================="
4679
4680 test_56p() {
4681         [ $RUNAS_ID -eq $UID ] &&
4682                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
4683
4684         TDIR=$DIR/${tdir}p
4685         setup_56 $NUMFILES $NUMDIRS
4686
4687         chown $RUNAS_ID $TDIR/file* || error "chown $DIR/${tdir}g/file$i failed"
4688         EXPECTED=$NUMFILES
4689         CMD="$LFIND -uid $RUNAS_ID $TDIR"
4690         NUMS=$($CMD | wc -l)
4691         [ $NUMS -eq $EXPECTED ] || \
4692                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4693
4694         EXPECTED=$(((NUMFILES + 1) * NUMDIRS + 1))
4695         CMD="$LFIND ! -uid $RUNAS_ID $TDIR"
4696         NUMS=$($CMD | wc -l)
4697         [ $NUMS -eq $EXPECTED ] || \
4698                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4699 }
4700 run_test 56p "check lfs find -uid and ! -uid ==============================="
4701
4702 test_56q() {
4703         [ $RUNAS_ID -eq $UID ] &&
4704                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
4705
4706         TDIR=$DIR/${tdir}q
4707         setup_56 $NUMFILES $NUMDIRS
4708
4709         chgrp $RUNAS_GID $TDIR/file* || error "chown $TDIR/file$i failed"
4710
4711         EXPECTED=$NUMFILES
4712         CMD="$LFIND -gid $RUNAS_GID $TDIR"
4713         NUMS=$($CMD | wc -l)
4714         [ $NUMS -eq $EXPECTED ] ||
4715                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4716
4717         EXPECTED=$(( ($NUMFILES+1) * $NUMDIRS + 1))
4718         CMD="$LFIND ! -gid $RUNAS_GID $TDIR"
4719         NUMS=$($CMD | wc -l)
4720         [ $NUMS -eq $EXPECTED ] ||
4721                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4722 }
4723 run_test 56q "check lfs find -gid and ! -gid ==============================="
4724
4725 test_56r() {
4726         TDIR=$DIR/${tdir}r
4727         setup_56 $NUMFILES $NUMDIRS
4728
4729         EXPECTED=12
4730         CMD="$LFIND -size 0 -type f $TDIR"
4731         NUMS=$($CMD | wc -l)
4732         [ $NUMS -eq $EXPECTED ] ||
4733                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4734         EXPECTED=0
4735         CMD="$LFIND ! -size 0 -type f $TDIR"
4736         NUMS=$($CMD | wc -l)
4737         [ $NUMS -eq $EXPECTED ] ||
4738                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4739         echo "test" > $TDIR/$tfile
4740         echo "test2" > $TDIR/$tfile.2 && sync
4741         EXPECTED=1
4742         CMD="$LFIND -size 5 -type f $TDIR"
4743         NUMS=$($CMD | wc -l)
4744         [ $NUMS -eq $EXPECTED ] ||
4745                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4746         EXPECTED=1
4747         CMD="$LFIND -size +5 -type f $TDIR"
4748         NUMS=$($CMD | wc -l)
4749         [ $NUMS -eq $EXPECTED ] ||
4750                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4751         EXPECTED=2
4752         CMD="$LFIND -size +0 -type f $TDIR"
4753         NUMS=$($CMD | wc -l)
4754         [ $NUMS -eq $EXPECTED ] ||
4755                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4756         EXPECTED=2
4757         CMD="$LFIND ! -size -5 -type f $TDIR"
4758         NUMS=$($CMD | wc -l)
4759         [ $NUMS -eq $EXPECTED ] ||
4760                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4761         EXPECTED=12
4762         CMD="$LFIND -size -5 -type f $TDIR"
4763         NUMS=$($CMD | wc -l)
4764         [ $NUMS -eq $EXPECTED ] ||
4765                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4766 }
4767 run_test 56r "check lfs find -size works =========================="
4768
4769 test_56s() { # LU-611
4770         TDIR=$DIR/${tdir}s
4771         setup_56 $NUMFILES $NUMDIRS "-c $OSTCOUNT"
4772
4773         if [[ $OSTCOUNT -gt 1 ]]; then
4774                 $SETSTRIPE -c 1 $TDIR/$tfile.{0,1,2,3}
4775                 ONESTRIPE=4
4776                 EXTRA=4
4777         else
4778                 ONESTRIPE=$(((NUMDIRS + 1) * NUMFILES))
4779                 EXTRA=0
4780         fi
4781
4782         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4783         CMD="$LFIND -stripe-count $OSTCOUNT -type f $TDIR"
4784         NUMS=$($CMD | wc -l)
4785         [ $NUMS -eq $EXPECTED ] || {
4786                 $GETSTRIPE -R $TDIR
4787                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4788         }
4789
4790         EXPECTED=$(((NUMDIRS + 1) * NUMFILES + EXTRA))
4791         CMD="$LFIND -stripe-count +0 -type f $TDIR"
4792         NUMS=$($CMD | wc -l)
4793         [ $NUMS -eq $EXPECTED ] || {
4794                 $GETSTRIPE -R $TDIR
4795                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4796         }
4797
4798         EXPECTED=$ONESTRIPE
4799         CMD="$LFIND -stripe-count 1 -type f $TDIR"
4800         NUMS=$($CMD | wc -l)
4801         [ $NUMS -eq $EXPECTED ] || {
4802                 $GETSTRIPE -R $TDIR
4803                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4804         }
4805
4806         CMD="$LFIND -stripe-count -2 -type f $TDIR"
4807         NUMS=$($CMD | wc -l)
4808         [ $NUMS -eq $EXPECTED ] || {
4809                 $GETSTRIPE -R $TDIR
4810                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4811         }
4812
4813         EXPECTED=0
4814         CMD="$LFIND -stripe-count $((OSTCOUNT + 1)) -type f $TDIR"
4815         NUMS=$($CMD | wc -l)
4816         [ $NUMS -eq $EXPECTED ] || {
4817                 $GETSTRIPE -R $TDIR
4818                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4819         }
4820 }
4821 run_test 56s "check lfs find -stripe-count works"
4822
4823 test_56t() { # LU-611
4824         TDIR=$DIR/${tdir}t
4825         setup_56 $NUMFILES $NUMDIRS "--stripe-size 512k"
4826
4827         $SETSTRIPE -S 256k $TDIR/$tfile.{0,1,2,3}
4828
4829         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4830         CMD="$LFIND -stripe-size 512k -type f $TDIR"
4831         NUMS=$($CMD | wc -l)
4832         [ $NUMS -eq $EXPECTED ] ||
4833                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4834
4835         CMD="$LFIND -stripe-size +320k -type f $TDIR"
4836         NUMS=$($CMD | wc -l)
4837         [ $NUMS -eq $EXPECTED ] ||
4838                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4839
4840         EXPECTED=$(((NUMDIRS + 1) * NUMFILES + 4))
4841         CMD="$LFIND -stripe-size +200k -type f $TDIR"
4842         NUMS=$($CMD | wc -l)
4843         [ $NUMS -eq $EXPECTED ] ||
4844                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4845
4846         CMD="$LFIND -stripe-size -640k -type f $TDIR"
4847         NUMS=$($CMD | wc -l)
4848         [ $NUMS -eq $EXPECTED ] ||
4849                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4850
4851         EXPECTED=4
4852         CMD="$LFIND -stripe-size 256k -type f $TDIR"
4853         NUMS=$($CMD | wc -l)
4854         [ $NUMS -eq $EXPECTED ] ||
4855                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4856
4857         CMD="$LFIND -stripe-size -320k -type f $TDIR"
4858         NUMS=$($CMD | wc -l)
4859         [ $NUMS -eq $EXPECTED ] ||
4860                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4861
4862         EXPECTED=0
4863         CMD="$LFIND -stripe-size 1024k -type f $TDIR"
4864         NUMS=$($CMD | wc -l)
4865         [ $NUMS -eq $EXPECTED ] ||
4866                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4867 }
4868 run_test 56t "check lfs find -stripe-size works"
4869
4870 test_56u() { # LU-611
4871         TDIR=$DIR/${tdir}u
4872         setup_56 $NUMFILES $NUMDIRS "-i 0"
4873
4874         if [[ $OSTCOUNT -gt 1 ]]; then
4875                 $SETSTRIPE -i 1 $TDIR/$tfile.{0,1,2,3}
4876                 ONESTRIPE=4
4877         else
4878                 ONESTRIPE=0
4879         fi
4880
4881         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4882         CMD="$LFIND -stripe-index 0 -type f $TDIR"
4883         NUMS=$($CMD | wc -l)
4884         [ $NUMS -eq $EXPECTED ] ||
4885                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4886
4887         EXPECTED=$ONESTRIPE
4888         CMD="$LFIND -stripe-index 1 -type f $TDIR"
4889         NUMS=$($CMD | wc -l)
4890         [ $NUMS -eq $EXPECTED ] ||
4891                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4892
4893         CMD="$LFIND ! -stripe-index 0 -type f $TDIR"
4894         NUMS=$($CMD | wc -l)
4895         [ $NUMS -eq $EXPECTED ] ||
4896                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4897
4898         EXPECTED=0
4899         # This should produce an error and not return any files
4900         CMD="$LFIND -stripe-index $OSTCOUNT -type f $TDIR"
4901         NUMS=$($CMD 2>/dev/null | wc -l)
4902         [ $NUMS -eq $EXPECTED ] ||
4903                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4904
4905         if [[ $OSTCOUNT -gt 1 ]]; then
4906                 EXPECTED=$(((NUMDIRS + 1) * NUMFILES + ONESTRIPE))
4907                 CMD="$LFIND -stripe-index 0,1 -type f $TDIR"
4908                 NUMS=$($CMD | wc -l)
4909                 [ $NUMS -eq $EXPECTED ] ||
4910                         error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4911         fi
4912 }
4913 run_test 56u "check lfs find -stripe-index works"
4914
4915 test_56v() {
4916     local MDT_IDX=0
4917
4918     TDIR=$DIR/${tdir}v
4919     rm -rf $TDIR
4920     setup_56 $NUMFILES $NUMDIRS
4921
4922     UUID=$(mdtuuid_from_index $MDT_IDX $TDIR)
4923     [ -z "$UUID" ] && error "mdtuuid_from_index cannot find MDT index $MDT_IDX"
4924
4925     for file in $($LFIND -mdt $UUID $TDIR); do
4926         file_mdt_idx=$($GETSTRIPE -M $file)
4927         [ $file_mdt_idx -eq $MDT_IDX ] ||
4928             error "'lfind -mdt $UUID' != 'getstripe -M' ($file_mdt_idx)"
4929     done
4930 }
4931 run_test 56v "check 'lfs find -mdt match with lfs getstripe -M' ======="
4932
4933 test_56w() {
4934         [[ $OSTCOUNT -lt 2 ]] && skip_env "$OSTCOUNT < 2 OSTs -- skipping" &&
4935                 return
4936         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4937         TDIR=$DIR/${tdir}w
4938
4939     rm -rf $TDIR || error "remove $TDIR failed"
4940     setup_56 $NUMFILES $NUMDIRS "-c $OSTCOUNT" "-c1"
4941
4942     local stripe_size
4943     stripe_size=$($GETSTRIPE -S -d $TDIR) ||
4944         error "$GETSTRIPE -S -d $TDIR failed"
4945     stripe_size=${stripe_size%% *}
4946
4947     local file_size=$((stripe_size * OSTCOUNT))
4948     local file_num=$((NUMDIRS * NUMFILES + NUMFILES))
4949     local required_space=$((file_num * file_size))
4950
4951     local free_space=$($LCTL get_param -n lov.$FSNAME-clilov-*.kbytesavail |
4952                         head -n1)
4953     [[ $free_space -le $((required_space / 1024)) ]] &&
4954         skip_env "need at least $required_space bytes free space," \
4955                  "have $free_space kbytes" && return
4956
4957     local dd_bs=65536
4958     local dd_count=$((file_size / dd_bs))
4959
4960     # write data into the files
4961     local i
4962     local j
4963     local file
4964     for i in $(seq 1 $NUMFILES); do
4965         file=$TDIR/file$i
4966         yes | dd bs=$dd_bs count=$dd_count of=$file >/dev/null 2>&1 ||
4967             error "write data into $file failed"
4968     done
4969     for i in $(seq 1 $NUMDIRS); do
4970         for j in $(seq 1 $NUMFILES); do
4971             file=$TDIR/dir$i/file$j
4972             yes | dd bs=$dd_bs count=$dd_count of=$file \
4973                 >/dev/null 2>&1 ||
4974                 error "write data into $file failed"
4975         done
4976     done
4977
4978     local expected=-1
4979     [[ $OSTCOUNT -gt 1 ]] && expected=$((OSTCOUNT - 1))
4980
4981     # lfs_migrate file
4982     local cmd="$LFS_MIGRATE -y -c $expected $TDIR/file1"
4983     echo "$cmd"
4984     eval $cmd || error "$cmd failed"
4985
4986     check_stripe_count $TDIR/file1 $expected
4987
4988         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.90) ];
4989         then
4990                 # lfs_migrate file onto OST 0 if it is on OST 1, or onto
4991                 # OST 1 if it is on OST 0. This file is small enough to
4992                 # be on only one stripe.
4993                 file=$TDIR/migr_1_ost
4994                 dd bs=$dd_bs count=1 if=/dev/urandom of=$file >/dev/null 2>&1 ||
4995                         error "write data into $file failed"
4996                 local obdidx=$($LFS getstripe -i $file)
4997                 local oldmd5=$(md5sum $file)
4998                 local newobdidx=0
4999                 [[ $obdidx -eq 0 ]] && newobdidx=1
5000                 cmd="$LFS migrate -i $newobdidx $file"
5001                 echo $cmd
5002                 eval $cmd || error "$cmd failed"
5003                 local realobdix=$($LFS getstripe -i $file)
5004                 local newmd5=$(md5sum $file)
5005                 [[ $newobdidx -ne $realobdix ]] &&
5006                         error "new OST is different (was=$obdidx, wanted=$newobdidx, got=$realobdix)"
5007                 [[ "$oldmd5" != "$newmd5" ]] &&
5008                         error "md5sum differ: $oldmd5, $newmd5"
5009         fi
5010
5011     # lfs_migrate dir
5012     cmd="$LFS_MIGRATE -y -c $expected $TDIR/dir1"
5013     echo "$cmd"
5014     eval $cmd || error "$cmd failed"
5015
5016     for j in $(seq 1 $NUMFILES); do
5017         check_stripe_count $TDIR/dir1/file$j $expected
5018     done
5019
5020     # lfs_migrate works with lfs find
5021     cmd="$LFIND -stripe_count $OSTCOUNT -type f $TDIR |
5022          $LFS_MIGRATE -y -c $expected"
5023     echo "$cmd"
5024     eval $cmd || error "$cmd failed"
5025
5026     for i in $(seq 2 $NUMFILES); do
5027         check_stripe_count $TDIR/file$i $expected
5028     done
5029     for i in $(seq 2 $NUMDIRS); do
5030         for j in $(seq 1 $NUMFILES); do
5031             check_stripe_count $TDIR/dir$i/file$j $expected
5032         done
5033     done
5034 }
5035 run_test 56w "check lfs_migrate -c stripe_count works"
5036
5037 test_56x() {
5038         check_swap_layouts_support && return 0
5039         [[ $OSTCOUNT -lt 2 ]] &&
5040                 skip_env "need 2 OST, skipping test" && return
5041
5042         local dir0=$DIR/$tdir/$testnum
5043         test_mkdir -p $dir0 || error "creating dir $dir0"
5044
5045         local ref1=/etc/passwd
5046         local file1=$dir0/file1
5047
5048         $SETSTRIPE -c 2 $file1
5049         cp $ref1 $file1
5050         $LFS migrate -c 1 $file1 || error "migrate failed rc = $?"
5051         stripe=$($GETSTRIPE -c $file1)
5052         [[ $stripe == 1 ]] || error "stripe of $file1 is $stripe != 1"
5053         cmp $file1 $ref1 || error "content mismatch $file1 differs from $ref1"
5054
5055         # clean up
5056         rm -f $file1
5057 }
5058 run_test 56x "lfs migration support"
5059
5060 test_56xa() {
5061         check_swap_layouts_support && return 0
5062         [[ $OSTCOUNT -lt 2 ]] &&
5063                 skip_env "need 2 OST, skipping test" && return
5064
5065         local dir0=$DIR/$tdir/$testnum
5066         test_mkdir -p $dir0 || error "creating dir $dir0"
5067
5068         local ref1=/etc/passwd
5069         local file1=$dir0/file1
5070
5071         $SETSTRIPE -c 2 $file1
5072         cp $ref1 $file1
5073         $LFS migrate --block -c 1 $file1 || error "migrate failed rc = $?"
5074         local stripe=$($GETSTRIPE -c $file1)
5075         [[ $stripe == 1 ]] || error "stripe of $file1 is $stripe != 1"
5076         cmp $file1 $ref1 || error "content mismatch $file1 differs from $ref1"
5077
5078         # clean up
5079         rm -f $file1
5080 }
5081 run_test 56xa "lfs migration --block support"
5082
5083 test_56y() {
5084         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.53) ] &&
5085                 skip "No HSM $(lustre_build_version $SINGLEMDS) MDS < 2.4.53" &&
5086                 return
5087
5088         local res=""
5089         local dir0=$DIR/$tdir/$testnum
5090         test_mkdir -p $dir0 || error "creating dir $dir0"
5091         local f1=$dir0/file1
5092         local f2=$dir0/file2
5093
5094         touch $f1 || error "creating std file $f1"
5095         $MULTIOP $f2 H2c || error "creating released file $f2"
5096
5097         # a directory can be raid0, so ask only for files
5098         res=$($LFIND $dir0 -L raid0 -type f | wc -l)
5099         [[ $res == 2 ]] || error "search raid0: found $res files != 2"
5100
5101         res=$($LFIND $dir0 \! -L raid0 -type f | wc -l)
5102         [[ $res == 0 ]] || error "search !raid0: found $res files != 0"
5103
5104         # only files can be released, so no need to force file search
5105         res=$($LFIND $dir0 -L released)
5106         [[ $res == $f2 ]] || error "search released: found $res != $f2"
5107
5108         res=$($LFIND $dir0 \! -L released)
5109         [[ $res == $f1 ]] || error "search !released: found $res != $f1"
5110
5111 }
5112 run_test 56y "lfs find -L raid0|released"
5113
5114 test_56z() { # LU-4824
5115         # This checks to make sure 'lfs find' continues after errors
5116         # There are two classes of errors that should be caught:
5117         # - If multiple paths are provided, all should be searched even if one
5118         #   errors out
5119         # - If errors are encountered during the search, it should not terminate
5120         #   early
5121         local i
5122         test_mkdir $DIR/$tdir
5123         for i in d{0..9}; do
5124                 test_mkdir $DIR/$tdir/$i
5125         done
5126         touch $DIR/$tdir/d{0..9}/$tfile
5127         $LFS find $DIR/non_existent_dir $DIR/$tdir &&
5128                 error "$LFS find did not return an error"
5129         # Make a directory unsearchable. This should NOT be the last entry in
5130         # directory order.  Arbitrarily pick the 6th entry
5131         chmod 700 $($LFS find $DIR/$tdir -type d | sed '6!d')
5132         local count=$($RUNAS $LFS find $DIR/non_existent $DIR/$tdir | wc -l)
5133         # The user should be able to see 10 directories and 9 files
5134         [ $count == 19 ] || error "$LFS find did not continue after error"
5135 }
5136 run_test 56z "lfs find should continue after an error"
5137
5138 test_56aa() { # LU-5937
5139         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
5140
5141         mkdir $DIR/$tdir
5142         $LFS setdirstripe -c$MDSCOUNT $DIR/$tdir/striped_dir
5143
5144         createmany -o $DIR/$tdir/striped_dir/${tfile}- 1024
5145         local dirs=$(lfs find --size +8k $DIR/$tdir/)
5146
5147         [ -n "$dirs" ] || error "lfs find --size wrong under striped dir"
5148 }
5149 run_test 56aa "lfs find --size under striped dir"
5150
5151 test_57a() {
5152         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5153         # note test will not do anything if MDS is not local
5154         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
5155                 skip "Only applicable to ldiskfs-based MDTs"
5156                 return
5157         fi
5158
5159         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5160         local MNTDEV="osd*.*MDT*.mntdev"
5161         DEV=$(do_facet $SINGLEMDS lctl get_param -n $MNTDEV)
5162         [ -z "$DEV" ] && error "can't access $MNTDEV"
5163         for DEV in $(do_facet $SINGLEMDS lctl get_param -n $MNTDEV); do
5164                 do_facet $SINGLEMDS $DUMPE2FS -h $DEV > $TMP/t57a.dump ||
5165                         error "can't access $DEV"
5166                 DEVISIZE=$(awk '/Inode size:/ { print $3 }' $TMP/t57a.dump)
5167                 [[ $DEVISIZE -gt 128 ]] || error "inode size $DEVISIZE"
5168                 rm $TMP/t57a.dump
5169         done
5170 }
5171 run_test 57a "verify MDS filesystem created with large inodes =="
5172
5173 test_57b() {
5174         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5175         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
5176                 skip "Only applicable to ldiskfs-based MDTs"
5177                 return
5178         fi
5179
5180         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5181         local dir=$DIR/$tdir
5182
5183         local FILECOUNT=100
5184         local FILE1=$dir/f1
5185         local FILEN=$dir/f$FILECOUNT
5186
5187         rm -rf $dir || error "removing $dir"
5188         test_mkdir -p -c1 $dir || error "creating $dir"
5189         local mdtidx=$($LFS getstripe -M $dir)
5190         local mdtname=MDT$(printf %04x $mdtidx)
5191         local facet=mds$((mdtidx + 1))
5192
5193         echo "mcreating $FILECOUNT files"
5194         createmany -m $dir/f 1 $FILECOUNT || \
5195                 error "creating files in $dir"
5196
5197         # verify that files do not have EAs yet
5198         $GETSTRIPE $FILE1 2>&1 | grep -q "no stripe" || error "$FILE1 has an EA"
5199         $GETSTRIPE $FILEN 2>&1 | grep -q "no stripe" || error "$FILEN has an EA"
5200
5201         sync
5202         sleep 1
5203         df $dir  #make sure we get new statfs data
5204         local MDSFREE=$(do_facet $facet \
5205                 lctl get_param -n osd*.*$mdtname.kbytesfree)
5206         local MDCFREE=$(lctl get_param -n mdc.*$mdtname-mdc-*.kbytesfree)
5207         echo "opening files to create objects/EAs"
5208         local FILE
5209         for FILE in `seq -f $dir/f%g 1 $FILECOUNT`; do
5210                 $OPENFILE -f O_RDWR $FILE > /dev/null 2>&1 || error "opening $FILE"
5211         done
5212
5213         # verify that files have EAs now
5214         $GETSTRIPE $FILE1 | grep -q "obdidx" || error "$FILE1 missing EA"
5215         $GETSTRIPE $FILEN | grep -q "obdidx" || error "$FILEN missing EA"
5216
5217         sleep 1  #make sure we get new statfs data
5218         df $dir
5219         local MDSFREE2=$(do_facet $facet \
5220                 lctl get_param -n osd*.*$mdtname.kbytesfree)
5221         local MDCFREE2=$(lctl get_param -n mdc.*$mdtname-mdc-*.kbytesfree)
5222         if [[ $MDCFREE2 -lt $((MDCFREE - 16)) ]]; then
5223                 if [ "$MDSFREE" != "$MDSFREE2" ]; then
5224                         error "MDC before $MDCFREE != after $MDCFREE2"
5225                 else
5226                         echo "MDC before $MDCFREE != after $MDCFREE2"
5227                         echo "unable to confirm if MDS has large inodes"
5228                 fi
5229         fi
5230         rm -rf $dir
5231 }
5232 run_test 57b "default LOV EAs are stored inside large inodes ==="
5233
5234 test_58() {
5235         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5236         [ -z "$(which wiretest 2>/dev/null)" ] &&
5237                         skip_env "could not find wiretest" && return
5238         wiretest
5239 }
5240 run_test 58 "verify cross-platform wire constants =============="
5241
5242 test_59() {
5243         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5244         echo "touch 130 files"
5245         createmany -o $DIR/f59- 130
5246         echo "rm 130 files"
5247         unlinkmany $DIR/f59- 130
5248         sync
5249         # wait for commitment of removal
5250         wait_delete_completed
5251 }
5252 run_test 59 "verify cancellation of llog records async ========="
5253
5254 TEST60_HEAD="test_60 run $RANDOM"
5255 test_60a() {
5256         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5257         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
5258         do_facet mgs "! which run-llog.sh &> /dev/null" &&
5259                 do_facet mgs "! ls run-llog.sh &> /dev/null" &&
5260                         skip_env "missing subtest run-llog.sh" && return
5261
5262         log "$TEST60_HEAD - from kernel mode"
5263         do_facet mgs "$LCTL set_param debug=warning; $LCTL dk > /dev/null"
5264         do_facet mgs sh run-llog.sh
5265         do_facet mgs $LCTL dk > $TMP/$tfile
5266
5267         # LU-6388: test llog_reader
5268         local llog_reader=$(do_facet mgs "which llog_reader 2> /dev/null")
5269         llog_reader=${llog_reader:-$LUSTRE/utils/llog_reader}
5270         [ -z $(do_facet mgs ls -d $llog_reader 2> /dev/null) ] &&
5271                         skip_env "missing llog_reader" && return
5272         local fstype=$(facet_fstype mgs)
5273         [ $fstype != ldiskfs -a $fstype != zfs ] &&
5274                 skip_env "Only for ldiskfs or zfs type mgs" && return
5275
5276         local mntpt=$(facet_mntpt mgs)
5277         local mgsdev=$(mgsdevname 1)
5278         local fid_list
5279         local fid
5280         local rec_list
5281         local rec
5282         local rec_type
5283         local obj_file
5284         local path
5285         local seq
5286         local oid
5287         local pass=true
5288
5289         #get fid and record list
5290         fid_list=($(awk '/9_sub.*record/ { print $NF }' /$TMP/$tfile |
5291                 tail -n 4))
5292         rec_list=($(awk '/9_sub.*record/ { print $((NF-3)) }' /$TMP/$tfile |
5293                 tail -n 4))
5294         #remount mgs as ldiskfs or zfs type
5295         stop mgs || error "stop mgs failed"
5296         mount_fstype mgs || error "remount mgs failed"
5297         for ((i = 0; i < ${#fid_list[@]}; i++)); do
5298                 fid=${fid_list[i]}
5299                 rec=${rec_list[i]}
5300                 seq=$(echo $fid | awk -F ':' '{ print $1 }' | sed -e "s/^0x//g")
5301                 oid=$(echo $fid | awk -F ':' '{ print $2 }' | sed -e "s/^0x//g")
5302                 oid=$((16#$oid))
5303
5304                 case $fstype in
5305                         ldiskfs )
5306                                 obj_file=$mntpt/O/$seq/d$((oid%32))/$oid ;;
5307                         zfs )
5308                                 obj_file=$mntpt/oi.$(($((16#$seq))&127))/$fid ;;
5309                 esac
5310                 echo "obj_file is $obj_file"
5311                 do_facet mgs $llog_reader $obj_file
5312
5313                 rec_type=$(do_facet mgs $llog_reader $obj_file | grep "type=" |
5314                         awk '{ print $3 }' | sed -e "s/^type=//g")
5315                 if [ $rec_type != $rec ]; then
5316                         echo "FAILED test_60a wrong record type $rec_type," \
5317                               "should be $rec"
5318                         pass=false
5319                         break
5320                 fi
5321
5322                 #check obj path if record type is LLOG_LOGID_MAGIC
5323                 if [ "$rec" == "1064553b" ]; then
5324                         path=$(do_facet mgs $llog_reader $obj_file |
5325                                 grep "path=" | awk '{ print $NF }' |
5326                                 sed -e "s/^path=//g")
5327                         if [ $obj_file != $mntpt/$path ]; then
5328                                 echo "FAILED test_60a wrong obj path" \
5329                                       "$montpt/$path, should be $obj_file"
5330                                 pass=false
5331                                 break
5332                         fi
5333                 fi
5334         done
5335         rm -f $TMP/$tfile
5336         #restart mgs before "error", otherwise it will block the next test
5337         stop mgs || error "stop mgs failed"
5338         start mgs $(mgsdevname) $MGS_MOUNT_OPTS || error "start mgs failed"
5339         $pass || error "test failed, see FAILED test_60a messages for specifics"
5340 }
5341 run_test 60a "llog_test run from kernel module and test llog_reader =========="
5342
5343 test_60b() { # bug 6411
5344         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5345         dmesg > $DIR/$tfile
5346         LLOG_COUNT=$(dmesg | awk "/$TEST60_HEAD/ { marker = 1; from_marker = 0; }
5347                                 /llog.test/ {
5348                                         if (marker)
5349                                                 from_marker++
5350                                         from_begin++
5351                                 }
5352                                 END {
5353                                         if (marker)
5354                                                 print from_marker
5355                                         else
5356                                                 print from_begin
5357                                 }")
5358         [[ $LLOG_COUNT -gt 100 ]] &&
5359                 error "CDEBUG_LIMIT not limiting messages ($LLOG_COUNT)" || true
5360 }
5361 run_test 60b "limit repeated messages from CERROR/CWARN ========"
5362
5363 test_60c() {
5364         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5365         echo "create 5000 files"
5366         createmany -o $DIR/f60c- 5000
5367 #define OBD_FAIL_MDS_LLOG_CREATE_FAILED  0x137
5368         lctl set_param fail_loc=0x80000137
5369         unlinkmany $DIR/f60c- 5000
5370         lctl set_param fail_loc=0
5371 }
5372 run_test 60c "unlink file when mds full"
5373
5374 test_60d() {
5375         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5376         SAVEPRINTK=$(lctl get_param -n printk)
5377
5378         # verify "lctl mark" is even working"
5379         MESSAGE="test message ID $RANDOM $$"
5380         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
5381         dmesg | grep -q "$MESSAGE" || error "didn't find debug marker in log"
5382
5383         lctl set_param printk=0 || error "set lnet.printk failed"
5384         lctl get_param -n printk | grep emerg || error "lnet.printk dropped emerg"
5385         MESSAGE="new test message ID $RANDOM $$"
5386         # Assume here that libcfs_debug_mark_buffer() uses D_WARNING
5387         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
5388         dmesg | grep -q "$MESSAGE" && error "D_WARNING wasn't masked" || true
5389
5390         lctl set_param -n printk="$SAVEPRINTK"
5391 }
5392 run_test 60d "test printk console message masking"
5393
5394 test_60e() {
5395         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5396         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5397         touch $DIR/$tfile
5398 #define OBD_FAIL_MDS_LLOG_CREATE_FAILED2  0x15b
5399         do_facet mds1 lctl set_param fail_loc=0x15b
5400         rm $DIR/$tfile
5401 }
5402 run_test 60e "no space while new llog is being created"
5403
5404 test_61() {
5405         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5406         f="$DIR/f61"
5407         dd if=/dev/zero of=$f bs=$(page_size) count=1 || error "dd $f failed"
5408         cancel_lru_locks osc
5409         $MULTIOP $f OSMWUc || error "$MULTIOP $f failed"
5410         sync
5411 }
5412 run_test 61 "mmap() writes don't make sync hang ================"
5413
5414 # bug 2330 - insufficient obd_match error checking causes LBUG
5415 test_62() {
5416         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5417         f="$DIR/f62"
5418         echo foo > $f
5419         cancel_lru_locks osc
5420         lctl set_param fail_loc=0x405
5421         cat $f && error "cat succeeded, expect -EIO"
5422         lctl set_param fail_loc=0
5423 }
5424 # This test is now irrelevant (as of bug 10718 inclusion), we no longer
5425 # match every page all of the time.
5426 #run_test 62 "verify obd_match failure doesn't LBUG (should -EIO)"
5427
5428 # bug 2319 - oig_wait() interrupted causes crash because of invalid waitq.
5429 # Though this test is irrelevant anymore, it helped to reveal some
5430 # other grant bugs (LU-4482), let's keep it.
5431 test_63a() {   # was test_63
5432         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5433         MAX_DIRTY_MB=`lctl get_param -n osc.*.max_dirty_mb | head -n 1`
5434         for i in `seq 10` ; do
5435                 dd if=/dev/zero of=$DIR/f63 bs=8k &
5436                 sleep 5
5437                 kill $!
5438                 sleep 1
5439         done
5440
5441         rm -f $DIR/f63 || true
5442 }
5443 run_test 63a "Verify oig_wait interruption does not crash ======="
5444
5445 # bug 2248 - async write errors didn't return to application on sync
5446 # bug 3677 - async write errors left page locked
5447 test_63b() {
5448         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5449         debugsave
5450         lctl set_param debug=-1
5451
5452         # ensure we have a grant to do async writes
5453         dd if=/dev/zero of=$DIR/$tfile bs=4k count=1
5454         rm $DIR/$tfile
5455
5456         sync    # sync lest earlier test intercept the fail_loc
5457
5458         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
5459         lctl set_param fail_loc=0x80000406
5460         $MULTIOP $DIR/$tfile Owy && \
5461                 error "sync didn't return ENOMEM"
5462         sync; sleep 2; sync     # do a real sync this time to flush page
5463         lctl get_param -n llite.*.dump_page_cache | grep locked && \
5464                 error "locked page left in cache after async error" || true
5465         debugrestore
5466 }
5467 run_test 63b "async write errors should be returned to fsync ==="
5468
5469 test_64a () {
5470         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5471         df $DIR
5472         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur* | grep "[0-9]"
5473 }
5474 run_test 64a "verify filter grant calculations (in kernel) ====="
5475
5476 test_64b () {
5477         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5478         sh oos.sh $MOUNT || error "oos.sh failed: $?"
5479 }
5480 run_test 64b "check out-of-space detection on client ==========="
5481
5482 test_64c() {
5483         $LCTL set_param osc.*OST0000-osc-[^mM]*.cur_grant_bytes=0
5484 }
5485 run_test 64c "verify grant shrink ========================------"
5486
5487 # bug 1414 - set/get directories' stripe info
5488 test_65a() {
5489         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5490         test_mkdir -p $DIR/$tdir
5491         touch $DIR/$tdir/f1
5492         $LVERIFY $DIR/$tdir $DIR/$tdir/f1 || error "lverify failed"
5493 }
5494 run_test 65a "directory with no stripe info ===================="
5495
5496 test_65b() {
5497         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5498         test_mkdir -p $DIR/$tdir
5499         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
5500
5501         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
5502                                                 error "setstripe"
5503         touch $DIR/$tdir/f2
5504         $LVERIFY $DIR/$tdir $DIR/$tdir/f2 || error "lverify failed"
5505 }
5506 run_test 65b "directory setstripe -S stripe_size*2 -i 0 -c 1"
5507
5508 test_65c() {
5509         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5510         if [[ $OSTCOUNT -gt 1 ]]; then
5511                 test_mkdir -p $DIR/$tdir
5512                 local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
5513
5514                 $SETSTRIPE -S $(($STRIPESIZE * 4)) -i 1 \
5515                         -c $(($OSTCOUNT - 1)) $DIR/$tdir || error "setstripe"
5516                 touch $DIR/$tdir/f3
5517                 $LVERIFY $DIR/$tdir $DIR/$tdir/f3 || error "lverify failed"
5518         fi
5519 }
5520 run_test 65c "directory setstripe -S stripe_size*4 -i 1 -c $((OSTCOUNT-1))"
5521
5522 test_65d() {
5523         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5524         test_mkdir -p $DIR/$tdir
5525         local STRIPECOUNT=$($GETSTRIPE -c $DIR/$tdir)
5526         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
5527
5528         if [[ $STRIPECOUNT -le 0 ]]; then
5529                 sc=1
5530         elif [[ $STRIPECOUNT -gt 2000 ]]; then
5531 #LOV_MAX_STRIPE_COUNT is 2000
5532                 [[ $OSTCOUNT -gt 2000 ]] && sc=2000 || sc=$(($OSTCOUNT - 1))
5533         else
5534                 sc=$(($STRIPECOUNT - 1))
5535         fi
5536         $SETSTRIPE -S $STRIPESIZE -c $sc $DIR/$tdir || error "setstripe"
5537         touch $DIR/$tdir/f4 $DIR/$tdir/f5
5538         $LVERIFY $DIR/$tdir $DIR/$tdir/f4 $DIR/$tdir/f5 ||
5539                 error "lverify failed"
5540 }
5541 run_test 65d "directory setstripe -S stripe_size -c stripe_count"
5542
5543 test_65e() {
5544         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5545         test_mkdir -p $DIR/$tdir
5546
5547         $SETSTRIPE $DIR/$tdir || error "setstripe"
5548         $GETSTRIPE -v $DIR/$tdir | grep "Default" ||
5549                                         error "no stripe info failed"
5550         touch $DIR/$tdir/f6
5551         $LVERIFY $DIR/$tdir $DIR/$tdir/f6 || error "lverify failed"
5552 }
5553 run_test 65e "directory setstripe defaults ======================="
5554
5555 test_65f() {
5556         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5557         test_mkdir -p $DIR/${tdir}f
5558         $RUNAS $SETSTRIPE $DIR/${tdir}f && error "setstripe succeeded" || true
5559 }
5560 run_test 65f "dir setstripe permission (should return error) ==="
5561
5562 test_65g() {
5563         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5564         test_mkdir -p $DIR/$tdir
5565         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
5566
5567         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
5568                                                         error "setstripe"
5569         $SETSTRIPE -d $DIR/$tdir || error "setstripe"
5570         $GETSTRIPE -v $DIR/$tdir | grep "Default" ||
5571                 error "delete default stripe failed"
5572 }
5573 run_test 65g "directory setstripe -d ==========================="
5574
5575 test_65h() {
5576         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5577         test_mkdir -p $DIR/$tdir
5578         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
5579
5580         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
5581                                                         error "setstripe"
5582         test_mkdir -p $DIR/$tdir/dd1
5583         [ $($GETSTRIPE -c $DIR/$tdir) == $($GETSTRIPE -c $DIR/$tdir/dd1) ] ||
5584                 error "stripe info inherit failed"
5585 }
5586 run_test 65h "directory stripe info inherit ===================="
5587
5588 test_65i() { # bug6367
5589         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5590         $SETSTRIPE -S 65536 -c -1 $MOUNT
5591 }
5592 run_test 65i "set non-default striping on root directory (bug 6367)="
5593
5594 test_65ia() { # bug12836
5595         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5596         $GETSTRIPE $MOUNT || error "getstripe $MOUNT failed"
5597 }
5598 run_test 65ia "getstripe on -1 default directory striping"
5599
5600 test_65ib() { # bug12836
5601         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5602         $GETSTRIPE -v $MOUNT || error "getstripe -v $MOUNT failed"
5603 }
5604 run_test 65ib "getstripe -v on -1 default directory striping"
5605
5606 test_65ic() { # bug12836
5607         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5608         $LFS find -mtime -1 $MOUNT > /dev/null || error "find $MOUNT failed"
5609 }
5610 run_test 65ic "new find on -1 default directory striping"
5611
5612 test_65j() { # bug6367
5613         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5614         sync; sleep 1
5615         # if we aren't already remounting for each test, do so for this test
5616         if [ "$CLEANUP" = ":" -a "$I_MOUNTED" = "yes" ]; then
5617                 cleanup || error "failed to unmount"
5618                 setup
5619         fi
5620         $SETSTRIPE -d $MOUNT || error "setstripe failed"
5621 }
5622 run_test 65j "set default striping on root directory (bug 6367)="
5623
5624 test_65k() { # bug11679
5625         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5626         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
5627         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5628
5629         local disable_precreate=true
5630         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.8.54) ] &&
5631                 disable_precreate=false
5632
5633         echo "Check OST status: "
5634         local MDS_OSCS=$(do_facet $SINGLEMDS lctl dl |
5635                 awk '/[oO][sS][cC].*md[ts]/ { print $4 }')
5636
5637         for OSC in $MDS_OSCS; do
5638                 echo $OSC "is active"
5639                 do_facet $SINGLEMDS lctl --device %$OSC activate
5640         done
5641
5642         for INACTIVE_OSC in $MDS_OSCS; do
5643                 local ost=$(osc_to_ost $INACTIVE_OSC)
5644                 local ostnum=$(do_facet $SINGLEMDS lctl get_param -n \
5645                                lov.*md*.target_obd |
5646                                awk -F: /$ost/'{ print $1 }' | head -n 1)
5647
5648                 mkdir -p $DIR/$tdir
5649                 $SETSTRIPE -i $ostnum -c 1 $DIR/$tdir
5650                 createmany -o $DIR/$tdir/$tfile.$ostnum. 1000
5651
5652                 echo "Deactivate: " $INACTIVE_OSC
5653                 do_facet $SINGLEMDS lctl --device %$INACTIVE_OSC deactivate
5654
5655                 local count=$(do_facet $SINGLEMDS "lctl get_param -n \
5656                               osp.$ost*MDT0000.create_count")
5657                 local max_count=$(do_facet $SINGLEMDS "lctl get_param -n \
5658                                   osp.$ost*MDT0000.max_create_count")
5659                 $disable_precreate &&
5660                         do_facet $SINGLEMDS "lctl set_param -n \
5661                                 osp.$ost*MDT0000.max_create_count=0"
5662
5663                 for idx in $(seq 0 $((OSTCOUNT - 1))); do
5664                         [ -f $DIR/$tdir/$idx ] && continue
5665                         echo "$SETSTRIPE -i $idx -c 1 $DIR/$tdir/$idx"
5666                         $SETSTRIPE -i $idx -c 1 $DIR/$tdir/$idx ||
5667                                 error "setstripe $idx should succeed"
5668                         rm -f $DIR/$tdir/$idx || error "rm $idx failed"
5669                 done
5670                 unlinkmany $DIR/$tdir/$tfile.$ostnum. 1000
5671                 rmdir $DIR/$tdir
5672
5673                 do_facet $SINGLEMDS "lctl set_param -n \
5674                         osp.$ost*MDT0000.max_create_count=$max_count"
5675                 do_facet $SINGLEMDS "lctl set_param -n \
5676                         osp.$ost*MDT0000.create_count=$count"
5677                 do_facet $SINGLEMDS lctl --device  %$INACTIVE_OSC activate
5678                 echo $INACTIVE_OSC "is Activate"
5679
5680                 wait_osc_import_state mds ost$ostnum FULL
5681         done
5682 }
5683 run_test 65k "validate manual striping works properly with deactivated OSCs"
5684
5685 test_65l() { # bug 12836
5686         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5687         test_mkdir -p $DIR/$tdir/test_dir
5688         $SETSTRIPE -c -1 $DIR/$tdir/test_dir
5689         $LFS find -mtime -1 $DIR/$tdir >/dev/null
5690 }
5691 run_test 65l "lfs find on -1 stripe dir ========================"
5692
5693 test_65m() {
5694         $RUNAS $SETSTRIPE -c 2 $MOUNT && error "setstripe should fail"
5695         true
5696 }
5697 run_test 65m "normal user can't set filesystem default stripe"
5698
5699 # bug 2543 - update blocks count on client
5700 test_66() {
5701         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5702         COUNT=${COUNT:-8}
5703         dd if=/dev/zero of=$DIR/f66 bs=1k count=$COUNT
5704         sync; sync_all_data; sync; sync_all_data
5705         cancel_lru_locks osc
5706         BLOCKS=`ls -s $DIR/f66 | awk '{ print $1 }'`
5707         [ $BLOCKS -ge $COUNT ] || error "$DIR/f66 blocks $BLOCKS < $COUNT"
5708 }
5709 run_test 66 "update inode blocks count on client ==============="
5710
5711 LLOOP=
5712 LLITELOOPLOAD=
5713 cleanup_68() {
5714         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5715         trap 0
5716         if [ ! -z "$LLOOP" ]; then
5717                 if swapon -s | grep -q $LLOOP; then
5718                         swapoff $LLOOP || error "swapoff failed"
5719                 fi
5720
5721                 $LCTL blockdev_detach $LLOOP || error "detach failed"
5722                 rm -f $LLOOP
5723                 unset LLOOP
5724         fi
5725         if [ ! -z "$LLITELOOPLOAD" ]; then
5726                 rmmod llite_lloop
5727                 unset LLITELOOPLOAD
5728         fi
5729         rm -f $DIR/f68*
5730 }
5731
5732 meminfo() {
5733         awk '($1 == "'$1':") { print $2 }' /proc/meminfo
5734 }
5735
5736 swap_used() {
5737         swapon -s | awk '($1 == "'$1'") { print $4 }'
5738 }
5739
5740 # test case for lloop driver, basic function
5741 test_68a() {
5742         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5743         [ "$UID" != 0 ] && skip_env "must run as root" && return
5744         llite_lloop_enabled || \
5745                 { skip_env "llite_lloop module disabled" && return; }
5746
5747         trap cleanup_68 EXIT
5748
5749         if ! module_loaded llite_lloop; then
5750                 if load_module llite/llite_lloop; then
5751                         LLITELOOPLOAD=yes
5752                 else
5753                         skip_env "can't find module llite_lloop"
5754                         return
5755                 fi
5756         fi
5757
5758         LLOOP=$TMP/lloop.`date +%s`.`date +%N`
5759         dd if=/dev/zero of=$DIR/f68a bs=4k count=1024
5760         $LCTL blockdev_attach $DIR/f68a $LLOOP || error "attach failed"
5761
5762         directio rdwr $LLOOP 0 1024 4096 || error "direct write failed"
5763         directio rdwr $LLOOP 0 1025 4096 && error "direct write should fail"
5764
5765         cleanup_68
5766 }
5767 run_test 68a "lloop driver - basic test ========================"
5768
5769 # excercise swapping to lustre by adding a high priority swapfile entry
5770 # and then consuming memory until it is used.
5771 test_68b() {  # was test_68
5772         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5773         [ "$UID" != 0 ] && skip_env "must run as root" && return
5774         lctl get_param -n devices | grep -q obdfilter && \
5775                 skip "local OST" && return
5776
5777         grep -q llite_lloop /proc/modules
5778         [ $? -ne 0 ] && skip "can't find module llite_lloop" && return
5779
5780         [ -z "`$LCTL list_nids | grep -v tcp`" ] && \
5781                 skip "can't reliably test swap with TCP" && return
5782
5783         MEMTOTAL=`meminfo MemTotal`
5784         NR_BLOCKS=$((MEMTOTAL>>8))
5785         [[ $NR_BLOCKS -le 2048 ]] && NR_BLOCKS=2048
5786
5787         LLOOP=$TMP/lloop.`date +%s`.`date +%N`
5788         dd if=/dev/zero of=$DIR/f68b bs=64k seek=$NR_BLOCKS count=1
5789         mkswap $DIR/f68b
5790
5791         $LCTL blockdev_attach $DIR/f68b $LLOOP || error "attach failed"
5792
5793         trap cleanup_68 EXIT
5794
5795         swapon -p 32767 $LLOOP || error "swapon $LLOOP failed"
5796
5797         echo "before: `swapon -s | grep $LLOOP`"
5798         $MEMHOG $MEMTOTAL || error "error allocating $MEMTOTAL kB"
5799         echo "after: `swapon -s | grep $LLOOP`"
5800         SWAPUSED=`swap_used $LLOOP`
5801
5802         cleanup_68
5803
5804         [ $SWAPUSED -eq 0 ] && echo "no swap used???" || true
5805 }
5806 run_test 68b "support swapping to Lustre ========================"
5807
5808 # bug5265, obdfilter oa2dentry return -ENOENT
5809 # #define OBD_FAIL_SRV_ENOENT 0x217
5810 test_69() {
5811         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5812         remote_ost_nodsh && skip "remote OST with nodsh" && return
5813
5814         f="$DIR/$tfile"
5815         $SETSTRIPE -c 1 -i 0 $f
5816
5817         $DIRECTIO write ${f}.2 0 1 || error "directio write error"
5818
5819         do_facet ost1 lctl set_param fail_loc=0x217
5820         $TRUNCATE $f 1 # vmtruncate() will ignore truncate() error.
5821         $DIRECTIO write $f 0 2 && error "write succeeded, expect -ENOENT"
5822
5823         do_facet ost1 lctl set_param fail_loc=0
5824         $DIRECTIO write $f 0 2 || error "write error"
5825
5826         cancel_lru_locks osc
5827         $DIRECTIO read $f 0 1 || error "read error"
5828
5829         do_facet ost1 lctl set_param fail_loc=0x217
5830         $DIRECTIO read $f 1 1 && error "read succeeded, expect -ENOENT"
5831
5832         do_facet ost1 lctl set_param fail_loc=0
5833         rm -f $f
5834 }
5835 run_test 69 "verify oa2dentry return -ENOENT doesn't LBUG ======"
5836
5837 test_71() {
5838         test_mkdir -p $DIR/$tdir
5839         $LFS setdirstripe -D -c$MDSCOUNT $DIR/$tdir
5840         sh rundbench -C -D $DIR/$tdir 2 || error "dbench failed!"
5841 }
5842 run_test 71 "Running dbench on lustre (don't segment fault) ===="
5843
5844 test_72a() { # bug 5695 - Test that on 2.6 remove_suid works properly
5845         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5846         [ "$RUNAS_ID" = "$UID" ] &&
5847                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
5848
5849         # Check that testing environment is properly set up. Skip if not
5850         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_GID $RUNAS || {
5851                 skip_env "User $RUNAS_ID does not exist - skipping"
5852                 return 0
5853         }
5854         touch $DIR/$tfile
5855         chmod 777 $DIR/$tfile
5856         chmod ug+s $DIR/$tfile
5857         $RUNAS dd if=/dev/zero of=$DIR/$tfile bs=512 count=1 ||
5858                 error "$RUNAS dd $DIR/$tfile failed"
5859         # See if we are still setuid/sgid
5860         test -u $DIR/$tfile -o -g $DIR/$tfile &&
5861                 error "S/gid is not dropped on write"
5862         # Now test that MDS is updated too
5863         cancel_lru_locks mdc
5864         test -u $DIR/$tfile -o -g $DIR/$tfile &&
5865                 error "S/gid is not dropped on MDS"
5866         rm -f $DIR/$tfile
5867 }
5868 run_test 72a "Test that remove suid works properly (bug5695) ===="
5869
5870 test_72b() { # bug 24226 -- keep mode setting when size is not changing
5871         local perm
5872
5873         [ "$RUNAS_ID" = "$UID" ] && \
5874                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
5875         [ "$RUNAS_ID" -eq 0 ] && \
5876                 skip_env "RUNAS_ID = 0 -- skipping" && return
5877
5878         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5879         # Check that testing environment is properly set up. Skip if not
5880         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_ID $RUNAS || {
5881                 skip_env "User $RUNAS_ID does not exist - skipping"
5882                 return 0
5883         }
5884         touch $DIR/${tfile}-f{g,u}
5885         test_mkdir $DIR/${tfile}-dg
5886         test_mkdir $DIR/${tfile}-du
5887         chmod 770 $DIR/${tfile}-{f,d}{g,u}
5888         chmod g+s $DIR/${tfile}-{f,d}g
5889         chmod u+s $DIR/${tfile}-{f,d}u
5890         for perm in 777 2777 4777; do
5891                 $RUNAS chmod $perm $DIR/${tfile}-fg && error "S/gid file allowed improper chmod to $perm"
5892                 $RUNAS chmod $perm $DIR/${tfile}-fu && error "S/uid file allowed improper chmod to $perm"
5893                 $RUNAS chmod $perm $DIR/${tfile}-dg && error "S/gid dir allowed improper chmod to $perm"
5894                 $RUNAS chmod $perm $DIR/${tfile}-du && error "S/uid dir allowed improper chmod to $perm"
5895         done
5896         true
5897 }
5898 run_test 72b "Test that we keep mode setting if without file data changed (bug 24226)"
5899
5900 # bug 3462 - multiple simultaneous MDC requests
5901 test_73() {
5902         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5903         test_mkdir $DIR/d73-1
5904         test_mkdir $DIR/d73-2
5905         multiop_bg_pause $DIR/d73-1/f73-1 O_c || return 1
5906         pid1=$!
5907
5908         lctl set_param fail_loc=0x80000129
5909         $MULTIOP $DIR/d73-1/f73-2 Oc &
5910         sleep 1
5911         lctl set_param fail_loc=0
5912
5913         $MULTIOP $DIR/d73-2/f73-3 Oc &
5914         pid3=$!
5915
5916         kill -USR1 $pid1
5917         wait $pid1 || return 1
5918
5919         sleep 25
5920
5921         $CHECKSTAT -t file $DIR/d73-1/f73-1 || return 4
5922         $CHECKSTAT -t file $DIR/d73-1/f73-2 || return 5
5923         $CHECKSTAT -t file $DIR/d73-2/f73-3 || return 6
5924
5925         rm -rf $DIR/d73-*
5926 }
5927 run_test 73 "multiple MDC requests (should not deadlock)"
5928
5929 test_74a() { # bug 6149, 6184
5930         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5931         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
5932         #
5933         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
5934         # will spin in a tight reconnection loop
5935         touch $DIR/f74a
5936         $LCTL set_param fail_loc=0x8000030e
5937         # get any lock that won't be difficult - lookup works.
5938         ls $DIR/f74a
5939         $LCTL set_param fail_loc=0
5940         rm -f $DIR/f74a
5941         true
5942 }
5943 run_test 74a "ldlm_enqueue freed-export error path, ls (shouldn't LBUG)"
5944
5945 test_74b() { # bug 13310
5946         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5947         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
5948         #
5949         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
5950         # will spin in a tight reconnection loop
5951         $LCTL set_param fail_loc=0x8000030e
5952         # get a "difficult" lock
5953         touch $DIR/f74b
5954         $LCTL set_param fail_loc=0
5955         rm -f $DIR/f74b
5956         true
5957 }
5958 run_test 74b "ldlm_enqueue freed-export error path, touch (shouldn't LBUG)"
5959
5960 test_74c() {
5961         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5962         #define OBD_FAIL_LDLM_NEW_LOCK
5963         $LCTL set_param fail_loc=0x319
5964         touch $DIR/$tfile && error "touch successful"
5965         $LCTL set_param fail_loc=0
5966         true
5967 }
5968 run_test 74c "ldlm_lock_create error path, (shouldn't LBUG)"
5969
5970 num_inodes() {
5971         awk '/lustre_inode_cache/ {print $2; exit}' /proc/slabinfo
5972 }
5973
5974 get_inode_slab_tunables() {
5975         awk '/lustre_inode_cache/ {print $9," ",$10," ",$11; exit}' /proc/slabinfo
5976 }
5977
5978 set_inode_slab_tunables() {
5979         echo "lustre_inode_cache $1" > /proc/slabinfo
5980 }
5981
5982 test_76() { # Now for bug 20433, added originally in bug 1443
5983         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5984         local SLAB_SETTINGS=$(get_inode_slab_tunables)
5985         local CPUS=$(getconf _NPROCESSORS_ONLN 2>/dev/null)
5986         # we cannot set limit below 1 which means 1 inode in each
5987         # per-cpu cache is still allowed
5988         set_inode_slab_tunables "1 1 0"
5989         cancel_lru_locks osc
5990         BEFORE_INODES=$(num_inodes)
5991         echo "before inodes: $BEFORE_INODES"
5992         local COUNT=1000
5993         [ "$SLOW" = "no" ] && COUNT=100
5994         for i in $(seq $COUNT); do
5995                 touch $DIR/$tfile
5996                 rm -f $DIR/$tfile
5997         done
5998         cancel_lru_locks osc
5999         AFTER_INODES=$(num_inodes)
6000         echo "after inodes: $AFTER_INODES"
6001         local wait=0
6002         while [[ $((AFTER_INODES-1*${CPUS:-1})) -gt $BEFORE_INODES ]]; do
6003                 sleep 2
6004                 AFTER_INODES=$(num_inodes)
6005                 wait=$((wait+2))
6006                 echo "wait $wait seconds inodes: $AFTER_INODES"
6007                 if [ $wait -gt 30 ]; then
6008                         error "inode slab grew from $BEFORE_INODES to $AFTER_INODES"
6009                 fi
6010         done
6011         set_inode_slab_tunables "$SLAB_SETTINGS"
6012 }
6013 run_test 76 "confirm clients recycle inodes properly ===="
6014
6015
6016 export ORIG_CSUM=""
6017 set_checksums()
6018 {
6019         # Note: in sptlrpc modes which enable its own bulk checksum, the
6020         # original crc32_le bulk checksum will be automatically disabled,
6021         # and the OBD_FAIL_OSC_CHECKSUM_SEND/OBD_FAIL_OSC_CHECKSUM_RECEIVE
6022         # will be checked by sptlrpc code against sptlrpc bulk checksum.
6023         # In this case set_checksums() will not be no-op, because sptlrpc
6024         # bulk checksum will be enabled all through the test.
6025
6026         [ "$ORIG_CSUM" ] || ORIG_CSUM=`lctl get_param -n osc.*.checksums | head -n1`
6027         lctl set_param -n osc.*.checksums $1
6028         return 0
6029 }
6030
6031 export ORIG_CSUM_TYPE="`lctl get_param -n osc.*osc-[^mM]*.checksum_type |
6032                         sed 's/.*\[\(.*\)\].*/\1/g' | head -n1`"
6033 CKSUM_TYPES=${CKSUM_TYPES:-"crc32 adler"}
6034 [ "$ORIG_CSUM_TYPE" = "crc32c" ] && CKSUM_TYPES="$CKSUM_TYPES crc32c"
6035 set_checksum_type()
6036 {
6037         lctl set_param -n osc.*osc-[^mM]*.checksum_type $1
6038         log "set checksum type to $1"
6039         return 0
6040 }
6041 F77_TMP=$TMP/f77-temp
6042 F77SZ=8
6043 setup_f77() {
6044         dd if=/dev/urandom of=$F77_TMP bs=1M count=$F77SZ || \
6045                 error "error writing to $F77_TMP"
6046 }
6047
6048 test_77a() { # bug 10889
6049         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6050         $GSS && skip "could not run with gss" && return
6051         [ ! -f $F77_TMP ] && setup_f77
6052         set_checksums 1
6053         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ || error "dd error"
6054         set_checksums 0
6055         rm -f $DIR/$tfile
6056 }
6057 run_test 77a "normal checksum read/write operation"
6058
6059 test_77b() { # bug 10889
6060         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6061         $GSS && skip "could not run with gss" && return
6062         [ ! -f $F77_TMP ] && setup_f77
6063         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
6064         $LCTL set_param fail_loc=0x80000409
6065         set_checksums 1
6066
6067         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ conv=sync ||
6068                 error "dd error: $?"
6069         $LCTL set_param fail_loc=0
6070
6071         for algo in $CKSUM_TYPES; do
6072                 cancel_lru_locks osc
6073                 set_checksum_type $algo
6074                 #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
6075                 $LCTL set_param fail_loc=0x80000408
6076                 cmp $F77_TMP $DIR/$tfile || error "file compare failed"
6077                 $LCTL set_param fail_loc=0
6078         done
6079         set_checksums 0
6080         set_checksum_type $ORIG_CSUM_TYPE
6081         rm -f $DIR/$tfile
6082 }
6083 run_test 77b "checksum error on client write, read"
6084
6085 test_77d() { # bug 10889
6086         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6087         $GSS && skip "could not run with gss" && return
6088         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
6089         $LCTL set_param fail_loc=0x80000409
6090         set_checksums 1
6091         $DIRECTIO write $DIR/$tfile 0 $F77SZ $((1024 * 1024)) ||
6092                 error "direct write: rc=$?"
6093         $LCTL set_param fail_loc=0
6094         set_checksums 0
6095
6096         #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
6097         $LCTL set_param fail_loc=0x80000408
6098         set_checksums 1
6099         cancel_lru_locks osc
6100         $DIRECTIO read $DIR/$tfile 0 $F77SZ $((1024 * 1024)) ||
6101                 error "direct read: rc=$?"
6102         $LCTL set_param fail_loc=0
6103         set_checksums 0
6104 }
6105 run_test 77d "checksum error on OST direct write, read"
6106
6107 test_77f() { # bug 10889
6108         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6109         $GSS && skip "could not run with gss" && return
6110         set_checksums 1
6111         for algo in $CKSUM_TYPES; do
6112                 cancel_lru_locks osc
6113                 set_checksum_type $algo
6114                 #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
6115                 $LCTL set_param fail_loc=0x409
6116                 $DIRECTIO write $DIR/$tfile 0 $F77SZ $((1024 * 1024)) &&
6117                         error "direct write succeeded"
6118                 $LCTL set_param fail_loc=0
6119         done
6120         set_checksum_type $ORIG_CSUM_TYPE
6121         set_checksums 0
6122 }
6123 run_test 77f "repeat checksum error on write (expect error)"
6124
6125 test_77g() { # bug 10889
6126         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6127         $GSS && skip "could not run with gss" && return
6128         remote_ost_nodsh && skip "remote OST with nodsh" && return
6129
6130         [ ! -f $F77_TMP ] && setup_f77
6131
6132         $SETSTRIPE -c 1 -i 0 $DIR/$tfile
6133         #define OBD_FAIL_OST_CHECKSUM_RECEIVE       0x21a
6134         do_facet ost1 lctl set_param fail_loc=0x8000021a
6135         set_checksums 1
6136         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ ||
6137                 error "write error: rc=$?"
6138         do_facet ost1 lctl set_param fail_loc=0
6139         set_checksums 0
6140
6141         cancel_lru_locks osc
6142         #define OBD_FAIL_OST_CHECKSUM_SEND          0x21b
6143         do_facet ost1 lctl set_param fail_loc=0x8000021b
6144         set_checksums 1
6145         cmp $F77_TMP $DIR/$tfile || error "file compare failed"
6146         do_facet ost1 lctl set_param fail_loc=0
6147         set_checksums 0
6148 }
6149 run_test 77g "checksum error on OST write, read"
6150
6151 test_77i() { # bug 13805
6152         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6153         $GSS && skip "could not run with gss" && return
6154         #define OBD_FAIL_OSC_CONNECT_CKSUM       0x40b
6155         lctl set_param fail_loc=0x40b
6156         remount_client $MOUNT
6157         lctl set_param fail_loc=0
6158         for VALUE in `lctl get_param osc.*osc-[^mM]*.checksum_type`; do
6159                 PARAM=`echo ${VALUE[0]} | cut -d "=" -f1`
6160                 algo=`lctl get_param -n $PARAM | sed 's/.*\[\(.*\)\].*/\1/g'`
6161                 [ "$algo" = "adler" ] || error "algo set to $algo instead of adler"
6162         done
6163         remount_client $MOUNT
6164 }
6165 run_test 77i "client not supporting OSD_CONNECT_CKSUM"
6166
6167 test_77j() { # bug 13805
6168         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6169         $GSS && skip "could not run with gss" && return
6170         #define OBD_FAIL_OSC_CKSUM_ADLER_ONLY    0x40c
6171         lctl set_param fail_loc=0x40c
6172         remount_client $MOUNT
6173         lctl set_param fail_loc=0
6174         sleep 2 # wait async osc connect to finish
6175         for VALUE in `lctl get_param osc.*osc-[^mM]*.checksum_type`; do
6176                 PARAM=`echo ${VALUE[0]} | cut -d "=" -f1`
6177                 algo=`lctl get_param -n $PARAM | sed 's/.*\[\(.*\)\].*/\1/g'`
6178                 [ "$algo" = "adler" ] || error "algo set to $algo instead of adler"
6179         done
6180         remount_client $MOUNT
6181 }
6182 run_test 77j "client only supporting ADLER32"
6183
6184 [ "$ORIG_CSUM" ] && set_checksums $ORIG_CSUM || true
6185 rm -f $F77_TMP
6186 unset F77_TMP
6187
6188 cleanup_test_78() {
6189         trap 0
6190         rm -f $DIR/$tfile
6191 }
6192
6193 test_78() { # bug 10901
6194         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6195         remote_ost || { skip_env "local OST" && return; }
6196
6197         NSEQ=5
6198         F78SIZE=$(($(awk '/MemFree:/ { print $2 }' /proc/meminfo) / 1024))
6199         echo "MemFree: $F78SIZE, Max file size: $MAXFREE"
6200         MEMTOTAL=$(($(awk '/MemTotal:/ { print $2 }' /proc/meminfo) / 1024))
6201         echo "MemTotal: $MEMTOTAL"
6202
6203         # reserve 256MB of memory for the kernel and other running processes,
6204         # and then take 1/2 of the remaining memory for the read/write buffers.
6205         if [ $MEMTOTAL -gt 512 ] ;then
6206                 MEMTOTAL=$(((MEMTOTAL - 256 ) / 2))
6207         else
6208                 # for those poor memory-starved high-end clusters...
6209                 MEMTOTAL=$((MEMTOTAL / 2))
6210         fi
6211         echo "Mem to use for directio: $MEMTOTAL"
6212
6213         [[ $F78SIZE -gt $MEMTOTAL ]] && F78SIZE=$MEMTOTAL
6214         [[ $F78SIZE -gt 512 ]] && F78SIZE=512
6215         [[ $F78SIZE -gt $((MAXFREE / 1024)) ]] && F78SIZE=$((MAXFREE / 1024))
6216         SMALLESTOST=$($LFS df $DIR | grep OST | awk '{ print $4 }' | sort -n |
6217                 head -n1)
6218         echo "Smallest OST: $SMALLESTOST"
6219         [[ $SMALLESTOST -lt 10240 ]] &&
6220                 skip "too small OSTSIZE, useless to run large O_DIRECT test" && return 0
6221
6222         trap cleanup_test_78 EXIT
6223
6224         [[ $F78SIZE -gt $((SMALLESTOST * $OSTCOUNT / 1024 - 80)) ]] &&
6225                 F78SIZE=$((SMALLESTOST * $OSTCOUNT / 1024 - 80))
6226
6227         [ "$SLOW" = "no" ] && NSEQ=1 && [ $F78SIZE -gt 32 ] && F78SIZE=32
6228         echo "File size: $F78SIZE"
6229         $SETSTRIPE -c $OSTCOUNT $DIR/$tfile || error "setstripe failed"
6230         for i in $(seq 1 $NSEQ); do
6231                 FSIZE=$(($F78SIZE / ($NSEQ - $i + 1)))
6232                 echo directIO rdwr round $i of $NSEQ
6233                 $DIRECTIO rdwr $DIR/$tfile 0 $FSIZE 1048576||error "rdwr failed"
6234         done
6235
6236         cleanup_test_78
6237 }
6238 run_test 78 "handle large O_DIRECT writes correctly ============"
6239
6240 test_79() { # bug 12743
6241         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6242         wait_delete_completed
6243
6244         BKTOTAL=$(calc_osc_kbytes kbytestotal)
6245         BKFREE=$(calc_osc_kbytes kbytesfree)
6246         BKAVAIL=$(calc_osc_kbytes kbytesavail)
6247
6248         STRING=`df -P $MOUNT | tail -n 1 | awk '{print $2","$3","$4}'`
6249         DFTOTAL=`echo $STRING | cut -d, -f1`
6250         DFUSED=`echo $STRING  | cut -d, -f2`
6251         DFAVAIL=`echo $STRING | cut -d, -f3`
6252         DFFREE=$(($DFTOTAL - $DFUSED))
6253
6254         ALLOWANCE=$((64 * $OSTCOUNT))
6255
6256         if [ $DFTOTAL -lt $(($BKTOTAL - $ALLOWANCE)) ] ||
6257            [ $DFTOTAL -gt $(($BKTOTAL + $ALLOWANCE)) ] ; then
6258                 error "df total($DFTOTAL) mismatch OST total($BKTOTAL)"
6259         fi
6260         if [ $DFFREE -lt $(($BKFREE - $ALLOWANCE)) ] ||
6261            [ $DFFREE -gt $(($BKFREE + $ALLOWANCE)) ] ; then
6262                 error "df free($DFFREE) mismatch OST free($BKFREE)"
6263         fi
6264         if [ $DFAVAIL -lt $(($BKAVAIL - $ALLOWANCE)) ] ||
6265            [ $DFAVAIL -gt $(($BKAVAIL + $ALLOWANCE)) ] ; then
6266                 error "df avail($DFAVAIL) mismatch OST avail($BKAVAIL)"
6267         fi
6268 }
6269 run_test 79 "df report consistency check ======================="
6270
6271 test_80() { # bug 10718
6272         remote_ost_nodsh && skip "remote OST with nodsh" && return
6273         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6274         # relax strong synchronous semantics for slow backends like ZFS
6275         local soc="obdfilter.*.sync_on_lock_cancel"
6276         local soc_old=$(do_facet ost1 lctl get_param -n $soc | head -n1)
6277         local hosts=
6278         if [ "$soc_old" != "never" -a "$(facet_fstype ost1)" != "ldiskfs" ]; then
6279                 hosts=$(for host in $(seq -f "ost%g" 1 $OSTCOUNT); do
6280                           facet_active_host $host; done | sort -u)
6281                 do_nodes $hosts lctl set_param $soc=never
6282         fi
6283
6284         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1M
6285         sync; sleep 1; sync
6286         local BEFORE=`date +%s`
6287         cancel_lru_locks osc
6288         local AFTER=`date +%s`
6289         local DIFF=$((AFTER-BEFORE))
6290         if [ $DIFF -gt 1 ] ; then
6291                 error "elapsed for 1M@1T = $DIFF"
6292         fi
6293
6294         [ -n "$hosts" ] && do_nodes $hosts lctl set_param $soc=$soc_old
6295
6296         rm -f $DIR/$tfile
6297 }
6298 run_test 80 "Page eviction is equally fast at high offsets too  ===="
6299
6300 test_81a() { # LU-456
6301         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6302         remote_ost_nodsh && skip "remote OST with nodsh" && return
6303         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
6304         # MUST OR with the OBD_FAIL_ONCE (0x80000000)
6305         do_facet ost1 lctl set_param fail_loc=0x80000228
6306
6307         # write should trigger a retry and success
6308         $SETSTRIPE -i 0 -c 1 $DIR/$tfile
6309         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6310         RC=$?
6311         if [ $RC -ne 0 ] ; then
6312                 error "write should success, but failed for $RC"
6313         fi
6314 }
6315 run_test 81a "OST should retry write when get -ENOSPC ==============="
6316
6317 test_81b() { # LU-456
6318         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6319         remote_ost_nodsh && skip "remote OST with nodsh" && return
6320         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
6321         # Don't OR with the OBD_FAIL_ONCE (0x80000000)
6322         do_facet ost1 lctl set_param fail_loc=0x228
6323
6324         # write should retry several times and return -ENOSPC finally
6325         $SETSTRIPE -i 0 -c 1 $DIR/$tfile
6326         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6327         RC=$?
6328         ENOSPC=28
6329         if [ $RC -ne $ENOSPC ] ; then
6330                 error "dd should fail for -ENOSPC, but succeed."
6331         fi
6332 }
6333 run_test 81b "OST should return -ENOSPC when retry still fails ======="
6334
6335 test_82() { # LU-1031
6336         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10
6337         local gid1=14091995
6338         local gid2=16022000
6339
6340         multiop_bg_pause $DIR/$tfile OG${gid1}_g${gid1}c || return 1
6341         local MULTIPID1=$!
6342         multiop_bg_pause $DIR/$tfile O_G${gid2}r10g${gid2}c || return 2
6343         local MULTIPID2=$!
6344         kill -USR1 $MULTIPID2
6345         sleep 2
6346         if [[ `ps h -o comm -p $MULTIPID2` == "" ]]; then
6347                 error "First grouplock does not block second one"
6348         else
6349                 echo "Second grouplock blocks first one"
6350         fi
6351         kill -USR1 $MULTIPID1
6352         wait $MULTIPID1
6353         wait $MULTIPID2
6354 }
6355 run_test 82 "Basic grouplock test ==============================="
6356
6357 test_99a() {
6358         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" &&
6359                 return
6360         test_mkdir -p $DIR/d99cvsroot
6361         chown $RUNAS_ID $DIR/d99cvsroot
6362         local oldPWD=$PWD       # bug 13584, use $TMP as working dir
6363         cd $TMP
6364
6365         $RUNAS cvs -d $DIR/d99cvsroot init || error "cvs init failed"
6366         cd $oldPWD
6367 }
6368 run_test 99a "cvs init ========================================="
6369
6370 test_99b() {
6371         [ -z "$(which cvs 2>/dev/null)" ] &&
6372                 skip_env "could not find cvs" && return
6373         [ ! -d $DIR/d99cvsroot ] && test_99a
6374         cd /etc/init.d
6375         # some versions of cvs import exit(1) when asked to import links or
6376         # files they can't read.  ignore those files.
6377         TOIGNORE=$(find . -type l -printf '-I %f\n' -o \
6378                         ! -perm /4 -printf '-I %f\n')
6379         $RUNAS cvs -d $DIR/d99cvsroot import -m "nomesg" $TOIGNORE \
6380                 d99reposname vtag rtag
6381 }
6382 run_test 99b "cvs import ======================================="
6383
6384 test_99c() {
6385         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
6386         [ ! -d $DIR/d99cvsroot ] && test_99b
6387         cd $DIR
6388         test_mkdir -p $DIR/d99reposname
6389         chown $RUNAS_ID $DIR/d99reposname
6390         $RUNAS cvs -d $DIR/d99cvsroot co d99reposname
6391 }
6392 run_test 99c "cvs checkout ====================================="
6393
6394 test_99d() {
6395         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
6396         [ ! -d $DIR/d99cvsroot ] && test_99c
6397         cd $DIR/d99reposname
6398         $RUNAS touch foo99
6399         $RUNAS cvs add -m 'addmsg' foo99
6400 }
6401 run_test 99d "cvs add =========================================="
6402
6403 test_99e() {
6404         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
6405         [ ! -d $DIR/d99cvsroot ] && test_99c
6406         cd $DIR/d99reposname
6407         $RUNAS cvs update
6408 }
6409 run_test 99e "cvs update ======================================="
6410
6411 test_99f() {
6412         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
6413         [ ! -d $DIR/d99cvsroot ] && test_99d
6414         cd $DIR/d99reposname
6415         $RUNAS cvs commit -m 'nomsg' foo99
6416     rm -fr $DIR/d99cvsroot
6417 }
6418 run_test 99f "cvs commit ======================================="
6419
6420 test_100() {
6421         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6422         [ "$NETTYPE" = tcp ] || \
6423                 { skip "TCP secure port test, not useful for NETTYPE=$NETTYPE" && \
6424                         return ; }
6425
6426         remote_ost_nodsh && skip "remote OST with nodsh" && return
6427         remote_mds_nodsh && skip "remote MDS with nodsh" && return
6428         remote_servers || \
6429                 { skip "useless for local single node setup" && return; }
6430
6431         netstat -tna | ( rc=1; while read PROT SND RCV LOCAL REMOTE STAT; do
6432                 [ "$PROT" != "tcp" ] && continue
6433                 RPORT=$(echo $REMOTE | cut -d: -f2)
6434                 [ "$RPORT" != "$ACCEPTOR_PORT" ] && continue
6435
6436                 rc=0
6437                 LPORT=`echo $LOCAL | cut -d: -f2`
6438                 if [ $LPORT -ge 1024 ]; then
6439                         echo "bad: $PROT $SND $RCV $LOCAL $REMOTE $STAT"
6440                         netstat -tna
6441                         error_exit "local: $LPORT > 1024, remote: $RPORT"
6442                 fi
6443         done
6444         [ "$rc" = 0 ] || error_exit "privileged port not found" )
6445 }
6446 run_test 100 "check local port using privileged port ==========="
6447
6448 function get_named_value()
6449 {
6450     local tag
6451
6452     tag=$1
6453     while read ;do
6454         line=$REPLY
6455         case $line in
6456         $tag*)
6457             echo $line | sed "s/^$tag[ ]*//"
6458             break
6459             ;;
6460         esac
6461     done
6462 }
6463
6464 export CACHE_MAX=$($LCTL get_param -n llite.*.max_cached_mb |
6465                    awk '/^max_cached_mb/ { print $2 }')
6466
6467 cleanup_101a() {
6468         $LCTL set_param -n llite.*.max_cached_mb $CACHE_MAX
6469         trap 0
6470 }
6471
6472 test_101a() {
6473         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6474         [ $MDSCOUNT -ge 2 ] && skip "skip now for >= 2 MDTs" && return #LU-4322
6475         local s
6476         local discard
6477         local nreads=10000
6478         local cache_limit=32
6479
6480         $LCTL set_param -n osc.*-osc*.rpc_stats 0
6481         trap cleanup_101a EXIT
6482         $LCTL set_param -n llite.*.read_ahead_stats 0
6483         $LCTL set_param -n llite.*.max_cached_mb $cache_limit
6484
6485         #
6486         # randomly read 10000 of 64K chunks from file 3x 32MB in size
6487         #
6488         echo "nreads: $nreads file size: $((cache_limit * 3))MB"
6489         $READS -f $DIR/$tfile -s$((cache_limit * 3192 * 1024)) -b65536 -C -n$nreads -t 180
6490
6491         discard=0
6492         for s in $($LCTL get_param -n llite.*.read_ahead_stats |
6493                 get_named_value 'read but discarded' | cut -d" " -f1); do
6494                         discard=$(($discard + $s))
6495         done
6496         cleanup_101a
6497
6498         if [[ $(($discard * 10)) -gt $nreads ]]; then
6499                 $LCTL get_param osc.*-osc*.rpc_stats
6500                 $LCTL get_param llite.*.read_ahead_stats
6501                 error "too many ($discard) discarded pages"
6502         fi
6503         rm -f $DIR/$tfile || true
6504 }
6505 run_test 101a "check read-ahead for random reads ================"
6506
6507 setup_test101bc() {
6508         test_mkdir -p $DIR/$tdir
6509         local STRIPE_SIZE=$1
6510         local FILE_LENGTH=$2
6511         STRIPE_OFFSET=0
6512
6513         local FILE_SIZE_MB=$((FILE_LENGTH / STRIPE_SIZE))
6514
6515         local list=$(comma_list $(osts_nodes))
6516         set_osd_param $list '' read_cache_enable 0
6517         set_osd_param $list '' writethrough_cache_enable 0
6518
6519         trap cleanup_test101bc EXIT
6520         # prepare the read-ahead file
6521         $SETSTRIPE -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $OSTCOUNT $DIR/$tfile
6522
6523         dd if=/dev/zero of=$DIR/$tfile bs=$STRIPE_SIZE \
6524                                 count=$FILE_SIZE_MB 2> /dev/null
6525
6526 }
6527
6528 cleanup_test101bc() {
6529         trap 0
6530         rm -rf $DIR/$tdir
6531         rm -f $DIR/$tfile
6532
6533         local list=$(comma_list $(osts_nodes))
6534         set_osd_param $list '' read_cache_enable 1
6535         set_osd_param $list '' writethrough_cache_enable 1
6536 }
6537
6538 calc_total() {
6539         awk 'BEGIN{total=0}; {total+=$1}; END{print total}'
6540 }
6541
6542 ra_check_101() {
6543         local READ_SIZE=$1
6544         local STRIPE_SIZE=$2
6545         local FILE_LENGTH=$3
6546         local RA_INC=1048576
6547         local STRIDE_LENGTH=$((STRIPE_SIZE/READ_SIZE))
6548         local discard_limit=$((((STRIDE_LENGTH - 1)*3/(STRIDE_LENGTH*OSTCOUNT))* \
6549                              (STRIDE_LENGTH*OSTCOUNT - STRIDE_LENGTH)))
6550         DISCARD=$($LCTL get_param -n llite.*.read_ahead_stats |
6551                         get_named_value 'read but discarded' |
6552                         cut -d" " -f1 | calc_total)
6553         if [[ $DISCARD -gt $discard_limit ]]; then
6554                 $LCTL get_param llite.*.read_ahead_stats
6555                 error "Too many ($DISCARD) discarded pages with size (${READ_SIZE})"
6556         else
6557                 echo "Read-ahead success for size ${READ_SIZE}"
6558         fi
6559 }
6560
6561 test_101b() {
6562         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6563         [[ $OSTCOUNT -lt 2 ]] &&
6564                 skip_env "skipping stride IO stride-ahead test" && return
6565         local STRIPE_SIZE=1048576
6566         local STRIDE_SIZE=$((STRIPE_SIZE*OSTCOUNT))
6567         if [ $SLOW == "yes" ]; then
6568                 local FILE_LENGTH=$((STRIDE_SIZE * 64))
6569         else
6570                 local FILE_LENGTH=$((STRIDE_SIZE * 8))
6571         fi
6572
6573         local ITERATION=$((FILE_LENGTH / STRIDE_SIZE))
6574
6575         # prepare the read-ahead file
6576         setup_test101bc $STRIPE_SIZE $FILE_LENGTH
6577         cancel_lru_locks osc
6578         for BIDX in 2 4 8 16 32 64 128 256
6579         do
6580                 local BSIZE=$((BIDX*4096))
6581                 local READ_COUNT=$((STRIPE_SIZE/BSIZE))
6582                 local STRIDE_LENGTH=$((STRIDE_SIZE/BSIZE))
6583                 local OFFSET=$((STRIPE_SIZE/BSIZE*(OSTCOUNT - 1)))
6584                 $LCTL set_param -n llite.*.read_ahead_stats 0
6585                 $READS -f $DIR/$tfile  -l $STRIDE_LENGTH -o $OFFSET \
6586                               -s $FILE_LENGTH -b $STRIPE_SIZE -a $READ_COUNT -n $ITERATION
6587                 cancel_lru_locks osc
6588                 ra_check_101 $BSIZE $STRIPE_SIZE $FILE_LENGTH
6589         done
6590         cleanup_test101bc
6591         true
6592 }
6593 run_test 101b "check stride-io mode read-ahead ================="
6594
6595 test_101c() {
6596         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6597         local STRIPE_SIZE=1048576
6598         local FILE_LENGTH=$((STRIPE_SIZE*100))
6599         local nreads=10000
6600         local osc_rpc_stats
6601
6602         setup_test101bc $STRIPE_SIZE $FILE_LENGTH
6603
6604         cancel_lru_locks osc
6605         $LCTL set_param osc.*.rpc_stats 0
6606         $READS -f $DIR/$tfile -s$FILE_LENGTH -b65536 -n$nreads -t 180
6607         for osc_rpc_stats in $($LCTL get_param -N osc.*.rpc_stats); do
6608                 local stats=$($LCTL get_param -n $osc_rpc_stats)
6609                 local lines=$(echo "$stats" | awk 'END {print NR;}')
6610                 local size
6611
6612                 if [ $lines -le 20 ]; then
6613                         continue
6614                 fi
6615                 for size in 1 2 4 8; do
6616                         local rpc=$(echo "$stats" |
6617                                     awk '($1 == "'$size':") {print $2; exit; }')
6618                         [ $rpc != 0 ] &&
6619                                 error "Small $((size*4))k read IO $rpc !"
6620                 done
6621                 echo "$osc_rpc_stats check passed!"
6622         done
6623         cleanup_test101bc
6624         true
6625 }
6626 run_test 101c "check stripe_size aligned read-ahead ================="
6627
6628 set_read_ahead() {
6629         $LCTL get_param -n llite.*.max_read_ahead_mb | head -n 1
6630         $LCTL set_param -n llite.*.max_read_ahead_mb $1 > /dev/null 2>&1
6631 }
6632
6633 test_101d() {
6634         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6635         local file=$DIR/$tfile
6636         local sz_MB=${FILESIZE_101d:-500}
6637         local ra_MB=${READAHEAD_MB:-40}
6638
6639         local free_MB=$(($(df -P $DIR | tail -n 1 | awk '{ print $4 }') / 1024))
6640         [ $free_MB -lt $sz_MB ] &&
6641                 skip "Need free space ${sz_MB}M, have ${free_MB}M" && return
6642
6643         echo "Create test file $file size ${sz_MB}M, ${free_MB}M free"
6644         $SETSTRIPE -c -1 $file || error "setstripe failed"
6645
6646         dd if=/dev/zero of=$file bs=1M count=$sz_MB || error "dd failed"
6647         echo Cancel LRU locks on lustre client to flush the client cache
6648         cancel_lru_locks osc
6649
6650         echo Disable read-ahead
6651         local old_READAHEAD=$(set_read_ahead 0)
6652
6653         echo Reading the test file $file with read-ahead disabled
6654         local raOFF=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$sz_MB")
6655
6656         echo Cancel LRU locks on lustre client to flush the client cache
6657         cancel_lru_locks osc
6658         echo Enable read-ahead with ${ra_MB}MB
6659         set_read_ahead $ra_MB
6660
6661         echo Reading the test file $file with read-ahead enabled
6662         local raON=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$sz_MB")
6663
6664         echo "read-ahead disabled time read $raOFF"
6665         echo "read-ahead enabled  time read $raON"
6666
6667         set_read_ahead $old_READAHEAD
6668         rm -f $file
6669         wait_delete_completed
6670
6671         [ $raOFF -le 1 -o $raON -lt $raOFF ] ||
6672                 error "readahead ${raON}s > no-readahead ${raOFF}s ${sz_MB}M"
6673 }
6674 run_test 101d "file read with and without read-ahead enabled"
6675
6676 test_101e() {
6677         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6678         local file=$DIR/$tfile
6679         local size_KB=500  #KB
6680         local count=100
6681         local bsize=1024
6682
6683         local free_KB=$(df -P $DIR | tail -n 1 | awk '{ print $4 }')
6684         local need_KB=$((count * size_KB))
6685         [[ $free_KB -le $need_KB ]] &&
6686                 skip_env "Need free space $need_KB, have $free_KB" && return
6687
6688         echo "Creating $count ${size_KB}K test files"
6689         for ((i = 0; i < $count; i++)); do
6690                 dd if=/dev/zero of=$file.$i bs=$bsize count=$size_KB 2>/dev/null
6691         done
6692
6693         echo "Cancel LRU locks on lustre client to flush the client cache"
6694         cancel_lru_locks osc
6695
6696         echo "Reset readahead stats"
6697         $LCTL set_param -n llite.*.read_ahead_stats 0
6698
6699         for ((i = 0; i < $count; i++)); do
6700                 dd if=$file.$i of=/dev/null bs=$bsize count=$size_KB 2>/dev/null
6701         done
6702
6703         local miss=$($LCTL get_param -n llite.*.read_ahead_stats |
6704                      get_named_value 'misses' | cut -d" " -f1 | calc_total)
6705
6706         for ((i = 0; i < $count; i++)); do
6707                 rm -rf $file.$i 2>/dev/null
6708         done
6709
6710         #10000 means 20% reads are missing in readahead
6711         [[ $miss -lt 10000 ]] ||  error "misses too much for small reads"
6712 }
6713 run_test 101e "check read-ahead for small read(1k) for small files(500k)"
6714
6715 test_101f() {
6716         which iozone || { skip "no iozone installed" && return; }
6717
6718         local old_debug=$($LCTL get_param debug)
6719         $LCTL set_param debug="reada mmap"
6720
6721         # create a test file
6722         iozone -i 0 -+n -r 1m -s 128m -w -f $DIR/$tfile > /dev/null 2>&1
6723
6724         echo Cancel LRU locks on lustre client to flush the client cache
6725         cancel_lru_locks osc
6726
6727         echo Reset readahead stats
6728         $LCTL set_param -n llite.*.read_ahead_stats 0
6729
6730         echo mmap read the file with small block size
6731         iozone -i 1 -+n -r 32k -s 128m -B -f $DIR/$tfile > /dev/null 2>&1
6732
6733         echo checking missing pages
6734         $LCTL get_param llite.*.read_ahead_stats
6735         local miss=$($LCTL get_param -n llite.*.read_ahead_stats |
6736                         get_named_value 'misses' | cut -d" " -f1 | calc_total)
6737
6738         $LCTL set_param debug=$old_debug
6739         [ $miss -lt 3 ] || error "misses too much pages ('$miss')!"
6740         rm -f $DIR/$tfile
6741 }
6742 run_test 101f "check mmap read performance"
6743
6744 test_101g() {
6745         local rpcs
6746         local osts=$(get_facets OST)
6747         local list=$(comma_list $(osts_nodes))
6748         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
6749
6750         save_lustre_params $osts "obdfilter.*.brw_size" > $p
6751
6752         $LFS setstripe -c 1 $DIR/$tfile
6753
6754         if [ $(lustre_version_code ost1) -ge $(version_code 2.8.52) ]; then
6755                 set_osd_param $list '' brw_size 16M
6756
6757                 echo "remount client to enable large RPC size"
6758                 remount_client $MOUNT || error "remount_client failed"
6759
6760                 for mp in $($LCTL get_param -n osc.*.max_pages_per_rpc); do
6761                         [ "$mp" -eq 4096 ] ||
6762                                 error "max_pages_per_rpc not correctly set"
6763                 done
6764
6765                 $LCTL set_param -n osc.*.rpc_stats=0
6766
6767                 # 10*16 MiB should be enough for the test
6768                 dd if=/dev/zero of=$DIR/$tfile bs=16M count=10
6769                 cancel_lru_locks osc
6770                 dd of=/dev/null if=$DIR/$tfile bs=16M count=10
6771
6772                 # calculate 16 MiB RPCs
6773                 rpcs=$($LCTL get_param 'osc.*.rpc_stats' |
6774                        sed -n '/pages per rpc/,/^$/p' |
6775                        awk 'BEGIN { sum = 0 }; /4096:/ { sum += $2 };
6776                             END { print sum }')
6777                 echo $rpcs RPCs
6778                 [ "$rpcs" -eq 10 ] || error "not all RPCs are 16 MiB BRW rpcs"
6779         fi
6780
6781         echo "set RPC size to 4MB"
6782
6783         $LCTL set_param -n osc.*.max_pages_per_rpc=4M osc.*.rpc_stats=0
6784         dd if=/dev/zero of=$DIR/$tfile bs=4M count=25
6785         cancel_lru_locks osc
6786         dd of=/dev/null if=$DIR/$tfile bs=4M count=25
6787
6788         # calculate 4 MiB RPCs
6789         rpcs=$($LCTL get_param 'osc.*.rpc_stats' |
6790                 sed -n '/pages per rpc/,/^$/p' |
6791                 awk 'BEGIN { sum = 0 }; /1024:/ { sum += $2 };
6792                      END { print sum }')
6793         echo $rpcs RPCs
6794         [ "$rpcs" -eq 25 ] || error "not all RPCs are 4 MiB BRW rpcs"
6795
6796         restore_lustre_params < $p
6797         remount_client $MOUNT || error "remount_client failed"
6798
6799         rm -f $p $DIR/$tfile
6800 }
6801 run_test 101g "Big bulk(4/16 MiB) readahead"
6802
6803 setup_test102() {
6804         test_mkdir -p $DIR/$tdir
6805         chown $RUNAS_ID $DIR/$tdir
6806         STRIPE_SIZE=65536
6807         STRIPE_OFFSET=1
6808         STRIPE_COUNT=$OSTCOUNT
6809         [[ $OSTCOUNT -gt 4 ]] && STRIPE_COUNT=4
6810
6811         trap cleanup_test102 EXIT
6812         cd $DIR
6813         $1 $SETSTRIPE -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $STRIPE_COUNT $tdir
6814         cd $DIR/$tdir
6815         for num in 1 2 3 4; do
6816                 for count in $(seq 1 $STRIPE_COUNT); do
6817                         for idx in $(seq 0 $[$STRIPE_COUNT - 1]); do
6818                                 local size=`expr $STRIPE_SIZE \* $num`
6819                                 local file=file"$num-$idx-$count"
6820                                 $1 $SETSTRIPE -S $size -i $idx -c $count $file
6821                         done
6822                 done
6823         done
6824
6825         cd $DIR
6826         $1 $TAR cf $TMP/f102.tar $tdir --xattrs
6827 }
6828
6829 cleanup_test102() {
6830         trap 0
6831         rm -f $TMP/f102.tar
6832         rm -rf $DIR/d0.sanity/d102
6833 }
6834
6835 test_102a() {
6836         local testfile=$DIR/$tfile
6837
6838         touch $testfile
6839
6840         [ "$UID" != 0 ] && skip_env "must run as root" && return
6841         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep xattr)" ] &&
6842                 skip_env "must have user_xattr" && return
6843
6844         [ -z "$(which setfattr 2>/dev/null)" ] &&
6845                 skip_env "could not find setfattr" && return
6846
6847         echo "set/get xattr..."
6848         setfattr -n trusted.name1 -v value1 $testfile ||
6849                 error "setfattr -n trusted.name1=value1 $testfile failed"
6850         getfattr -n trusted.name1 $testfile 2> /dev/null |
6851           grep "trusted.name1=.value1" ||
6852                 error "$testfile missing trusted.name1=value1"
6853
6854         setfattr -n user.author1 -v author1 $testfile ||
6855                 error "setfattr -n user.author1=author1 $testfile failed"
6856         getfattr -n user.author1 $testfile 2> /dev/null |
6857           grep "user.author1=.author1" ||
6858                 error "$testfile missing trusted.author1=author1"
6859
6860         echo "listxattr..."
6861         setfattr -n trusted.name2 -v value2 $testfile ||
6862                 error "$testfile unable to set trusted.name2"
6863         setfattr -n trusted.name3 -v value3 $testfile ||
6864                 error "$testfile unable to set trusted.name3"
6865         [ $(getfattr -d -m "^trusted" $testfile 2> /dev/null |
6866             grep "trusted.name" | wc -l) -eq 3 ] ||
6867                 error "$testfile missing 3 trusted.name xattrs"
6868
6869         setfattr -n user.author2 -v author2 $testfile ||
6870                 error "$testfile unable to set user.author2"
6871         setfattr -n user.author3 -v author3 $testfile ||
6872                 error "$testfile unable to set user.author3"
6873         [ $(getfattr -d -m "^user" $testfile 2> /dev/null |
6874             grep "user.author" | wc -l) -eq 3 ] ||
6875                 error "$testfile missing 3 user.author xattrs"
6876
6877         echo "remove xattr..."
6878         setfattr -x trusted.name1 $testfile ||
6879                 error "$testfile error deleting trusted.name1"
6880         getfattr -d -m trusted $testfile 2> /dev/null | grep "trusted.name1" &&
6881                 error "$testfile did not delete trusted.name1 xattr"
6882
6883         setfattr -x user.author1 $testfile ||
6884                 error "$testfile error deleting user.author1"
6885         getfattr -d -m user $testfile 2> /dev/null | grep "user.author1" &&
6886                 error "$testfile did not delete trusted.name1 xattr"
6887
6888         # b10667: setting lustre special xattr be silently discarded
6889         echo "set lustre special xattr ..."
6890         setfattr -n "trusted.lov" -v "invalid value" $testfile ||
6891                 error "$testfile allowed setting trusted.lov"
6892 }
6893 run_test 102a "user xattr test =================================="
6894
6895 test_102b() {
6896         [ -z "$(which setfattr 2>/dev/null)" ] &&
6897                 skip_env "could not find setfattr" && return
6898
6899         # b10930: get/set/list trusted.lov xattr
6900         echo "get/set/list trusted.lov xattr ..."
6901         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping 2-stripe test" && return
6902         local testfile=$DIR/$tfile
6903         $SETSTRIPE -S 65536 -i 1 -c $OSTCOUNT $testfile ||
6904                 error "setstripe failed"
6905         local STRIPECOUNT=$($GETSTRIPE -c $testfile) ||
6906                 error "getstripe failed"
6907         getfattr -d -m "^trusted" $testfile 2>/dev/null | grep "trusted.lov" ||
6908                 error "can't get trusted.lov from $testfile"
6909
6910         local testfile2=${testfile}2
6911         local value=$(getfattr -n trusted.lov $testfile 2>/dev/null |
6912                         grep "trusted.lov" | sed -e 's/[^=]\+=//')
6913
6914         $MCREATE $testfile2
6915         setfattr -n trusted.lov -v $value $testfile2
6916         local stripe_size=$($GETSTRIPE -S $testfile2)
6917         local stripe_count=$($GETSTRIPE -c $testfile2)
6918         [[ $stripe_size -eq 65536 ]] ||
6919                 error "stripe size $stripe_size != 65536"
6920         [[ $stripe_count -eq $STRIPECOUNT ]] ||
6921                 error "stripe count $stripe_count != $STRIPECOUNT"
6922         rm -f $DIR/$tfile
6923 }
6924 run_test 102b "getfattr/setfattr for trusted.lov EAs ============"
6925
6926 test_102c() {
6927         [ -z "$(which setfattr 2>/dev/null)" ] &&
6928                 skip_env "could not find setfattr" && return
6929
6930         # b10930: get/set/list lustre.lov xattr
6931         echo "get/set/list lustre.lov xattr ..."
6932         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping 2-stripe test" && return
6933         test_mkdir -p $DIR/$tdir
6934         chown $RUNAS_ID $DIR/$tdir
6935         local testfile=$DIR/$tdir/$tfile
6936         $RUNAS $SETSTRIPE -S 65536 -i 1 -c $OSTCOUNT $testfile ||
6937                 error "setstripe failed"
6938         local STRIPECOUNT=$($RUNAS $GETSTRIPE -c $testfile) ||
6939                 error "getstripe failed"
6940         $RUNAS getfattr -d -m "^lustre" $testfile 2> /dev/null | \
6941         grep "lustre.lov" || error "can't get lustre.lov from $testfile"
6942
6943         local testfile2=${testfile}2
6944         local value=`getfattr -n lustre.lov $testfile 2> /dev/null | \
6945                      grep "lustre.lov" |sed -e 's/[^=]\+=//'  `
6946
6947         $RUNAS $MCREATE $testfile2
6948         $RUNAS setfattr -n lustre.lov -v $value $testfile2
6949         local stripe_size=$($RUNAS $GETSTRIPE -S $testfile2)
6950         local stripe_count=$($RUNAS $GETSTRIPE -c $testfile2)
6951         [ $stripe_size -eq 65536 ] || error "stripe size $stripe_size != 65536"
6952         [ $stripe_count -eq $STRIPECOUNT ] ||
6953                 error "stripe count $stripe_count != $STRIPECOUNT"
6954 }
6955 run_test 102c "non-root getfattr/setfattr for lustre.lov EAs ==========="
6956
6957 compare_stripe_info1() {
6958         local stripe_index_all_zero=true
6959
6960         for num in 1 2 3 4; do
6961                 for count in $(seq 1 $STRIPE_COUNT); do
6962                         for offset in $(seq 0 $[$STRIPE_COUNT - 1]); do
6963                                 local size=$((STRIPE_SIZE * num))
6964                                 local file=file"$num-$offset-$count"
6965                                 stripe_size=$($LFS getstripe -S $PWD/$file)
6966                                 [[ $stripe_size -ne $size ]] &&
6967                                     error "$file: size $stripe_size != $size"
6968                                 stripe_count=$($LFS getstripe -c $PWD/$file)
6969                                 # allow fewer stripes to be created, ORI-601
6970                                 [[ $stripe_count -lt $(((3 * count + 3) / 4)) ]] &&
6971                                     error "$file: count $stripe_count != $count"
6972                                 stripe_index=$($LFS getstripe -i $PWD/$file)
6973                                 [[ $stripe_index -ne 0 ]] &&
6974                                         stripe_index_all_zero=false
6975                         done
6976                 done
6977         done
6978         $stripe_index_all_zero &&
6979                 error "all files are being extracted starting from OST index 0"
6980         return 0
6981 }
6982
6983 find_lustre_tar() {
6984         [ -n "$(which tar 2>/dev/null)" ] &&
6985                 strings $(which tar) | grep -q "lustre" && echo tar
6986 }
6987
6988 test_102d() {
6989         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6990         # b10930: tar test for trusted.lov xattr
6991         TAR=$(find_lustre_tar)
6992         [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
6993         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping N-stripe test" && return
6994         setup_test102
6995         test_mkdir -p $DIR/d102d
6996         $TAR xf $TMP/f102.tar -C $DIR/d102d --xattrs
6997         cd $DIR/d102d/$tdir
6998         compare_stripe_info1
6999 }
7000 run_test 102d "tar restore stripe info from tarfile,not keep osts ==========="
7001
7002 test_102f() {
7003         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7004         # b10930: tar test for trusted.lov xattr
7005         TAR=$(find_lustre_tar)
7006         [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
7007         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping N-stripe test" && return
7008         setup_test102
7009         test_mkdir -p $DIR/d102f
7010         cd $DIR
7011         $TAR cf - --xattrs $tdir | $TAR xf - --xattrs -C $DIR/d102f
7012         cd $DIR/d102f/$tdir
7013         compare_stripe_info1
7014 }
7015 run_test 102f "tar copy files, not keep osts ==========="
7016
7017 grow_xattr() {
7018         local xsize=${1:-1024}  # in bytes
7019         local file=$DIR/$tfile
7020
7021         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep xattr)" ] &&
7022                 skip "must have user_xattr" && return 0
7023         [ -z "$(which setfattr 2>/dev/null)" ] &&
7024                 skip_env "could not find setfattr" && return 0
7025         [ -z "$(which getfattr 2>/dev/null)" ] &&
7026                 skip_env "could not find getfattr" && return 0
7027
7028         touch $file
7029
7030         local value="$(generate_string $xsize)"
7031
7032         local xbig=trusted.big
7033         log "save $xbig on $file"
7034         setfattr -n $xbig -v $value $file ||
7035                 error "saving $xbig on $file failed"
7036
7037         local orig=$(get_xattr_value $xbig $file)
7038         [[ "$orig" != "$value" ]] && error "$xbig different after saving $xbig"
7039
7040         local xsml=trusted.sml
7041         log "save $xsml on $file"
7042         setfattr -n $xsml -v val $file || error "saving $xsml on $file failed"
7043
7044         local new=$(get_xattr_value $xbig $file)
7045         [[ "$new" != "$orig" ]] && error "$xbig different after saving $xsml"
7046
7047         log "grow $xsml on $file"
7048         setfattr -n $xsml -v "$value" $file ||
7049                 error "growing $xsml on $file failed"
7050
7051         new=$(get_xattr_value $xbig $file)
7052         [[ "$new" != "$orig" ]] && error "$xbig different after growing $xsml"
7053         log "$xbig still valid after growing $xsml"
7054
7055         rm -f $file
7056 }
7057
7058 test_102h() { # bug 15777
7059         grow_xattr 1024
7060 }
7061 run_test 102h "grow xattr from inside inode to external block"
7062
7063 test_102ha() {
7064         large_xattr_enabled || { skip "large_xattr disabled" && return; }
7065         grow_xattr $(max_xattr_size)
7066 }
7067 run_test 102ha "grow xattr from inside inode to external inode"
7068
7069 test_102i() { # bug 17038
7070         [ -z "$(which getfattr 2>/dev/null)" ] &&
7071                 skip "could not find getfattr" && return
7072         touch $DIR/$tfile
7073         ln -s $DIR/$tfile $DIR/${tfile}link
7074         getfattr -n trusted.lov $DIR/$tfile ||
7075                 error "lgetxattr on $DIR/$tfile failed"
7076         getfattr -h -n trusted.lov $DIR/${tfile}link 2>&1 |
7077                 grep -i "no such attr" ||
7078                 error "error for lgetxattr on $DIR/${tfile}link is not ENODATA"
7079         rm -f $DIR/$tfile $DIR/${tfile}link
7080 }
7081 run_test 102i "lgetxattr test on symbolic link ============"
7082
7083 test_102j() {
7084         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7085         TAR=$(find_lustre_tar)
7086         [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
7087         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping N-stripe test" && return
7088         setup_test102 "$RUNAS"
7089         test_mkdir -p $DIR/d102j
7090         chown $RUNAS_ID $DIR/d102j
7091         $RUNAS $TAR xf $TMP/f102.tar -C $DIR/d102j --xattrs
7092         cd $DIR/d102j/$tdir
7093         compare_stripe_info1 "$RUNAS"
7094 }
7095 run_test 102j "non-root tar restore stripe info from tarfile, not keep osts ==="
7096
7097 test_102k() {
7098         [ -z "$(which setfattr 2>/dev/null)" ] &&
7099                 skip "could not find setfattr" && return
7100         touch $DIR/$tfile
7101         # b22187 just check that does not crash for regular file.
7102         setfattr -n trusted.lov $DIR/$tfile
7103         # b22187 'setfattr -n trusted.lov' should work as remove LOV EA for directories
7104         local test_kdir=$DIR/d102k
7105         test_mkdir $test_kdir
7106         local default_size=`$GETSTRIPE -S $test_kdir`
7107         local default_count=`$GETSTRIPE -c $test_kdir`
7108         local default_offset=`$GETSTRIPE -i $test_kdir`
7109         $SETSTRIPE -S 65536 -i 0 -c $OSTCOUNT $test_kdir ||
7110                 error 'dir setstripe failed'
7111         setfattr -n trusted.lov $test_kdir
7112         local stripe_size=`$GETSTRIPE -S $test_kdir`
7113         local stripe_count=`$GETSTRIPE -c $test_kdir`
7114         local stripe_offset=`$GETSTRIPE -i $test_kdir`
7115         [ $stripe_size -eq $default_size ] ||
7116                 error "stripe size $stripe_size != $default_size"
7117         [ $stripe_count -eq $default_count ] ||
7118                 error "stripe count $stripe_count != $default_count"
7119         [ $stripe_offset -eq $default_offset ] ||
7120                 error "stripe offset $stripe_offset != $default_offset"
7121         rm -rf $DIR/$tfile $test_kdir
7122 }
7123 run_test 102k "setfattr without parameter of value shouldn't cause a crash"
7124
7125 test_102l() {
7126         [ -z "$(which getfattr 2>/dev/null)" ] &&
7127                 skip "could not find getfattr" && return
7128
7129         # LU-532 trusted. xattr is invisible to non-root
7130         local testfile=$DIR/$tfile
7131
7132         touch $testfile
7133
7134         echo "listxattr as user..."
7135         chown $RUNAS_ID $testfile
7136         $RUNAS getfattr -d -m '.*' $testfile 2>&1 |
7137             grep -q "trusted" &&
7138                 error "$testfile trusted xattrs are user visible"
7139
7140         return 0;
7141 }
7142 run_test 102l "listxattr size test =================================="
7143
7144 test_102m() { # LU-3403 llite: error of listxattr when buffer is small
7145         local path=$DIR/$tfile
7146         touch $path
7147
7148         listxattr_size_check $path || error "listattr_size_check $path failed"
7149 }
7150 run_test 102m "Ensure listxattr fails on small bufffer ========"
7151
7152 cleanup_test102
7153
7154 getxattr() { # getxattr path name
7155         # Return the base64 encoding of the value of xattr name on path.
7156         local path=$1
7157         local name=$2
7158
7159         # # getfattr --absolute-names --encoding=base64 --name=trusted.lov $path
7160         # file: $path
7161         # trusted.lov=0s0AvRCwEAAAAGAAAAAAAAAAAEAAACAAAAAAAQAAEAA...AAAAAAAAA=
7162         #
7163         # We print just 0s0AvRCwEAAAAGAAAAAAAAAAAEAAACAAAAAAAQAAEAA...AAAAAAAAA=
7164
7165         getfattr --absolute-names --encoding=base64 --name=$name $path |
7166                 awk -F= -v name=$name '$1 == name {
7167                         print substr($0, index($0, "=") + 1);
7168         }'
7169 }
7170
7171 test_102n() { # LU-4101 mdt: protect internal xattrs
7172         local file0=$DIR/$tfile.0
7173         local file1=$DIR/$tfile.1
7174         local xattr0=$TMP/$tfile.0
7175         local xattr1=$TMP/$tfile.1
7176         local name
7177         local value
7178
7179         [ -z "$(which setfattr 2>/dev/null)" ] &&
7180                 skip "could not find setfattr" && return
7181
7182         if [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.50) ]
7183         then
7184                 skip "MDT < 2.5.50 allows setxattr on internal trusted xattrs"
7185                 return
7186         fi
7187
7188         rm -rf $file0 $file1 $xattr0 $xattr1
7189         touch $file0 $file1
7190
7191         # Get 'before' xattrs of $file1.
7192         getfattr --absolute-names --dump --match=- $file1 > $xattr0
7193
7194         for name in lov lma lmv link fid version som hsm; do
7195                 # Try to copy xattr from $file0 to $file1.
7196                 value=$(getxattr $file0 trusted.$name 2> /dev/null)
7197
7198                 setfattr --name=trusted.$name --value="$value" $file1 ||
7199                         error "setxattr 'trusted.$name' failed"
7200
7201                 # Try to set a garbage xattr.
7202                 value=0sVGhlIHF1aWNrIGJyb3duIGZveCBqdW1wcyBvdmVyIGl0c2VsZi4=
7203
7204                 setfattr --name=trusted.$name --value="$value" $file1 ||
7205                         error "setxattr 'trusted.$name' failed"
7206
7207                 # Try to remove the xattr from $file1. We don't care if this
7208                 # appears to succeed or fail, we just don't want there to be
7209                 # any changes or crashes.
7210                 setfattr --remove=$trusted.$name $file1 2> /dev/null
7211         done
7212
7213         if [ $(lustre_version_code $SINGLEMDS) -gt $(version_code 2.6.50) ]
7214         then
7215                 name="lfsck_ns"
7216                 # Try to copy xattr from $file0 to $file1.
7217                 value=$(getxattr $file0 trusted.$name 2> /dev/null)
7218
7219                 setfattr --name=trusted.$name --value="$value" $file1 ||
7220                         error "setxattr 'trusted.$name' failed"
7221
7222                 # Try to set a garbage xattr.
7223                 value=0sVGhlIHF1aWNrIGJyb3duIGZveCBqdW1wcyBvdmVyIGl0c2VsZi4=
7224
7225                 setfattr --name=trusted.$name --value="$value" $file1 ||
7226                         error "setxattr 'trusted.$name' failed"
7227
7228                 # Try to remove the xattr from $file1. We don't care if this
7229                 # appears to succeed or fail, we just don't want there to be
7230                 # any changes or crashes.
7231                 setfattr --remove=$trusted.$name $file1 2> /dev/null
7232         fi
7233
7234         # Get 'after' xattrs of file1.
7235         getfattr --absolute-names --dump --match=- $file1 > $xattr1
7236
7237         if ! diff $xattr0 $xattr1; then
7238                 error "before and after xattrs of '$file1' differ"
7239         fi
7240
7241         rm -rf $file0 $file1 $xattr0 $xattr1
7242
7243         return 0
7244 }
7245 run_test 102n "silently ignore setxattr on internal trusted xattrs"
7246
7247 test_102p() { # LU-4703 setxattr did not check ownership
7248         local testfile=$DIR/$tfile
7249
7250         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.56) ] &&
7251                 skip "MDS needs to be at least 2.5.56" && return
7252
7253         touch $testfile
7254
7255         echo "setfacl as user..."
7256         $RUNAS setfacl -m "u:$RUNAS_ID:rwx" $testfile
7257         [ $? -ne 0 ] || error "setfacl by $RUNAS_ID was allowed on $testfile"
7258
7259         echo "setfattr as user..."
7260         setfacl -m "u:$RUNAS_ID:---" $testfile
7261         $RUNAS setfattr -x system.posix_acl_access $testfile
7262         [ $? -ne 0 ] || error "setfattr by $RUNAS_ID was allowed on $testfile"
7263 }
7264 run_test 102p "check setxattr(2) correctly fails without permission"
7265
7266 test_102q() {
7267         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.92) ] &&
7268                 skip "MDS needs to be at least 2.6.92" && return
7269         orphan_linkea_check $DIR/$tfile || error "orphan_linkea_check"
7270 }
7271 run_test 102q "flistxattr should not return trusted.link EAs for orphans"
7272
7273 test_102r() {
7274         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.93) ] &&
7275                 skip "MDS needs to be at least 2.6.93" && return
7276         touch $DIR/$tfile || error "touch"
7277         setfattr -n user.$(basename $tfile) $DIR/$tfile || error "setfattr"
7278         getfattr -n user.$(basename $tfile) $DIR/$tfile || error "getfattr"
7279         rm $DIR/$tfile || error "rm"
7280
7281         #normal directory
7282         mkdir -p $DIR/$tdir || error "mkdir"
7283         setfattr -n user.$(basename $tdir) $DIR/$tdir || error "setfattr dir"
7284         getfattr -n user.$(basename $tdir) $DIR/$tdir || error "getfattr dir"
7285         setfattr -x user.$(basename $tdir) $DIR/$tdir ||
7286                 error "$testfile error deleting user.author1"
7287         getfattr -d -m user.$(basename $tdir) 2> /dev/null |
7288                 grep "user.$(basename $tdir)" &&
7289                 error "$tdir did not delete user.$(basename $tdir)"
7290         rmdir $DIR/$tdir || error "rmdir"
7291
7292         #striped directory
7293         test_mkdir -p $DIR/$tdir || error "make striped dir"
7294         setfattr -n user.$(basename $tdir) $DIR/$tdir || error "setfattr dir"
7295         getfattr -n user.$(basename $tdir) $DIR/$tdir || error "getfattr dir"
7296         setfattr -x user.$(basename $tdir) $DIR/$tdir ||
7297                 error "$testfile error deleting user.author1"
7298         getfattr -d -m user.$(basename $tdir) 2> /dev/null |
7299                 grep "user.$(basename $tdir)" &&
7300                 error "$tdir did not delete user.$(basename $tdir)"
7301         rmdir $DIR/$tdir || error "rm striped dir"
7302 }
7303 run_test 102r "set EAs with empty values"
7304
7305 run_acl_subtest()
7306 {
7307     $LUSTRE/tests/acl/run $LUSTRE/tests/acl/$1.test
7308     return $?
7309 }
7310
7311 test_103a() {
7312         [ "$UID" != 0 ] && skip_env "must run as root" && return
7313         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl)" ] &&
7314                 skip "must have acl enabled" && return
7315         [ -z "$(which setfacl 2>/dev/null)" ] &&
7316                 skip_env "could not find setfacl" && return
7317         $GSS && skip "could not run under gss" && return
7318         remote_mds_nodsh && skip "remote MDS with nodsh" && return
7319
7320         gpasswd -a daemon bin                           # LU-5641
7321         do_facet $SINGLEMDS gpasswd -a daemon bin       # LU-5641
7322
7323         declare -a identity_old
7324
7325         for num in $(seq $MDSCOUNT); do
7326                 switch_identity $num true || identity_old[$num]=$?
7327         done
7328
7329         SAVE_UMASK=$(umask)
7330         umask 0022
7331         cd $DIR
7332
7333         echo "performing cp ..."
7334         run_acl_subtest cp || error "run_acl_subtest cp failed"
7335         echo "performing getfacl-noacl..."
7336         run_acl_subtest getfacl-noacl || error "getfacl-noacl test failed"
7337         echo "performing misc..."
7338         run_acl_subtest misc || error  "misc test failed"
7339         echo "performing permissions..."
7340         run_acl_subtest permissions || error "permissions failed"
7341         # LU-1482 mdd: Setting xattr are properly checked with and without ACLs
7342         if [ $(lustre_version_code $SINGLEMDS) -gt $(version_code 2.8.55) -o \
7343              \( $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6) -a \
7344              $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.5.29) \) ]
7345         then
7346                 echo "performing permissions xattr..."
7347                 run_acl_subtest permissions_xattr ||
7348                         error "permissions_xattr failed"
7349         fi
7350         echo "performing setfacl..."
7351         run_acl_subtest setfacl || error  "setfacl test failed"
7352
7353         # inheritance test got from HP
7354         echo "performing inheritance..."
7355         cp $LUSTRE/tests/acl/make-tree . || error "cannot copy make-tree"
7356         chmod +x make-tree || error "chmod +x failed"
7357         run_acl_subtest inheritance || error "inheritance test failed"
7358         rm -f make-tree
7359
7360         echo "LU-974 ignore umask when acl is enabled..."
7361         run_acl_subtest 974 || error "LU-974 umask test failed"
7362         if [ $MDSCOUNT -ge 2 ]; then
7363                 run_acl_subtest 974_remote ||
7364                         error "LU-974 umask test failed under remote dir"
7365         fi
7366
7367         echo "LU-2561 newly created file is same size as directory..."
7368         if [ $(facet_fstype $SINGLEMDS) != "zfs" ]; then
7369                 run_acl_subtest 2561 || error "LU-2561 test failed"
7370         else
7371                 run_acl_subtest 2561_zfs || error "LU-2561 zfs test failed"
7372         fi
7373
7374         run_acl_subtest 4924 || error "LU-4924 test failed"
7375
7376         cd $SAVE_PWD
7377         umask $SAVE_UMASK
7378
7379         for num in $(seq $MDSCOUNT); do
7380                 if [ "${identity_old[$num]}" = 1 ]; then
7381                         switch_identity $num false || identity_old[$num]=$?
7382                 fi
7383         done
7384 }
7385 run_test 103a "acl test ========================================="
7386
7387 test_103b() {
7388         remote_mds_nodsh && skip "remote MDS with nodsh" && return
7389         local noacl=false
7390         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
7391         local mountopts=$MDS_MOUNT_OPTS
7392
7393         if [[ "$MDS_MOUNT_OPTS" =~ "noacl" ]]; then
7394                 noacl=true
7395         else
7396                 # stop the MDT
7397                 stop $SINGLEMDS || error "failed to stop MDT."
7398                 # remount the MDT
7399                 if [ -z "$MDS_MOUNT_OPTS" ]; then
7400                         MDS_MOUNT_OPTS="-o noacl"
7401                 else
7402                         MDS_MOUNT_OPTS="${MDS_MOUNT_OPTS},noacl"
7403                 fi
7404                 start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS ||
7405                         error "failed to start MDT."
7406                 MDS_MOUNT_OPTS=$mountopts
7407         fi
7408
7409         touch $DIR/$tfile
7410         setfacl -m u:bin:rw $DIR/$tfile && error "setfacl should fail"
7411
7412         if ! $noacl; then
7413                 # stop the MDT
7414                 stop $SINGLEMDS || error "failed to stop MDT."
7415                 # remount the MDT
7416                 start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS ||
7417                         error "failed to start MDT."
7418         fi
7419
7420         true
7421 }
7422 run_test 103b "MDS mount option 'noacl'"
7423
7424 test_103c() {
7425         mkdir -p $DIR/$tdir
7426         cp -rp $DIR/$tdir $DIR/$tdir.bak
7427
7428         [ -n "$(getfattr -d -m. $DIR/$tdir | grep posix_acl_default)" ] &&
7429                 error "$DIR/$tdir shouldn't contain default ACL"
7430         [ -n "$(getfattr -d -m. $DIR/$tdir.bak | grep posix_acl_default)" ] &&
7431                 error "$DIR/$tdir.bak shouldn't contain default ACL"
7432         true
7433 }
7434 run_test 103c "'cp -rp' won't set empty acl"
7435
7436 test_104a() {
7437         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7438         touch $DIR/$tfile
7439         lfs df || error "lfs df failed"
7440         lfs df -ih || error "lfs df -ih failed"
7441         lfs df -h $DIR || error "lfs df -h $DIR failed"
7442         lfs df -i $DIR || error "lfs df -i $DIR failed"
7443         lfs df $DIR/$tfile || error "lfs df $DIR/$tfile failed"
7444         lfs df -ih $DIR/$tfile || error "lfs df -ih $DIR/$tfile failed"
7445
7446         local OSC=$(lctl dl | grep OST0000-osc-[^M] | awk '{ print $4 }')
7447         lctl --device %$OSC deactivate
7448         lfs df || error "lfs df with deactivated OSC failed"
7449         lctl --device %$OSC activate
7450         # wait the osc back to normal
7451         wait_osc_import_state client ost FULL
7452
7453         lfs df || error "lfs df with reactivated OSC failed"
7454         rm -f $DIR/$tfile
7455 }
7456 run_test 104a "lfs df [-ih] [path] test ========================="
7457
7458 test_104b() {
7459         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7460         [ $RUNAS_ID -eq $UID ] &&
7461                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
7462         chmod 666 /dev/obd
7463         denied_cnt=$(($($RUNAS $LFS check servers 2>&1 |
7464                         grep "Permission denied" | wc -l)))
7465         if [ $denied_cnt -ne 0 ]; then
7466                 error "lfs check servers test failed"
7467         fi
7468 }
7469 run_test 104b "$RUNAS lfs check servers test ===================="
7470
7471 test_105a() {
7472         # doesn't work on 2.4 kernels
7473         touch $DIR/$tfile
7474         if $(flock_is_enabled); then
7475                 flocks_test 1 on -f $DIR/$tfile || error "fail flock on"
7476         else
7477                 flocks_test 1 off -f $DIR/$tfile || error "fail flock off"
7478         fi
7479         rm -f $DIR/$tfile
7480 }
7481 run_test 105a "flock when mounted without -o flock test ========"
7482
7483 test_105b() {
7484         touch $DIR/$tfile
7485         if $(flock_is_enabled); then
7486                 flocks_test 1 on -c $DIR/$tfile || error "fail flock on"
7487         else
7488                 flocks_test 1 off -c $DIR/$tfile || error "fail flock off"
7489         fi
7490         rm -f $DIR/$tfile
7491 }
7492 run_test 105b "fcntl when mounted without -o flock test ========"
7493
7494 test_105c() {
7495         touch $DIR/$tfile
7496         if $(flock_is_enabled); then
7497                 flocks_test 1 on -l $DIR/$tfile || error "fail flock on"
7498         else
7499                 flocks_test 1 off -l $DIR/$tfile || error "fail flock off"
7500         fi
7501         rm -f $DIR/$tfile
7502 }
7503 run_test 105c "lockf when mounted without -o flock test ========"
7504
7505 test_105d() { # bug 15924
7506         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7507         test_mkdir -p $DIR/$tdir
7508         flock_is_enabled || { skip "mount w/o flock enabled" && return; }
7509         #define OBD_FAIL_LDLM_CP_CB_WAIT  0x315
7510         $LCTL set_param fail_loc=0x80000315
7511         flocks_test 2 $DIR/$tdir
7512 }
7513 run_test 105d "flock race (should not freeze) ========"
7514
7515 test_105e() { # bug 22660 && 22040
7516         flock_is_enabled || { skip "mount w/o flock enabled" && return; }
7517         touch $DIR/$tfile
7518         flocks_test 3 $DIR/$tfile
7519 }
7520 run_test 105e "Two conflicting flocks from same process ======="
7521
7522 test_106() { #bug 10921
7523         test_mkdir -p $DIR/$tdir
7524         $DIR/$tdir && error "exec $DIR/$tdir succeeded"
7525         chmod 777 $DIR/$tdir || error "chmod $DIR/$tdir failed"
7526 }
7527 run_test 106 "attempt exec of dir followed by chown of that dir"
7528
7529 test_107() {
7530         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7531         CDIR=`pwd`
7532         cd $DIR
7533
7534         local file=core
7535         rm -f $file
7536
7537         local save_pattern=$(sysctl -n kernel.core_pattern)
7538         local save_uses_pid=$(sysctl -n kernel.core_uses_pid)
7539         sysctl -w kernel.core_pattern=$file
7540         sysctl -w kernel.core_uses_pid=0
7541
7542         ulimit -c unlimited
7543         sleep 60 &
7544         SLEEPPID=$!
7545
7546         sleep 1
7547
7548         kill -s 11 $SLEEPPID
7549         wait $SLEEPPID
7550         if [ -e $file ]; then
7551                 size=`stat -c%s $file`
7552                 [ $size -eq 0 ] && error "Fail to create core file $file"
7553         else
7554                 error "Fail to create core file $file"
7555         fi
7556         rm -f $file
7557         sysctl -w kernel.core_pattern=$save_pattern
7558         sysctl -w kernel.core_uses_pid=$save_uses_pid
7559         cd $CDIR
7560 }
7561 run_test 107 "Coredump on SIG"
7562
7563 test_110() {
7564         test_mkdir -p $DIR/$tdir
7565         test_mkdir $DIR/$tdir/$(str_repeat 'a' 255) ||
7566                 error "mkdir with 255 char failed"
7567         test_mkdir $DIR/$tdir/$(str_repeat 'b' 256) &&
7568                 error "mkdir with 256 char should fail, but did not"
7569         touch $DIR/$tdir/$(str_repeat 'x' 255) ||
7570                 error "create with 255 char failed"
7571         touch $DIR/$tdir/$(str_repeat 'y' 256) &&
7572                 error "create with 256 char should fail, but did not"
7573
7574         ls -l $DIR/$tdir
7575         rm -rf $DIR/$tdir
7576 }
7577 run_test 110 "filename length checking"
7578
7579 test_115() {
7580         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7581         OSTIO_pre=$(ps -e | grep ll_ost_io | awk '{ print $4 }'| sort -n |
7582                 tail -1 | cut -c11-20)
7583         [ -z "$OSTIO_pre" ] && skip "no OSS threads" && return
7584         echo "Starting with $OSTIO_pre threads"
7585
7586         NUMTEST=20000
7587         NUMFREE=$(df -i -P $DIR | tail -n 1 | awk '{ print $4 }')
7588         [[ $NUMFREE -lt $NUMTEST ]] && NUMTEST=$(($NUMFREE - 1000))
7589         echo "$NUMTEST creates/unlinks"
7590         test_mkdir -p $DIR/$tdir
7591         createmany -o $DIR/$tdir/$tfile $NUMTEST
7592         unlinkmany $DIR/$tdir/$tfile $NUMTEST
7593
7594         OSTIO_post=$(ps -e | grep ll_ost_io | awk '{ print $4 }' | sort -n |
7595                 tail -1 | cut -c11-20)
7596
7597         # don't return an error
7598         [ $OSTIO_post == $OSTIO_pre ] && echo \
7599             "WARNING: No new ll_ost_io threads were created ($OSTIO_pre)" &&
7600             echo "This may be fine, depending on what ran before this test" &&
7601             echo "and how fast this system is." && return
7602
7603         echo "Started with $OSTIO_pre threads, ended with $OSTIO_post"
7604 }
7605 run_test 115 "verify dynamic thread creation===================="
7606
7607 free_min_max () {
7608         wait_delete_completed
7609         AVAIL=($(lctl get_param -n osc.*[oO][sS][cC]-[^M]*.kbytesavail))
7610         echo OST kbytes available: ${AVAIL[@]}
7611         MAXI=0; MAXV=${AVAIL[0]}
7612         MINI=0; MINV=${AVAIL[0]}
7613         for ((i = 0; i < ${#AVAIL[@]}; i++)); do
7614                 #echo OST $i: ${AVAIL[i]}kb
7615                 if [[ ${AVAIL[i]} -gt $MAXV ]]; then
7616                         MAXV=${AVAIL[i]}; MAXI=$i
7617                 fi
7618                 if [[ ${AVAIL[i]} -lt $MINV ]]; then
7619                         MINV=${AVAIL[i]}; MINI=$i
7620                 fi
7621         done
7622         echo Min free space: OST $MINI: $MINV
7623         echo Max free space: OST $MAXI: $MAXV
7624 }
7625
7626 test_116a() { # was previously test_116()
7627         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7628         remote_mds_nodsh && skip "remote MDS with nodsh" && return
7629
7630         [[ $OSTCOUNT -lt 2 ]] && skip_env "$OSTCOUNT < 2 OSTs" && return
7631
7632         echo -n "Free space priority "
7633         do_facet $SINGLEMDS lctl get_param -n lo*.*-mdtlov.qos_prio_free |
7634                 head -n1
7635         declare -a AVAIL
7636         free_min_max
7637
7638         [ $MINV -eq 0 ] && skip "no free space in OST$MINI, skip" && return
7639         [ $MINV -gt 10000000 ] && skip "too much free space in OST$MINI, skip" \
7640                 && return
7641         trap simple_cleanup_common EXIT
7642
7643
7644         # Check if we need to generate uneven OSTs
7645         test_mkdir -p $DIR/$tdir/OST${MINI}
7646         local FILL=$(($MINV / 4))
7647         local DIFF=$(($MAXV - $MINV))
7648         local DIFF2=$(($DIFF * 100 / $MINV))
7649
7650         local threshold=$(do_facet $SINGLEMDS \
7651                 lctl get_param -n *.*MDT0000-mdtlov.qos_threshold_rr | head -n1)
7652         threshold=${threshold%%%}
7653         echo -n "Check for uneven OSTs: "
7654         echo -n "diff=${DIFF}KB (${DIFF2}%) must be > ${threshold}% ..."
7655
7656         if [[ $DIFF2 -gt $threshold ]]; then
7657                 echo "ok"
7658                 echo "Don't need to fill OST$MINI"
7659         else
7660                 # generate uneven OSTs. Write 2% over the QOS threshold value
7661                 echo "no"
7662                 DIFF=$(($threshold - $DIFF2 + 2))
7663                 DIFF2=$(( ($MINV * $DIFF)/100 ))
7664                 echo "Fill ${DIFF}% remaining space in OST${MINI} with ${DIFF2}KB"
7665                 $SETSTRIPE -i $MINI -c 1 $DIR/$tdir/OST${MINI} ||
7666                         error "setstripe failed"
7667                 DIFF=$(($DIFF2 / 2048))
7668                 i=0
7669                 while [ $i -lt $DIFF ]; do
7670                         i=$(($i + 1))
7671                         dd if=/dev/zero of=$DIR/$tdir/OST${MINI}/$tfile-$i \
7672                                 bs=2M count=1 2>/dev/null
7673                         echo -n .
7674                 done
7675                 echo .
7676                 sync
7677                 sleep_maxage
7678                 free_min_max
7679         fi
7680
7681         DIFF=$(($MAXV - $MINV))
7682         DIFF2=$(($DIFF * 100 / $MINV))
7683         echo -n "diff=${DIFF}=${DIFF2}% must be > ${threshold}% for QOS mode..."
7684         if [[ $DIFF2 -gt $threshold ]]; then
7685                 echo "ok"
7686         else
7687                 echo "failed - QOS mode won't be used"
7688                 skip "QOS imbalance criteria not met"
7689                 simple_cleanup_common
7690                 return
7691         fi
7692
7693         MINI1=$MINI; MINV1=$MINV
7694         MAXI1=$MAXI; MAXV1=$MAXV
7695
7696         # now fill using QOS
7697         $SETSTRIPE -c 1 $DIR/$tdir
7698         FILL=$(($FILL / 200))
7699         if [ $FILL -gt 600 ]; then
7700                 FILL=600
7701         fi
7702         echo "writing $FILL files to QOS-assigned OSTs"
7703         i=0
7704         while [ $i -lt $FILL ]; do
7705                 i=$((i + 1))
7706                 dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=200k \
7707                         count=1 2>/dev/null
7708                 echo -n .
7709         done
7710         echo "wrote $i 200k files"
7711         sync
7712         sleep_maxage
7713
7714         echo "Note: free space may not be updated, so measurements might be off"
7715         free_min_max
7716         DIFF2=$(($MAXV - $MINV))
7717         echo "free space delta: orig $DIFF final $DIFF2"
7718         [ $DIFF2 -gt $DIFF ] && echo "delta got worse!"
7719         DIFF=$(($MINV1 - ${AVAIL[$MINI1]}))
7720         echo "Wrote ${DIFF}KB to smaller OST $MINI1"
7721         DIFF2=$(($MAXV1 - ${AVAIL[$MAXI1]}))
7722         echo "Wrote ${DIFF2}KB to larger OST $MAXI1"
7723         if [[ $DIFF -gt 0 ]]; then
7724                 FILL=$(($DIFF2 * 100 / $DIFF - 100))
7725                 echo "Wrote ${FILL}% more data to larger OST $MAXI1"
7726         fi
7727
7728         # Figure out which files were written where
7729         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
7730                   awk '/'$MINI1': / {print $2; exit}')
7731         echo $UUID
7732         MINC=$($GETSTRIPE --ost $UUID $DIR/$tdir | grep $DIR | wc -l)
7733         echo "$MINC files created on smaller OST $MINI1"
7734         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
7735                   awk '/'$MAXI1': / {print $2; exit}')
7736         echo $UUID
7737         MAXC=$($GETSTRIPE --ost $UUID $DIR/$tdir | grep $DIR | wc -l)
7738         echo "$MAXC files created on larger OST $MAXI1"
7739         if [[ $MINC -gt 0 ]]; then
7740                 FILL=$(($MAXC * 100 / $MINC - 100))
7741                 echo "Wrote ${FILL}% more files to larger OST $MAXI1"
7742         fi
7743         [[ $MAXC -gt $MINC ]] ||
7744                 error_ignore LU-9 "stripe QOS didn't balance free space"
7745         simple_cleanup_common
7746 }
7747 run_test 116a "stripe QOS: free space balance ==================="
7748
7749 test_116b() { # LU-2093
7750         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7751         remote_mds_nodsh && skip "remote MDS with nodsh" && return
7752
7753 #define OBD_FAIL_MDS_OSC_CREATE_FAIL     0x147
7754         local old_rr=$(do_facet $SINGLEMDS lctl get_param -n \
7755                        lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr | head -1)
7756         [ -z "$old_rr" ] && skip "no QOS" && return 0
7757         do_facet $SINGLEMDS lctl set_param \
7758                 lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr=0
7759         mkdir -p $DIR/$tdir
7760         do_facet $SINGLEMDS lctl set_param fail_loc=0x147
7761         createmany -o $DIR/$tdir/f- 20 || error "can't create"
7762         do_facet $SINGLEMDS lctl set_param fail_loc=0
7763         rm -rf $DIR/$tdir
7764         do_facet $SINGLEMDS lctl set_param \
7765                 lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr=$old_rr
7766 }
7767 run_test 116b "QoS shouldn't LBUG if not enough OSTs found on the 2nd pass"
7768
7769 test_117() # bug 10891
7770 {
7771         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7772         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1
7773         #define OBD_FAIL_OST_SETATTR_CREDITS 0x21e
7774         lctl set_param fail_loc=0x21e
7775         > $DIR/$tfile || error "truncate failed"
7776         lctl set_param fail_loc=0
7777         echo "Truncate succeeded."
7778         rm -f $DIR/$tfile
7779 }
7780 run_test 117 "verify osd extend =========="
7781
7782 NO_SLOW_RESENDCOUNT=4
7783 export OLD_RESENDCOUNT=""
7784 set_resend_count () {
7785         local PROC_RESENDCOUNT="osc.${FSNAME}-OST*-osc-*.resend_count"
7786         OLD_RESENDCOUNT=$(lctl get_param -n $PROC_RESENDCOUNT | head -n1)
7787         lctl set_param -n $PROC_RESENDCOUNT $1
7788         echo resend_count is set to $(lctl get_param -n $PROC_RESENDCOUNT)
7789 }
7790
7791 # for reduce test_118* time (b=14842)
7792 [ "$SLOW" = "no" ] && set_resend_count $NO_SLOW_RESENDCOUNT
7793
7794 # Reset async IO behavior after error case
7795 reset_async() {
7796         FILE=$DIR/reset_async
7797
7798         # Ensure all OSCs are cleared
7799         $SETSTRIPE -c -1 $FILE
7800         dd if=/dev/zero of=$FILE bs=64k count=$OSTCOUNT
7801         sync
7802         rm $FILE
7803 }
7804
7805 test_118a() #bug 11710
7806 {
7807         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7808         reset_async
7809
7810         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7811         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7812         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
7813
7814         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7815                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7816                 return 1;
7817         fi
7818         rm -f $DIR/$tfile
7819 }
7820 run_test 118a "verify O_SYNC works =========="
7821
7822 test_118b()
7823 {
7824         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7825         remote_ost_nodsh && skip "remote OST with nodsh" && return
7826
7827         reset_async
7828
7829         #define OBD_FAIL_SRV_ENOENT 0x217
7830         set_nodes_failloc "$(osts_nodes)" 0x217
7831         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7832         RC=$?
7833         set_nodes_failloc "$(osts_nodes)" 0
7834         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7835         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
7836                     grep -c writeback)
7837
7838         if [[ $RC -eq 0 ]]; then
7839                 error "Must return error due to dropped pages, rc=$RC"
7840                 return 1;
7841         fi
7842
7843         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7844                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7845                 return 1;
7846         fi
7847
7848         echo "Dirty pages not leaked on ENOENT"
7849
7850         # Due to the above error the OSC will issue all RPCs syncronously
7851         # until a subsequent RPC completes successfully without error.
7852         $MULTIOP $DIR/$tfile Ow4096yc
7853         rm -f $DIR/$tfile
7854
7855         return 0
7856 }
7857 run_test 118b "Reclaim dirty pages on fatal error =========="
7858
7859 test_118c()
7860 {
7861         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7862
7863         # for 118c, restore the original resend count, LU-1940
7864         [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] &&
7865                                 set_resend_count $OLD_RESENDCOUNT
7866         remote_ost_nodsh && skip "remote OST with nodsh" && return
7867
7868         reset_async
7869
7870         #define OBD_FAIL_OST_EROFS               0x216
7871         set_nodes_failloc "$(osts_nodes)" 0x216
7872
7873         # multiop should block due to fsync until pages are written
7874         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
7875         MULTIPID=$!
7876         sleep 1
7877
7878         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
7879                 error "Multiop failed to block on fsync, pid=$MULTIPID"
7880         fi
7881
7882         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
7883                     grep -c writeback)
7884         if [[ $WRITEBACK -eq 0 ]]; then
7885                 error "No page in writeback, writeback=$WRITEBACK"
7886         fi
7887
7888         set_nodes_failloc "$(osts_nodes)" 0
7889         wait $MULTIPID
7890         RC=$?
7891         if [[ $RC -ne 0 ]]; then
7892                 error "Multiop fsync failed, rc=$RC"
7893         fi
7894
7895         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7896         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
7897                     grep -c writeback)
7898         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7899                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7900         fi
7901
7902         rm -f $DIR/$tfile
7903         echo "Dirty pages flushed via fsync on EROFS"
7904         return 0
7905 }
7906 run_test 118c "Fsync blocks on EROFS until dirty pages are flushed =========="
7907
7908 # continue to use small resend count to reduce test_118* time (b=14842)
7909 [ "$SLOW" = "no" ] && set_resend_count $NO_SLOW_RESENDCOUNT
7910
7911 test_118d()
7912 {
7913         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7914         remote_ost_nodsh && skip "remote OST with nodsh" && return
7915
7916         reset_async
7917
7918         #define OBD_FAIL_OST_BRW_PAUSE_BULK
7919         set_nodes_failloc "$(osts_nodes)" 0x214
7920         # multiop should block due to fsync until pages are written
7921         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
7922         MULTIPID=$!
7923         sleep 1
7924
7925         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
7926                 error "Multiop failed to block on fsync, pid=$MULTIPID"
7927         fi
7928
7929         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
7930                     grep -c writeback)
7931         if [[ $WRITEBACK -eq 0 ]]; then
7932                 error "No page in writeback, writeback=$WRITEBACK"
7933         fi
7934
7935         wait $MULTIPID || error "Multiop fsync failed, rc=$?"
7936         set_nodes_failloc "$(osts_nodes)" 0
7937
7938         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7939         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
7940                     grep -c writeback)
7941         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7942                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7943         fi
7944
7945         rm -f $DIR/$tfile
7946         echo "Dirty pages gaurenteed flushed via fsync"
7947         return 0
7948 }
7949 run_test 118d "Fsync validation inject a delay of the bulk =========="
7950
7951 test_118f() {
7952         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7953         reset_async
7954
7955         #define OBD_FAIL_OSC_BRW_PREP_REQ2        0x40a
7956         lctl set_param fail_loc=0x8000040a
7957
7958         # Should simulate EINVAL error which is fatal
7959         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7960         RC=$?
7961         if [[ $RC -eq 0 ]]; then
7962                 error "Must return error due to dropped pages, rc=$RC"
7963         fi
7964
7965         lctl set_param fail_loc=0x0
7966
7967         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
7968         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7969         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
7970                     grep -c writeback)
7971         if [[ $LOCKED -ne 0 ]]; then
7972                 error "Locked pages remain in cache, locked=$LOCKED"
7973         fi
7974
7975         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7976                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7977         fi
7978
7979         rm -f $DIR/$tfile
7980         echo "No pages locked after fsync"
7981
7982         reset_async
7983         return 0
7984 }
7985 run_test 118f "Simulate unrecoverable OSC side error =========="
7986
7987 test_118g() {
7988         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7989         reset_async
7990
7991         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
7992         lctl set_param fail_loc=0x406
7993
7994         # simulate local -ENOMEM
7995         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7996         RC=$?
7997
7998         lctl set_param fail_loc=0
7999         if [[ $RC -eq 0 ]]; then
8000                 error "Must return error due to dropped pages, rc=$RC"
8001         fi
8002
8003         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
8004         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8005         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8006                         grep -c writeback)
8007         if [[ $LOCKED -ne 0 ]]; then
8008                 error "Locked pages remain in cache, locked=$LOCKED"
8009         fi
8010
8011         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8012                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8013         fi
8014
8015         rm -f $DIR/$tfile
8016         echo "No pages locked after fsync"
8017
8018         reset_async
8019         return 0
8020 }
8021 run_test 118g "Don't stay in wait if we got local -ENOMEM  =========="
8022
8023 test_118h() {
8024         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8025         remote_ost_nodsh && skip "remote OST with nodsh" && return
8026
8027         reset_async
8028
8029         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
8030         set_nodes_failloc "$(osts_nodes)" 0x20e
8031         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
8032         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
8033         RC=$?
8034
8035         set_nodes_failloc "$(osts_nodes)" 0
8036         if [[ $RC -eq 0 ]]; then
8037                 error "Must return error due to dropped pages, rc=$RC"
8038         fi
8039
8040         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
8041         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8042         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8043                     grep -c writeback)
8044         if [[ $LOCKED -ne 0 ]]; then
8045                 error "Locked pages remain in cache, locked=$LOCKED"
8046         fi
8047
8048         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8049                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8050         fi
8051
8052         rm -f $DIR/$tfile
8053         echo "No pages locked after fsync"
8054
8055         return 0
8056 }
8057 run_test 118h "Verify timeout in handling recoverables errors  =========="
8058
8059 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
8060
8061 test_118i() {
8062         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8063         remote_ost_nodsh && skip "remote OST with nodsh" && return
8064
8065         reset_async
8066
8067         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
8068         set_nodes_failloc "$(osts_nodes)" 0x20e
8069
8070         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
8071         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
8072         PID=$!
8073         sleep 5
8074         set_nodes_failloc "$(osts_nodes)" 0
8075
8076         wait $PID
8077         RC=$?
8078         if [[ $RC -ne 0 ]]; then
8079                 error "got error, but should be not, rc=$RC"
8080         fi
8081
8082         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
8083         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8084         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
8085         if [[ $LOCKED -ne 0 ]]; then
8086                 error "Locked pages remain in cache, locked=$LOCKED"
8087         fi
8088
8089         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8090                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8091         fi
8092
8093         rm -f $DIR/$tfile
8094         echo "No pages locked after fsync"
8095
8096         return 0
8097 }
8098 run_test 118i "Fix error before timeout in recoverable error  =========="
8099
8100 [ "$SLOW" = "no" ] && set_resend_count 4
8101
8102 test_118j() {
8103         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8104         remote_ost_nodsh && skip "remote OST with nodsh" && return
8105
8106         reset_async
8107
8108         #define OBD_FAIL_OST_BRW_WRITE_BULK2     0x220
8109         set_nodes_failloc "$(osts_nodes)" 0x220
8110
8111         # return -EIO from OST
8112         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
8113         RC=$?
8114         set_nodes_failloc "$(osts_nodes)" 0x0
8115         if [[ $RC -eq 0 ]]; then
8116                 error "Must return error due to dropped pages, rc=$RC"
8117         fi
8118
8119         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
8120         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8121         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
8122         if [[ $LOCKED -ne 0 ]]; then
8123                 error "Locked pages remain in cache, locked=$LOCKED"
8124         fi
8125
8126         # in recoverable error on OST we want resend and stay until it finished
8127         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8128                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8129         fi
8130
8131         rm -f $DIR/$tfile
8132         echo "No pages locked after fsync"
8133
8134         return 0
8135 }
8136 run_test 118j "Simulate unrecoverable OST side error =========="
8137
8138 test_118k()
8139 {
8140         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8141         remote_ost_nodsh && skip "remote OSTs with nodsh" && return
8142
8143         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
8144         set_nodes_failloc "$(osts_nodes)" 0x20e
8145         test_mkdir -p $DIR/$tdir
8146
8147         for ((i=0;i<10;i++)); do
8148                 (dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=1M count=10 || \
8149                         error "dd to $DIR/$tdir/$tfile-$i failed" )&
8150                 SLEEPPID=$!
8151                 sleep 0.500s
8152                 kill $SLEEPPID
8153                 wait $SLEEPPID
8154         done
8155
8156         set_nodes_failloc "$(osts_nodes)" 0
8157         rm -rf $DIR/$tdir
8158 }
8159 run_test 118k "bio alloc -ENOMEM and IO TERM handling ========="
8160
8161 test_118l()
8162 {
8163         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8164         # LU-646
8165         test_mkdir -p $DIR/$tdir
8166         $MULTIOP $DIR/$tdir Dy || error "fsync dir failed"
8167         rm -rf $DIR/$tdir
8168 }
8169 run_test 118l "fsync dir ========="
8170
8171 test_118m() # LU-3066
8172 {
8173         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8174         test_mkdir -p $DIR/$tdir
8175         $MULTIOP $DIR/$tdir DY || error "fdatasync dir failed"
8176         rm -rf $DIR/$tdir
8177 }
8178 run_test 118m "fdatasync dir ========="
8179
8180 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
8181
8182 test_119a() # bug 11737
8183 {
8184         BSIZE=$((512 * 1024))
8185         directio write $DIR/$tfile 0 1 $BSIZE
8186         # We ask to read two blocks, which is more than a file size.
8187         # directio will indicate an error when requested and actual
8188         # sizes aren't equeal (a normal situation in this case) and
8189         # print actual read amount.
8190         NOB=`directio read $DIR/$tfile 0 2 $BSIZE | awk '/error/ {print $6}'`
8191         if [ "$NOB" != "$BSIZE" ]; then
8192                 error "read $NOB bytes instead of $BSIZE"
8193         fi
8194         rm -f $DIR/$tfile
8195 }
8196 run_test 119a "Short directIO read must return actual read amount"
8197
8198 test_119b() # bug 11737
8199 {
8200         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
8201
8202         $SETSTRIPE -c 2 $DIR/$tfile || error "setstripe failed"
8203         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1 || error "dd failed"
8204         sync
8205         $MULTIOP $DIR/$tfile oO_RDONLY:O_DIRECT:r$((2048 * 1024)) || \
8206                 error "direct read failed"
8207         rm -f $DIR/$tfile
8208 }
8209 run_test 119b "Sparse directIO read must return actual read amount"
8210
8211 test_119c() # bug 13099
8212 {
8213         BSIZE=1048576
8214         directio write $DIR/$tfile 3 1 $BSIZE || error "direct write failed"
8215         directio readhole $DIR/$tfile 0 2 $BSIZE || error "reading hole failed"
8216         rm -f $DIR/$tfile
8217 }
8218 run_test 119c "Testing for direct read hitting hole"
8219
8220 test_119d() # bug 15950
8221 {
8222         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8223         MAX_RPCS_IN_FLIGHT=`$LCTL get_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight`
8224         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight 1
8225         BSIZE=1048576
8226         $SETSTRIPE $DIR/$tfile -i 0 -c 1 || error "setstripe failed"
8227         $DIRECTIO write $DIR/$tfile 0 1 $BSIZE || error "first directio failed"
8228         #define OBD_FAIL_OSC_DIO_PAUSE           0x40d
8229         lctl set_param fail_loc=0x40d
8230         $DIRECTIO write $DIR/$tfile 1 4 $BSIZE &
8231         pid_dio=$!
8232         sleep 1
8233         cat $DIR/$tfile > /dev/null &
8234         lctl set_param fail_loc=0
8235         pid_reads=$!
8236         wait $pid_dio
8237         log "the DIO writes have completed, now wait for the reads (should not block very long)"
8238         sleep 2
8239         [ -n "`ps h -p $pid_reads -o comm`" ] && \
8240         error "the read rpcs have not completed in 2s"
8241         rm -f $DIR/$tfile
8242         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight $MAX_RPCS_IN_FLIGHT
8243 }
8244 run_test 119d "The DIO path should try to send a new rpc once one is completed"
8245
8246 test_120a() {
8247         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8248         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8249         test_mkdir -p $DIR/$tdir
8250         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
8251                skip "no early lock cancel on server" && return 0
8252
8253         lru_resize_disable mdc
8254         lru_resize_disable osc
8255         cancel_lru_locks mdc
8256         # asynchronous object destroy at MDT could cause bl ast to client
8257         cancel_lru_locks osc
8258
8259         stat $DIR/$tdir > /dev/null
8260         can1=$(do_facet $SINGLEMDS \
8261                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8262                awk '/ldlm_cancel/ {print $2}')
8263         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8264                awk '/ldlm_bl_callback/ {print $2}')
8265         test_mkdir -c1 $DIR/$tdir/d1
8266         can2=$(do_facet $SINGLEMDS \
8267                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8268                awk '/ldlm_cancel/ {print $2}')
8269         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8270                awk '/ldlm_bl_callback/ {print $2}')
8271         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
8272         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
8273         lru_resize_enable mdc
8274         lru_resize_enable osc
8275 }
8276 run_test 120a "Early Lock Cancel: mkdir test"
8277
8278 test_120b() {
8279         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8280         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8281         test_mkdir $DIR/$tdir
8282         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel)" ] && \
8283                skip "no early lock cancel on server" && return 0
8284         lru_resize_disable mdc
8285         lru_resize_disable osc
8286         cancel_lru_locks mdc
8287         stat $DIR/$tdir > /dev/null
8288         can1=$(do_facet $SINGLEMDS \
8289                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8290                awk '/ldlm_cancel/ {print $2}')
8291         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8292                awk '/ldlm_bl_callback/ {print $2}')
8293         touch $DIR/$tdir/f1
8294         can2=$(do_facet $SINGLEMDS \
8295                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8296                awk '/ldlm_cancel/ {print $2}')
8297         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8298                awk '/ldlm_bl_callback/ {print $2}')
8299         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
8300         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
8301         lru_resize_enable mdc
8302         lru_resize_enable osc
8303 }
8304 run_test 120b "Early Lock Cancel: create test"
8305
8306 test_120c() {
8307         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8308         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8309         test_mkdir -c1 $DIR/$tdir
8310         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel)" ] && \
8311                skip "no early lock cancel on server" && return 0
8312         lru_resize_disable mdc
8313         lru_resize_disable osc
8314         test_mkdir -p -c1 $DIR/$tdir/d1
8315         test_mkdir -p -c1 $DIR/$tdir/d2
8316         touch $DIR/$tdir/d1/f1
8317         cancel_lru_locks mdc
8318         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 > /dev/null
8319         can1=$(do_facet $SINGLEMDS \
8320                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8321                awk '/ldlm_cancel/ {print $2}')
8322         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8323                awk '/ldlm_bl_callback/ {print $2}')
8324         ln $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
8325         can2=$(do_facet $SINGLEMDS \
8326                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8327                awk '/ldlm_cancel/ {print $2}')
8328         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8329                awk '/ldlm_bl_callback/ {print $2}')
8330         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
8331         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
8332         lru_resize_enable mdc
8333         lru_resize_enable osc
8334 }
8335 run_test 120c "Early Lock Cancel: link test"
8336
8337 test_120d() {
8338         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8339         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8340         test_mkdir -p -c1 $DIR/$tdir
8341         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel)" ] && \
8342                skip "no early lock cancel on server" && return 0
8343         lru_resize_disable mdc
8344         lru_resize_disable osc
8345         touch $DIR/$tdir
8346         cancel_lru_locks mdc
8347         stat $DIR/$tdir > /dev/null
8348         can1=$(do_facet $SINGLEMDS \
8349                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8350                awk '/ldlm_cancel/ {print $2}')
8351         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8352                awk '/ldlm_bl_callback/ {print $2}')
8353         chmod a+x $DIR/$tdir
8354         can2=$(do_facet $SINGLEMDS \
8355                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8356                awk '/ldlm_cancel/ {print $2}')
8357         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8358                awk '/ldlm_bl_callback/ {print $2}')
8359         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
8360         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
8361         lru_resize_enable mdc
8362         lru_resize_enable osc
8363 }
8364 run_test 120d "Early Lock Cancel: setattr test"
8365
8366 test_120e() {
8367         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8368         ! $($LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_can) &&
8369                 skip "no early lock cancel on server" && return 0
8370         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8371         local dlmtrace_set=false
8372
8373         test_mkdir -p -c1 $DIR/$tdir
8374         lru_resize_disable mdc
8375         lru_resize_disable osc
8376         ! $LCTL get_param debug | grep -q dlmtrace &&
8377                 $LCTL set_param debug=+dlmtrace && dlmtrace_set=true
8378         dd if=/dev/zero of=$DIR/$tdir/f1 count=1
8379         cancel_lru_locks mdc
8380         cancel_lru_locks osc
8381         dd if=$DIR/$tdir/f1 of=/dev/null
8382         stat $DIR/$tdir $DIR/$tdir/f1 > /dev/null
8383         # XXX client can not do early lock cancel of OST lock
8384         # during unlink (LU-4206), so cancel osc lock now.
8385         cancel_lru_locks osc
8386         can1=$(do_facet $SINGLEMDS \
8387                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8388                awk '/ldlm_cancel/ {print $2}')
8389         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8390                awk '/ldlm_bl_callback/ {print $2}')
8391         unlink $DIR/$tdir/f1
8392         sleep 5
8393         can2=$(do_facet $SINGLEMDS \
8394                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8395                awk '/ldlm_cancel/ {print $2}')
8396         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8397                awk '/ldlm_bl_callback/ {print $2}')
8398         [ $can1 -ne $can2 ] && error "$((can2 - can1)) cancel RPC occured" &&
8399                 $LCTL dk $TMP/cancel.debug.txt
8400         [ $blk1 -ne $blk2 ] && error "$((blk2 - blk1)) blocking RPC occured" &&
8401                 $LCTL dk $TMP/blocking.debug.txt
8402         $dlmtrace_set && $LCTL set_param debug=-dlmtrace
8403         lru_resize_enable mdc
8404         lru_resize_enable osc
8405 }
8406 run_test 120e "Early Lock Cancel: unlink test"
8407
8408 test_120f() {
8409         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8410         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
8411                skip "no early lock cancel on server" && return 0
8412         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8413         test_mkdir -p -c1 $DIR/$tdir
8414         lru_resize_disable mdc
8415         lru_resize_disable osc
8416         test_mkdir -p -c1 $DIR/$tdir/d1
8417         test_mkdir -p -c1 $DIR/$tdir/d2
8418         dd if=/dev/zero of=$DIR/$tdir/d1/f1 count=1
8419         dd if=/dev/zero of=$DIR/$tdir/d2/f2 count=1
8420         cancel_lru_locks mdc
8421         cancel_lru_locks osc
8422         dd if=$DIR/$tdir/d1/f1 of=/dev/null
8423         dd if=$DIR/$tdir/d2/f2 of=/dev/null
8424         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2 > /dev/null
8425         # XXX client can not do early lock cancel of OST lock
8426         # during rename (LU-4206), so cancel osc lock now.
8427         cancel_lru_locks osc
8428         can1=$(do_facet $SINGLEMDS \
8429                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8430                awk '/ldlm_cancel/ {print $2}')
8431         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8432                awk '/ldlm_bl_callback/ {print $2}')
8433         mrename $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
8434         sleep 5
8435         can2=$(do_facet $SINGLEMDS \
8436                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8437                awk '/ldlm_cancel/ {print $2}')
8438         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8439                awk '/ldlm_bl_callback/ {print $2}')
8440         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
8441         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
8442         lru_resize_enable mdc
8443         lru_resize_enable osc
8444 }
8445 run_test 120f "Early Lock Cancel: rename test"
8446
8447 test_120g() {
8448         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8449         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
8450                skip "no early lock cancel on server" && return 0
8451         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8452         lru_resize_disable mdc
8453         lru_resize_disable osc
8454         count=10000
8455         echo create $count files
8456         test_mkdir -p $DIR/$tdir
8457         cancel_lru_locks mdc
8458         cancel_lru_locks osc
8459         t0=`date +%s`
8460
8461         can0=$(do_facet $SINGLEMDS \
8462                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8463                awk '/ldlm_cancel/ {print $2}')
8464         blk0=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8465                awk '/ldlm_bl_callback/ {print $2}')
8466         createmany -o $DIR/$tdir/f $count
8467         sync
8468         can1=$(do_facet $SINGLEMDS \
8469                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8470                awk '/ldlm_cancel/ {print $2}')
8471         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8472                awk '/ldlm_bl_callback/ {print $2}')
8473         t1=$(date +%s)
8474         echo total: $((can1-can0)) cancels, $((blk1-blk0)) blockings
8475         echo rm $count files
8476         rm -r $DIR/$tdir
8477         sync
8478         can2=$(do_facet $SINGLEMDS \
8479                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8480                awk '/ldlm_cancel/ {print $2}')
8481         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8482                awk '/ldlm_bl_callback/ {print $2}')
8483         t2=$(date +%s)
8484         echo total: $count removes in $((t2-t1))
8485         echo total: $((can2-can1)) cancels, $((blk2-blk1)) blockings
8486         sleep 2
8487         # wait for commitment of removal
8488         lru_resize_enable mdc
8489         lru_resize_enable osc
8490 }
8491 run_test 120g "Early Lock Cancel: performance test"
8492
8493 test_121() { #bug #10589
8494         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8495         rm -rf $DIR/$tfile
8496         writes=$(LANG=C dd if=/dev/zero of=$DIR/$tfile count=1 2>&1 | awk -F '+' '/out$/ {print $1}')
8497 #define OBD_FAIL_LDLM_CANCEL_RACE        0x310
8498         lctl set_param fail_loc=0x310
8499         cancel_lru_locks osc > /dev/null
8500         reads=$(LANG=C dd if=$DIR/$tfile of=/dev/null 2>&1 | awk -F '+' '/in$/ {print $1}')
8501         lctl set_param fail_loc=0
8502         [[ $reads -eq $writes ]] ||
8503                 error "read $reads blocks, must be $writes blocks"
8504 }
8505 run_test 121 "read cancel race ========="
8506
8507 test_123a() { # was test 123, statahead(bug 11401)
8508         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8509         SLOWOK=0
8510         if [ -z "$(grep "processor.*: 1" /proc/cpuinfo)" ]; then
8511             log "testing on UP system. Performance may be not as good as expected."
8512                         SLOWOK=1
8513         fi
8514
8515         rm -rf $DIR/$tdir
8516         test_mkdir -p $DIR/$tdir
8517         NUMFREE=$(df -i -P $DIR | tail -n 1 | awk '{ print $4 }')
8518         [[ $NUMFREE -gt 100000 ]] && NUMFREE=100000 || NUMFREE=$((NUMFREE-1000))
8519         MULT=10
8520         for ((i=100, j=0; i<=$NUMFREE; j=$i, i=$((i * MULT)) )); do
8521                 createmany -o $DIR/$tdir/$tfile $j $((i - j))
8522
8523                 max=`lctl get_param -n llite.*.statahead_max | head -n 1`
8524                 lctl set_param -n llite.*.statahead_max 0
8525                 lctl get_param llite.*.statahead_max
8526                 cancel_lru_locks mdc
8527                 cancel_lru_locks osc
8528                 stime=`date +%s`
8529                 time ls -l $DIR/$tdir | wc -l
8530                 etime=`date +%s`
8531                 delta=$((etime - stime))
8532                 log "ls $i files without statahead: $delta sec"
8533                 lctl set_param llite.*.statahead_max=$max
8534
8535                 swrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
8536                 lctl get_param -n llite.*.statahead_max | grep '[0-9]'
8537                 cancel_lru_locks mdc
8538                 cancel_lru_locks osc
8539                 stime=`date +%s`
8540                 time ls -l $DIR/$tdir | wc -l
8541                 etime=`date +%s`
8542                 delta_sa=$((etime - stime))
8543                 log "ls $i files with statahead: $delta_sa sec"
8544                 lctl get_param -n llite.*.statahead_stats
8545                 ewrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
8546
8547                 [[ $swrong -lt $ewrong ]] &&
8548                         log "statahead was stopped, maybe too many locks held!"
8549                 [[ $delta -eq 0 || $delta_sa -eq 0 ]] && continue
8550
8551                 if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
8552                     max=`lctl get_param -n llite.*.statahead_max | head -n 1`
8553                     lctl set_param -n llite.*.statahead_max 0
8554                     lctl get_param llite.*.statahead_max
8555                     cancel_lru_locks mdc
8556                     cancel_lru_locks osc
8557                     stime=`date +%s`
8558                     time ls -l $DIR/$tdir | wc -l
8559                     etime=`date +%s`
8560                     delta=$((etime - stime))
8561                     log "ls $i files again without statahead: $delta sec"
8562                     lctl set_param llite.*.statahead_max=$max
8563                     if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
8564                         if [  $SLOWOK -eq 0 ]; then
8565                                 error "ls $i files is slower with statahead!"
8566                         else
8567                                 log "ls $i files is slower with statahead!"
8568                         fi
8569                         break
8570                     fi
8571                 fi
8572
8573                 [ $delta -gt 20 ] && break
8574                 [ $delta -gt 8 ] && MULT=$((50 / delta))
8575                 [ "$SLOW" = "no" -a $delta -gt 5 ] && break
8576         done
8577         log "ls done"
8578
8579         stime=`date +%s`
8580         rm -r $DIR/$tdir
8581         sync
8582         etime=`date +%s`
8583         delta=$((etime - stime))
8584         log "rm -r $DIR/$tdir/: $delta seconds"
8585         log "rm done"
8586         lctl get_param -n llite.*.statahead_stats
8587 }
8588 run_test 123a "verify statahead work"
8589
8590 test_123b () { # statahead(bug 15027)
8591         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8592         test_mkdir -p $DIR/$tdir
8593         createmany -o $DIR/$tdir/$tfile-%d 1000
8594
8595         cancel_lru_locks mdc
8596         cancel_lru_locks osc
8597
8598 #define OBD_FAIL_MDC_GETATTR_ENQUEUE     0x803
8599         lctl set_param fail_loc=0x80000803
8600         ls -lR $DIR/$tdir > /dev/null
8601         log "ls done"
8602         lctl set_param fail_loc=0x0
8603         lctl get_param -n llite.*.statahead_stats
8604         rm -r $DIR/$tdir
8605         sync
8606
8607 }
8608 run_test 123b "not panic with network error in statahead enqueue (bug 15027)"
8609
8610 test_124a() {
8611         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8612         [ -z "$($LCTL get_param -n mdc.*.connect_flags | grep lru_resize)" ] &&
8613                 skip "no lru resize on server" && return 0
8614         local NR=2000
8615         test_mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
8616
8617         log "create $NR files at $DIR/$tdir"
8618         createmany -o $DIR/$tdir/f $NR ||
8619                 error "failed to create $NR files in $DIR/$tdir"
8620
8621         cancel_lru_locks mdc
8622         ls -l $DIR/$tdir > /dev/null
8623
8624         local NSDIR=""
8625         local LRU_SIZE=0
8626         for VALUE in $($LCTL get_param ldlm.namespaces.*mdc-*.lru_size); do
8627                 local PARAM=$(echo ${VALUE[0]} | cut -d "=" -f1)
8628                 LRU_SIZE=$($LCTL get_param -n $PARAM)
8629                 if [[ $LRU_SIZE -gt $(default_lru_size) ]]; then
8630                         NSDIR=$(echo $PARAM | cut -d "." -f1-3)
8631                         log "NSDIR=$NSDIR"
8632                         log "NS=$(basename $NSDIR)"
8633                         break
8634                 fi
8635         done
8636
8637         if [[ -z "$NSDIR" || $LRU_SIZE -lt $(default_lru_size) ]]; then
8638                 skip "Not enough cached locks created!"
8639                 return 0
8640         fi
8641         log "LRU=$LRU_SIZE"
8642
8643         local SLEEP=30
8644
8645         # We know that lru resize allows one client to hold $LIMIT locks
8646         # for 10h. After that locks begin to be killed by client.
8647         local MAX_HRS=10
8648         local LIMIT=$($LCTL get_param -n $NSDIR.pool.limit)
8649         log "LIMIT=$LIMIT"
8650         if [ $LIMIT -lt $LRU_SIZE ]; then
8651             skip "Limit is too small $LIMIT"
8652             return 0
8653         fi
8654
8655         # Make LVF so higher that sleeping for $SLEEP is enough to _start_
8656         # killing locks. Some time was spent for creating locks. This means
8657         # that up to the moment of sleep finish we must have killed some of
8658         # them (10-100 locks). This depends on how fast ther were created.
8659         # Many of them were touched in almost the same moment and thus will
8660         # be killed in groups.
8661         local LVF=$(($MAX_HRS * 60 * 60 / $SLEEP * $LIMIT / $LRU_SIZE))
8662
8663         # Use $LRU_SIZE_B here to take into account real number of locks
8664         # created in the case of CMD, LRU_SIZE_B != $NR in most of cases
8665         local LRU_SIZE_B=$LRU_SIZE
8666         log "LVF=$LVF"
8667         local OLD_LVF=$($LCTL get_param -n $NSDIR.pool.lock_volume_factor)
8668         log "OLD_LVF=$OLD_LVF"
8669         $LCTL set_param -n $NSDIR.pool.lock_volume_factor $LVF
8670
8671         # Let's make sure that we really have some margin. Client checks
8672         # cached locks every 10 sec.
8673         SLEEP=$((SLEEP+20))
8674         log "Sleep ${SLEEP} sec"
8675         local SEC=0
8676         while ((SEC<$SLEEP)); do
8677                 echo -n "..."
8678                 sleep 5
8679                 SEC=$((SEC+5))
8680                 LRU_SIZE=$($LCTL get_param -n $NSDIR/lru_size)
8681                 echo -n "$LRU_SIZE"
8682         done
8683         echo ""
8684         $LCTL set_param -n $NSDIR.pool.lock_volume_factor $OLD_LVF
8685         local LRU_SIZE_A=$($LCTL get_param -n $NSDIR.lru_size)
8686
8687         [[ $LRU_SIZE_B -gt $LRU_SIZE_A ]] || {
8688                 error "No locks dropped in ${SLEEP}s. LRU size: $LRU_SIZE_A"
8689                 unlinkmany $DIR/$tdir/f $NR
8690                 return
8691         }
8692
8693         log "Dropped "$((LRU_SIZE_B-LRU_SIZE_A))" locks in ${SLEEP}s"
8694         log "unlink $NR files at $DIR/$tdir"
8695         unlinkmany $DIR/$tdir/f $NR
8696 }
8697 run_test 124a "lru resize ======================================="
8698
8699 get_max_pool_limit()
8700 {
8701         local limit=$($LCTL get_param \
8702                       -n ldlm.namespaces.*-MDT0000-mdc-*.pool.limit)
8703         local max=0
8704         for l in $limit; do
8705                 if [[ $l -gt $max ]]; then
8706                         max=$l
8707                 fi
8708         done
8709         echo $max
8710 }
8711
8712 test_124b() {
8713         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8714         [ -z "$($LCTL get_param -n mdc.*.connect_flags | grep lru_resize)" ] &&
8715                 skip "no lru resize on server" && return 0
8716
8717         LIMIT=$(get_max_pool_limit)
8718
8719         NR=$(($(default_lru_size)*20))
8720         if [[ $NR -gt $LIMIT ]]; then
8721                 log "Limit lock number by $LIMIT locks"
8722                 NR=$LIMIT
8723         fi
8724         lru_resize_disable mdc
8725         test_mkdir -p $DIR/$tdir/disable_lru_resize ||
8726                 error "failed to create $DIR/$tdir/disable_lru_resize"
8727
8728         createmany -o $DIR/$tdir/disable_lru_resize/f $NR
8729         log "doing ls -la $DIR/$tdir/disable_lru_resize 3 times"
8730         cancel_lru_locks mdc
8731         stime=`date +%s`
8732         PID=""
8733         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
8734         PID="$PID $!"
8735         sleep 2
8736         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
8737         PID="$PID $!"
8738         sleep 2
8739         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
8740         PID="$PID $!"
8741         wait $PID
8742         etime=`date +%s`
8743         nolruresize_delta=$((etime-stime))
8744         log "ls -la time: $nolruresize_delta seconds"
8745         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
8746         unlinkmany $DIR/$tdir/disable_lru_resize/f $NR
8747
8748         lru_resize_enable mdc
8749         test_mkdir -p $DIR/$tdir/enable_lru_resize ||
8750                 error "failed to create $DIR/$tdir/enable_lru_resize"
8751
8752         createmany -o $DIR/$tdir/enable_lru_resize/f $NR
8753         log "doing ls -la $DIR/$tdir/enable_lru_resize 3 times"
8754         cancel_lru_locks mdc
8755         stime=`date +%s`
8756         PID=""
8757         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
8758         PID="$PID $!"
8759         sleep 2
8760         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
8761         PID="$PID $!"
8762         sleep 2
8763         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
8764         PID="$PID $!"
8765         wait $PID
8766         etime=`date +%s`
8767         lruresize_delta=$((etime-stime))
8768         log "ls -la time: $lruresize_delta seconds"
8769         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
8770
8771         if [ $lruresize_delta -gt $nolruresize_delta ]; then
8772                 log "ls -la is $(((lruresize_delta - $nolruresize_delta) * 100 / $nolruresize_delta))% slower with lru resize enabled"
8773         elif [ $nolruresize_delta -gt $lruresize_delta ]; then
8774                 log "ls -la is $(((nolruresize_delta - $lruresize_delta) * 100 / $nolruresize_delta))% faster with lru resize enabled"
8775         else
8776                 log "lru resize performs the same with no lru resize"
8777         fi
8778         unlinkmany $DIR/$tdir/enable_lru_resize/f $NR
8779 }
8780 run_test 124b "lru resize (performance test) ======================="
8781
8782 test_124c() {
8783         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8784         [ -z "$($LCTL get_param -n mdc.*.connect_flags | grep lru_resize)" ] &&
8785                 skip "no lru resize on server" && return 0
8786
8787         # cache ununsed locks on client
8788         local nr=100
8789         cancel_lru_locks mdc
8790         test_mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
8791         createmany -o $DIR/$tdir/f $nr ||
8792                 error "failed to create $nr files in $DIR/$tdir"
8793         ls -l $DIR/$tdir > /dev/null
8794
8795         local nsdir="ldlm.namespaces.*-MDT0000-mdc-*"
8796         local unused=$($LCTL get_param -n $nsdir.lock_unused_count)
8797         local max_age=$($LCTL get_param -n $nsdir.lru_max_age)
8798         local recalc_p=$($LCTL get_param -n $nsdir.pool.recalc_period)
8799         echo "unused=$unused, max_age=$max_age, recalc_p=$recalc_p"
8800
8801         # set lru_max_age to 1 sec
8802         $LCTL set_param $nsdir.lru_max_age=1000 # jiffies
8803         echo "sleep $((recalc_p * 2)) seconds..."
8804         sleep $((recalc_p * 2))
8805
8806         local remaining=$($LCTL get_param -n $nsdir.lock_unused_count)
8807         # restore lru_max_age
8808         $LCTL set_param -n $nsdir.lru_max_age $max_age
8809         [ $remaining -eq 0 ] || error "$remaining locks are not canceled"
8810         unlinkmany $DIR/$tdir/f $nr
8811 }
8812 run_test 124c "LRUR cancel very aged locks"
8813
8814 test_125() { # 13358
8815         [ -z "$(lctl get_param -n llite.*.client_type | grep local)" ] && skip "must run as local client" && return
8816         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl)" ] && skip "must have acl enabled" && return
8817         [ -z "$(which setfacl)" ] && skip "must have setfacl tool" && return
8818         test_mkdir -p $DIR/d125 || error "mkdir failed"
8819         $SETSTRIPE -S 65536 -c -1 $DIR/d125 || error "setstripe failed"
8820         setfacl -R -m u:bin:rwx $DIR/d125 || error "setfacl $DIR/d125 failed"
8821         ls -ld $DIR/d125 || error "cannot access $DIR/d125"
8822 }
8823 run_test 125 "don't return EPROTO when a dir has a non-default striping and ACLs"
8824
8825 test_126() { # bug 12829/13455
8826         [ -z "$(lctl get_param -n llite.*.client_type | grep local)" ] && skip "must run as local client" && return
8827         [ "$UID" != 0 ] && skip_env "skipping $TESTNAME (must run as root)" && return
8828         $GSS && skip "must run as gss disabled" && return
8829
8830         $RUNAS -u 0 -g 1 touch $DIR/$tfile || error "touch failed"
8831         gid=`ls -n $DIR/$tfile | awk '{print $4}'`
8832         rm -f $DIR/$tfile
8833         [ $gid -eq "1" ] || error "gid is set to" $gid "instead of 1"
8834 }
8835 run_test 126 "check that the fsgid provided by the client is taken into account"
8836
8837 test_127a() { # bug 15521
8838         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8839         $SETSTRIPE -i 0 -c 1 $DIR/$tfile || error "setstripe failed"
8840         $LCTL set_param osc.*.stats=0
8841         FSIZE=$((2048 * 1024))
8842         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
8843         cancel_lru_locks osc
8844         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE
8845
8846         $LCTL get_param osc.*0000-osc-*.stats | grep samples > $DIR/${tfile}.tmp
8847         while read NAME COUNT SAMP UNIT MIN MAX SUM SUMSQ; do
8848                 echo "got $COUNT $NAME"
8849                 [ ! $MIN ] && error "Missing min value for $NAME proc entry"
8850                 eval $NAME=$COUNT || error "Wrong proc format"
8851
8852                 case $NAME in
8853                         read_bytes|write_bytes)
8854                         [ $MIN -lt 4096 ] && error "min is too small: $MIN"
8855                         [ $MIN -gt $FSIZE ] && error "min is too big: $MIN"
8856                         [ $MAX -lt 4096 ] && error "max is too small: $MAX"
8857                         [ $MAX -gt $FSIZE ] && error "max is too big: $MAX"
8858                         [ $SUM -ne $FSIZE ] && error "sum is wrong: $SUM"
8859                         [ $SUMSQ -lt $(((FSIZE /4096) * (4096 * 4096))) ] &&
8860                                 error "sumsquare is too small: $SUMSQ"
8861                         [ $SUMSQ -gt $((FSIZE * FSIZE)) ] &&
8862                                 error "sumsquare is too big: $SUMSQ"
8863                         ;;
8864                         *) ;;
8865                 esac
8866         done < $DIR/${tfile}.tmp
8867
8868         #check that we actually got some stats
8869         [ "$read_bytes" ] || error "Missing read_bytes stats"
8870         [ "$write_bytes" ] || error "Missing write_bytes stats"
8871         [ "$read_bytes" != 0 ] || error "no read done"
8872         [ "$write_bytes" != 0 ] || error "no write done"
8873 }
8874 run_test 127a "verify the client stats are sane"
8875
8876 test_127b() { # bug LU-333
8877         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8878         $LCTL set_param llite.*.stats=0
8879         FSIZE=65536 # sized fixed to match PAGE_SIZE for most clients
8880         # perform 2 reads and writes so MAX is different from SUM.
8881         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
8882         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
8883         cancel_lru_locks osc
8884         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE count=1
8885         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE count=1
8886
8887         $LCTL get_param llite.*.stats | grep samples > $TMP/${tfile}.tmp
8888         while read NAME COUNT SAMP UNIT MIN MAX SUM SUMSQ; do
8889                 echo "got $COUNT $NAME"
8890                 eval $NAME=$COUNT || error "Wrong proc format"
8891
8892         case $NAME in
8893                 read_bytes)
8894                         [ $COUNT -ne 2 ] && error "count is not 2: $COUNT"
8895                         [ $MIN -ne $FSIZE ] && error "min is not $FSIZE: $MIN"
8896                         [ $MAX -ne $FSIZE ] && error "max is incorrect: $MAX"
8897                         [ $SUM -ne $((FSIZE * 2)) ] && error "sum is wrong: $SUM"
8898                         ;;
8899                 write_bytes)
8900                         [ $COUNT -ne 2 ] && error "count is not 2: $COUNT"
8901                         [ $MIN -ne $FSIZE ] && error "min is not $FSIZE: $MIN"
8902                         [ $MAX -ne $FSIZE ] && error "max is incorrect: $MAX"
8903                         [ $SUM -ne $((FSIZE * 2)) ] && error "sum is wrong: $SUM"
8904                         ;;
8905                         *) ;;
8906                 esac
8907         done < $TMP/${tfile}.tmp
8908
8909         #check that we actually got some stats
8910         [ "$read_bytes" ] || error "Missing read_bytes stats"
8911         [ "$write_bytes" ] || error "Missing write_bytes stats"
8912         [ "$read_bytes" != 0 ] || error "no read done"
8913         [ "$write_bytes" != 0 ] || error "no write done"
8914
8915         rm -f $TMP/${tfile}.tmp
8916 }
8917 run_test 127b "verify the llite client stats are sane"
8918
8919 test_128() { # bug 15212
8920         touch $DIR/$tfile
8921         $LFS 2>&1 <<-EOF | tee $TMP/$tfile.log
8922                 find $DIR/$tfile
8923                 find $DIR/$tfile
8924         EOF
8925
8926         result=$(grep error $TMP/$tfile.log)
8927         rm -f $DIR/$tfile $TMP/$tfile.log
8928         [ -z "$result" ] ||
8929                 error "consecutive find's under interactive lfs failed"
8930 }
8931 run_test 128 "interactive lfs for 2 consecutive find's"
8932
8933 set_dir_limits () {
8934         local mntdev
8935         local canondev
8936         local node
8937
8938         local LDPROC=/proc/fs/ldiskfs
8939         local facets=$(get_facets MDS)
8940
8941         for facet in ${facets//,/ }; do
8942                 canondev=$(ldiskfs_canon \
8943                            *.$(convert_facet2label $facet).mntdev $facet)
8944                 do_facet $facet "test -e $LDPROC/$canondev/max_dir_size" ||
8945                                                 LDPROC=/sys/fs/ldiskfs
8946                 do_facet $facet "echo $1 >$LDPROC/$canondev/max_dir_size"
8947                 do_facet $facet "test -e $LDPROC/$canondev/warning_dir_size" ||
8948                                                 LDPROC=/sys/fs/ldiskfs
8949                 do_facet $facet "echo $2 >$LDPROC/$canondev/warning_dir_size"
8950         done
8951 }
8952
8953 check_mds_dmesg() {
8954         local facets=$(get_facets MDS)
8955         for facet in ${facets//,/ }; do
8956                 do_facet $facet "dmesg | tail -3 | grep -q $1" && return 0
8957         done
8958         return 1
8959 }
8960
8961 test_129() {
8962         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8963         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
8964                 skip "Only applicable to ldiskfs-based MDTs"
8965                 return
8966         fi
8967         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8968         local ENOSPC=28
8969         local EFBIG=27
8970         local has_warning=0
8971
8972         rm -rf $DIR/$tdir
8973         mkdir -p $DIR/$tdir
8974
8975         # block size of mds1
8976         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
8977         local MDSBLOCKSIZE=$($LCTL get_param -n mdc.*MDT0000*.blocksize)
8978         local MAX=$((MDSBLOCKSIZE * 5))
8979         set_dir_limits $MAX $MAX
8980         local I=$(stat -c%s "$DIR/$tdir")
8981         local J=0
8982         while [[ $I -le $MAX ]]; do
8983                 $MULTIOP $DIR/$tdir/$J Oc
8984                 rc=$?
8985                 if [ $has_warning -eq 0 ]; then
8986                         check_mds_dmesg '"is approaching"' &&
8987                                 has_warning=1
8988                 fi
8989                 #check two errors ENOSPC for new version of ext4 max_dir_size patch
8990                 #mainline kernel commit df981d03eeff7971ac7e6ff37000bfa702327ef1
8991                 #and EFBIG for previous versions
8992                 if [ $rc -eq $EFBIG -o $rc -eq $ENOSPC ]; then
8993                         set_dir_limits 0 0
8994                         echo "return code $rc received as expected"
8995
8996                         createmany -o $DIR/$tdir/$J_file_ 1000 ||
8997                                 error_exit "create failed w/o dir size limit"
8998
8999                         check_mds_dmesg '"has reached"' ||
9000                                 error_exit "has reached message should be output"
9001
9002                         [ $has_warning -eq 0 ] &&
9003                                 error_exit "warning message should be output"
9004
9005                         I=$(stat -c%s "$DIR/$tdir")
9006
9007                         if [ $(lustre_version_code $SINGLEMDS) -lt \
9008                                         $(version_code 2.4.51) ]
9009                         then
9010                                 [[ $I -eq $MAX ]] && return 0
9011                         else
9012                                 [[ $I -gt $MAX ]] && return 0
9013                         fi
9014                         error_exit "current dir size $I, previous limit $MAX"
9015                 elif [ $rc -ne 0 ]; then
9016                         set_dir_limits 0 0
9017                         error_exit "return code $rc received instead of expected " \
9018                                    "$EFBIG or $ENOSPC, files in dir $I"
9019                 fi
9020                 J=$((J+1))
9021                 I=$(stat -c%s "$DIR/$tdir")
9022         done
9023
9024         set_dir_limits 0 0
9025         error "exceeded dir size limit $MAX($MDSCOUNT) : $I bytes"
9026 }
9027 run_test 129 "test directory size limit ========================"
9028
9029 OLDIFS="$IFS"
9030 cleanup_130() {
9031         trap 0
9032         IFS="$OLDIFS"
9033 }
9034
9035 test_130a() {
9036         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
9037         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP" &&
9038                 return
9039
9040         trap cleanup_130 EXIT RETURN
9041
9042         local fm_file=$DIR/$tfile
9043         $SETSTRIPE -S 65536 -c 1 $fm_file || error "setstripe on $fm_file"
9044         dd if=/dev/zero of=$fm_file bs=65536 count=1 ||
9045                 error "dd failed for $fm_file"
9046
9047         # LU-1795: test filefrag/FIEMAP once, even if unsupported
9048         filefrag -ves $fm_file
9049         RC=$?
9050         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
9051                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
9052         [ $RC != 0 ] && error "filefrag $fm_file failed"
9053
9054         filefrag_op=$(filefrag -ve $fm_file |
9055                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
9056         lun=$($GETSTRIPE -i $fm_file)
9057
9058         start_blk=`echo $filefrag_op | cut -d: -f2 | cut -d. -f1`
9059         IFS=$'\n'
9060         tot_len=0
9061         for line in $filefrag_op
9062         do
9063                 frag_lun=`echo $line | cut -d: -f5`
9064                 ext_len=`echo $line | cut -d: -f4`
9065                 if (( $frag_lun != $lun )); then
9066                         cleanup_130
9067                         error "FIEMAP on 1-stripe file($fm_file) failed"
9068                         return
9069                 fi
9070                 (( tot_len += ext_len ))
9071         done
9072
9073         if (( lun != frag_lun || start_blk != 0 || tot_len != 64 )); then
9074                 cleanup_130
9075                 error "FIEMAP on 1-stripe file($fm_file) failed;"
9076                 return
9077         fi
9078
9079         cleanup_130
9080
9081         echo "FIEMAP on single striped file succeeded"
9082 }
9083 run_test 130a "FIEMAP (1-stripe file)"
9084
9085 test_130b() {
9086         [ "$OSTCOUNT" -lt "2" ] &&
9087                 skip_env "skipping FIEMAP on $OSTCOUNT-stripe file" && return
9088
9089         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
9090         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP" &&
9091                 return
9092
9093         trap cleanup_130 EXIT RETURN
9094
9095         local fm_file=$DIR/$tfile
9096         $SETSTRIPE -S 65536 -c $OSTCOUNT $fm_file ||
9097                         error "setstripe on $fm_file"
9098         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
9099                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
9100
9101         dd if=/dev/zero of=$fm_file bs=1M count=$OSTCOUNT ||
9102                 error "dd failed on $fm_file"
9103
9104         filefrag -ves $fm_file || error "filefrag $fm_file failed"
9105         filefrag_op=$(filefrag -ve $fm_file |
9106                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
9107
9108         last_lun=$(echo $filefrag_op | cut -d: -f5 |
9109                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9110
9111         IFS=$'\n'
9112         tot_len=0
9113         num_luns=1
9114         for line in $filefrag_op
9115         do
9116                 frag_lun=$(echo $line | cut -d: -f5 |
9117                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9118                 ext_len=$(echo $line | cut -d: -f4)
9119                 if (( $frag_lun != $last_lun )); then
9120                         if (( tot_len != 1024 )); then
9121                                 cleanup_130
9122                                 error "FIEMAP on $fm_file failed; returned " \
9123                                 "len $tot_len for OST $last_lun instead of 1024"
9124                                 return
9125                         else
9126                                 (( num_luns += 1 ))
9127                                 tot_len=0
9128                         fi
9129                 fi
9130                 (( tot_len += ext_len ))
9131                 last_lun=$frag_lun
9132         done
9133         if (( num_luns != $OSTCOUNT || tot_len != 1024 )); then
9134                 cleanup_130
9135                 error "FIEMAP on $fm_file failed; returned wrong number of " \
9136                         "luns or wrong len for OST $last_lun"
9137                 return
9138         fi
9139
9140         cleanup_130
9141
9142         echo "FIEMAP on $OSTCOUNT-stripe file succeeded"
9143 }
9144 run_test 130b "FIEMAP ($OSTCOUNT-stripe file)"
9145
9146 test_130c() {
9147         [ "$OSTCOUNT" -lt "2" ] &&
9148                 skip_env "skipping FIEMAP on 2-stripe file" && return
9149
9150         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
9151         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" &&
9152                 return
9153
9154         trap cleanup_130 EXIT RETURN
9155
9156         local fm_file=$DIR/$tfile
9157         $SETSTRIPE -S 65536 -c 2 $fm_file || error "setstripe on $fm_file"
9158         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
9159                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
9160
9161         dd if=/dev/zero of=$fm_file seek=1 bs=1M count=1 ||
9162                         error "dd failed on $fm_file"
9163
9164         filefrag -ves $fm_file || error "filefrag $fm_file failed"
9165         filefrag_op=$(filefrag -ve $fm_file |
9166                 sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
9167
9168         last_lun=$(echo $filefrag_op | cut -d: -f5 |
9169                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9170
9171         IFS=$'\n'
9172         tot_len=0
9173         num_luns=1
9174         for line in $filefrag_op
9175         do
9176                 frag_lun=$(echo $line | cut -d: -f5 |
9177                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9178                 ext_len=$(echo $line | cut -d: -f4)
9179                 if (( $frag_lun != $last_lun )); then
9180                         logical=`echo $line | cut -d: -f2 | cut -d. -f1`
9181                         if (( logical != 512 )); then
9182                                 cleanup_130
9183                                 error "FIEMAP on $fm_file failed; returned " \
9184                                 "logical start for lun $logical instead of 512"
9185                                 return
9186                         fi
9187                         if (( tot_len != 512 )); then
9188                                 cleanup_130
9189                                 error "FIEMAP on $fm_file failed; returned " \
9190                                 "len $tot_len for OST $last_lun instead of 1024"
9191                                 return
9192                         else
9193                                 (( num_luns += 1 ))
9194                                 tot_len=0
9195                         fi
9196                 fi
9197                 (( tot_len += ext_len ))
9198                 last_lun=$frag_lun
9199         done
9200         if (( num_luns != 2 || tot_len != 512 )); then
9201                 cleanup_130
9202                 error "FIEMAP on $fm_file failed; returned wrong number of " \
9203                         "luns or wrong len for OST $last_lun"
9204                 return
9205         fi
9206
9207         cleanup_130
9208
9209         echo "FIEMAP on 2-stripe file with hole succeeded"
9210 }
9211 run_test 130c "FIEMAP (2-stripe file with hole)"
9212
9213 test_130d() {
9214         [ "$OSTCOUNT" -lt "3" ] &&
9215                 skip_env "skipping FIEMAP on N-stripe file test" && return
9216
9217         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
9218         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" &&
9219                 return
9220
9221         trap cleanup_130 EXIT RETURN
9222
9223         local fm_file=$DIR/$tfile
9224         $SETSTRIPE -S 65536 -c $OSTCOUNT $fm_file ||
9225                         error "setstripe on $fm_file"
9226         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
9227                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
9228
9229         local actual_stripecnt=$($GETSTRIPE -c $fm_file)
9230         dd if=/dev/zero of=$fm_file bs=1M count=$actual_stripecnt ||
9231                 error "dd failed on $fm_file"
9232
9233         filefrag -ves $fm_file || error "filefrag $fm_file failed"
9234         filefrag_op=$(filefrag -ve $fm_file |
9235                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
9236
9237         last_lun=$(echo $filefrag_op | cut -d: -f5 |
9238                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9239
9240         IFS=$'\n'
9241         tot_len=0
9242         num_luns=1
9243         for line in $filefrag_op
9244         do
9245                 frag_lun=$(echo $line | cut -d: -f5 |
9246                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9247                 ext_len=$(echo $line | cut -d: -f4)
9248                 if (( $frag_lun != $last_lun )); then
9249                         if (( tot_len != 1024 )); then
9250                                 cleanup_130
9251                                 error "FIEMAP on $fm_file failed; returned " \
9252                                 "len $tot_len for OST $last_lun instead of 1024"
9253                                 return
9254                         else
9255                                 (( num_luns += 1 ))
9256                                 tot_len=0
9257                         fi
9258                 fi
9259                 (( tot_len += ext_len ))
9260                 last_lun=$frag_lun
9261         done
9262         if (( num_luns != actual_stripecnt || tot_len != 1024 )); then
9263                 cleanup_130
9264                 error "FIEMAP on $fm_file failed; returned wrong number of " \
9265                         "luns or wrong len for OST $last_lun"
9266                 return
9267         fi
9268
9269         cleanup_130
9270
9271         echo "FIEMAP on N-stripe file succeeded"
9272 }
9273 run_test 130d "FIEMAP (N-stripe file)"
9274
9275 test_130e() {
9276         [ "$OSTCOUNT" -lt "2" ] &&
9277                 skip_env "skipping continuation FIEMAP test" && return
9278
9279         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
9280         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" && return
9281
9282         trap cleanup_130 EXIT RETURN
9283
9284         local fm_file=$DIR/$tfile
9285         $SETSTRIPE -S 131072 -c 2 $fm_file || error "setstripe on $fm_file"
9286         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
9287                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
9288
9289         NUM_BLKS=512
9290         EXPECTED_LEN=$(( (NUM_BLKS / 2) * 64 ))
9291         for ((i = 0; i < $NUM_BLKS; i++))
9292         do
9293                 dd if=/dev/zero of=$fm_file count=1 bs=64k seek=$((2*$i)) conv=notrunc > /dev/null 2>&1
9294         done
9295
9296         filefrag -ves $fm_file || error "filefrag $fm_file failed"
9297         filefrag_op=$(filefrag -ve $fm_file |
9298                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
9299
9300         last_lun=$(echo $filefrag_op | cut -d: -f5 |
9301                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9302
9303         IFS=$'\n'
9304         tot_len=0
9305         num_luns=1
9306         for line in $filefrag_op
9307         do
9308                 frag_lun=$(echo $line | cut -d: -f5 |
9309                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9310                 ext_len=$(echo $line | cut -d: -f4)
9311                 if (( $frag_lun != $last_lun )); then
9312                         if (( tot_len != $EXPECTED_LEN )); then
9313                                 cleanup_130
9314                                 error "FIEMAP on $fm_file failed; returned " \
9315                                 "len $tot_len for OST $last_lun instead " \
9316                                 "of $EXPECTED_LEN"
9317                                 return
9318                         else
9319                                 (( num_luns += 1 ))
9320                                 tot_len=0
9321                         fi
9322                 fi
9323                 (( tot_len += ext_len ))
9324                 last_lun=$frag_lun
9325         done
9326         if (( num_luns != 2 || tot_len != $EXPECTED_LEN )); then
9327                 cleanup_130
9328                 error "FIEMAP on $fm_file failed; returned wrong number " \
9329                         "of luns or wrong len for OST $last_lun"
9330                 return
9331         fi
9332
9333         cleanup_130
9334
9335         echo "FIEMAP with continuation calls succeeded"
9336 }
9337 run_test 130e "FIEMAP (test continuation FIEMAP calls)"
9338
9339 # Test for writev/readv
9340 test_131a() {
9341         rwv -f $DIR/$tfile -w -n 3 524288 1048576 1572864 || \
9342         error "writev test failed"
9343         rwv -f $DIR/$tfile -r -v -n 2 1572864 1048576 || \
9344         error "readv failed"
9345         rm -f $DIR/$tfile
9346 }
9347 run_test 131a "test iov's crossing stripe boundary for writev/readv"
9348
9349 test_131b() {
9350         rwv -f $DIR/$tfile -w -a -n 3 524288 1048576 1572864 || \
9351         error "append writev test failed"
9352         rwv -f $DIR/$tfile -w -a -n 2 1572864 1048576 || \
9353         error "append writev test failed"
9354         rm -f $DIR/$tfile
9355 }
9356 run_test 131b "test append writev"
9357
9358 test_131c() {
9359         rwv -f $DIR/$tfile -w -d -n 1 1048576 || return 0
9360         error "NOT PASS"
9361 }
9362 run_test 131c "test read/write on file w/o objects"
9363
9364 test_131d() {
9365         rwv -f $DIR/$tfile -w -n 1 1572864
9366         NOB=`rwv -f $DIR/$tfile -r -n 3 524288 524288 1048576 | awk '/error/ {print $6}'`
9367         if [ "$NOB" != 1572864 ]; then
9368                 error "Short read filed: read $NOB bytes instead of 1572864"
9369         fi
9370         rm -f $DIR/$tfile
9371 }
9372 run_test 131d "test short read"
9373
9374 test_131e() {
9375         rwv -f $DIR/$tfile -w -s 1048576 -n 1 1048576
9376         rwv -f $DIR/$tfile -r -z -s 0 -n 1 524288 || \
9377         error "read hitting hole failed"
9378         rm -f $DIR/$tfile
9379 }
9380 run_test 131e "test read hitting hole"
9381
9382 check_stats() {
9383         local res
9384         local count
9385         case $1 in
9386         $SINGLEMDS) res=`do_facet $SINGLEMDS $LCTL get_param mdt.$FSNAME-MDT0000.md_stats | grep "$2"`
9387                  ;;
9388         ost) res=`do_facet ost1 $LCTL get_param obdfilter.$FSNAME-OST0000.stats | grep "$2"`
9389                  ;;
9390         *) error "Wrong argument $1" ;;
9391         esac
9392         echo $res
9393         [ -z "$res" ] && error "The counter for $2 on $1 was not incremented"
9394         # if the argument $3 is zero, it means any stat increment is ok.
9395         if [[ $3 -gt 0 ]]; then
9396                 count=$(echo $res | awk '{ print $2 }')
9397                 [[ $count -ne $3 ]] &&
9398                         error "The $2 counter on $1 is wrong - expected $3"
9399         fi
9400 }
9401
9402 test_133a() {
9403         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9404         remote_ost_nodsh && skip "remote OST with nodsh" && return
9405         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9406
9407         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
9408                 { skip "MDS doesn't support rename stats"; return; }
9409         local testdir=$DIR/${tdir}/stats_testdir
9410         mkdir -p $DIR/${tdir}
9411
9412         # clear stats.
9413         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
9414         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
9415
9416         # verify mdt stats first.
9417         mkdir ${testdir} || error "mkdir failed"
9418         check_stats $SINGLEMDS "mkdir" 1
9419         touch ${testdir}/${tfile} || error "touch failed"
9420         check_stats $SINGLEMDS "open" 1
9421         check_stats $SINGLEMDS "close" 1
9422         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.8.54) ] && {
9423                 mknod ${testdir}/${tfile}-pipe p || error "mknod failed"
9424                 check_stats $SINGLEMDS "mknod" 2
9425         }
9426         rm -f ${testdir}/${tfile}-pipe || error "pipe remove failed"
9427         check_stats $SINGLEMDS "unlink" 1
9428         rm -f ${testdir}/${tfile} || error "file remove failed"
9429         check_stats $SINGLEMDS "unlink" 2
9430
9431         # remove working dir and check mdt stats again.
9432         rmdir ${testdir} || error "rmdir failed"
9433         check_stats $SINGLEMDS "rmdir" 1
9434
9435         local testdir1=$DIR/${tdir}/stats_testdir1
9436         mkdir -p ${testdir}
9437         mkdir -p ${testdir1}
9438         touch ${testdir1}/test1
9439         mv ${testdir1}/test1 ${testdir} || error "file crossdir rename"
9440         check_stats $SINGLEMDS "crossdir_rename" 1
9441
9442         mv ${testdir}/test1 ${testdir}/test0 || error "file samedir rename"
9443         check_stats $SINGLEMDS "samedir_rename" 1
9444
9445         rm -rf $DIR/${tdir}
9446 }
9447 run_test 133a "Verifying MDT stats ========================================"
9448
9449 test_133b() {
9450         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9451         remote_ost_nodsh && skip "remote OST with nodsh" && return
9452         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9453         local testdir=$DIR/${tdir}/stats_testdir
9454         mkdir -p ${testdir} || error "mkdir failed"
9455         touch ${testdir}/${tfile} || error "touch failed"
9456         cancel_lru_locks mdc
9457
9458         # clear stats.
9459         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
9460         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
9461
9462         # extra mdt stats verification.
9463         chmod 444 ${testdir}/${tfile} || error "chmod failed"
9464         check_stats $SINGLEMDS "setattr" 1
9465         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
9466         if [ $(lustre_version_code $SINGLEMDS) -ne $(version_code 2.2.0) ]
9467         then            # LU-1740
9468                 ls -l ${testdir}/${tfile} > /dev/null|| error "ls failed"
9469                 check_stats $SINGLEMDS "getattr" 1
9470         fi
9471         $LFS df || error "lfs failed"
9472         check_stats $SINGLEMDS "statfs" 1
9473
9474         rm -rf $DIR/${tdir}
9475 }
9476 run_test 133b "Verifying extra MDT stats =================================="
9477
9478 test_133c() {
9479         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9480         remote_ost_nodsh && skip "remote OST with nodsh" && return
9481         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9482         local testdir=$DIR/${tdir}/stats_testdir
9483         test_mkdir -p ${testdir} || error "mkdir failed"
9484
9485         # verify obdfilter stats.
9486         $SETSTRIPE -c 1 -i 0 ${testdir}/${tfile}
9487         sync
9488         cancel_lru_locks osc
9489         wait_delete_completed
9490
9491         # clear stats.
9492         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
9493         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
9494
9495         dd if=/dev/zero of=${testdir}/${tfile} conv=notrunc bs=512k count=1 || error "dd failed"
9496         sync
9497         cancel_lru_locks osc
9498         check_stats ost "write" 1
9499
9500         dd if=${testdir}/${tfile} of=/dev/null bs=1k count=1 || error "dd failed"
9501         check_stats ost "read" 1
9502
9503         > ${testdir}/${tfile} || error "truncate failed"
9504         check_stats ost "punch" 1
9505
9506         rm -f ${testdir}/${tfile} || error "file remove failed"
9507         wait_delete_completed
9508         check_stats ost "destroy" 1
9509
9510         rm -rf $DIR/${tdir}
9511 }
9512 run_test 133c "Verifying OST stats ========================================"
9513
9514 order_2() {
9515         local value=$1
9516         local orig=$value
9517         local order=1
9518
9519         while [ $value -ge 2 ]; do
9520                 order=$((order*2))
9521                 value=$((value/2))
9522         done
9523
9524         if [ $orig -gt $order ]; then
9525                 order=$((order*2))
9526         fi
9527         echo $order
9528 }
9529
9530 size_in_KMGT() {
9531     local value=$1
9532     local size=('K' 'M' 'G' 'T');
9533     local i=0
9534     local size_string=$value
9535
9536     while [ $value -ge 1024 ]; do
9537         if [ $i -gt 3 ]; then
9538             #T is the biggest unit we get here, if that is bigger,
9539             #just return XXXT
9540             size_string=${value}T
9541             break
9542         fi
9543         value=$((value >> 10))
9544         if [ $value -lt 1024 ]; then
9545             size_string=${value}${size[$i]}
9546             break
9547         fi
9548         i=$((i + 1))
9549     done
9550
9551     echo $size_string
9552 }
9553
9554 get_rename_size() {
9555     local size=$1
9556     local context=${2:-.}
9557     local sample=$(do_facet $SINGLEMDS $LCTL get_param mdt.*.rename_stats |
9558                 grep -A1 $context |
9559                 awk '/ '${size}'/ {print $4}' | sed -e "s/,//g")
9560     echo $sample
9561 }
9562
9563 test_133d() {
9564         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9565         remote_ost_nodsh && skip "remote OST with nodsh" && return
9566         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9567         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
9568         { skip "MDS doesn't support rename stats"; return; }
9569
9570         local testdir1=$DIR/${tdir}/stats_testdir1
9571         local testdir2=$DIR/${tdir}/stats_testdir2
9572
9573         do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
9574
9575         mkdir -p ${testdir1} || error "mkdir failed"
9576         mkdir -p ${testdir2} || error "mkdir failed"
9577
9578         createmany -o $testdir1/test 512 || error "createmany failed"
9579
9580         # check samedir rename size
9581         mv ${testdir1}/test0 ${testdir1}/test_0
9582
9583         local testdir1_size=$(ls -l $DIR/${tdir} |
9584                 awk '/stats_testdir1/ {print $5}')
9585         local testdir2_size=$(ls -l $DIR/${tdir} |
9586                 awk '/stats_testdir2/ {print $5}')
9587
9588         testdir1_size=$(order_2 $testdir1_size)
9589         testdir2_size=$(order_2 $testdir2_size)
9590
9591         testdir1_size=$(size_in_KMGT $testdir1_size)
9592         testdir2_size=$(size_in_KMGT $testdir2_size)
9593
9594         echo "source rename dir size: ${testdir1_size}"
9595         echo "target rename dir size: ${testdir2_size}"
9596
9597         local cmd="do_facet $SINGLEMDS $LCTL get_param mdt.*.rename_stats"
9598         eval $cmd || error "$cmd failed"
9599         local samedir=$($cmd | grep 'same_dir')
9600         local same_sample=$(get_rename_size $testdir1_size)
9601         [ -z "$samedir" ] && error "samedir_rename_size count error"
9602         [[ $same_sample -eq 1 ]] ||
9603                 error "samedir_rename_size error $same_sample"
9604         echo "Check same dir rename stats success"
9605
9606         do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
9607
9608         # check crossdir rename size
9609         mv ${testdir1}/test_0 ${testdir2}/test_0
9610
9611         testdir1_size=$(ls -l $DIR/${tdir} |
9612                 awk '/stats_testdir1/ {print $5}')
9613         testdir2_size=$(ls -l $DIR/${tdir} |
9614                 awk '/stats_testdir2/ {print $5}')
9615
9616         testdir1_size=$(order_2 $testdir1_size)
9617         testdir2_size=$(order_2 $testdir2_size)
9618
9619         testdir1_size=$(size_in_KMGT $testdir1_size)
9620         testdir2_size=$(size_in_KMGT $testdir2_size)
9621
9622         echo "source rename dir size: ${testdir1_size}"
9623         echo "target rename dir size: ${testdir2_size}"
9624
9625         eval $cmd || error "$cmd failed"
9626         local crossdir=$($cmd | grep 'crossdir')
9627         local src_sample=$(get_rename_size $testdir1_size crossdir_src)
9628         local tgt_sample=$(get_rename_size $testdir2_size crossdir_tgt)
9629         [ -z "$crossdir" ] && error "crossdir_rename_size count error"
9630         [[ $src_sample -eq 1 ]] ||
9631                 error "crossdir_rename_size error $src_sample"
9632         [[ $tgt_sample -eq 1 ]] ||
9633                 error "crossdir_rename_size error $tgt_sample"
9634         echo "Check cross dir rename stats success"
9635         rm -rf $DIR/${tdir}
9636 }
9637 run_test 133d "Verifying rename_stats ========================================"
9638
9639 test_133e() {
9640         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9641         remote_ost_nodsh && skip "remote OST with nodsh" && return
9642         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9643         local testdir=$DIR/${tdir}/stats_testdir
9644         local ctr f0 f1 bs=32768 count=42 sum
9645
9646         mkdir -p ${testdir} || error "mkdir failed"
9647
9648         $SETSTRIPE -c 1 -i 0 ${testdir}/${tfile}
9649
9650         for ctr in {write,read}_bytes; do
9651                 sync
9652                 cancel_lru_locks osc
9653
9654                 do_facet ost1 $LCTL set_param -n \
9655                         "obdfilter.*.exports.clear=clear"
9656
9657                 if [ $ctr = write_bytes ]; then
9658                         f0=/dev/zero
9659                         f1=${testdir}/${tfile}
9660                 else
9661                         f0=${testdir}/${tfile}
9662                         f1=/dev/null
9663                 fi
9664
9665                 dd if=$f0 of=$f1 conv=notrunc bs=$bs count=$count || \
9666                         error "dd failed"
9667                 sync
9668                 cancel_lru_locks osc
9669
9670                 sum=$(do_facet ost1 $LCTL get_param \
9671                         "obdfilter.*.exports.*.stats" |
9672                         awk -v ctr=$ctr 'BEGIN { sum = 0 }
9673                                 $1 == ctr { sum += $7 }
9674                                 END { printf("%0.0f", sum) }')
9675
9676                 if ((sum != bs * count)); then
9677                         error "Bad $ctr sum, expected $((bs * count)), got $sum"
9678                 fi
9679         done
9680
9681         rm -rf $DIR/${tdir}
9682 }
9683 run_test 133e "Verifying OST {read,write}_bytes nid stats ================="
9684
9685 proc_dirs=""
9686 for dir in /proc/fs/lustre/ /proc/sys/lnet/ /proc/sys/lustre/ \
9687            /sys/fs/lustre/ /sys/fs/lnet/ /sys/kernel/debug/lnet/ \
9688            /sys/kernel/debug/lustre/; do
9689         [[ -d $dir ]] && proc_dirs+=" $dir"
9690 done
9691
9692 test_133f() {
9693         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9694         remote_ost_nodsh && skip "remote OST with nodsh" && return
9695         # First without trusting modes.
9696         find $proc_dirs -exec cat '{}' \; &> /dev/null
9697
9698         # Second verifying readability.
9699         $LCTL get_param -R '*' &> /dev/null || error "proc file read failed"
9700
9701         # eventually, this can also be replaced with "lctl get_param -R",
9702         # but not until that option is always available on the server
9703         local facet
9704         for facet in $SINGLEMDS ost1; do
9705                 do_facet $facet find $proc_dirs \
9706                         ! -name req_history \
9707                         -exec cat '{}' \\\; &> /dev/null
9708
9709                 do_facet $facet find $proc_dirs \
9710                         ! -name req_history \
9711                         -type f \
9712                         -exec cat '{}' \\\; &> /dev/null ||
9713                                 error "proc file read failed"
9714         done
9715 }
9716 run_test 133f "Check for LBUGs/Oopses/unreadable files in /proc"
9717
9718 test_133g() {
9719         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9720         remote_ost_nodsh && skip "remote OST with nodsh" && return
9721         # Second verifying writability.
9722         find $proc_dirs \
9723                 -type f \
9724                 -not -name force_lbug \
9725                 -not -name changelog_mask \
9726                 -exec badarea_io '{}' \; &> /dev/null ||
9727                 error "find $proc_dirs failed"
9728
9729         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.5.54) ] &&
9730                 skip "Too old lustre on MDS" && return
9731
9732         [ $(lustre_version_code ost1) -le $(version_code 2.5.54) ] &&
9733                 skip "Too old lustre on ost1" && return
9734
9735         local facet
9736         for facet in $SINGLEMDS ost1; do
9737                 do_facet $facet find $proc_dirs \
9738                         -type f \
9739                         -not -name force_lbug \
9740                         -not -name changelog_mask \
9741                         -exec badarea_io '{}' \\\; &> /dev/null ||
9742                 error "$facet find $proc_dirs failed"
9743
9744         done
9745
9746         # remount the FS in case writes/reads /proc break the FS
9747         cleanup || error "failed to unmount"
9748         setup || error "failed to setup"
9749         true
9750 }
9751 run_test 133g "Check for Oopses on bad io area writes/reads in /proc"
9752
9753 test_134a() {
9754         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9755         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.54) ]] &&
9756                 skip "Need MDS version at least 2.7.54" && return
9757
9758         mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
9759         cancel_lru_locks mdc
9760
9761         local nsdir="ldlm.namespaces.*-MDT0000-mdc-*"
9762         local unused=$($LCTL get_param -n $nsdir.lock_unused_count)
9763         [ $unused -eq 0 ] || error "$unused locks are not cleared"
9764
9765         local nr=1000
9766         createmany -o $DIR/$tdir/f $nr ||
9767                 error "failed to create $nr files in $DIR/$tdir"
9768         unused=$($LCTL get_param -n $nsdir.lock_unused_count)
9769
9770         #define OBD_FAIL_LDLM_WATERMARK_LOW     0x327
9771         do_facet mds1 $LCTL set_param fail_loc=0x327
9772         do_facet mds1 $LCTL set_param fail_val=500
9773         touch $DIR/$tdir/m
9774
9775         echo "sleep 10 seconds ..."
9776         sleep 10
9777         local lck_cnt=$($LCTL get_param -n $nsdir.lock_unused_count)
9778
9779         do_facet mds1 $LCTL set_param fail_loc=0
9780         do_facet mds1 $LCTL set_param fail_val=0
9781         [ $lck_cnt -lt $unused ] ||
9782                 error "No locks reclaimed, before:$unused, after:$lck_cnt"
9783
9784         rm $DIR/$tdir/m
9785         unlinkmany $DIR/$tdir/f $nr
9786 }
9787 run_test 134a "Server reclaims locks when reaching lock_reclaim_threshold"
9788
9789 test_134b() {
9790         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9791         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.54) ]] &&
9792                 skip "Need MDS version at least 2.7.54" && return
9793
9794         mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
9795         cancel_lru_locks mdc
9796
9797         local low_wm=$(do_facet mds1 $LCTL get_param -n \
9798                         ldlm.lock_reclaim_threshold_mb)
9799         # disable reclaim temporarily
9800         do_facet mds1 $LCTL set_param ldlm.lock_reclaim_threshold_mb=0
9801
9802         #define OBD_FAIL_LDLM_WATERMARK_HIGH     0x328
9803         do_facet mds1 $LCTL set_param fail_loc=0x328
9804         do_facet mds1 $LCTL set_param fail_val=500
9805
9806         $LCTL set_param debug=+trace
9807
9808         local nr=600
9809         createmany -o $DIR/$tdir/f $nr &
9810         local create_pid=$!
9811
9812         echo "Sleep $TIMEOUT seconds ..."
9813         sleep $TIMEOUT
9814         if ! ps -p $create_pid  > /dev/null 2>&1; then
9815                 do_facet mds1 $LCTL set_param fail_loc=0
9816                 do_facet mds1 $LCTL set_param fail_val=0
9817                 do_facet mds1 $LCTL set_param \
9818                         ldlm.lock_reclaim_threshold_mb=${low_wm}m
9819                 error "createmany finished incorrectly!"
9820         fi
9821         do_facet mds1 $LCTL set_param fail_loc=0
9822         do_facet mds1 $LCTL set_param fail_val=0
9823         do_facet mds1 $LCTL set_param ldlm.lock_reclaim_threshold_mb=${low_wm}m
9824         wait $create_pid || return 1
9825
9826         unlinkmany $DIR/$tdir/f $nr
9827 }
9828 run_test 134b "Server rejects lock request when reaching lock_limit_mb"
9829
9830 test_140() { #bug-17379
9831         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9832         test_mkdir -p $DIR/$tdir || error "Creating dir $DIR/$tdir"
9833         cd $DIR/$tdir || error "Changing to $DIR/$tdir"
9834         cp $(which stat) . || error "Copying stat to $DIR/$tdir"
9835
9836         # VFS limits max symlink depth to 5(4KSTACK) or 7(8KSTACK) or 8
9837         # For kernel > 3.5, bellow only tests consecutive symlink (MAX 40)
9838         local i=0
9839         while i=`expr $i + 1`; do
9840                 test_mkdir -p $i || error "Creating dir $i"
9841                 cd $i || error "Changing to $i"
9842                 ln -s ../stat stat || error "Creating stat symlink"
9843                 # Read the symlink until ELOOP present,
9844                 # not LBUGing the system is considered success,
9845                 # we didn't overrun the stack.
9846                 $OPENFILE -f O_RDONLY stat >/dev/null 2>&1; ret=$?
9847                 [ $ret -ne 0 ] && {
9848                         if [ $ret -eq 40 ]; then
9849                                 break  # -ELOOP
9850                         else
9851                                 error "Open stat symlink"
9852                                 return
9853                         fi
9854                 }
9855         done
9856         i=`expr $i - 1`
9857         echo "The symlink depth = $i"
9858         [ $i -eq 5 -o $i -eq 7 -o $i -eq 8 -o $i -eq 40 ] ||
9859                                         error "Invalid symlink depth"
9860
9861         # Test recursive symlink
9862         ln -s symlink_self symlink_self
9863         $OPENFILE -f O_RDONLY symlink_self >/dev/null 2>&1; ret=$?
9864         echo "open symlink_self returns $ret"
9865         [ $ret -eq 40 ] || error "recursive symlink doesn't return -ELOOP"
9866 }
9867 run_test 140 "Check reasonable stack depth (shouldn't LBUG) ===="
9868
9869 test_150() {
9870         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9871         local TF="$TMP/$tfile"
9872
9873         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
9874         cp $TF $DIR/$tfile
9875         cancel_lru_locks osc
9876         cmp $TF $DIR/$tfile || error "$TMP/$tfile $DIR/$tfile differ"
9877         remount_client $MOUNT
9878         df -P $MOUNT
9879         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (remount)"
9880
9881         $TRUNCATE $TF 6000
9882         $TRUNCATE $DIR/$tfile 6000
9883         cancel_lru_locks osc
9884         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (truncate1)"
9885
9886         echo "12345" >>$TF
9887         echo "12345" >>$DIR/$tfile
9888         cancel_lru_locks osc
9889         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append1)"
9890
9891         echo "12345" >>$TF
9892         echo "12345" >>$DIR/$tfile
9893         cancel_lru_locks osc
9894         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append2)"
9895
9896         rm -f $TF
9897         true
9898 }
9899 run_test 150 "truncate/append tests"
9900
9901 #LU-2902 roc_hit was not able to read all values from lproc
9902 function roc_hit_init() {
9903         local list=$(comma_list $(osts_nodes))
9904         local dir=$DIR/$tdir-check
9905         local file=$dir/file
9906         local BEFORE
9907         local AFTER
9908         local idx
9909
9910         test_mkdir -p $dir
9911         #use setstripe to do a write to every ost
9912         for i in $(seq 0 $((OSTCOUNT-1))); do
9913                 $SETSTRIPE -c 1 -i $i $dir || error "$SETSTRIPE $file failed"
9914                 dd if=/dev/urandom of=$file bs=4k count=4 2>&1 > /dev/null
9915                 idx=$(printf %04x $i)
9916                 BEFORE=$(get_osd_param $list *OST*$idx stats |
9917                         awk '$1 == "cache_access" {sum += $7}
9918                                 END { printf("%0.0f", sum) }')
9919
9920                 cancel_lru_locks osc
9921                 cat $file >/dev/null
9922
9923                 AFTER=$(get_osd_param $list *OST*$idx stats |
9924                         awk '$1 == "cache_access" {sum += $7}
9925                                 END { printf("%0.0f", sum) }')
9926
9927                 echo BEFORE:$BEFORE AFTER:$AFTER
9928                 if ! let "AFTER - BEFORE == 4"; then
9929                         rm -rf $dir
9930                         error "roc_hit is not safe to use"
9931                 fi
9932                 rm $file
9933         done
9934
9935         rm -rf $dir
9936 }
9937
9938 function roc_hit() {
9939         local list=$(comma_list $(osts_nodes))
9940         echo $(get_osd_param $list '' stats |
9941                 awk '$1 == "cache_hit" {sum += $7}
9942                         END { printf("%0.0f", sum) }')
9943 }
9944
9945 function set_cache() {
9946         local on=1
9947
9948         if [ "$2" == "off" ]; then
9949                 on=0;
9950         fi
9951         local list=$(comma_list $(osts_nodes))
9952         set_osd_param $list '' $1_cache_enable $on
9953
9954         cancel_lru_locks osc
9955 }
9956
9957 test_151() {
9958         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9959         remote_ost_nodsh && skip "remote OST with nodsh" && return
9960
9961         local CPAGES=3
9962         local list=$(comma_list $(osts_nodes))
9963
9964         # check whether obdfilter is cache capable at all
9965         if ! get_osd_param $list '' read_cache_enable >/dev/null; then
9966                 echo "not cache-capable obdfilter"
9967                 return 0
9968         fi
9969
9970         # check cache is enabled on all obdfilters
9971         if get_osd_param $list '' read_cache_enable | grep 0; then
9972                 echo "oss cache is disabled"
9973                 return 0
9974         fi
9975
9976         set_osd_param $list '' writethrough_cache_enable 1
9977
9978         # check write cache is enabled on all obdfilters
9979         if get_osd_param $list '' writethrough_cache_enable | grep 0; then
9980                 echo "oss write cache is NOT enabled"
9981                 return 0
9982         fi
9983
9984         roc_hit_init
9985
9986         #define OBD_FAIL_OBD_NO_LRU  0x609
9987         do_nodes $list $LCTL set_param fail_loc=0x609
9988
9989         # pages should be in the case right after write
9990         dd if=/dev/urandom of=$DIR/$tfile bs=4k count=$CPAGES ||
9991                 error "dd failed"
9992
9993         local BEFORE=$(roc_hit)
9994         cancel_lru_locks osc
9995         cat $DIR/$tfile >/dev/null
9996         local AFTER=$(roc_hit)
9997
9998         do_nodes $list $LCTL set_param fail_loc=0
9999
10000         if ! let "AFTER - BEFORE == CPAGES"; then
10001                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
10002         fi
10003
10004         # the following read invalidates the cache
10005         cancel_lru_locks osc
10006         set_osd_param $list '' read_cache_enable 0
10007         cat $DIR/$tfile >/dev/null
10008
10009         # now data shouldn't be found in the cache
10010         BEFORE=$(roc_hit)
10011         cancel_lru_locks osc
10012         cat $DIR/$tfile >/dev/null
10013         AFTER=$(roc_hit)
10014         if let "AFTER - BEFORE != 0"; then
10015                 error "IN CACHE: before: $BEFORE, after: $AFTER"
10016         fi
10017
10018         set_osd_param $list '' read_cache_enable 1
10019         rm -f $DIR/$tfile
10020 }
10021 run_test 151 "test cache on oss and controls ==============================="
10022
10023 test_152() {
10024         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10025         local TF="$TMP/$tfile"
10026
10027         # simulate ENOMEM during write
10028 #define OBD_FAIL_OST_NOMEM      0x226
10029         lctl set_param fail_loc=0x80000226
10030         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
10031         cp $TF $DIR/$tfile
10032         sync || error "sync failed"
10033         lctl set_param fail_loc=0
10034
10035         # discard client's cache
10036         cancel_lru_locks osc
10037
10038         # simulate ENOMEM during read
10039         lctl set_param fail_loc=0x80000226
10040         cmp $TF $DIR/$tfile || error "cmp failed"
10041         lctl set_param fail_loc=0
10042
10043         rm -f $TF
10044 }
10045 run_test 152 "test read/write with enomem ============================"
10046
10047 test_153() {
10048         $MULTIOP $DIR/$tfile Ow4096Ycu || error "multiop failed"
10049 }
10050 run_test 153 "test if fdatasync does not crash ======================="
10051
10052 dot_lustre_fid_permission_check() {
10053         local fid=$1
10054         local ffid=$MOUNT/.lustre/fid/$fid
10055         local test_dir=$2
10056
10057         echo "stat fid $fid"
10058         stat $ffid > /dev/null || error "stat $ffid failed."
10059         echo "touch fid $fid"
10060         touch $ffid || error "touch $ffid failed."
10061         echo "write to fid $fid"
10062         cat /etc/hosts > $ffid || error "write $ffid failed."
10063         echo "read fid $fid"
10064         diff /etc/hosts $ffid || error "read $ffid failed."
10065         echo "append write to fid $fid"
10066         cat /etc/hosts >> $ffid || error "append write $ffid failed."
10067         echo "rename fid $fid"
10068         mv $ffid $test_dir/$tfile.1 &&
10069                 error "rename $ffid to $tfile.1 should fail."
10070         touch $test_dir/$tfile.1
10071         mv $test_dir/$tfile.1 $ffid &&
10072                 error "rename $tfile.1 to $ffid should fail."
10073         rm -f $test_dir/$tfile.1
10074         echo "truncate fid $fid"
10075         $TRUNCATE $ffid 777 || error "truncate $ffid failed."
10076         if [ $MDSCOUNT -lt 2 ]; then #FIXME when cross-MDT hard link is working
10077                 echo "link fid $fid"
10078                 ln -f $ffid $test_dir/tfile.lnk || error "link $ffid failed."
10079         fi
10080         if [ -n $(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl) ]; then
10081                 echo "setfacl fid $fid"
10082                 setfacl -R -m u:bin:rwx $ffid || error "setfacl $ffid failed."
10083                 echo "getfacl fid $fid"
10084                 getfacl $ffid >/dev/null || error "getfacl $ffid failed."
10085         fi
10086         echo "unlink fid $fid"
10087         unlink $MOUNT/.lustre/fid/$fid && error "unlink $ffid should fail."
10088         echo "mknod fid $fid"
10089         mknod $ffid c 1 3 && error "mknod $ffid should fail."
10090
10091         fid=[0xf00000400:0x1:0x0]
10092         ffid=$MOUNT/.lustre/fid/$fid
10093
10094         echo "stat non-exist fid $fid"
10095         stat $ffid > /dev/null && error "stat non-exist $ffid should fail."
10096         echo "write to non-exist fid $fid"
10097         cat /etc/hosts > $ffid && error "write non-exist $ffid should fail."
10098         echo "link new fid $fid"
10099         ln $test_dir/$tfile $ffid && error "link $ffid should fail."
10100
10101         mkdir -p $test_dir/$tdir
10102         touch $test_dir/$tdir/$tfile
10103         fid=$($LFS path2fid $test_dir/$tdir)
10104         rc=$?
10105         [ $rc -ne 0 ] &&
10106                 error "error: could not get fid for $test_dir/$dir/$tfile."
10107
10108         ffid=$MOUNT/.lustre/fid/$fid
10109
10110         echo "ls $fid"
10111         ls $ffid > /dev/null || error "ls $ffid failed."
10112         echo "touch $fid/$tfile.1"
10113         touch $ffid/$tfile.1 || error "touch $ffid/$tfile.1 failed."
10114
10115         echo "touch $MOUNT/.lustre/fid/$tfile"
10116         touch $MOUNT/.lustre/fid/$tfile && \
10117                 error "touch $MOUNT/.lustre/fid/$tfile should fail."
10118
10119         echo "setxattr to $MOUNT/.lustre/fid"
10120         setfattr -n trusted.name1 -v value1 $MOUNT/.lustre/fid
10121
10122         echo "listxattr for $MOUNT/.lustre/fid"
10123         getfattr -d -m "^trusted" $MOUNT/.lustre/fid
10124
10125         echo "delxattr from $MOUNT/.lustre/fid"
10126         setfattr -x trusted.name1 $MOUNT/.lustre/fid
10127
10128         echo "touch invalid fid: $MOUNT/.lustre/fid/[0x200000400:0x2:0x3]"
10129         touch $MOUNT/.lustre/fid/[0x200000400:0x2:0x3] &&
10130                 error "touch invalid fid should fail."
10131
10132         echo "touch non-normal fid: $MOUNT/.lustre/fid/[0x1:0x2:0x0]"
10133         touch $MOUNT/.lustre/fid/[0x1:0x2:0x0] &&
10134                 error "touch non-normal fid should fail."
10135
10136         echo "rename $tdir to $MOUNT/.lustre/fid"
10137         mrename $test_dir/$tdir $MOUNT/.lustre/fid &&
10138                 error "rename to $MOUNT/.lustre/fid should fail."
10139
10140         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.51) ]
10141         then            # LU-3547
10142                 local old_obf_mode=$(stat --format="%a" $DIR/.lustre/fid)
10143                 local new_obf_mode=777
10144
10145                 echo "change mode of $DIR/.lustre/fid to $new_obf_mode"
10146                 chmod $new_obf_mode $DIR/.lustre/fid ||
10147                         error "chmod $new_obf_mode $DIR/.lustre/fid failed"
10148
10149                 local obf_mode=$(stat --format=%a $DIR/.lustre/fid)
10150                 [ $obf_mode -eq $new_obf_mode ] ||
10151                         error "stat $DIR/.lustre/fid returned wrong mode $obf_mode"
10152
10153                 echo "restore mode of $DIR/.lustre/fid to $old_obf_mode"
10154                 chmod $old_obf_mode $DIR/.lustre/fid ||
10155                         error "chmod $old_obf_mode $DIR/.lustre/fid failed"
10156         fi
10157
10158         $OPENFILE -f O_LOV_DELAY_CREATE:O_CREAT $test_dir/$tfile-2
10159         fid=$($LFS path2fid $test_dir/$tfile-2)
10160
10161         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.50) ]
10162         then # LU-5424
10163                 echo "cp /etc/passwd $MOUNT/.lustre/fid/$fid"
10164                 cp /etc/passwd $MOUNT/.lustre/fid/$fid ||
10165                         error "create lov data thru .lustre failed"
10166         fi
10167         echo "cp /etc/passwd $test_dir/$tfile-2"
10168         cp /etc/passwd $test_dir/$tfile-2 ||
10169                 error "copy to $test_dir/$tfile-2 failed."
10170         echo "diff /etc/passwd $MOUNT/.lustre/fid/$fid"
10171         diff /etc/passwd $MOUNT/.lustre/fid/$fid ||
10172                 error "diff /etc/passwd $MOUNT/.lustre/fid/$fid failed."
10173
10174         rm -rf $test_dir/tfile.lnk
10175         rm -rf $test_dir/$tfile-2
10176 }
10177
10178 test_154A() {
10179         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
10180                 skip "Need MDS version at least 2.4.1" && return
10181
10182         local tf=$DIR/$tfile
10183         touch $tf
10184
10185         local fid=$($LFS path2fid $tf)
10186         [ -z "$fid" ] && error "path2fid unable to get $tf FID"
10187
10188         # check that we get the same pathname back
10189         local found=$($LFS fid2path $MOUNT "$fid")
10190         [ -z "$found" ] && error "fid2path unable to get '$fid' path"
10191         [ "$found" == "$tf" ] ||
10192                 error "fid2path($fid=path2fid($tf)) = $found != $tf"
10193 }
10194 run_test 154A "lfs path2fid and fid2path basic checks"
10195
10196 test_154a() {
10197         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10198         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ]] ||
10199                 { skip "Need MDS version at least 2.2.51"; return 0; }
10200         [ -z "$(which setfacl)" ] && skip "must have setfacl tool" && return
10201         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
10202
10203         cp /etc/hosts $DIR/$tfile
10204
10205         fid=$($LFS path2fid $DIR/$tfile)
10206         rc=$?
10207         [ $rc -ne 0 ] && error "error: could not get fid for $DIR/$tfile."
10208
10209         dot_lustre_fid_permission_check "$fid" $DIR ||
10210                 error "dot lustre permission check $fid failed"
10211
10212         rm -rf $MOUNT/.lustre && error ".lustre is not allowed to be unlinked"
10213
10214         touch $MOUNT/.lustre/file &&
10215                 error "creation is not allowed under .lustre"
10216
10217         mkdir $MOUNT/.lustre/dir &&
10218                 error "mkdir is not allowed under .lustre"
10219
10220         rm -rf $DIR/$tfile
10221 }
10222 run_test 154a "Open-by-FID"
10223
10224 test_154b() {
10225         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10226         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ]] ||
10227                 { skip "Need MDS version at least 2.2.51"; return 0; }
10228         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
10229
10230         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
10231
10232         local remote_dir=$DIR/$tdir/remote_dir
10233         local MDTIDX=1
10234         local rc=0
10235
10236         mkdir -p $DIR/$tdir
10237         $LFS mkdir -i $MDTIDX $remote_dir ||
10238                 error "create remote directory failed"
10239
10240         cp /etc/hosts $remote_dir/$tfile
10241
10242         fid=$($LFS path2fid $remote_dir/$tfile)
10243         rc=$?
10244         [ $rc -ne 0 ] && error "error: could not get fid for $remote_dir/$tfile"
10245
10246         dot_lustre_fid_permission_check "$fid" $remote_dir ||
10247                 error "dot lustre permission check $fid failed"
10248         rm -rf $DIR/$tdir
10249 }
10250 run_test 154b "Open-by-FID for remote directory"
10251
10252 test_154c() {
10253         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
10254                 skip "Need MDS version at least 2.4.1" && return
10255
10256         touch $DIR/$tfile.1 $DIR/$tfile.2 $DIR/$tfile.3
10257         local FID1=$($LFS path2fid $DIR/$tfile.1)
10258         local FID2=$($LFS path2fid $DIR/$tfile.2)
10259         local FID3=$($LFS path2fid $DIR/$tfile.3)
10260
10261         local N=1
10262         $LFS path2fid $DIR/$tfile.[123] | while read PATHNAME FID; do
10263                 [ "$PATHNAME" = "$DIR/$tfile.$N:" ] ||
10264                         error "path2fid pathname $PATHNAME != $DIR/$tfile.$N:"
10265                 local want=FID$N
10266                 [ "$FID" = "${!want}" ] ||
10267                         error "path2fid $PATHNAME FID $FID != FID$N ${!want}"
10268                 N=$((N + 1))
10269         done
10270
10271         $LFS fid2path $MOUNT "$FID1" "$FID2" "$FID3" | while read PATHNAME;
10272         do
10273                 [ "$PATHNAME" = "$DIR/$tfile.$N" ] ||
10274                         error "fid2path pathname $PATHNAME != $DIR/$tfile.$N:"
10275                 N=$((N + 1))
10276         done
10277 }
10278 run_test 154c "lfs path2fid and fid2path multiple arguments"
10279
10280 test_154d() {
10281         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10282         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.53) ]] &&
10283                 skip "Need MDS version at least 2.5.53" && return
10284
10285         if remote_mds; then
10286                 nid=$($LCTL list_nids | sed  "s/\./\\\./g")
10287         else
10288                 nid="0@lo"
10289         fi
10290         local proc_ofile="mdt.*.exports.'$nid'.open_files"
10291         local fd
10292         local cmd
10293
10294         rm -f $DIR/$tfile
10295         touch $DIR/$tfile
10296
10297         local fid=$($LFS path2fid $DIR/$tfile)
10298         # Open the file
10299         fd=$(free_fd)
10300         cmd="exec $fd<$DIR/$tfile"
10301         eval $cmd
10302         local fid_list=$(do_facet $SINGLEMDS $LCTL get_param $proc_ofile)
10303         echo "$fid_list" | grep "$fid"
10304         rc=$?
10305
10306         cmd="exec $fd>/dev/null"
10307         eval $cmd
10308         if [ $rc -ne 0 ]; then
10309                 error "FID $fid not found in open files list $fid_list"
10310         fi
10311 }
10312 run_test 154d "Verify open file fid"
10313
10314 test_154e()
10315 {
10316         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.50) ]] &&
10317                 skip "Need MDS version at least 2.6.50" && return
10318
10319         if ls -a $MOUNT | grep -q '^\.lustre$'; then
10320                 error ".lustre returned by readdir"
10321         fi
10322 }
10323 run_test 154e ".lustre is not returned by readdir"
10324
10325 test_154f() {
10326         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
10327         # create parent directory on a single MDT to avoid cross-MDT hardlinks
10328         test_mkdir -p -c1 $DIR/$tdir/d
10329         # test dirs inherit from its stripe
10330         mkdir -p $DIR/$tdir/d/foo1 || error "mkdir error"
10331         mkdir -p $DIR/$tdir/d/foo2 || error "mkdir error"
10332         cp /etc/hosts $DIR/$tdir/d/foo1/$tfile
10333         ln $DIR/$tdir/d/foo1/$tfile $DIR/$tdir/d/foo2/link
10334         touch $DIR/f
10335
10336         # get fid of parents
10337         local FID0=$($LFS path2fid $DIR/$tdir/d)
10338         local FID1=$($LFS path2fid $DIR/$tdir/d/foo1)
10339         local FID2=$($LFS path2fid $DIR/$tdir/d/foo2)
10340         local FID3=$($LFS path2fid $DIR)
10341
10342         # check that path2fid --parents returns expected <parent_fid>/name
10343         # 1) test for a directory (single parent)
10344         local parent=$($LFS path2fid --parents $DIR/$tdir/d/foo1)
10345         [ "$parent" == "$FID0/foo1" ] ||
10346                 error "expected parent: $FID0/foo1, got: $parent"
10347
10348         # 2) test for a file with nlink > 1 (multiple parents)
10349         parent=$($LFS path2fid --parents $DIR/$tdir/d/foo1/$tfile)
10350         echo "$parent" | grep -F "$FID1/$tfile" ||
10351                 error "$FID1/$tfile not returned in parent list"
10352         echo "$parent" | grep -F "$FID2/link" ||
10353                 error "$FID2/link not returned in parent list"
10354
10355         # 3) get parent by fid
10356         local file_fid=$($LFS path2fid $DIR/$tdir/d/foo1/$tfile)
10357         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
10358         echo "$parent" | grep -F "$FID1/$tfile" ||
10359                 error "$FID1/$tfile not returned in parent list (by fid)"
10360         echo "$parent" | grep -F "$FID2/link" ||
10361                 error "$FID2/link not returned in parent list (by fid)"
10362
10363         # 4) test for entry in root directory
10364         parent=$($LFS path2fid --parents $DIR/f)
10365         echo "$parent" | grep -F "$FID3/f" ||
10366                 error "$FID3/f not returned in parent list"
10367
10368         # 5) test it on root directory
10369         [ -z "$($LFS path2fid --parents $MOUNT 2>/dev/null)" ] ||
10370                 error "$MOUNT should not have parents"
10371
10372         # enable xattr caching and check that linkea is correctly updated
10373         local save="$TMP/$TESTSUITE-$TESTNAME.parameters"
10374         save_lustre_params client "llite.*.xattr_cache" > $save
10375         lctl set_param llite.*.xattr_cache 1
10376
10377         # 6.1) linkea update on rename
10378         mv $DIR/$tdir/d/foo1/$tfile $DIR/$tdir/d/foo2/$tfile.moved
10379
10380         # get parents by fid
10381         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
10382         # foo1 should no longer be returned in parent list
10383         echo "$parent" | grep -F "$FID1" &&
10384                 error "$FID1 should no longer be in parent list"
10385         # the new path should appear
10386         echo "$parent" | grep -F "$FID2/$tfile.moved" ||
10387                 error "$FID2/$tfile.moved is not in parent list"
10388
10389         # 6.2) linkea update on unlink
10390         rm -f $DIR/$tdir/d/foo2/link
10391         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
10392         # foo2/link should no longer be returned in parent list
10393         echo "$parent" | grep -F "$FID2/link" &&
10394                 error "$FID2/link should no longer be in parent list"
10395         true
10396
10397         rm -f $DIR/f
10398         restore_lustre_params < $save
10399         rm -f $save
10400 }
10401 run_test 154f "get parent fids by reading link ea"
10402
10403 test_154g()
10404 {
10405         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.92) ]] ||
10406                 { skip "Need MDS version at least 2.6.92"; return 0; }
10407         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
10408
10409         mkdir -p $DIR/$tdir
10410         llapi_fid_test -d $DIR/$tdir
10411 }
10412 run_test 154g "various llapi FID tests"
10413
10414 test_155_small_load() {
10415     local temp=$TMP/$tfile
10416     local file=$DIR/$tfile
10417
10418     dd if=/dev/urandom of=$temp bs=6096 count=1 || \
10419         error "dd of=$temp bs=6096 count=1 failed"
10420     cp $temp $file
10421     cancel_lru_locks osc
10422     cmp $temp $file || error "$temp $file differ"
10423
10424     $TRUNCATE $temp 6000
10425     $TRUNCATE $file 6000
10426     cmp $temp $file || error "$temp $file differ (truncate1)"
10427
10428     echo "12345" >>$temp
10429     echo "12345" >>$file
10430     cmp $temp $file || error "$temp $file differ (append1)"
10431
10432     echo "12345" >>$temp
10433     echo "12345" >>$file
10434     cmp $temp $file || error "$temp $file differ (append2)"
10435
10436     rm -f $temp $file
10437     true
10438 }
10439
10440 test_155_big_load() {
10441     remote_ost_nodsh && skip "remote OST with nodsh" && return
10442     local temp=$TMP/$tfile
10443     local file=$DIR/$tfile
10444
10445     free_min_max
10446     local cache_size=$(do_facet ost$((MAXI+1)) \
10447         "awk '/cache/ {sum+=\\\$4} END {print sum}' /proc/cpuinfo")
10448     local large_file_size=$((cache_size * 2))
10449
10450     echo "OSS cache size: $cache_size KB"
10451     echo "Large file size: $large_file_size KB"
10452
10453     [ $MAXV -le $large_file_size ] && \
10454         skip_env "max available OST size needs > $large_file_size KB" && \
10455         return 0
10456
10457     $SETSTRIPE $file -c 1 -i $MAXI || error "$SETSTRIPE $file failed"
10458
10459     dd if=/dev/urandom of=$temp bs=$large_file_size count=1k || \
10460         error "dd of=$temp bs=$large_file_size count=1k failed"
10461     cp $temp $file
10462     ls -lh $temp $file
10463     cancel_lru_locks osc
10464     cmp $temp $file || error "$temp $file differ"
10465
10466     rm -f $temp $file
10467     true
10468 }
10469
10470 save_writethrough() {
10471         local facets=$(get_facets OST)
10472
10473         save_lustre_params $facets "obdfilter.*.writethrough_cache_enable" > $1
10474         save_lustre_params $facets "osd-*.*.writethrough_cache_enable" >> $1
10475 }
10476
10477 test_155a() {
10478         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10479         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10480         save_writethrough $p
10481
10482         set_cache read on
10483         set_cache writethrough on
10484         test_155_small_load
10485         restore_lustre_params < $p
10486         rm -f $p
10487 }
10488 run_test 155a "Verify small file correctness: read cache:on write_cache:on"
10489
10490 test_155b() {
10491         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10492         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10493         save_writethrough $p
10494
10495         set_cache read on
10496         set_cache writethrough off
10497         test_155_small_load
10498         restore_lustre_params < $p
10499         rm -f $p
10500 }
10501 run_test 155b "Verify small file correctness: read cache:on write_cache:off"
10502
10503 test_155c() {
10504         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10505         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10506         save_writethrough $p
10507
10508         set_cache read off
10509         set_cache writethrough on
10510         test_155_small_load
10511         restore_lustre_params < $p
10512         rm -f $p
10513 }
10514 run_test 155c "Verify small file correctness: read cache:off write_cache:on"
10515
10516 test_155d() {
10517         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10518         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10519         save_writethrough $p
10520
10521         set_cache read off
10522         set_cache writethrough off
10523         test_155_small_load
10524         restore_lustre_params < $p
10525         rm -f $p
10526 }
10527 run_test 155d "Verify small file correctness: read cache:off write_cache:off"
10528
10529 test_155e() {
10530         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10531         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10532         save_writethrough $p
10533
10534         set_cache read on
10535         set_cache writethrough on
10536         test_155_big_load
10537         restore_lustre_params < $p
10538         rm -f $p
10539 }
10540 run_test 155e "Verify big file correctness: read cache:on write_cache:on"
10541
10542 test_155f() {
10543         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10544         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10545         save_writethrough $p
10546
10547         set_cache read on
10548         set_cache writethrough off
10549         test_155_big_load
10550         restore_lustre_params < $p
10551         rm -f $p
10552 }
10553 run_test 155f "Verify big file correctness: read cache:on write_cache:off"
10554
10555 test_155g() {
10556         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10557         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10558         save_writethrough $p
10559
10560         set_cache read off
10561         set_cache writethrough on
10562         test_155_big_load
10563         restore_lustre_params < $p
10564         rm -f $p
10565 }
10566 run_test 155g "Verify big file correctness: read cache:off write_cache:on"
10567
10568 test_155h() {
10569         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10570         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10571         save_writethrough $p
10572
10573         set_cache read off
10574         set_cache writethrough off
10575         test_155_big_load
10576         restore_lustre_params < $p
10577         rm -f $p
10578 }
10579 run_test 155h "Verify big file correctness: read cache:off write_cache:off"
10580
10581 test_156() {
10582         remote_ost_nodsh && skip "remote OST with nodsh" && return
10583         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10584         local CPAGES=3
10585         local BEFORE
10586         local AFTER
10587         local file="$DIR/$tfile"
10588         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10589
10590         [ "$(facet_fstype ost1)" = "zfs" -a \
10591            $(lustre_version_code ost1 -lt $(version_code 2.6.93)) ] &&
10592                 skip "LU-1956/LU-2261: stats not implemented on OSD ZFS" &&
10593                 return
10594
10595         save_writethrough $p
10596         roc_hit_init
10597
10598         log "Turn on read and write cache"
10599         set_cache read on
10600         set_cache writethrough on
10601
10602         log "Write data and read it back."
10603         log "Read should be satisfied from the cache."
10604         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
10605         BEFORE=$(roc_hit)
10606         cancel_lru_locks osc
10607         cat $file >/dev/null
10608         AFTER=$(roc_hit)
10609         if ! let "AFTER - BEFORE == CPAGES"; then
10610                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
10611         else
10612                 log "cache hits:: before: $BEFORE, after: $AFTER"
10613         fi
10614
10615         log "Read again; it should be satisfied from the cache."
10616         BEFORE=$AFTER
10617         cancel_lru_locks osc
10618         cat $file >/dev/null
10619         AFTER=$(roc_hit)
10620         if ! let "AFTER - BEFORE == CPAGES"; then
10621                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
10622         else
10623                 log "cache hits:: before: $BEFORE, after: $AFTER"
10624         fi
10625
10626         log "Turn off the read cache and turn on the write cache"
10627         set_cache read off
10628         set_cache writethrough on
10629
10630         log "Read again; it should be satisfied from the cache."
10631         BEFORE=$(roc_hit)
10632         cancel_lru_locks osc
10633         cat $file >/dev/null
10634         AFTER=$(roc_hit)
10635         if ! let "AFTER - BEFORE == CPAGES"; then
10636                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
10637         else
10638                 log "cache hits:: before: $BEFORE, after: $AFTER"
10639         fi
10640
10641         log "Read again; it should not be satisfied from the cache."
10642         BEFORE=$AFTER
10643         cancel_lru_locks osc
10644         cat $file >/dev/null
10645         AFTER=$(roc_hit)
10646         if ! let "AFTER - BEFORE == 0"; then
10647                 error "IN CACHE: before: $BEFORE, after: $AFTER"
10648         else
10649                 log "cache hits:: before: $BEFORE, after: $AFTER"
10650         fi
10651
10652         log "Write data and read it back."
10653         log "Read should be satisfied from the cache."
10654         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
10655         BEFORE=$(roc_hit)
10656         cancel_lru_locks osc
10657         cat $file >/dev/null
10658         AFTER=$(roc_hit)
10659         if ! let "AFTER - BEFORE == CPAGES"; then
10660                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
10661         else
10662                 log "cache hits:: before: $BEFORE, after: $AFTER"
10663         fi
10664
10665         log "Read again; it should not be satisfied from the cache."
10666         BEFORE=$AFTER
10667         cancel_lru_locks osc
10668         cat $file >/dev/null
10669         AFTER=$(roc_hit)
10670         if ! let "AFTER - BEFORE == 0"; then
10671                 error "IN CACHE: before: $BEFORE, after: $AFTER"
10672         else
10673                 log "cache hits:: before: $BEFORE, after: $AFTER"
10674         fi
10675
10676         log "Turn off read and write cache"
10677         set_cache read off
10678         set_cache writethrough off
10679
10680         log "Write data and read it back"
10681         log "It should not be satisfied from the cache."
10682         rm -f $file
10683         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
10684         cancel_lru_locks osc
10685         BEFORE=$(roc_hit)
10686         cat $file >/dev/null
10687         AFTER=$(roc_hit)
10688         if ! let "AFTER - BEFORE == 0"; then
10689                 error_ignore bz20762 "IN CACHE: before: $BEFORE, after: $AFTER"
10690         else
10691                 log "cache hits:: before: $BEFORE, after: $AFTER"
10692         fi
10693
10694         log "Turn on the read cache and turn off the write cache"
10695         set_cache read on
10696         set_cache writethrough off
10697
10698         log "Write data and read it back"
10699         log "It should not be satisfied from the cache."
10700         rm -f $file
10701         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
10702         BEFORE=$(roc_hit)
10703         cancel_lru_locks osc
10704         cat $file >/dev/null
10705         AFTER=$(roc_hit)
10706         if ! let "AFTER - BEFORE == 0"; then
10707                 error_ignore bz20762 "IN CACHE: before: $BEFORE, after: $AFTER"
10708         else
10709                 log "cache hits:: before: $BEFORE, after: $AFTER"
10710         fi
10711
10712         log "Read again; it should be satisfied from the cache."
10713         BEFORE=$(roc_hit)
10714         cancel_lru_locks osc
10715         cat $file >/dev/null
10716         AFTER=$(roc_hit)
10717         if ! let "AFTER - BEFORE == CPAGES"; then
10718                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
10719         else
10720                 log "cache hits:: before: $BEFORE, after: $AFTER"
10721         fi
10722
10723         rm -f $file
10724         restore_lustre_params < $p
10725         rm -f $p
10726 }
10727 run_test 156 "Verification of tunables"
10728
10729 #Changelogs
10730 cleanup_changelog () {
10731         trap 0
10732         echo "Deregistering changelog client $CL_USER"
10733         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister $CL_USER
10734 }
10735
10736 err17935 () {
10737         if [[ $MDSCOUNT -gt 1 ]]; then
10738                 error_ignore bz17935 $*
10739         else
10740                 error $*
10741         fi
10742 }
10743
10744 changelog_chmask()
10745 {
10746         local CL_MASK_PARAM="mdd.$MDT0.changelog_mask"
10747
10748         MASK=$(do_facet $SINGLEMDS $LCTL get_param $CL_MASK_PARAM| grep -c "$1")
10749
10750         if [ $MASK -eq 1 ]; then
10751                 do_facet $SINGLEMDS $LCTL set_param $CL_MASK_PARAM="-$1"
10752         else
10753                 do_facet $SINGLEMDS $LCTL set_param $CL_MASK_PARAM="+$1"
10754         fi
10755 }
10756
10757 changelog_extract_field() {
10758         local mdt=$1
10759         local cltype=$2
10760         local file=$3
10761         local identifier=$4
10762
10763         $LFS changelog $mdt | gawk "/$cltype.*$file$/ {
10764                 print gensub(/^.* "$identifier'(\[[^\]]*\]).*$/,"\\1",1)}' |
10765                 tail -1
10766 }
10767
10768 test_160a() {
10769         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10770         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10771         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] ||
10772                 { skip "Need MDS version at least 2.2.0"; return; }
10773
10774         local CL_USERS="mdd.$MDT0.changelog_users"
10775         local GET_CL_USERS="do_facet $SINGLEMDS $LCTL get_param -n $CL_USERS"
10776         CL_USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
10777                 changelog_register -n)
10778         echo "Registered as changelog user $CL_USER"
10779         trap cleanup_changelog EXIT
10780         $GET_CL_USERS | grep -q $CL_USER ||
10781                 error "User $CL_USER not found in changelog_users"
10782
10783         # change something
10784         test_mkdir -p $DIR/$tdir/pics/2008/zachy
10785         touch $DIR/$tdir/pics/2008/zachy/timestamp
10786         cp /etc/hosts $DIR/$tdir/pics/2008/zachy/pic1.jpg
10787         mv $DIR/$tdir/pics/2008/zachy $DIR/$tdir/pics/zach
10788         ln $DIR/$tdir/pics/zach/pic1.jpg $DIR/$tdir/pics/2008/portland.jpg
10789         ln -s $DIR/$tdir/pics/2008/portland.jpg $DIR/$tdir/pics/desktop.jpg
10790         rm $DIR/$tdir/pics/desktop.jpg
10791
10792         $LFS changelog $MDT0 | tail -5
10793
10794         echo "verifying changelog mask"
10795         changelog_chmask "MKDIR"
10796         changelog_chmask "CLOSE"
10797
10798         test_mkdir -p $DIR/$tdir/pics/zach/sofia
10799         echo "zzzzzz" > $DIR/$tdir/pics/zach/file
10800
10801         changelog_chmask "MKDIR"
10802         changelog_chmask "CLOSE"
10803
10804         test_mkdir -p $DIR/$tdir/pics/2008/sofia
10805         echo "zzzzzz" > $DIR/$tdir/pics/zach/file
10806
10807         $LFS changelog $MDT0
10808         MKDIRS=$($LFS changelog $MDT0 | tail -5 | grep -c "MKDIR")
10809         CLOSES=$($LFS changelog $MDT0 | tail -5 | grep -c "CLOSE")
10810         [ $MKDIRS -eq 1 ] || err17935 "MKDIR changelog mask count $DIRS != 1"
10811         [ $CLOSES -eq 1 ] || err17935 "CLOSE changelog mask count $DIRS != 1"
10812
10813         # verify contents
10814         echo "verifying target fid"
10815         fidc=$(changelog_extract_field $MDT0 "CREAT" "timestamp" "t=")
10816         fidf=$($LFS path2fid $DIR/$tdir/pics/zach/timestamp)
10817         [ "$fidc" == "$fidf" ] ||
10818                 err17935 "fid in changelog $fidc != file fid $fidf"
10819         echo "verifying parent fid"
10820         fidc=$(changelog_extract_field $MDT0 "CREAT" "timestamp" "p=")
10821         fidf=$($LFS path2fid $DIR/$tdir/pics/zach)
10822         [ "$fidc" == "$fidf" ] ||
10823                 err17935 "pfid in changelog $fidc != dir fid $fidf"
10824
10825         USER_REC1=$($GET_CL_USERS | awk "\$1 == \"$CL_USER\" {print \$2}")
10826         $LFS changelog_clear $MDT0 $CL_USER $(($USER_REC1 + 5))
10827         USER_REC2=$($GET_CL_USERS | awk "\$1 == \"$CL_USER\" {print \$2}")
10828         echo "verifying user clear: $(( $USER_REC1 + 5 )) == $USER_REC2"
10829         [ $USER_REC2 == $(($USER_REC1 + 5)) ] ||
10830                 err17935 "user index expected $(($USER_REC1 + 5)) is $USER_REC2"
10831
10832         MIN_REC=$($GET_CL_USERS |
10833                 awk 'min == "" || $2 < min {min = $2}; END {print min}')
10834         FIRST_REC=$($LFS changelog $MDT0 | head -n1 | awk '{print $1}')
10835         echo "verifying min purge: $(( $MIN_REC + 1 )) == $FIRST_REC"
10836         [ $FIRST_REC == $(($MIN_REC + 1)) ] ||
10837                 err17935 "first index should be $(($MIN_REC + 1)) is $FIRST_REC"
10838
10839         # LU-3446 changelog index reset on MDT restart
10840         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
10841         CUR_REC1=$($GET_CL_USERS | head -n1 | cut -f3 -d' ')
10842         $LFS changelog_clear $MDT0 $CL_USER 0
10843         stop $SINGLEMDS || error "Fail to stop MDT."
10844         start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS || error "Fail to start MDT."
10845         CUR_REC2=$($GET_CL_USERS | head -n1 | cut -f3 -d' ')
10846         echo "verifying index survives MDT restart: $CUR_REC1 == $CUR_REC2"
10847         [ $CUR_REC1 == $CUR_REC2 ] ||
10848                 err17935 "current index should be $CUR_REC1 is $CUR_REC2"
10849
10850         echo "verifying user deregister"
10851         cleanup_changelog
10852         $GET_CL_USERS | grep -q $CL_USER &&
10853                 error "User $CL_USER still in changelog_users"
10854
10855         USERS=$(( $($GET_CL_USERS | wc -l) - 2 ))
10856         if [ $CL_USER -eq 0 ]; then
10857                 LAST_REC1=$($GET_CL_USERS | head -n1 | cut -f3 -d' ')
10858                 touch $DIR/$tdir/chloe
10859                 LAST_REC2=$($GET_CL_USERS | head -n1 | cut -f3 -d' ')
10860                 echo "verify changelogs are off: $LAST_REC1 == $LAST_REC2"
10861                 [ $LAST_REC1 == $LAST_REC2 ] || error "changelogs not off"
10862         else
10863                 echo "$CL_USER other changelog users; can't verify off"
10864         fi
10865 }
10866 run_test 160a "changelog sanity"
10867
10868 test_160b() { # LU-3587
10869         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10870         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10871         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] ||
10872                 { skip "Need MDS version at least 2.2.0"; return; }
10873
10874         local CL_USERS="mdd.$MDT0.changelog_users"
10875         local GET_CL_USERS="do_facet $SINGLEMDS $LCTL get_param -n $CL_USERS"
10876         CL_USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
10877                 changelog_register -n)
10878         echo "Registered as changelog user $CL_USER"
10879         trap cleanup_changelog EXIT
10880         $GET_CL_USERS | grep -q $CL_USER ||
10881                 error "User $CL_USER not found in changelog_users"
10882
10883         local LONGNAME1=$(str_repeat a 255)
10884         local LONGNAME2=$(str_repeat b 255)
10885
10886         cd $DIR
10887         echo "creating very long named file"
10888         touch $LONGNAME1 || error "create of $LONGNAME1 failed"
10889         echo "moving very long named file"
10890         mv $LONGNAME1 $LONGNAME2
10891
10892         $LFS changelog $MDT0 | grep RENME
10893         rm -f $LONGNAME2
10894         cleanup_changelog
10895 }
10896 run_test 160b "Verify that very long rename doesn't crash in changelog"
10897
10898 test_160c() {
10899         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10900
10901         local rc=0
10902         local server_version=$(lustre_version_code $SINGLEMDS)
10903
10904         [[ $server_version -gt $(version_code 2.5.57) ]] ||
10905                 [[ $server_version -gt $(version_code 2.5.1) &&
10906                    $server_version -lt $(version_code 2.5.50) ]] ||
10907                 { skip "Need MDS version at least 2.5.58 or 2.5.2+"; return; }
10908         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10909
10910         # Registration step
10911         CL_USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
10912                 changelog_register -n)
10913         trap cleanup_changelog EXIT
10914
10915         rm -rf $DIR/$tdir
10916         mkdir -p $DIR/$tdir
10917         $MCREATE $DIR/$tdir/foo_160c
10918         changelog_chmask "TRUNC"
10919         $TRUNCATE $DIR/$tdir/foo_160c 200
10920         changelog_chmask "TRUNC"
10921         $TRUNCATE $DIR/$tdir/foo_160c 199
10922         $LFS changelog $MDT0
10923         TRUNCS=$($LFS changelog $MDT0 | tail -5 | grep -c "TRUNC")
10924         [ $TRUNCS -eq 1 ] || err17935 "TRUNC changelog mask count $TRUNCS != 1"
10925         $LFS changelog_clear $MDT0 $CL_USER 0
10926
10927         # Deregistration step
10928         cleanup_changelog
10929 }
10930 run_test 160c "verify that changelog log catch the truncate event"
10931
10932 test_160d() {
10933         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10934         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
10935
10936         local server_version=$(lustre_version_code mds1)
10937         local CL_MASK_PARAM="mdd.$MDT0.changelog_mask"
10938
10939         [[ $server_version -ge $(version_code 2.7.60) ]] ||
10940                 { skip "Need MDS version at least 2.7.60+"; return; }
10941         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10942
10943         # Registration step
10944         CL_USER=$(do_facet mds1 $LCTL --device $MDT0 \
10945                 changelog_register -n)
10946
10947         trap cleanup_changelog EXIT
10948         mkdir -p $DIR/$tdir/migrate_dir
10949         $LFS changelog_clear $MDT0 $CL_USER 0
10950
10951         $LFS migrate -m 1 $DIR/$tdir/migrate_dir || error "migrate fails"
10952         $LFS changelog $MDT0
10953         MIGRATES=$($LFS changelog $MDT0 | tail -5 | grep -c "MIGRT")
10954         $LFS changelog_clear $MDT0 $CL_USER 0
10955         [ $MIGRATES -eq 1 ] ||
10956                 error "MIGRATE changelog mask count $MIGRATES != 1"
10957
10958         # Deregistration step
10959         cleanup_changelog
10960 }
10961 run_test 160d "verify that changelog log catch the migrate event"
10962
10963 test_161a() {
10964         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10965         test_mkdir -p -c1 $DIR/$tdir
10966         cp /etc/hosts $DIR/$tdir/$tfile
10967         test_mkdir -c1 $DIR/$tdir/foo1
10968         test_mkdir -c1 $DIR/$tdir/foo2
10969         ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/sofia
10970         ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/zachary
10971         ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/luna
10972         ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/thor
10973         local FID=$($LFS path2fid $DIR/$tdir/$tfile | tr -d '[]')
10974         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
10975                 $LFS fid2path $DIR $FID
10976                 err17935 "bad link ea"
10977         fi
10978     # middle
10979     rm $DIR/$tdir/foo2/zachary
10980     # last
10981     rm $DIR/$tdir/foo2/thor
10982     # first
10983     rm $DIR/$tdir/$tfile
10984     # rename
10985     mv $DIR/$tdir/foo1/sofia $DIR/$tdir/foo2/maggie
10986     if [ "$($LFS fid2path $FSNAME --link 1 $FID)" != "$tdir/foo2/maggie" ]
10987         then
10988         $LFS fid2path $DIR $FID
10989         err17935 "bad link rename"
10990     fi
10991     rm $DIR/$tdir/foo2/maggie
10992
10993         # overflow the EA
10994         local longname=filename_avg_len_is_thirty_two_
10995         createmany -l$DIR/$tdir/foo1/luna $DIR/$tdir/foo2/$longname 1000 ||
10996                 error "failed to hardlink many files"
10997         links=$($LFS fid2path $DIR $FID | wc -l)
10998         echo -n "${links}/1000 links in link EA"
10999         [[ $links -gt 60 ]] ||
11000                 err17935 "expected at least 60 links in link EA"
11001         unlinkmany $DIR/$tdir/foo2/$longname 1000 ||
11002                 error "failed to unlink many hardlinks"
11003 }
11004 run_test 161a "link ea sanity"
11005
11006 test_161b() {
11007         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11008         [ $MDSCOUNT -lt 2 ] && skip "skipping remote directory test" && return
11009         local MDTIDX=1
11010         local remote_dir=$DIR/$tdir/remote_dir
11011
11012         mkdir -p $DIR/$tdir
11013         $LFS mkdir -i $MDTIDX $remote_dir ||
11014                 error "create remote directory failed"
11015
11016         cp /etc/hosts $remote_dir/$tfile
11017         mkdir -p $remote_dir/foo1
11018         mkdir -p $remote_dir/foo2
11019         ln $remote_dir/$tfile $remote_dir/foo1/sofia
11020         ln $remote_dir/$tfile $remote_dir/foo2/zachary
11021         ln $remote_dir/$tfile $remote_dir/foo1/luna
11022         ln $remote_dir/$tfile $remote_dir/foo2/thor
11023
11024         local FID=$($LFS path2fid $remote_dir/$tfile | tr -d '[' |
11025                      tr -d ']')
11026         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
11027                 $LFS fid2path $DIR $FID
11028                 err17935 "bad link ea"
11029         fi
11030         # middle
11031         rm $remote_dir/foo2/zachary
11032         # last
11033         rm $remote_dir/foo2/thor
11034         # first
11035         rm $remote_dir/$tfile
11036         # rename
11037         mv $remote_dir/foo1/sofia $remote_dir/foo2/maggie
11038         local link_path=$($LFS fid2path $FSNAME --link 1 $FID)
11039         if [ "$DIR/$link_path" != "$remote_dir/foo2/maggie" ]; then
11040                 $LFS fid2path $DIR $FID
11041                 err17935 "bad link rename"
11042         fi
11043         rm $remote_dir/foo2/maggie
11044
11045         # overflow the EA
11046         local longname=filename_avg_len_is_thirty_two_
11047         createmany -l$remote_dir/foo1/luna $remote_dir/foo2/$longname 1000 ||
11048                 error "failed to hardlink many files"
11049         links=$($LFS fid2path $DIR $FID | wc -l)
11050         echo -n "${links}/1000 links in link EA"
11051         [[ ${links} -gt 60 ]] ||
11052                 err17935 "expected at least 60 links in link EA"
11053         unlinkmany $remote_dir/foo2/$longname 1000 ||
11054         error "failed to unlink many hardlinks"
11055 }
11056 run_test 161b "link ea sanity under remote directory"
11057
11058 test_161c() {
11059         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11060         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11061         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.1.5) ]] &&
11062                 skip "Need MDS version at least 2.1.5" && return
11063
11064         # define CLF_RENAME_LAST 0x0001
11065         # rename overwrite a target having nlink = 1 (changelog flag 0x1)
11066         CL_USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
11067                 changelog_register -n)
11068
11069         trap cleanup_changelog EXIT
11070         rm -rf $DIR/$tdir
11071         mkdir -p $DIR/$tdir
11072         touch $DIR/$tdir/foo_161c
11073         touch $DIR/$tdir/bar_161c
11074         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/bar_161c
11075         $LFS changelog $MDT0 | grep RENME
11076         local flags=$($LFS changelog $MDT0 | grep RENME | tail -1 | \
11077                 cut -f5 -d' ')
11078         $LFS changelog_clear $MDT0 $CL_USER 0
11079         if [ x$flags != "x0x1" ]; then
11080                 error "flag $flags is not 0x1"
11081         fi
11082         echo "rename overwrite a target having nlink = 1," \
11083                 "changelog record has flags of $flags"
11084
11085         # rename overwrite a target having nlink > 1 (changelog flag 0x0)
11086         touch $DIR/$tdir/foo_161c
11087         touch $DIR/$tdir/bar_161c
11088         ln $DIR/$tdir/bar_161c $DIR/$tdir/foobar_161c
11089         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/bar_161c
11090         $LFS changelog $MDT0 | grep RENME
11091         flags=$($LFS changelog $MDT0 | grep RENME | tail -1 | cut -f5 -d' ')
11092         $LFS changelog_clear $MDT0 $CL_USER 0
11093         if [ x$flags != "x0x0" ]; then
11094                 error "flag $flags is not 0x0"
11095         fi
11096         echo "rename overwrite a target having nlink > 1," \
11097                 "changelog record has flags of $flags"
11098
11099         # rename doesn't overwrite a target (changelog flag 0x0)
11100         touch $DIR/$tdir/foo_161c
11101         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/foo2_161c
11102         $LFS changelog $MDT0 | grep RENME
11103         flags=$($LFS changelog $MDT0 | grep RENME | tail -1 | cut -f5 -d' ')
11104         $LFS changelog_clear $MDT0 $CL_USER 0
11105         if [ x$flags != "x0x0" ]; then
11106                 error "flag $flags is not 0x0"
11107         fi
11108         echo "rename doesn't overwrite a target," \
11109                 "changelog record has flags of $flags"
11110
11111         # define CLF_UNLINK_LAST 0x0001
11112         # unlink a file having nlink = 1 (changelog flag 0x1)
11113         rm -f $DIR/$tdir/foo2_161c
11114         $LFS changelog $MDT0 | grep UNLNK
11115         flags=$($LFS changelog $MDT0 | grep UNLNK | tail -1 | cut -f5 -d' ')
11116         $LFS changelog_clear $MDT0 $CL_USER 0
11117         if [ x$flags != "x0x1" ]; then
11118                 error "flag $flags is not 0x1"
11119         fi
11120         echo "unlink a file having nlink = 1," \
11121                 "changelog record has flags of $flags"
11122
11123         # unlink a file having nlink > 1 (changelog flag 0x0)
11124         ln -f $DIR/$tdir/bar_161c $DIR/$tdir/foobar_161c
11125         rm -f $DIR/$tdir/foobar_161c
11126         $LFS changelog $MDT0 | grep UNLNK
11127         flags=$($LFS changelog $MDT0 | grep UNLNK | tail -1 | cut -f5 -d' ')
11128         $LFS changelog_clear $MDT0 $CL_USER 0
11129         if [ x$flags != "x0x0" ]; then
11130                 error "flag $flags is not 0x0"
11131         fi
11132         echo "unlink a file having nlink > 1," \
11133                 "changelog record has flags of $flags"
11134         cleanup_changelog
11135 }
11136 run_test 161c "check CL_RENME[UNLINK] changelog record flags"
11137
11138 check_path() {
11139     local expected=$1
11140     shift
11141     local fid=$2
11142
11143     local path=$(${LFS} fid2path $*)
11144     # Remove the '//' indicating a remote directory
11145     path=$(echo $path | sed 's#//#/#g')
11146     RC=$?
11147
11148     if [ $RC -ne 0 ]; then
11149         err17935 "path looked up of $expected failed. Error $RC"
11150         return $RC
11151     elif [ "${path}" != "${expected}" ]; then
11152         err17935 "path looked up \"${path}\" instead of \"${expected}\""
11153         return 2
11154     fi
11155     echo "fid $fid resolves to path $path (expected $expected)"
11156 }
11157
11158 test_162a() { # was test_162
11159         # Make changes to filesystem
11160         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11161         test_mkdir -p -c1 $DIR/$tdir/d2
11162         touch $DIR/$tdir/d2/$tfile
11163         touch $DIR/$tdir/d2/x1
11164         touch $DIR/$tdir/d2/x2
11165         test_mkdir -p -c1 $DIR/$tdir/d2/a/b/c
11166         test_mkdir -p -c1 $DIR/$tdir/d2/p/q/r
11167         # regular file
11168         FID=$($LFS path2fid $DIR/$tdir/d2/$tfile | tr -d '[]')
11169         check_path "$tdir/d2/$tfile" $FSNAME $FID --link 0 ||
11170                 error "check path $tdir/d2/$tfile failed"
11171
11172         # softlink
11173         ln -s $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/slink
11174         FID=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink | tr -d '[]')
11175         check_path "$tdir/d2/p/q/r/slink" $FSNAME $FID --link 0 ||
11176                 error "check path $tdir/d2/p/q/r/slink failed"
11177
11178         # softlink to wrong file
11179         ln -s /this/is/garbage $DIR/$tdir/d2/p/q/r/slink.wrong
11180         FID=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink.wrong | tr -d '[]')
11181         check_path "$tdir/d2/p/q/r/slink.wrong" $FSNAME $FID --link 0 ||
11182                 error "check path $tdir/d2/p/q/r/slink.wrong failed"
11183
11184         # hardlink
11185         ln $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/hlink
11186         mv $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/a/b/c/new_file
11187         FID=$($LFS path2fid $DIR/$tdir/d2/a/b/c/new_file | tr -d '[]')
11188         # fid2path dir/fsname should both work
11189         check_path "$tdir/d2/a/b/c/new_file" $FSNAME $FID --link 1 ||
11190                 error "check path $tdir/d2/a/b/c/new_file failed"
11191         check_path "$DIR/$tdir/d2/p/q/r/hlink" $DIR $FID --link 0 ||
11192                 error "check path $DIR/$tdir/d2/p/q/r/hlink failed"
11193
11194         # hardlink count: check that there are 2 links
11195         # Doesnt work with CMD yet: 17935
11196         ${LFS} fid2path $DIR $FID | wc -l | grep -q 2 || \
11197                 err17935 "expected 2 links"
11198
11199         # hardlink indexing: remove the first link
11200         rm $DIR/$tdir/d2/p/q/r/hlink
11201         check_path "$tdir/d2/a/b/c/new_file" $FSNAME $FID --link 0 ||
11202                 error "check path $DIR/$tdir/d2/a/b/c/new_file failed"
11203
11204         return 0
11205 }
11206 run_test 162a "path lookup sanity"
11207
11208 test_162b() {
11209         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11210         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
11211
11212         mkdir $DIR/$tdir
11213         $LFS setdirstripe -i0 -c$MDSCOUNT -t all_char $DIR/$tdir/striped_dir ||
11214                                 error "create striped dir failed"
11215
11216         local FID=$($LFS getdirstripe $DIR/$tdir/striped_dir |
11217                                         tail -n 1 | awk '{print $2}')
11218         stat $MOUNT/.lustre/fid/$FID && error "sub_stripe can be accessed"
11219
11220         touch $DIR/$tdir/striped_dir/f{0..4} || error "touch f0..4 failed"
11221         mkdir $DIR/$tdir/striped_dir/d{0..4} || error "mkdir d0..4 failed"
11222
11223         # regular file
11224         for ((i=0;i<5;i++)); do
11225                 FID=$($LFS path2fid $DIR/$tdir/striped_dir/f$i | tr -d '[]') ||
11226                         error "get fid for f$i failed"
11227                 check_path "$tdir/striped_dir/f$i" $FSNAME $FID --link 0 ||
11228                         error "check path $tdir/striped_dir/f$i failed"
11229
11230                 FID=$($LFS path2fid $DIR/$tdir/striped_dir/d$i | tr -d '[]') ||
11231                         error "get fid for d$i failed"
11232                 check_path "$tdir/striped_dir/d$i" $FSNAME $FID --link 0 ||
11233                         error "check path $tdir/striped_dir/d$i failed"
11234         done
11235
11236         return 0
11237 }
11238 run_test 162b "striped directory path lookup sanity"
11239
11240 # LU-4239: Verify fid2path works with paths 100 or more directories deep
11241 test_162c() {
11242         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.51) ]] &&
11243                 skip "Need MDS version at least 2.7.51" && return
11244         test_mkdir $DIR/$tdir.local
11245         test_mkdir $DIR/$tdir.remote
11246         local lpath=$tdir.local
11247         local rpath=$tdir.remote
11248
11249         for ((i = 0; i <= 101; i++)); do
11250                 lpath="$lpath/$i"
11251                 mkdir $DIR/$lpath
11252                 FID=$($LFS path2fid $DIR/$lpath | tr -d '[]') ||
11253                         error "get fid for local directory $DIR/$lpath failed"
11254                 check_path "$DIR/$lpath" $MOUNT $FID --link 0 ||
11255                         error "check path for local directory $DIR/$lpath failed"
11256
11257                 rpath="$rpath/$i"
11258                 test_mkdir $DIR/$rpath
11259                 FID=$($LFS path2fid $DIR/$rpath | tr -d '[]') ||
11260                         error "get fid for remote directory $DIR/$rpath failed"
11261                 check_path "$DIR/$rpath" $MOUNT $FID --link 0 ||
11262                         error "check path for remote directory $DIR/$rpath failed"
11263         done
11264
11265         return 0
11266 }
11267 run_test 162c "fid2path works with paths 100 or more directories deep"
11268
11269 test_169() {
11270         # do directio so as not to populate the page cache
11271         log "creating a 10 Mb file"
11272         $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
11273         log "starting reads"
11274         dd if=$DIR/$tfile of=/dev/null bs=4096 &
11275         log "truncating the file"
11276         $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
11277         log "killing dd"
11278         kill %+ || true # reads might have finished
11279         echo "wait until dd is finished"
11280         wait
11281         log "removing the temporary file"
11282         rm -rf $DIR/$tfile || error "tmp file removal failed"
11283 }
11284 run_test 169 "parallel read and truncate should not deadlock"
11285
11286 test_170() {
11287         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11288         $LCTL clear     # bug 18514
11289         $LCTL debug_daemon start $TMP/${tfile}_log_good
11290         touch $DIR/$tfile
11291         $LCTL debug_daemon stop
11292         sed -e "s/^...../a/g" $TMP/${tfile}_log_good > $TMP/${tfile}_log_bad ||
11293                error "sed failed to read log_good"
11294
11295         $LCTL debug_daemon start $TMP/${tfile}_log_good
11296         rm -rf $DIR/$tfile
11297         $LCTL debug_daemon stop
11298
11299         $LCTL df $TMP/${tfile}_log_bad > $TMP/${tfile}_log_bad.out 2>&1 ||
11300                error "lctl df log_bad failed"
11301
11302         local bad_line=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
11303         local good_line1=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
11304
11305         $LCTL df $TMP/${tfile}_log_good > $TMP/${tfile}_log_good.out 2>&1
11306         local good_line2=$(tail -n 1 $TMP/${tfile}_log_good.out | awk '{print $5}')
11307
11308         [ "$bad_line" ] && [ "$good_line1" ] && [ "$good_line2" ] ||
11309                 error "bad_line good_line1 good_line2 are empty"
11310
11311         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
11312         cat $TMP/${tfile}_log_bad >> $TMP/${tfile}_logs_corrupt
11313         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
11314
11315         $LCTL df $TMP/${tfile}_logs_corrupt > $TMP/${tfile}_log_bad.out 2>&1
11316         local bad_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
11317         local good_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
11318
11319         [ "$bad_line_new" ] && [ "$good_line_new" ] ||
11320                 error "bad_line_new good_line_new are empty"
11321
11322         local expected_good=$((good_line1 + good_line2*2))
11323
11324         rm -f $TMP/${tfile}*
11325         # LU-231, short malformed line may not be counted into bad lines
11326         if [ $bad_line -ne $bad_line_new ] &&
11327                    [ $bad_line -ne $((bad_line_new - 1)) ]; then
11328                 error "expected $bad_line bad lines, but got $bad_line_new"
11329                 return 1
11330         fi
11331
11332         if [ $expected_good -ne $good_line_new ]; then
11333                 error "expected $expected_good good lines, but got $good_line_new"
11334                 return 2
11335         fi
11336         true
11337 }
11338 run_test 170 "test lctl df to handle corrupted log ====================="
11339
11340 test_171() { # bug20592
11341         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11342 #define OBD_FAIL_PTLRPC_DUMP_LOG         0x50e
11343         $LCTL set_param fail_loc=0x50e
11344         $LCTL set_param fail_val=3000
11345         multiop_bg_pause $DIR/$tfile O_s || true
11346         local MULTIPID=$!
11347         kill -USR1 $MULTIPID
11348         # cause log dump
11349         sleep 3
11350         wait $MULTIPID
11351         if dmesg | grep "recursive fault"; then
11352                 error "caught a recursive fault"
11353         fi
11354         $LCTL set_param fail_loc=0
11355         true
11356 }
11357 run_test 171 "test libcfs_debug_dumplog_thread stuck in do_exit() ======"
11358
11359 # it would be good to share it with obdfilter-survey/iokit-libecho code
11360 setup_obdecho_osc () {
11361         local rc=0
11362         local ost_nid=$1
11363         local obdfilter_name=$2
11364         echo "Creating new osc for $obdfilter_name on $ost_nid"
11365         # make sure we can find loopback nid
11366         $LCTL add_uuid $ost_nid $ost_nid >/dev/null 2>&1
11367
11368         [ $rc -eq 0 ] && { $LCTL attach osc ${obdfilter_name}_osc     \
11369                            ${obdfilter_name}_osc_UUID || rc=2; }
11370         [ $rc -eq 0 ] && { $LCTL --device ${obdfilter_name}_osc setup \
11371                            ${obdfilter_name}_UUID  $ost_nid || rc=3; }
11372         return $rc
11373 }
11374
11375 cleanup_obdecho_osc () {
11376         local obdfilter_name=$1
11377         $LCTL --device ${obdfilter_name}_osc cleanup >/dev/null
11378         $LCTL --device ${obdfilter_name}_osc detach  >/dev/null
11379         return 0
11380 }
11381
11382 obdecho_test() {
11383         local OBD=$1
11384         local node=$2
11385         local pages=${3:-64}
11386         local rc=0
11387         local id
11388
11389         local count=10
11390         local obd_size=$(get_obd_size $node $OBD)
11391         local page_size=$(get_page_size $node)
11392         if [[ -n "$obd_size" ]]; then
11393                 local new_count=$((obd_size / (pages * page_size / 1024)))
11394                 [[ $new_count -ge $count ]] || count=$new_count
11395         fi
11396
11397         do_facet $node "$LCTL attach echo_client ec ec_uuid" || rc=1
11398         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec setup $OBD" ||
11399                            rc=2; }
11400         if [ $rc -eq 0 ]; then
11401             id=$(do_facet $node "$LCTL --device ec create 1"  | awk '/object id/ {print $6}')
11402             [ ${PIPESTATUS[0]} -eq 0 -a -n "$id" ] || rc=3
11403         fi
11404         echo "New object id is $id"
11405         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec getattr $id" ||
11406                            rc=4; }
11407         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec "                 \
11408                            "test_brw $count w v $pages $id" || rc=4; }
11409         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec destroy $id 1" ||
11410                            rc=4; }
11411         [ $rc -eq 0 -o $rc -gt 2 ] && { do_facet $node "$LCTL --device ec "    \
11412                                         "cleanup" || rc=5; }
11413         [ $rc -eq 0 -o $rc -gt 1 ] && { do_facet $node "$LCTL --device ec "    \
11414                                         "detach" || rc=6; }
11415         [ $rc -ne 0 ] && echo "obecho_create_test failed: $rc"
11416         return $rc
11417 }
11418
11419 test_180a() {
11420         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11421         remote_ost_nodsh && skip "remote OST with nodsh" && return
11422         local rc=0
11423         local rmmod_local=0
11424
11425         if ! module_loaded obdecho; then
11426             load_module obdecho/obdecho
11427             rmmod_local=1
11428         fi
11429
11430         local osc=$($LCTL dl | grep -v mdt | awk '$3 == "osc" {print $4; exit}')
11431         local host=$(lctl get_param -n osc.$osc.import |
11432                              awk '/current_connection:/ {print $2}' )
11433         local target=$(lctl get_param -n osc.$osc.import |
11434                              awk '/target:/ {print $2}' )
11435         target=${target%_UUID}
11436
11437         [[ -n $target ]]  && { setup_obdecho_osc $host $target || rc=1; } || rc=1
11438         [ $rc -eq 0 ] && { obdecho_test ${target}_osc client || rc=2; }
11439         [[ -n $target ]] && cleanup_obdecho_osc $target
11440         [ $rmmod_local -eq 1 ] && rmmod obdecho
11441         return $rc
11442 }
11443 run_test 180a "test obdecho on osc"
11444
11445 test_180b() {
11446         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11447         remote_ost_nodsh && skip "remote OST with nodsh" && return
11448         local rc=0
11449         local rmmod_remote=0
11450
11451         do_facet ost1 "lsmod | grep -q obdecho || "                      \
11452                       "{ insmod ${LUSTRE}/obdecho/obdecho.ko || "        \
11453                       "modprobe obdecho; }" && rmmod_remote=1
11454         target=$(do_facet ost1 $LCTL dl | awk '/obdfilter/ {print $4;exit}')
11455         [[ -n $target ]] && { obdecho_test $target ost1 || rc=1; }
11456         [ $rmmod_remote -eq 1 ] && do_facet ost1 "rmmod obdecho"
11457         return $rc
11458 }
11459 run_test 180b "test obdecho directly on obdfilter"
11460
11461 test_180c() { # LU-2598
11462         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11463         remote_ost_nodsh && skip "remote OST with nodsh" && return
11464         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.0) ]] &&
11465                 skip "Need MDS version at least 2.4.0" && return
11466
11467         local rc=0
11468         local rmmod_remote=false
11469         local pages=16384 # 64MB bulk I/O RPC size
11470         local target
11471
11472         do_rpc_nodes $(facet_active_host ost1) load_module obdecho/obdecho &&
11473                 rmmod_remote=true || error "failed to load module obdecho"
11474
11475         target=$(do_facet ost1 $LCTL dl | awk '/obdfilter/ { print $4 }' |
11476                 head -n1)
11477         if [ -n "$target" ]; then
11478                 obdecho_test "$target" ost1 "$pages" || rc=${PIPESTATUS[0]}
11479         else
11480                 echo "there is no obdfilter target on ost1"
11481                 rc=2
11482         fi
11483         $rmmod_remote && do_facet ost1 "rmmod obdecho" || true
11484         return $rc
11485 }
11486 run_test 180c "test huge bulk I/O size on obdfilter, don't LASSERT"
11487
11488 test_181() { # bug 22177
11489         test_mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
11490         # create enough files to index the directory
11491         createmany -o $DIR/$tdir/foobar 4000
11492         # print attributes for debug purpose
11493         lsattr -d .
11494         # open dir
11495         multiop_bg_pause $DIR/$tdir D_Sc || return 1
11496         MULTIPID=$!
11497         # remove the files & current working dir
11498         unlinkmany $DIR/$tdir/foobar 4000
11499         rmdir $DIR/$tdir
11500         kill -USR1 $MULTIPID
11501         wait $MULTIPID
11502         stat $DIR/$tdir && error "open-unlinked dir was not removed!"
11503         return 0
11504 }
11505 run_test 181 "Test open-unlinked dir ========================"
11506
11507 test_182() {
11508         local fcount=1000
11509         local tcount=10
11510
11511         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
11512
11513         $LCTL set_param mdc.*.rpc_stats=clear
11514
11515         for (( i = 0; i < $tcount; i++ )) ; do
11516                 mkdir $DIR/$tdir/$i
11517         done
11518
11519         for (( i = 0; i < $tcount; i++ )) ; do
11520                 createmany -o $DIR/$tdir/$i/f- $fcount &
11521         done
11522         wait
11523
11524         for (( i = 0; i < $tcount; i++ )) ; do
11525                 unlinkmany $DIR/$tdir/$i/f- $fcount &
11526         done
11527         wait
11528
11529         $LCTL get_param mdc.*.rpc_stats
11530
11531         rm -rf $DIR/$tdir
11532 }
11533 run_test 182 "Test parallel modify metadata operations ================"
11534
11535 test_183() { # LU-2275
11536         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11537         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.56) ]] &&
11538                 skip "Need MDS version at least 2.3.56" && return
11539
11540         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11541         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
11542         echo aaa > $DIR/$tdir/$tfile
11543
11544 #define OBD_FAIL_MDS_NEGATIVE_POSITIVE  0x148
11545         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x148
11546
11547         ls -l $DIR/$tdir && error "ls succeeded, should have failed"
11548         cat $DIR/$tdir/$tfile && error "cat succeeded, should have failed"
11549
11550         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
11551
11552         # Flush negative dentry cache
11553         touch $DIR/$tdir/$tfile
11554
11555         # We are not checking for any leaked references here, they'll
11556         # become evident next time we do cleanup with module unload.
11557         rm -rf $DIR/$tdir
11558 }
11559 run_test 183 "No crash or request leak in case of strange dispositions ========"
11560
11561 # test suite 184 is for LU-2016, LU-2017
11562 test_184a() {
11563         check_swap_layouts_support && return 0
11564
11565         dir0=$DIR/$tdir/$testnum
11566         test_mkdir -p -c1 $dir0 || error "creating dir $dir0"
11567         ref1=/etc/passwd
11568         ref2=/etc/group
11569         file1=$dir0/f1
11570         file2=$dir0/f2
11571         $SETSTRIPE -c1 $file1
11572         cp $ref1 $file1
11573         $SETSTRIPE -c2 $file2
11574         cp $ref2 $file2
11575         gen1=$($GETSTRIPE -g $file1)
11576         gen2=$($GETSTRIPE -g $file2)
11577
11578         $LFS swap_layouts $file1 $file2 || error "swap of file layout failed"
11579         gen=$($GETSTRIPE -g $file1)
11580         [[ $gen1 != $gen ]] ||
11581                 "Layout generation on $file1 does not change"
11582         gen=$($GETSTRIPE -g $file2)
11583         [[ $gen2 != $gen ]] ||
11584                 "Layout generation on $file2 does not change"
11585
11586         cmp $ref1 $file2 || error "content compare failed ($ref1 != $file2)"
11587         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
11588 }
11589 run_test 184a "Basic layout swap"
11590
11591 test_184b() {
11592         check_swap_layouts_support && return 0
11593
11594         dir0=$DIR/$tdir/$testnum
11595         mkdir -p $dir0 || error "creating dir $dir0"
11596         file1=$dir0/f1
11597         file2=$dir0/f2
11598         file3=$dir0/f3
11599         dir1=$dir0/d1
11600         dir2=$dir0/d2
11601         mkdir $dir1 $dir2
11602         $SETSTRIPE -c1 $file1
11603         $SETSTRIPE -c2 $file2
11604         $SETSTRIPE -c1 $file3
11605         chown $RUNAS_ID $file3
11606         gen1=$($GETSTRIPE -g $file1)
11607         gen2=$($GETSTRIPE -g $file2)
11608
11609         $LFS swap_layouts $dir1 $dir2 &&
11610                 error "swap of directories layouts should fail"
11611         $LFS swap_layouts $dir1 $file1 &&
11612                 error "swap of directory and file layouts should fail"
11613         $RUNAS $LFS swap_layouts $file1 $file2 &&
11614                 error "swap of file we cannot write should fail"
11615         $LFS swap_layouts $file1 $file3 &&
11616                 error "swap of file with different owner should fail"
11617         /bin/true # to clear error code
11618 }
11619 run_test 184b "Forbidden layout swap (will generate errors)"
11620
11621 test_184c() {
11622         local cmpn_arg=$(cmp -n 2>&1 | grep "invalid option")
11623         [ -n "$cmpn_arg" ] && skip_env "cmp does not support -n" && return
11624         check_swap_layouts_support && return 0
11625
11626         local dir0=$DIR/$tdir/$testnum
11627         mkdir -p $dir0 || error "creating dir $dir0"
11628
11629         local ref1=$dir0/ref1
11630         local ref2=$dir0/ref2
11631         local file1=$dir0/file1
11632         local file2=$dir0/file2
11633         # create a file large enough for the concurrent test
11634         dd if=/dev/urandom of=$ref1 bs=1M count=$((RANDOM % 50 + 20))
11635         dd if=/dev/urandom of=$ref2 bs=1M count=$((RANDOM % 50 + 20))
11636         echo "ref file size: ref1($(stat -c %s $ref1))," \
11637              "ref2($(stat -c %s $ref2))"
11638
11639         cp $ref2 $file2
11640         dd if=$ref1 of=$file1 bs=16k &
11641         local DD_PID=$!
11642
11643         # Make sure dd starts to copy file
11644         while [ ! -f $file1 ]; do sleep 0.1; done
11645
11646         $LFS swap_layouts $file1 $file2
11647         local rc=$?
11648         wait $DD_PID
11649         [[ $? == 0 ]] || error "concurrent write on $file1 failed"
11650         [[ $rc == 0 ]] || error "swap of $file1 and $file2 failed"
11651
11652         # how many bytes copied before swapping layout
11653         local copied=$(stat -c %s $file2)
11654         local remaining=$(stat -c %s $ref1)
11655         remaining=$((remaining - copied))
11656         echo "Copied $copied bytes before swapping layout..."
11657
11658         cmp -n $copied $file1 $ref2 | grep differ &&
11659                 error "Content mismatch [0, $copied) of ref2 and file1"
11660         cmp -n $copied $file2 $ref1 ||
11661                 error "Content mismatch [0, $copied) of ref1 and file2"
11662         cmp -i $copied:$copied -n $remaining $file1 $ref1 ||
11663                 error "Content mismatch [$copied, EOF) of ref1 and file1"
11664
11665         # clean up
11666         rm -f $ref1 $ref2 $file1 $file2
11667 }
11668 run_test 184c "Concurrent write and layout swap"
11669
11670 test_184d() {
11671         check_swap_layouts_support && return 0
11672         [ -z "$(which getfattr 2>/dev/null)" ] &&
11673                 skip "no getfattr command" && return 0
11674
11675         local file1=$DIR/$tdir/$tfile-1
11676         local file2=$DIR/$tdir/$tfile-2
11677         local file3=$DIR/$tdir/$tfile-3
11678         local lovea1
11679         local lovea2
11680
11681         mkdir -p $DIR/$tdir
11682         touch $file1 || error "create $file1 failed"
11683         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file2 ||
11684                 error "create $file2 failed"
11685         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file3 ||
11686                 error "create $file3 failed"
11687         lovea1=$($LFS getstripe $file1 | sed 1d)
11688
11689         $LFS swap_layouts $file2 $file3 ||
11690                 error "swap $file2 $file3 layouts failed"
11691         $LFS swap_layouts $file1 $file2 ||
11692                 error "swap $file1 $file2 layouts failed"
11693
11694         lovea2=$($LFS getstripe $file2 | sed 1d)
11695         [ "$lovea1" == "$lovea2" ] || error "lovea $lovea1 != $lovea2"
11696
11697         lovea1=$(getfattr -n trusted.lov $file1 | grep ^trusted)
11698         [[ -z "$lovea1" ]] || error "$file1 shouldn't have lovea"
11699 }
11700 run_test 184d "allow stripeless layouts swap"
11701
11702 test_184e() {
11703         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.94) ]] ||
11704                 { skip "Need MDS version at least 2.6.94"; return 0; }
11705         check_swap_layouts_support && return 0
11706         [ -z "$(which getfattr 2>/dev/null)" ] &&
11707                 skip "no getfattr command" && return 0
11708
11709         local file1=$DIR/$tdir/$tfile-1
11710         local file2=$DIR/$tdir/$tfile-2
11711         local file3=$DIR/$tdir/$tfile-3
11712         local lovea
11713
11714         mkdir -p $DIR/$tdir
11715         touch $file1 || error "create $file1 failed"
11716         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file2 ||
11717                 error "create $file2 failed"
11718         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file3 ||
11719                 error "create $file3 failed"
11720
11721         $LFS swap_layouts $file1 $file2 ||
11722                 error "swap $file1 $file2 layouts failed"
11723
11724         lovea=$(getfattr -n trusted.lov $file1 | grep ^trusted)
11725         [[ -z "$lovea" ]] || error "$file1 shouldn't have lovea"
11726
11727         echo 123 > $file1 || error "Should be able to write into $file1"
11728
11729         $LFS swap_layouts $file1 $file3 ||
11730                 error "swap $file1 $file3 layouts failed"
11731
11732         echo 123 > $file1 || error "Should be able to write into $file1"
11733
11734         rm -rf $file1 $file2 $file3
11735 }
11736 run_test 184e "Recreate layout after stripeless layout swaps"
11737
11738 test_185() { # LU-2441
11739         # LU-3553 - no volatile file support in old servers
11740         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.60) ]] ||
11741                 { skip "Need MDS version at least 2.3.60"; return 0; }
11742
11743         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
11744         touch $DIR/$tdir/spoo
11745         local mtime1=$(stat -c "%Y" $DIR/$tdir)
11746         local fid=$($MULTIOP $DIR/$tdir VFw4096c) ||
11747                 error "cannot create/write a volatile file"
11748         [ "$FILESET" == "" ] &&
11749         $CHECKSTAT -t file $MOUNT/.lustre/fid/$fid 2>/dev/null &&
11750                 error "FID is still valid after close"
11751
11752         multiop_bg_pause $DIR/$tdir vVw4096_c
11753         local multi_pid=$!
11754
11755         local OLD_IFS=$IFS
11756         IFS=":"
11757         local fidv=($fid)
11758         IFS=$OLD_IFS
11759         # assume that the next FID for this client is sequential, since stdout
11760         # is unfortunately eaten by multiop_bg_pause
11761         local n=$((${fidv[1]} + 1))
11762         local next_fid="${fidv[0]}:$(printf "0x%x" $n):${fidv[2]}"
11763         if [ "$FILESET" == "" ]; then
11764                 $CHECKSTAT -t file $MOUNT/.lustre/fid/$next_fid ||
11765                         error "FID is missing before close"
11766         fi
11767         kill -USR1 $multi_pid
11768         # 1 second delay, so if mtime change we will see it
11769         sleep 1
11770         local mtime2=$(stat -c "%Y" $DIR/$tdir)
11771         [[ $mtime1 == $mtime2 ]] || error "mtime has changed"
11772 }
11773 run_test 185 "Volatile file support"
11774
11775 test_187a() {
11776         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11777         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.0) ] &&
11778                 skip "Need MDS version at least 2.3.0" && return
11779
11780         local dir0=$DIR/$tdir/$testnum
11781         mkdir -p $dir0 || error "creating dir $dir0"
11782
11783         local file=$dir0/file1
11784         dd if=/dev/urandom of=$file count=10 bs=1M conv=fsync
11785         local dv1=$($LFS data_version $file)
11786         dd if=/dev/urandom of=$file seek=10 count=1 bs=1M conv=fsync
11787         local dv2=$($LFS data_version $file)
11788         [[ $dv1 != $dv2 ]] ||
11789                 error "data version did not change on write $dv1 == $dv2"
11790
11791         # clean up
11792         rm -f $file1
11793 }
11794 run_test 187a "Test data version change"
11795
11796 test_187b() {
11797         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11798         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.0) ] &&
11799                 skip "Need MDS version at least 2.3.0" && return
11800
11801         local dir0=$DIR/$tdir/$testnum
11802         mkdir -p $dir0 || error "creating dir $dir0"
11803
11804         declare -a DV=$($MULTIOP $dir0 Vw1000xYw1000xY | cut -f3 -d" ")
11805         [[ ${DV[0]} != ${DV[1]} ]] ||
11806                 error "data version did not change on write"\
11807                       " ${DV[0]} == ${DV[1]}"
11808
11809         # clean up
11810         rm -f $file1
11811 }
11812 run_test 187b "Test data version change on volatile file"
11813
11814 test_200() {
11815         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11816         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
11817         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
11818
11819         local POOL=${POOL:-cea1}
11820         local POOL_ROOT=${POOL_ROOT:-$DIR/d200.pools}
11821         local POOL_DIR_NAME=${POOL_DIR_NAME:-dir_tst}
11822         # Pool OST targets
11823         local first_ost=0
11824         local last_ost=$(($OSTCOUNT - 1))
11825         local ost_step=2
11826         local ost_list=$(seq $first_ost $ost_step $last_ost)
11827         local ost_range="$first_ost $last_ost $ost_step"
11828         local test_path=$POOL_ROOT/$POOL_DIR_NAME
11829         local file_dir=$POOL_ROOT/file_tst
11830         local subdir=$test_path/subdir
11831
11832         local rc=0
11833         while : ; do
11834                 # former test_200a test_200b
11835                 pool_add $POOL                          || { rc=$? ; break; }
11836                 pool_add_targets  $POOL $ost_range      || { rc=$? ; break; }
11837                 # former test_200c test_200d
11838                 mkdir -p $test_path
11839                 pool_set_dir      $POOL $test_path      || { rc=$? ; break; }
11840                 pool_check_dir    $POOL $test_path      || { rc=$? ; break; }
11841                 mkdir -p $subdir
11842                 pool_check_dir    $POOL $subdir         || { rc=$? ; break; }
11843                 pool_dir_rel_path $POOL $POOL_DIR_NAME $POOL_ROOT \
11844                                                         || { rc=$? ; break; }
11845                 # former test_200e test_200f
11846                 local files=$((OSTCOUNT*3))
11847                 pool_alloc_files  $POOL $test_path $files "$ost_list" \
11848                                                         || { rc=$? ; break; }
11849                 pool_create_files $POOL $file_dir $files "$ost_list" \
11850                                                         || { rc=$? ; break; }
11851                 # former test_200g test_200h
11852                 pool_lfs_df $POOL                       || { rc=$? ; break; }
11853                 pool_file_rel_path $POOL $test_path     || { rc=$? ; break; }
11854
11855                 # former test_201a test_201b test_201c
11856                 pool_remove_first_target $POOL          || { rc=$? ; break; }
11857
11858                 local f=$test_path/$tfile
11859                 pool_remove_all_targets $POOL $f        || { rc=$? ; break; }
11860                 pool_remove $POOL $f                    || { rc=$? ; break; }
11861                 break
11862         done
11863
11864         cleanup_pools
11865         return $rc
11866 }
11867 run_test 200 "OST pools"
11868
11869 # usage: default_attr <count | size | offset>
11870 default_attr() {
11871         $LCTL get_param -n lov.$FSNAME-clilov-\*.stripe${1}
11872 }
11873
11874 # usage: check_default_stripe_attr
11875 check_default_stripe_attr() {
11876         ACTUAL=$($GETSTRIPE $* $DIR/$tdir)
11877         case $1 in
11878         --stripe-count|--count)
11879                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr count);;
11880         --stripe-size|--size)
11881                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr size);;
11882         --stripe-index|--index)
11883                 EXPECTED=-1;;
11884         *)
11885                 error "unknown getstripe attr '$1'"
11886         esac
11887
11888         [ $ACTUAL != $EXPECTED ] &&
11889                 error "$DIR/$tdir has $1 '$ACTUAL', not '$EXPECTED'"
11890 }
11891
11892 test_204a() {
11893         test_mkdir -p $DIR/$tdir
11894         $SETSTRIPE --stripe-count 0 --stripe-size 0 --stripe-index -1 $DIR/$tdir
11895
11896         check_default_stripe_attr --stripe-count
11897         check_default_stripe_attr --stripe-size
11898         check_default_stripe_attr --stripe-index
11899
11900         return 0
11901 }
11902 run_test 204a "Print default stripe attributes ================="
11903
11904 test_204b() {
11905         test_mkdir -p $DIR/$tdir
11906         $SETSTRIPE --stripe-count 1 $DIR/$tdir
11907
11908         check_default_stripe_attr --stripe-size
11909         check_default_stripe_attr --stripe-index
11910
11911         return 0
11912 }
11913 run_test 204b "Print default stripe size and offset  ==========="
11914
11915 test_204c() {
11916         test_mkdir -p $DIR/$tdir
11917         $SETSTRIPE --stripe-size 65536 $DIR/$tdir
11918
11919         check_default_stripe_attr --stripe-count
11920         check_default_stripe_attr --stripe-index
11921
11922         return 0
11923 }
11924 run_test 204c "Print default stripe count and offset ==========="
11925
11926 test_204d() {
11927         test_mkdir -p $DIR/$tdir
11928         $SETSTRIPE --stripe-index 0 $DIR/$tdir
11929
11930         check_default_stripe_attr --stripe-count
11931         check_default_stripe_attr --stripe-size
11932
11933         return 0
11934 }
11935 run_test 204d "Print default stripe count and size ============="
11936
11937 test_204e() {
11938         test_mkdir -p $DIR/$tdir
11939         $SETSTRIPE -d $DIR/$tdir
11940
11941         check_default_stripe_attr --stripe-count --raw
11942         check_default_stripe_attr --stripe-size --raw
11943         check_default_stripe_attr --stripe-index --raw
11944
11945         return 0
11946 }
11947 run_test 204e "Print raw stripe attributes ================="
11948
11949 test_204f() {
11950         test_mkdir -p $DIR/$tdir
11951         $SETSTRIPE --stripe-count 1 $DIR/$tdir
11952
11953         check_default_stripe_attr --stripe-size --raw
11954         check_default_stripe_attr --stripe-index --raw
11955
11956         return 0
11957 }
11958 run_test 204f "Print raw stripe size and offset  ==========="
11959
11960 test_204g() {
11961         test_mkdir -p $DIR/$tdir
11962         $SETSTRIPE --stripe-size 65536 $DIR/$tdir
11963
11964         check_default_stripe_attr --stripe-count --raw
11965         check_default_stripe_attr --stripe-index --raw
11966
11967         return 0
11968 }
11969 run_test 204g "Print raw stripe count and offset ==========="
11970
11971 test_204h() {
11972         test_mkdir -p $DIR/$tdir
11973         $SETSTRIPE --stripe-index 0 $DIR/$tdir
11974
11975         check_default_stripe_attr --stripe-count --raw
11976         check_default_stripe_attr --stripe-size --raw
11977
11978         return 0
11979 }
11980 run_test 204h "Print raw stripe count and size ============="
11981
11982 # Figure out which job scheduler is being used, if any,
11983 # or use a fake one
11984 if [ -n "$SLURM_JOB_ID" ]; then # SLURM
11985         JOBENV=SLURM_JOB_ID
11986 elif [ -n "$LSB_JOBID" ]; then # Load Sharing Facility
11987         JOBENV=LSB_JOBID
11988 elif [ -n "$PBS_JOBID" ]; then # PBS/Maui/Moab
11989         JOBENV=PBS_JOBID
11990 elif [ -n "$LOADL_STEPID" ]; then # LoadLeveller
11991         JOBENV=LOADL_STEP_ID
11992 elif [ -n "$JOB_ID" ]; then # Sun Grid Engine
11993         JOBENV=JOB_ID
11994 else
11995         $LCTL list_param jobid_name > /dev/null 2>&1
11996         if [ $? -eq 0 ]; then
11997                 JOBENV=nodelocal
11998         else
11999                 JOBENV=FAKE_JOBID
12000         fi
12001 fi
12002
12003 verify_jobstats() {
12004         local cmd=($1)
12005         shift
12006         local facets="$@"
12007
12008 # we don't really need to clear the stats for this test to work, since each
12009 # command has a unique jobid, but it makes debugging easier if needed.
12010 #       for facet in $facets; do
12011 #               local dev=$(convert_facet2label $facet)
12012 #               # clear old jobstats
12013 #               do_facet $facet lctl set_param *.$dev.job_stats="clear"
12014 #       done
12015
12016         # use a new JobID for each test, or we might see an old one
12017         [ "$JOBENV" = "FAKE_JOBID" ] &&
12018                 FAKE_JOBID=id.$testnum.$(basename ${cmd[0]}).$RANDOM
12019
12020         JOBVAL=${!JOBENV}
12021
12022         [ "$JOBENV" = "nodelocal" ] && {
12023                 FAKE_JOBID=id.$testnum.$(basename ${cmd[0]}).$RANDOM
12024                 $LCTL set_param jobid_name=$FAKE_JOBID
12025                 JOBVAL=$FAKE_JOBID
12026         }
12027
12028         log "Test: ${cmd[*]}"
12029         log "Using JobID environment variable $JOBENV=$JOBVAL"
12030
12031         if [ $JOBENV = "FAKE_JOBID" ]; then
12032                 FAKE_JOBID=$JOBVAL ${cmd[*]}
12033         else
12034                 ${cmd[*]}
12035         fi
12036
12037         # all files are created on OST0000
12038         for facet in $facets; do
12039                 local stats="*.$(convert_facet2label $facet).job_stats"
12040                 if [ $(do_facet $facet lctl get_param $stats |
12041                        grep -c $JOBVAL) -ne 1 ]; then
12042                         do_facet $facet lctl get_param $stats
12043                         error "No jobstats for $JOBVAL found on $facet::$stats"
12044                 fi
12045         done
12046 }
12047
12048 jobstats_set() {
12049         trap 0
12050         NEW_JOBENV=${1:-$OLD_JOBENV}
12051         do_facet mgs $LCTL conf_param $FSNAME.sys.jobid_var=$NEW_JOBENV
12052         wait_update $HOSTNAME "$LCTL get_param -n jobid_var" $NEW_JOBENV
12053 }
12054
12055 cleanup_205() {
12056         trap 0
12057         do_facet $SINGLEMDS \
12058                 $LCTL set_param mdt.*.job_cleanup_interval=$OLD_INTERVAL
12059         [ $OLD_JOBENV != $JOBENV ] && jobstats_set $OLD_JOBENV
12060         cleanup_changelog
12061 }
12062
12063 test_205() { # Job stats
12064         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12065         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
12066         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12067         remote_ost_nodsh && skip "remote OST with nodsh" && return
12068
12069         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep jobstats)" ] &&
12070                 skip "Server doesn't support jobstats" && return 0
12071         [[ $JOBID_VAR = disable ]] && skip "jobstats is disabled" && return
12072
12073         OLD_JOBENV=$($LCTL get_param -n jobid_var)
12074         if [ $OLD_JOBENV != $JOBENV ]; then
12075                 jobstats_set $JOBENV
12076                 trap cleanup_205 EXIT
12077         fi
12078
12079         CL_USER=$(do_facet $SINGLEMDS lctl --device $MDT0 changelog_register -n)
12080         echo "Registered as changelog user $CL_USER"
12081
12082         OLD_INTERVAL=$(do_facet $SINGLEMDS \
12083                        lctl get_param -n mdt.*.job_cleanup_interval)
12084         local interval_new=5
12085         do_facet $SINGLEMDS \
12086                 $LCTL set_param mdt.*.job_cleanup_interval=$interval_new
12087         local start=$SECONDS
12088
12089         local cmd
12090         # mkdir
12091         cmd="mkdir $DIR/$tdir"
12092         verify_jobstats "$cmd" "$SINGLEMDS"
12093         # rmdir
12094         cmd="rmdir $DIR/$tdir"
12095         verify_jobstats "$cmd" "$SINGLEMDS"
12096         # mkdir on secondary MDT
12097         if [ $MDSCOUNT -gt 1 ]; then
12098                 cmd="lfs mkdir -i 1 $DIR/$tdir.remote"
12099                 verify_jobstats "$cmd" "mds2"
12100         fi
12101         # mknod
12102         cmd="mknod $DIR/$tfile c 1 3"
12103         verify_jobstats "$cmd" "$SINGLEMDS"
12104         # unlink
12105         cmd="rm -f $DIR/$tfile"
12106         verify_jobstats "$cmd" "$SINGLEMDS"
12107         # create all files on OST0000 so verify_jobstats can find OST stats
12108         # open & close
12109         cmd="$SETSTRIPE -i 0 -c 1 $DIR/$tfile"
12110         verify_jobstats "$cmd" "$SINGLEMDS"
12111         # setattr
12112         cmd="touch $DIR/$tfile"
12113         verify_jobstats "$cmd" "$SINGLEMDS ost1"
12114         # write
12115         cmd="dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 oflag=sync"
12116         verify_jobstats "$cmd" "ost1"
12117         # read
12118         cancel_lru_locks osc
12119         cmd="dd if=$DIR/$tfile of=/dev/null bs=1M count=1 iflag=direct"
12120         verify_jobstats "$cmd" "ost1"
12121         # truncate
12122         cmd="$TRUNCATE $DIR/$tfile 0"
12123         verify_jobstats "$cmd" "$SINGLEMDS ost1"
12124         # rename
12125         cmd="mv -f $DIR/$tfile $DIR/$tdir.rename"
12126         verify_jobstats "$cmd" "$SINGLEMDS"
12127         # jobstats expiry - sleep until old stats should be expired
12128         local left=$((interval_new + 2 - (SECONDS - start)))
12129         [ $left -ge 0 ] && echo "sleep $left for expiry" && sleep $((left + 1))
12130         cmd="mkdir $DIR/$tdir.expire"
12131         verify_jobstats "$cmd" "$SINGLEMDS"
12132         [ $(do_facet $SINGLEMDS lctl get_param *.*.job_stats |
12133             grep -c "job_id.*mkdir") -gt 1 ] && error "old jobstats not expired"
12134
12135         # Ensure that jobid are present in changelog (if supported by MDS)
12136         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.52) ]
12137         then
12138                 $LFS changelog $MDT0 | tail -9
12139                 jobids=$($LFS changelog $MDT0 | tail -9 | grep -c "j=")
12140                 [ $jobids -eq 9 ] ||
12141                         error "Wrong changelog jobid count $jobids != 9"
12142
12143                 # LU-5862
12144                 JOBENV="disable"
12145                 jobstats_set $JOBENV
12146                 touch $DIR/$tfile
12147                 $LFS changelog $MDT0 | tail -1
12148                 jobids=$($LFS changelog $MDT0 | tail -1 | grep -c "j=")
12149                 [ $jobids -eq 0 ] ||
12150                         error "Unexpected jobids when jobid_var=$JOBENV"
12151         fi
12152
12153         cleanup_205
12154 }
12155 run_test 205 "Verify job stats"
12156
12157 # LU-1480, LU-1773 and LU-1657
12158 test_206() {
12159         mkdir -p $DIR/$tdir
12160         $SETSTRIPE -c -1 $DIR/$tdir
12161 #define OBD_FAIL_LOV_INIT 0x1403
12162         $LCTL set_param fail_loc=0xa0001403
12163         $LCTL set_param fail_val=1
12164         touch $DIR/$tdir/$tfile || true
12165 }
12166 run_test 206 "fail lov_init_raid0() doesn't lbug"
12167
12168 test_207a() {
12169         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
12170         local fsz=`stat -c %s $DIR/$tfile`
12171         cancel_lru_locks mdc
12172
12173         # do not return layout in getattr intent
12174 #define OBD_FAIL_MDS_NO_LL_GETATTR 0x170
12175         $LCTL set_param fail_loc=0x170
12176         local sz=`stat -c %s $DIR/$tfile`
12177
12178         [ $fsz -eq $sz ] || error "file size expected $fsz, actual $sz"
12179
12180         rm -rf $DIR/$tfile
12181 }
12182 run_test 207a "can refresh layout at glimpse"
12183
12184 test_207b() {
12185         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
12186         local cksum=`md5sum $DIR/$tfile`
12187         local fsz=`stat -c %s $DIR/$tfile`
12188         cancel_lru_locks mdc
12189         cancel_lru_locks osc
12190
12191         # do not return layout in getattr intent
12192 #define OBD_FAIL_MDS_NO_LL_OPEN 0x171
12193         $LCTL set_param fail_loc=0x171
12194
12195         # it will refresh layout after the file is opened but before read issues
12196         echo checksum is "$cksum"
12197         echo "$cksum" |md5sum -c --quiet || error "file differs"
12198
12199         rm -rf $DIR/$tfile
12200 }
12201 run_test 207b "can refresh layout at open"
12202
12203 test_208() {
12204         # FIXME: in this test suite, only RD lease is used. This is okay
12205         # for now as only exclusive open is supported. After generic lease
12206         # is done, this test suite should be revised. - Jinshan
12207
12208         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12209         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.4.52) ]] ||
12210                 { skip "Need MDS version at least 2.4.52"; return 0; }
12211
12212         echo "==== test 1: verify get lease work"
12213         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:eRE+eU || error "get lease error"
12214
12215         echo "==== test 2: verify lease can be broken by upcoming open"
12216         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E-eUc &
12217         local PID=$!
12218         sleep 1
12219
12220         $MULTIOP $DIR/$tfile oO_RDONLY:c
12221         kill -USR1 $PID && wait $PID || error "break lease error"
12222
12223         echo "==== test 3: verify lease can't be granted if an open already exists"
12224         $MULTIOP $DIR/$tfile oO_RDONLY:_c &
12225         local PID=$!
12226         sleep 1
12227
12228         $MULTIOP $DIR/$tfile oO_RDONLY:eReUc && error "apply lease should fail"
12229         kill -USR1 $PID && wait $PID || error "open file error"
12230
12231         echo "==== test 4: lease can sustain over recovery"
12232         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E+eUc &
12233         PID=$!
12234         sleep 1
12235
12236         fail mds1
12237
12238         kill -USR1 $PID && wait $PID || error "lease broken over recovery"
12239
12240         echo "==== test 5: lease broken can't be regained by replay"
12241         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E-eUc &
12242         PID=$!
12243         sleep 1
12244
12245         # open file to break lease and then recovery
12246         $MULTIOP $DIR/$tfile oO_RDWR:c || error "open file error"
12247         fail mds1
12248
12249         kill -USR1 $PID && wait $PID || error "lease not broken over recovery"
12250
12251         rm -f $DIR/$tfile
12252 }
12253 run_test 208 "Exclusive open"
12254
12255 test_209() {
12256         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep disp_stripe)" ] &&
12257                 skip_env "must have disp_stripe" && return
12258
12259         touch $DIR/$tfile
12260         sync; sleep 5; sync;
12261
12262         echo 3 > /proc/sys/vm/drop_caches
12263         req_before=$(awk '/ptlrpc_cache / { print $2 }' /proc/slabinfo)
12264
12265         # open/close 500 times
12266         for i in $(seq 500); do
12267                 cat $DIR/$tfile
12268         done
12269
12270         echo 3 > /proc/sys/vm/drop_caches
12271         req_after=$(awk '/ptlrpc_cache / { print $2 }' /proc/slabinfo)
12272
12273         echo "before: $req_before, after: $req_after"
12274         [ $((req_after - req_before)) -ge 300 ] &&
12275                 error "open/close requests are not freed"
12276         return 0
12277 }
12278 run_test 209 "read-only open/close requests should be freed promptly"
12279
12280 test_212() {
12281         size=`date +%s`
12282         size=$((size % 8192 + 1))
12283         dd if=/dev/urandom of=$DIR/f212 bs=1k count=$size
12284         sendfile $DIR/f212 $DIR/f212.xyz || error "sendfile wrong"
12285         rm -f $DIR/f212 $DIR/f212.xyz
12286 }
12287 run_test 212 "Sendfile test ============================================"
12288
12289 test_213() {
12290         dd if=/dev/zero of=$DIR/$tfile bs=4k count=4
12291         cancel_lru_locks osc
12292         lctl set_param fail_loc=0x8000040f
12293         # generate a read lock
12294         cat $DIR/$tfile > /dev/null
12295         # write to the file, it will try to cancel the above read lock.
12296         cat /etc/hosts >> $DIR/$tfile
12297 }
12298 run_test 213 "OSC lock completion and cancel race don't crash - bug 18829"
12299
12300 test_214() { # for bug 20133
12301         mkdir -p $DIR/$tdir/d214c || error "mkdir $DIR/$tdir/d214c failed"
12302         for (( i=0; i < 340; i++ )) ; do
12303                 touch $DIR/$tdir/d214c/a$i
12304         done
12305
12306         ls -l $DIR/$tdir || error "ls -l $DIR/d214p failed"
12307         mv $DIR/$tdir/d214c $DIR/ || error "mv $DIR/d214p/d214c $DIR/ failed"
12308         ls $DIR/d214c || error "ls $DIR/d214c failed"
12309         rm -rf $DIR/$tdir || error "rm -rf $DIR/d214* failed"
12310         rm -rf $DIR/d214* || error "rm -rf $DIR/d214* failed"
12311 }
12312 run_test 214 "hash-indexed directory test - bug 20133"
12313
12314 # having "abc" as 1st arg, creates $TMP/lnet_abc.out and $TMP/lnet_abc.sys
12315 create_lnet_proc_files() {
12316         lctl get_param -n $1 >$TMP/lnet_$1.out || error "cannot read lnet.$1"
12317         sysctl lnet.$1 >$TMP/lnet_$1.sys_tmp || error "cannot read lnet.$1"
12318
12319         sed "s/^lnet.$1\ =\ //g" "$TMP/lnet_$1.sys_tmp" >$TMP/lnet_$1.sys
12320         rm -f "$TMP/lnet_$1.sys_tmp"
12321 }
12322
12323 # counterpart of create_lnet_proc_files
12324 remove_lnet_proc_files() {
12325         rm -f $TMP/lnet_$1.out $TMP/lnet_$1.sys
12326 }
12327
12328 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
12329 # 3rd arg as regexp for body
12330 check_lnet_proc_stats() {
12331         local l=$(cat "$TMP/lnet_$1" |wc -l)
12332         [ $l = 1 ] || (cat "$TMP/lnet_$1" && error "$2 is not of 1 line: $l")
12333
12334         grep -E "$3" "$TMP/lnet_$1" || (cat "$TMP/lnet_$1" && error "$2 misformatted")
12335 }
12336
12337 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
12338 # 3rd arg as regexp for body, 4th arg as regexp for 1st line, 5th arg is
12339 # optional and can be regexp for 2nd line (lnet.routes case)
12340 check_lnet_proc_entry() {
12341         local blp=2          # blp stands for 'position of 1st line of body'
12342         [ -z "$5" ] || blp=3 # lnet.routes case
12343
12344         local l=$(cat "$TMP/lnet_$1" |wc -l)
12345         # subtracting one from $blp because the body can be empty
12346         [ "$l" -ge "$(($blp - 1))" ] || (cat "$TMP/lnet_$1" && error "$2 is too short: $l")
12347
12348         sed -n '1 p' "$TMP/lnet_$1" |grep -E "$4" >/dev/null ||
12349                 (cat "$TMP/lnet_$1" && error "1st line of $2 misformatted")
12350
12351         [ "$5" = "" ] || sed -n '2 p' "$TMP/lnet_$1" |grep -E "$5" >/dev/null ||
12352                 (cat "$TMP/lnet_$1" && error "2nd line of $2 misformatted")
12353
12354         # bail out if any unexpected line happened
12355         sed -n "$blp p" "$TMP/lnet_$1" | grep -Ev "$3"
12356         [ "$?" != 0 ] || error "$2 misformatted"
12357 }
12358
12359 test_215() { # for bugs 18102, 21079, 21517
12360         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12361         local N='(0|[1-9][0-9]*)'       # non-negative numeric
12362         local P='[1-9][0-9]*'           # positive numeric
12363         local I='(0|-?[1-9][0-9]*|NA)'  # any numeric (0 | >0 | <0) or NA if no value
12364         local NET='[a-z][a-z0-9]*'      # LNET net like o2ib2
12365         local ADDR='[0-9.]+'            # LNET addr like 10.0.0.1
12366         local NID="$ADDR@$NET"          # LNET nid like 10.0.0.1@o2ib2
12367
12368         local L1 # regexp for 1st line
12369         local L2 # regexp for 2nd line (optional)
12370         local BR # regexp for the rest (body)
12371
12372         # lnet.stats should look as 11 space-separated non-negative numerics
12373         BR="^$N $N $N $N $N $N $N $N $N $N $N$"
12374         create_lnet_proc_files "stats"
12375         check_lnet_proc_stats "stats.sys" "lnet.stats" "$BR"
12376         remove_lnet_proc_files "stats"
12377
12378         # lnet.routes should look like this:
12379         # Routing disabled/enabled
12380         # net hops priority state router
12381         # where net is a string like tcp0, hops > 0, priority >= 0,
12382         # state is up/down,
12383         # router is a string like 192.168.1.1@tcp2
12384         L1="^Routing (disabled|enabled)$"
12385         L2="^net +hops +priority +state +router$"
12386         BR="^$NET +$N +(0|1) +(up|down) +$NID$"
12387         create_lnet_proc_files "routes"
12388         check_lnet_proc_entry "routes.sys" "lnet.routes" "$BR" "$L1" "$L2"
12389         remove_lnet_proc_files "routes"
12390
12391         # lnet.routers should look like this:
12392         # ref rtr_ref alive_cnt state last_ping ping_sent deadline down_ni router
12393         # where ref > 0, rtr_ref > 0, alive_cnt >= 0, state is up/down,
12394         # last_ping >= 0, ping_sent is boolean (0/1), deadline and down_ni are
12395         # numeric (0 or >0 or <0), router is a string like 192.168.1.1@tcp2
12396         L1="^ref +rtr_ref +alive_cnt +state +last_ping +ping_sent +deadline +down_ni +router$"
12397         BR="^$P +$P +$N +(up|down) +$N +(0|1) +$I +$I +$NID$"
12398         create_lnet_proc_files "routers"
12399         check_lnet_proc_entry "routers.sys" "lnet.routers" "$BR" "$L1"
12400         remove_lnet_proc_files "routers"
12401
12402         # lnet.peers should look like this:
12403         # nid refs state last max rtr min tx min queue
12404         # where nid is a string like 192.168.1.1@tcp2, refs > 0,
12405         # state is up/down/NA, max >= 0. last, rtr, min, tx, min are
12406         # numeric (0 or >0 or <0), queue >= 0.
12407         L1="^nid +refs +state +last +max +rtr +min +tx +min +queue$"
12408         BR="^$NID +$P +(up|down|NA) +$I +$N +$I +$I +$I +$I +$N$"
12409         create_lnet_proc_files "peers"
12410         check_lnet_proc_entry "peers.sys" "lnet.peers" "$BR" "$L1"
12411         remove_lnet_proc_files "peers"
12412
12413         # lnet.buffers  should look like this:
12414         # pages count credits min
12415         # where pages >=0, count >=0, credits and min are numeric (0 or >0 or <0)
12416         L1="^pages +count +credits +min$"
12417         BR="^ +$N +$N +$I +$I$"
12418         create_lnet_proc_files "buffers"
12419         check_lnet_proc_entry "buffers.sys" "lnet.buffers" "$BR" "$L1"
12420         remove_lnet_proc_files "buffers"
12421
12422         # lnet.nis should look like this:
12423         # nid status alive refs peer rtr max tx min
12424         # where nid is a string like 192.168.1.1@tcp2, status is up/down,
12425         # alive is numeric (0 or >0 or <0), refs >= 0, peer >= 0,
12426         # rtr >= 0, max >=0, tx and min are numeric (0 or >0 or <0).
12427         L1="^nid +status +alive +refs +peer +rtr +max +tx +min$"
12428         BR="^$NID +(up|down) +$I +$N +$N +$N +$N +$I +$I$"
12429         create_lnet_proc_files "nis"
12430         check_lnet_proc_entry "nis.sys" "lnet.nis" "$BR" "$L1"
12431         remove_lnet_proc_files "nis"
12432
12433         # can we successfully write to lnet.stats?
12434         lctl set_param -n stats=0 || error "cannot write to lnet.stats"
12435         sysctl -w lnet.stats=0 || error "cannot write to lnet.stats"
12436 }
12437 run_test 215 "lnet exists and has proper content - bugs 18102, 21079, 21517"
12438
12439 test_216() { # bug 20317
12440         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12441         remote_ost_nodsh && skip "remote OST with nodsh" && return
12442
12443         local node
12444         local facets=$(get_facets OST)
12445         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
12446
12447         save_lustre_params client "osc.*.contention_seconds" > $p
12448         save_lustre_params $facets \
12449                 "ldlm.namespaces.filter-*.max_nolock_bytes" >> $p
12450         save_lustre_params $facets \
12451                 "ldlm.namespaces.filter-*.contended_locks" >> $p
12452         save_lustre_params $facets \
12453                 "ldlm.namespaces.filter-*.contention_seconds" >> $p
12454         clear_osc_stats
12455
12456         # agressive lockless i/o settings
12457         for node in $(osts_nodes); do
12458                 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'
12459         done
12460         lctl set_param -n osc.*.contention_seconds 60
12461
12462         $DIRECTIO write $DIR/$tfile 0 10 4096
12463         $CHECKSTAT -s 40960 $DIR/$tfile
12464
12465         # disable lockless i/o
12466         for node in $(osts_nodes); do
12467                 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'
12468         done
12469         lctl set_param -n osc.*.contention_seconds 0
12470         clear_osc_stats
12471
12472         dd if=/dev/zero of=$DIR/$tfile count=0
12473         $CHECKSTAT -s 0 $DIR/$tfile
12474
12475         restore_lustre_params <$p
12476         rm -f $p
12477         rm $DIR/$tfile
12478 }
12479 run_test 216 "check lockless direct write works and updates file size and kms correctly"
12480
12481 test_217() { # bug 22430
12482         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12483         local node
12484         local nid
12485
12486         for node in $(nodes_list); do
12487                 nid=$(host_nids_address $node $NETTYPE)
12488                 if [[ $nid = *-* ]] ; then
12489                         echo "lctl ping $nid@$NETTYPE"
12490                         lctl ping $nid@$NETTYPE
12491                 else
12492                         echo "skipping $node (no hyphen detected)"
12493                 fi
12494         done
12495 }
12496 run_test 217 "check lctl ping for hostnames with hiphen ('-')"
12497
12498 test_218() {
12499        # do directio so as not to populate the page cache
12500        log "creating a 10 Mb file"
12501        $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
12502        log "starting reads"
12503        dd if=$DIR/$tfile of=/dev/null bs=4096 &
12504        log "truncating the file"
12505        $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
12506        log "killing dd"
12507        kill %+ || true # reads might have finished
12508        echo "wait until dd is finished"
12509        wait
12510        log "removing the temporary file"
12511        rm -rf $DIR/$tfile || error "tmp file removal failed"
12512 }
12513 run_test 218 "parallel read and truncate should not deadlock ======================="
12514
12515 test_219() {
12516         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12517         # write one partial page
12518         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1
12519         # set no grant so vvp_io_commit_write will do sync write
12520         $LCTL set_param fail_loc=0x411
12521         # write a full page at the end of file
12522         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=1 conv=notrunc
12523
12524         $LCTL set_param fail_loc=0
12525         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=3
12526         $LCTL set_param fail_loc=0x411
12527         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1 seek=2 conv=notrunc
12528
12529         # LU-4201
12530         dd if=/dev/zero of=$DIR/$tfile-2 bs=1024 count=1
12531         $CHECKSTAT -s 1024 $DIR/$tfile-2 || error "checkstat wrong size"
12532 }
12533 run_test 219 "LU-394: Write partial won't cause uncontiguous pages vec at LND"
12534
12535 test_220() { #LU-325
12536         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12537         remote_ost_nodsh && skip "remote OST with nodsh" && return
12538         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12539         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
12540         local OSTIDX=0
12541
12542         # create on MDT0000 so the last_id and next_id are correct
12543         mkdir $DIR/$tdir
12544         local OST=$($LFS df $DIR | awk '/OST:'$OSTIDX'/ { print $1 }')
12545         OST=${OST%_UUID}
12546
12547         # on the mdt's osc
12548         local mdtosc_proc1=$(get_mdtosc_proc_path $SINGLEMDS $OST)
12549         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
12550                         osc.$mdtosc_proc1.prealloc_last_id)
12551         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
12552                         osc.$mdtosc_proc1.prealloc_next_id)
12553
12554         $LFS df -i
12555
12556         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=-1
12557         #define OBD_FAIL_OST_ENOINO              0x229
12558         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0x229
12559         do_facet mgs $LCTL pool_new $FSNAME.$TESTNAME || return 1
12560         do_facet mgs $LCTL pool_add $FSNAME.$TESTNAME $OST || return 2
12561
12562         $SETSTRIPE $DIR/$tdir -i $OSTIDX -c 1 -p $FSNAME.$TESTNAME
12563
12564         MDSOBJS=$((last_id - next_id))
12565         echo "preallocated objects on MDS is $MDSOBJS" "($last_id - $next_id)"
12566
12567         blocks=$($LFS df $MOUNT | awk '($1 == '$OSTIDX') { print $4 }')
12568         echo "OST still has $count kbytes free"
12569
12570         echo "create $MDSOBJS files @next_id..."
12571         createmany -o $DIR/$tdir/f $MDSOBJS || return 3
12572
12573         local last_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
12574                         osc.$mdtosc_proc1.prealloc_last_id)
12575         local next_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
12576                         osc.$mdtosc_proc1.prealloc_next_id)
12577
12578         echo "after creation, last_id=$last_id2, next_id=$next_id2"
12579         $LFS df -i
12580
12581         echo "cleanup..."
12582
12583         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=0
12584         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0
12585
12586         do_facet mgs $LCTL pool_remove $FSNAME.$TESTNAME $OST || return 4
12587         do_facet mgs $LCTL pool_destroy $FSNAME.$TESTNAME || return 5
12588         echo "unlink $MDSOBJS files @$next_id..."
12589         unlinkmany $DIR/$tdir/f $MDSOBJS || return 6
12590 }
12591 run_test 220 "preallocated MDS objects still used if ENOSPC from OST"
12592
12593 test_221() {
12594         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12595         dd if=`which date` of=$MOUNT/date oflag=sync
12596         chmod +x $MOUNT/date
12597
12598         #define OBD_FAIL_LLITE_FAULT_TRUNC_RACE  0x1401
12599         $LCTL set_param fail_loc=0x80001401
12600
12601         $MOUNT/date > /dev/null
12602         rm -f $MOUNT/date
12603 }
12604 run_test 221 "make sure fault and truncate race to not cause OOM"
12605
12606 test_222a () {
12607         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12608        rm -rf $DIR/$tdir
12609        test_mkdir -p $DIR/$tdir
12610        $SETSTRIPE -c 1 -i 0 $DIR/$tdir
12611        createmany -o $DIR/$tdir/$tfile 10
12612        cancel_lru_locks mdc
12613        cancel_lru_locks osc
12614        #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
12615        $LCTL set_param fail_loc=0x31a
12616        ls -l $DIR/$tdir > /dev/null || error "AGL for ls failed"
12617        $LCTL set_param fail_loc=0
12618        rm -r $DIR/$tdir
12619 }
12620 run_test 222a "AGL for ls should not trigger CLIO lock failure ================"
12621
12622 test_222b () {
12623         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12624         rm -rf $DIR/$tdir
12625         test_mkdir -p $DIR/$tdir
12626         $SETSTRIPE -c 1 -i 0 $DIR/$tdir
12627         createmany -o $DIR/$tdir/$tfile 10
12628         cancel_lru_locks mdc
12629         cancel_lru_locks osc
12630         #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
12631         $LCTL set_param fail_loc=0x31a
12632         rm -r $DIR/$tdir || error "AGL for rmdir failed"
12633         $LCTL set_param fail_loc=0
12634 }
12635 run_test 222b "AGL for rmdir should not trigger CLIO lock failure ============="
12636
12637 test_223 () {
12638         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12639        rm -rf $DIR/$tdir
12640        test_mkdir -p $DIR/$tdir
12641        $SETSTRIPE -c 1 -i 0 $DIR/$tdir
12642        createmany -o $DIR/$tdir/$tfile 10
12643        cancel_lru_locks mdc
12644        cancel_lru_locks osc
12645        #define OBD_FAIL_LDLM_AGL_NOLOCK          0x31b
12646        $LCTL set_param fail_loc=0x31b
12647        ls -l $DIR/$tdir > /dev/null || error "reenqueue failed"
12648        $LCTL set_param fail_loc=0
12649        rm -r $DIR/$tdir
12650 }
12651 run_test 223 "osc reenqueue if without AGL lock granted ======================="
12652
12653 test_224a() { # LU-1039, MRP-303
12654         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12655         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB   0x508
12656         $LCTL set_param fail_loc=0x508
12657         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 conv=fsync
12658         $LCTL set_param fail_loc=0
12659         df $DIR
12660 }
12661 run_test 224a "Don't panic on bulk IO failure"
12662
12663 test_224b() { # LU-1039, MRP-303
12664         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12665         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
12666         cancel_lru_locks osc
12667         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB2   0x515
12668         $LCTL set_param fail_loc=0x515
12669         dd of=/dev/null if=$DIR/$tfile bs=4096 count=1
12670         $LCTL set_param fail_loc=0
12671         df $DIR
12672 }
12673 run_test 224b "Don't panic on bulk IO failure"
12674
12675 test_224c() { # LU-6441
12676         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12677         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12678
12679         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
12680         save_writethrough $p
12681         set_cache writethrough on
12682
12683         local pages_per_rpc=$($LCTL get_param \
12684                                 osc.*.max_pages_per_rpc)
12685         local at_max=$($LCTL get_param -n at_max)
12686         local timeout=$($LCTL get_param -n timeout)
12687         local test_at="$LCTL get_param -n at_max"
12688         local param_at="$FSNAME.sys.at_max"
12689         local test_timeout="$LCTL get_param -n timeout"
12690         local param_timeout="$FSNAME.sys.timeout"
12691
12692         $LCTL set_param -n osc.*.max_pages_per_rpc=1024
12693
12694         set_conf_param_and_check client "$test_at" "$param_at" 0 ||
12695                 error "conf_param at_max=0 failed"
12696         set_conf_param_and_check client "$test_timeout" "$param_timeout" 5 ||
12697                 error "conf_param timeout=5 failed"
12698
12699         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB3   0x520
12700         do_facet ost1 $LCTL set_param fail_loc=0x520
12701         $LFS setstripe -c 1 -i 0 $DIR/$tfile
12702         dd if=/dev/zero of=$DIR/$tfile bs=8MB count=1
12703         sync
12704         do_facet ost1 $LCTL set_param fail_loc=0
12705
12706         set_conf_param_and_check client "$test_at" "$param_at" $at_max ||
12707                 error "conf_param at_max=$at_max failed"
12708         set_conf_param_and_check client "$test_timeout" "$param_timeout" \
12709                 $timeout || error "conf_param timeout=$timeout failed"
12710
12711         $LCTL set_param -n $pages_per_rpc
12712         restore_lustre_params < $p
12713         rm -f $p
12714 }
12715 run_test 224c "Don't hang if one of md lost during large bulk RPC"
12716
12717 MDSSURVEY=${MDSSURVEY:-$(which mds-survey 2>/dev/null || true)}
12718 test_225a () {
12719         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12720         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12721         if [ -z ${MDSSURVEY} ]; then
12722               skip_env "mds-survey not found" && return
12723         fi
12724
12725         [ $MDSCOUNT -ge 2 ] &&
12726                 skip "skipping now for more than one MDT" && return
12727
12728        [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ] ||
12729             { skip "Need MDS version at least 2.2.51"; return; }
12730
12731        local mds=$(facet_host $SINGLEMDS)
12732        local target=$(do_nodes $mds 'lctl dl' | \
12733                       awk "{if (\$2 == \"UP\" && \$3 == \"mdt\") {print \$4}}")
12734
12735        local cmd1="file_count=1000 thrhi=4"
12736        local cmd2="dir_count=2 layer=mdd stripe_count=0"
12737        local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
12738        local cmd="$cmd1 $cmd2 $cmd3"
12739
12740        rm -f ${TMP}/mds_survey*
12741        echo + $cmd
12742        eval $cmd || error "mds-survey with zero-stripe failed"
12743        cat ${TMP}/mds_survey*
12744        rm -f ${TMP}/mds_survey*
12745 }
12746 run_test 225a "Metadata survey sanity with zero-stripe"
12747
12748 test_225b () {
12749         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12750         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12751         if [ -z ${MDSSURVEY} ]; then
12752               skip_env "mds-survey not found" && return
12753         fi
12754         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ] ||
12755             { skip "Need MDS version at least 2.2.51"; return; }
12756
12757         if [ $($LCTL dl | grep -c osc) -eq 0 ]; then
12758               skip_env "Need to mount OST to test" && return
12759         fi
12760
12761         [ $MDSCOUNT -ge 2 ] &&
12762                 skip "skipping now for more than one MDT" && return
12763        local mds=$(facet_host $SINGLEMDS)
12764        local target=$(do_nodes $mds 'lctl dl' | \
12765                       awk "{if (\$2 == \"UP\" && \$3 == \"mdt\") {print \$4}}")
12766
12767        local cmd1="file_count=1000 thrhi=4"
12768        local cmd2="dir_count=2 layer=mdd stripe_count=1"
12769        local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
12770        local cmd="$cmd1 $cmd2 $cmd3"
12771
12772        rm -f ${TMP}/mds_survey*
12773        echo + $cmd
12774        eval $cmd || error "mds-survey with stripe_count failed"
12775        cat ${TMP}/mds_survey*
12776        rm -f ${TMP}/mds_survey*
12777 }
12778 run_test 225b "Metadata survey sanity with stripe_count = 1"
12779
12780 mcreate_path2fid () {
12781         local mode=$1
12782         local major=$2
12783         local minor=$3
12784         local name=$4
12785         local desc=$5
12786         local path=$DIR/$tdir/$name
12787         local fid
12788         local rc
12789         local fid_path
12790
12791         $MCREATE --mode=$1 --major=$2 --minor=$3 $path ||
12792                 error "cannot create $desc"
12793
12794         fid=$($LFS path2fid $path | tr -d '[' | tr -d ']')
12795         rc=$?
12796         [ $rc -ne 0 ] && error "cannot get fid of a $desc"
12797
12798         fid_path=$($LFS fid2path $MOUNT $fid)
12799         rc=$?
12800         [ $rc -ne 0 ] && error "cannot get path of $desc by $DIR $path $fid"
12801
12802         [ "$path" == "$fid_path" ] ||
12803                 error "fid2path returned $fid_path, expected $path"
12804
12805         echo "pass with $path and $fid"
12806 }
12807
12808 test_226a () {
12809         rm -rf $DIR/$tdir
12810         mkdir -p $DIR/$tdir
12811
12812         mcreate_path2fid 0010666 0 0 fifo "FIFO"
12813         mcreate_path2fid 0020666 1 3 null "character special file (null)"
12814         mcreate_path2fid 0020666 1 255 none "character special file (no device)"
12815         mcreate_path2fid 0040666 0 0 dir "directory"
12816         mcreate_path2fid 0060666 7 0 loop0 "block special file (loop)"
12817         mcreate_path2fid 0100666 0 0 file "regular file"
12818         mcreate_path2fid 0120666 0 0 link "symbolic link"
12819         mcreate_path2fid 0140666 0 0 sock "socket"
12820 }
12821 run_test 226a "call path2fid and fid2path on files of all type"
12822
12823 test_226b () {
12824         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
12825         rm -rf $DIR/$tdir
12826         local MDTIDX=1
12827
12828         mkdir -p $DIR/$tdir
12829         $LFS setdirstripe -i $MDTIDX $DIR/$tdir/remote_dir ||
12830                 error "create remote directory failed"
12831         mcreate_path2fid 0010666 0 0 "remote_dir/fifo" "FIFO"
12832         mcreate_path2fid 0020666 1 3 "remote_dir/null" \
12833                                 "character special file (null)"
12834         mcreate_path2fid 0020666 1 255 "remote_dir/none" \
12835                                 "character special file (no device)"
12836         mcreate_path2fid 0040666 0 0 "remote_dir/dir" "directory"
12837         mcreate_path2fid 0060666 7 0 "remote_dir/loop0" \
12838                                 "block special file (loop)"
12839         mcreate_path2fid 0100666 0 0 "remote_dir/file" "regular file"
12840         mcreate_path2fid 0120666 0 0 "remote_dir/link" "symbolic link"
12841         mcreate_path2fid 0140666 0 0 "remote_dir/sock" "socket"
12842 }
12843 run_test 226b "call path2fid and fid2path on files of all type under remote dir"
12844
12845 # LU-1299 Executing or running ldd on a truncated executable does not
12846 # cause an out-of-memory condition.
12847 test_227() {
12848         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12849         [ -z "$(which ldd)" ] && skip "should have ldd tool" && return
12850         dd if=$(which date) of=$MOUNT/date bs=1k count=1
12851         chmod +x $MOUNT/date
12852
12853         $MOUNT/date > /dev/null
12854         ldd $MOUNT/date > /dev/null
12855         rm -f $MOUNT/date
12856 }
12857 run_test 227 "running truncated executable does not cause OOM"
12858
12859 # LU-1512 try to reuse idle OI blocks
12860 test_228a() {
12861         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12862         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12863         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
12864                 skip "non-ldiskfs backend" && return
12865
12866         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
12867         local myDIR=$DIR/$tdir
12868
12869         mkdir -p $myDIR
12870         #define OBD_FAIL_SEQ_EXHAUST             0x1002
12871         $LCTL set_param fail_loc=0x80001002
12872         createmany -o $myDIR/t- 10000
12873         $LCTL set_param fail_loc=0
12874         # The guard is current the largest FID holder
12875         touch $myDIR/guard
12876         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
12877                     tr -d '[')
12878         local IDX=$(($SEQ % 64))
12879
12880         do_facet $SINGLEMDS sync
12881         # Make sure journal flushed.
12882         sleep 6
12883         local blk1=$(do_facet $SINGLEMDS \
12884                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
12885                      grep Blockcount | awk '{print $4}')
12886
12887         # Remove old files, some OI blocks will become idle.
12888         unlinkmany $myDIR/t- 10000
12889         # Create new files, idle OI blocks should be reused.
12890         createmany -o $myDIR/t- 2000
12891         do_facet $SINGLEMDS sync
12892         # Make sure journal flushed.
12893         sleep 6
12894         local blk2=$(do_facet $SINGLEMDS \
12895                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
12896                      grep Blockcount | awk '{print $4}')
12897
12898         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
12899 }
12900 run_test 228a "try to reuse idle OI blocks"
12901
12902 test_228b() {
12903         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12904         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12905         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
12906                 skip "non-ldiskfs backend" && return
12907
12908         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
12909         local myDIR=$DIR/$tdir
12910
12911         mkdir -p $myDIR
12912         #define OBD_FAIL_SEQ_EXHAUST             0x1002
12913         $LCTL set_param fail_loc=0x80001002
12914         createmany -o $myDIR/t- 10000
12915         $LCTL set_param fail_loc=0
12916         # The guard is current the largest FID holder
12917         touch $myDIR/guard
12918         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
12919                     tr -d '[')
12920         local IDX=$(($SEQ % 64))
12921
12922         do_facet $SINGLEMDS sync
12923         # Make sure journal flushed.
12924         sleep 6
12925         local blk1=$(do_facet $SINGLEMDS \
12926                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
12927                      grep Blockcount | awk '{print $4}')
12928
12929         # Remove old files, some OI blocks will become idle.
12930         unlinkmany $myDIR/t- 10000
12931
12932         # stop the MDT
12933         stop $SINGLEMDS || error "Fail to stop MDT."
12934         # remount the MDT
12935         start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS || error "Fail to start MDT."
12936
12937         df $MOUNT || error "Fail to df."
12938         # Create new files, idle OI blocks should be reused.
12939         createmany -o $myDIR/t- 2000
12940         do_facet $SINGLEMDS sync
12941         # Make sure journal flushed.
12942         sleep 6
12943         local blk2=$(do_facet $SINGLEMDS \
12944                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
12945                      grep Blockcount | awk '{print $4}')
12946
12947         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
12948 }
12949 run_test 228b "idle OI blocks can be reused after MDT restart"
12950
12951 #LU-1881
12952 test_228c() {
12953         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12954         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12955         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
12956                 skip "non-ldiskfs backend" && return
12957
12958         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
12959         local myDIR=$DIR/$tdir
12960
12961         mkdir -p $myDIR
12962         #define OBD_FAIL_SEQ_EXHAUST             0x1002
12963         $LCTL set_param fail_loc=0x80001002
12964         # 20000 files can guarantee there are index nodes in the OI file
12965         createmany -o $myDIR/t- 20000
12966         $LCTL set_param fail_loc=0
12967         # The guard is current the largest FID holder
12968         touch $myDIR/guard
12969         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
12970                     tr -d '[')
12971         local IDX=$(($SEQ % 64))
12972
12973         do_facet $SINGLEMDS sync
12974         # Make sure journal flushed.
12975         sleep 6
12976         local blk1=$(do_facet $SINGLEMDS \
12977                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
12978                      grep Blockcount | awk '{print $4}')
12979
12980         # Remove old files, some OI blocks will become idle.
12981         unlinkmany $myDIR/t- 20000
12982         rm -f $myDIR/guard
12983         # The OI file should become empty now
12984
12985         # Create new files, idle OI blocks should be reused.
12986         createmany -o $myDIR/t- 2000
12987         do_facet $SINGLEMDS sync
12988         # Make sure journal flushed.
12989         sleep 6
12990         local blk2=$(do_facet $SINGLEMDS \
12991                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
12992                      grep Blockcount | awk '{print $4}')
12993
12994         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
12995 }
12996 run_test 228c "NOT shrink the last entry in OI index node to recycle idle leaf"
12997
12998 test_229() { # LU-2482, LU-3448
12999         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.53) ] &&
13000                 skip "No HSM $(lustre_build_version $SINGLEMDS) MDS < 2.4.53" &&
13001                 return
13002         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13003         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
13004
13005         rm -f $DIR/$tfile
13006
13007         # Create a file with a released layout and stripe count 2.
13008         $MULTIOP $DIR/$tfile H2c ||
13009                 error "failed to create file with released layout"
13010
13011         $GETSTRIPE -v $DIR/$tfile
13012
13013         local pattern=$($GETSTRIPE -L $DIR/$tfile)
13014         [ X"$pattern" = X"80000001" ] || error "pattern error ($pattern)"
13015
13016         local stripe_count=$($GETSTRIPE -c $DIR/$tfile) || error "getstripe"
13017         [ $stripe_count -eq 2 ] || error "stripe count not 2 ($stripe_count)"
13018         stat $DIR/$tfile || error "failed to stat released file"
13019
13020         chown $RUNAS_ID $DIR/$tfile ||
13021                 error "chown $RUNAS_ID $DIR/$tfile failed"
13022
13023         chgrp $RUNAS_ID $DIR/$tfile ||
13024                 error "chgrp $RUNAS_ID $DIR/$tfile failed"
13025
13026         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
13027         rm $DIR/$tfile || error "failed to remove released file"
13028 }
13029 run_test 229 "getstripe/stat/rm/attr changes work on released files"
13030
13031 test_230a() {
13032         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13033         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13034         local MDTIDX=1
13035
13036         test_mkdir $DIR/$tdir
13037         test_mkdir -i0 -c1 $DIR/$tdir/test_230_local
13038         local mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230_local)
13039         [ $mdt_idx -ne 0 ] &&
13040                 error "create local directory on wrong MDT $mdt_idx"
13041
13042         $LFS mkdir -i $MDTIDX $DIR/$tdir/test_230 ||
13043                         error "create remote directory failed"
13044         local mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230)
13045         [ $mdt_idx -ne $MDTIDX ] &&
13046                 error "create remote directory on wrong MDT $mdt_idx"
13047
13048         createmany -o $DIR/$tdir/test_230/t- 10 ||
13049                 error "create files on remote directory failed"
13050         mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230/t-0)
13051         [ $mdt_idx -ne $MDTIDX ] && error "create files on wrong MDT $mdt_idx"
13052         rm -r $DIR/$tdir || error "unlink remote directory failed"
13053 }
13054 run_test 230a "Create remote directory and files under the remote directory"
13055
13056 test_230b() {
13057         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13058         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13059         local MDTIDX=1
13060         local mdt_index
13061         local i
13062         local file
13063         local pid
13064         local stripe_count
13065         local migrate_dir=$DIR/$tdir/migrate_dir
13066         local other_dir=$DIR/$tdir/other_dir
13067
13068         test_mkdir $DIR/$tdir
13069         test_mkdir -i0 -c1 $migrate_dir
13070         test_mkdir -i0 -c1 $other_dir
13071         for ((i=0; i<10; i++)); do
13072                 mkdir -p $migrate_dir/dir_${i}
13073                 createmany -o $migrate_dir/dir_${i}/f 10 ||
13074                         error "create files under remote dir failed $i"
13075         done
13076
13077         cp /etc/passwd $migrate_dir/$tfile
13078         cp /etc/passwd $other_dir/$tfile
13079         chattr +SAD $migrate_dir
13080         chattr +SAD $migrate_dir/$tfile
13081
13082         local old_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
13083         local old_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
13084         local old_dir_mode=$(stat -c%f $migrate_dir)
13085         local old_file_mode=$(stat -c%f $migrate_dir/$tfile)
13086
13087         mkdir -p $migrate_dir/dir_default_stripe2
13088         $SETSTRIPE -c 2 $migrate_dir/dir_default_stripe2
13089         $SETSTRIPE -c 2 $migrate_dir/${tfile}_stripe2
13090
13091         mkdir -p $other_dir
13092         ln $migrate_dir/$tfile $other_dir/luna
13093         ln $migrate_dir/$tfile $migrate_dir/sofia
13094         ln $other_dir/$tfile $migrate_dir/david
13095         ln -s $migrate_dir/$tfile $other_dir/zachary
13096         ln -s $migrate_dir/$tfile $migrate_dir/${tfile}_ln
13097         ln -s $other_dir/$tfile $migrate_dir/${tfile}_ln_other
13098
13099         $LFS migrate -m $MDTIDX $migrate_dir ||
13100                 error "fails on migrating remote dir to MDT1"
13101
13102         echo "migratate to MDT1, then checking.."
13103         for ((i = 0; i < 10; i++)); do
13104                 for file in $(find $migrate_dir/dir_${i}); do
13105                         mdt_index=$($LFS getstripe -M $file)
13106                         [ $mdt_index == $MDTIDX ] ||
13107                                 error "$file is not on MDT${MDTIDX}"
13108                 done
13109         done
13110
13111         # the multiple link file should still in MDT0
13112         mdt_index=$($LFS getstripe -M $migrate_dir/$tfile)
13113         [ $mdt_index == 0 ] ||
13114                 error "$file is not on MDT${MDTIDX}"
13115
13116         local new_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
13117         [ "$old_dir_flag" = "$new_dir_flag" ] ||
13118                 error " expect $old_dir_flag get $new_dir_flag"
13119
13120         local new_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
13121         [ "$old_file_flag" = "$new_file_flag" ] ||
13122                 error " expect $old_file_flag get $new_file_flag"
13123
13124         local new_dir_mode=$(stat -c%f $migrate_dir)
13125         [ "$old_dir_mode" = "$new_dir_mode" ] ||
13126                 error "expect mode $old_dir_mode get $new_dir_mode"
13127
13128         local new_file_mode=$(stat -c%f $migrate_dir/$tfile)
13129         [ "$old_file_mode" = "$new_file_mode" ] ||
13130                 error "expect mode $old_file_mode get $new_file_mode"
13131
13132         diff /etc/passwd $migrate_dir/$tfile ||
13133                 error "$tfile different after migration"
13134
13135         diff /etc/passwd $other_dir/luna ||
13136                 error "luna different after migration"
13137
13138         diff /etc/passwd $migrate_dir/sofia ||
13139                 error "sofia different after migration"
13140
13141         diff /etc/passwd $migrate_dir/david ||
13142                 error "david different after migration"
13143
13144         diff /etc/passwd $other_dir/zachary ||
13145                 error "zachary different after migration"
13146
13147         diff /etc/passwd $migrate_dir/${tfile}_ln ||
13148                 error "${tfile}_ln different after migration"
13149
13150         diff /etc/passwd $migrate_dir/${tfile}_ln_other ||
13151                 error "${tfile}_ln_other different after migration"
13152
13153         stripe_count=$($LFS getstripe -c $migrate_dir/dir_default_stripe2)
13154         [ $stripe_count = 2 ] ||
13155                 error "dir strpe_count $d != 2 after migration."
13156
13157         stripe_count=$($LFS getstripe -c $migrate_dir/${tfile}_stripe2)
13158         [ $stripe_count = 2 ] ||
13159                 error "file strpe_count $d != 2 after migration."
13160
13161         #migrate back to MDT0
13162         MDTIDX=0
13163
13164         $LFS migrate -m $MDTIDX $migrate_dir ||
13165                 error "fails on migrating remote dir to MDT0"
13166
13167         echo "migrate back to MDT0, checking.."
13168         for file in $(find $migrate_dir); do
13169                 mdt_index=$($LFS getstripe -M $file)
13170                 [ $mdt_index == $MDTIDX ] ||
13171                         error "$file is not on MDT${MDTIDX}"
13172         done
13173
13174         local new_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
13175         [ "$old_dir_flag" = "$new_dir_flag" ] ||
13176                 error " expect $old_dir_flag get $new_dir_flag"
13177
13178         local new_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
13179         [ "$old_file_flag" = "$new_file_flag" ] ||
13180                 error " expect $old_file_flag get $new_file_flag"
13181
13182         local new_dir_mode=$(stat -c%f $migrate_dir)
13183         [ "$old_dir_mode" = "$new_dir_mode" ] ||
13184                 error "expect mode $old_dir_mode get $new_dir_mode"
13185
13186         local new_file_mode=$(stat -c%f $migrate_dir/$tfile)
13187         [ "$old_file_mode" = "$new_file_mode" ] ||
13188                 error "expect mode $old_file_mode get $new_file_mode"
13189
13190         diff /etc/passwd ${migrate_dir}/$tfile ||
13191                 error "$tfile different after migration"
13192
13193         diff /etc/passwd ${other_dir}/luna ||
13194                 error "luna different after migration"
13195
13196         diff /etc/passwd ${migrate_dir}/sofia ||
13197                 error "sofia different after migration"
13198
13199         diff /etc/passwd ${other_dir}/zachary ||
13200                 error "zachary different after migration"
13201
13202         diff /etc/passwd $migrate_dir/${tfile}_ln ||
13203                 error "${tfile}_ln different after migration"
13204
13205         diff /etc/passwd $migrate_dir/${tfile}_ln_other ||
13206                 error "${tfile}_ln_other different after migration"
13207
13208         stripe_count=$($LFS getstripe -c ${migrate_dir}/dir_default_stripe2)
13209         [ $stripe_count = 2 ] ||
13210                 error "dir strpe_count $d != 2 after migration."
13211
13212         stripe_count=$($LFS getstripe -c ${migrate_dir}/${tfile}_stripe2)
13213         [ $stripe_count = 2 ] ||
13214                 error "file strpe_count $d != 2 after migration."
13215
13216         rm -rf $DIR/$tdir || error "rm dir failed after migration"
13217 }
13218 run_test 230b "migrate directory"
13219
13220 test_230c() {
13221         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13222         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13223         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13224         local MDTIDX=1
13225         local mdt_index
13226         local file
13227         local migrate_dir=$DIR/$tdir/migrate_dir
13228
13229         #If migrating directory fails in the middle, all entries of
13230         #the directory is still accessiable.
13231         test_mkdir $DIR/$tdir
13232         test_mkdir -i0 -c1 $migrate_dir
13233         stat $migrate_dir
13234         createmany -o $migrate_dir/f 10 ||
13235                 error "create files under ${migrate_dir} failed"
13236
13237         #failed after migrating 5 entries
13238         #OBD_FAIL_MIGRATE_ENTRIES       0x1801
13239         do_facet mds1 lctl set_param fail_loc=0x20001801
13240         do_facet mds1 lctl  set_param fail_val=5
13241         local t=$(ls $migrate_dir | wc -l)
13242         $LFS migrate --mdt-index $MDTIDX $migrate_dir &&
13243                 error "migrate should fail after 5 entries"
13244
13245         mkdir $migrate_dir/dir &&
13246                 error "mkdir succeeds under migrating directory"
13247         touch $migrate_dir/file &&
13248                 error "touch file succeeds under migrating directory"
13249
13250         local u=$(ls $migrate_dir | wc -l)
13251         [ "$u" == "$t" ] || error "$u != $t during migration"
13252
13253         for file in $(find $migrate_dir); do
13254                 stat $file || error "stat $file failed"
13255         done
13256
13257         do_facet mds1 lctl set_param fail_loc=0
13258         do_facet mds1 lctl set_param fail_val=0
13259
13260         $LFS migrate -m $MDTIDX $migrate_dir ||
13261                 error "migrate open files should failed with open files"
13262
13263         echo "Finish migration, then checking.."
13264         for file in $(find $migrate_dir); do
13265                 mdt_index=$($LFS getstripe -M $file)
13266                 [ $mdt_index == $MDTIDX ] ||
13267                         error "$file is not on MDT${MDTIDX}"
13268         done
13269
13270         rm -rf $DIR/$tdir || error "rm dir failed after migration"
13271 }
13272 run_test 230c "check directory accessiblity if migration is failed"
13273
13274 test_230d() {
13275         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13276         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13277         local MDTIDX=1
13278         local mdt_index
13279         local migrate_dir=$DIR/$tdir/migrate_dir
13280         local i
13281         local j
13282
13283         test_mkdir $DIR/$tdir
13284         test_mkdir -i0 -c1 $migrate_dir
13285
13286         for ((i=0; i<100; i++)); do
13287                 test_mkdir -i0 -c1 $migrate_dir/dir_${i}
13288                 createmany -o $migrate_dir/dir_${i}/f 100 ||
13289                         error "create files under remote dir failed $i"
13290         done
13291
13292         $LFS migrate -m $MDTIDX $migrate_dir ||
13293                 error "migrate remote dir error"
13294
13295         echo "Finish migration, then checking.."
13296         for file in $(find $migrate_dir); do
13297                 mdt_index=$($LFS getstripe -M $file)
13298                 [ $mdt_index == $MDTIDX ] ||
13299                         error "$file is not on MDT${MDTIDX}"
13300         done
13301
13302         rm -rf $DIR/$tdir || error "rm dir failed after migration"
13303 }
13304 run_test 230d "check migrate big directory"
13305
13306 test_230e() {
13307         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13308         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13309         local i
13310         local j
13311         local a_fid
13312         local b_fid
13313
13314         mkdir -p $DIR/$tdir
13315         mkdir $DIR/$tdir/migrate_dir
13316         mkdir $DIR/$tdir/other_dir
13317         touch $DIR/$tdir/migrate_dir/a
13318         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/b
13319         ls $DIR/$tdir/other_dir
13320
13321         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
13322                 error "migrate dir fails"
13323
13324         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir)
13325         [ $mdt_index == 1 ] || error "migrate_dir is not on MDT1"
13326
13327         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
13328         [ $mdt_index == 0 ] || error "a is not on MDT0"
13329
13330         $LFS migrate -m 1 $DIR/$tdir/other_dir ||
13331                 error "migrate dir fails"
13332
13333         mdt_index=$($LFS getstripe -M $DIR/$tdir/other_dir)
13334         [ $mdt_index == 1 ] || error "other_dir is not on MDT1"
13335
13336         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
13337         [ $mdt_index == 1 ] || error "a is not on MDT1"
13338
13339         mdt_index=$($LFS getstripe -M $DIR/$tdir/other_dir/b)
13340         [ $mdt_index == 1 ] || error "b is not on MDT1"
13341
13342         a_fid=$($LFS path2fid $DIR/$tdir/migrate_dir/a)
13343         b_fid=$($LFS path2fid $DIR/$tdir/other_dir/b)
13344
13345         [ "$a_fid" = "$b_fid" ] || error "different fid after migration"
13346
13347         rm -rf $DIR/$tdir || error "rm dir failed after migration"
13348 }
13349 run_test 230e "migrate mulitple local link files"
13350
13351 test_230f() {
13352         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13353         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13354         local a_fid
13355         local ln_fid
13356
13357         mkdir -p $DIR/$tdir
13358         mkdir $DIR/$tdir/migrate_dir
13359         $LFS mkdir -i1 $DIR/$tdir/other_dir
13360         touch $DIR/$tdir/migrate_dir/a
13361         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/ln1
13362         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/ln2
13363         ls $DIR/$tdir/other_dir
13364
13365         # a should be migrated to MDT1, since no other links on MDT0
13366         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
13367                 error "#1 migrate dir fails"
13368         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir)
13369         [ $mdt_index == 1 ] || error "migrate_dir is not on MDT1"
13370         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
13371         [ $mdt_index == 1 ] || error "a is not on MDT1"
13372
13373         # a should stay on MDT1, because it is a mulitple link file
13374         $LFS migrate -m 0 $DIR/$tdir/migrate_dir ||
13375                 error "#2 migrate dir fails"
13376         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
13377         [ $mdt_index == 1 ] || error "a is not on MDT1"
13378
13379         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
13380                 error "#3 migrate dir fails"
13381
13382         a_fid=$($LFS path2fid $DIR/$tdir/migrate_dir/a)
13383         ln_fid=$($LFS path2fid $DIR/$tdir/other_dir/ln1)
13384         [ "$a_fid" = "$ln_fid" ] || error "different fid after migrate to MDT1"
13385
13386         rm -rf $DIR/$tdir/other_dir/ln1 || error "unlink ln1 fails"
13387         rm -rf $DIR/$tdir/other_dir/ln2 || error "unlink ln2 fails"
13388
13389         # a should be migrated to MDT0, since no other links on MDT1
13390         $LFS migrate -m 0 $DIR/$tdir/migrate_dir ||
13391                 error "#4 migrate dir fails"
13392         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
13393         [ $mdt_index == 0 ] || error "a is not on MDT0"
13394
13395         rm -rf $DIR/$tdir || error "rm dir failed after migration"
13396 }
13397 run_test 230f "migrate mulitple remote link files"
13398
13399 test_230g() {
13400         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13401         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13402
13403         mkdir -p $DIR/$tdir/migrate_dir
13404
13405         $LFS migrate -m 1000 $DIR/$tdir/migrate_dir &&
13406                 error "migrating dir to non-exist MDT succeeds"
13407         true
13408 }
13409 run_test 230g "migrate dir to non-exist MDT"
13410
13411 test_230h() {
13412         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13413         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13414         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.64) ] &&
13415                 skip "Need MDS version at least 2.7.64" && return
13416         local mdt_index
13417
13418         mkdir -p $DIR/$tdir/migrate_dir
13419
13420         $LFS migrate -m1 $DIR &&
13421                 error "migrating mountpoint1 should fail"
13422
13423         $LFS migrate -m1 $DIR/$tdir/.. &&
13424                 error "migrating mountpoint2 should fail"
13425
13426         $LFS migrate -m1 $DIR/$tdir/migrate_dir/.. ||
13427                 error "migrating $tdir fail"
13428
13429         mdt_index=$($LFS getstripe -M $DIR/$tdir)
13430         [ $mdt_index == 1 ] || error "$mdt_index != 1 after migration"
13431
13432         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir)
13433         [ $mdt_index == 1 ] || error "$mdt_index != 1 after migration"
13434
13435 }
13436 run_test 230h "migrate .. and root"
13437
13438 test_230i() {
13439         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13440         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13441
13442         mkdir -p $DIR/$tdir/migrate_dir
13443
13444         $LFS migrate -m 1 $DIR/$tdir/migrate_dir/ ||
13445                 error "migration fails with a tailing slash"
13446
13447         $LFS migrate -m 0 $DIR/$tdir/migrate_dir// ||
13448                 error "migration fails with two tailing slashes"
13449 }
13450 run_test 230i "lfs migrate -m tolerates trailing slashes"
13451
13452 test_231a()
13453 {
13454         # For simplicity this test assumes that max_pages_per_rpc
13455         # is the same across all OSCs
13456         local max_pages=$($LCTL get_param -n osc.*.max_pages_per_rpc | head -n1)
13457         local bulk_size=$((max_pages * 4096))
13458
13459         mkdir -p $DIR/$tdir
13460
13461         # clear the OSC stats
13462         $LCTL set_param osc.*.stats=0 &>/dev/null
13463         stop_writeback
13464
13465         # Client writes $bulk_size - there must be 1 rpc for $max_pages.
13466         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=$bulk_size count=1 \
13467                 oflag=direct &>/dev/null || error "dd failed"
13468
13469         sync; sleep 1; sync # just to be safe
13470         local nrpcs=$($LCTL get_param osc.*.stats |awk '/ost_write/ {print $2}')
13471         if [ x$nrpcs != "x1" ]; then
13472                 $LCTL get_param osc.*.stats
13473                 error "found $nrpcs ost_write RPCs, not 1 as expected"
13474         fi
13475
13476         start_writeback
13477         # Drop the OSC cache, otherwise we will read from it
13478         cancel_lru_locks osc
13479
13480         # clear the OSC stats
13481         $LCTL set_param osc.*.stats=0 &>/dev/null
13482
13483         # Client reads $bulk_size.
13484         dd if=$DIR/$tdir/$tfile of=/dev/null bs=$bulk_size count=1 \
13485                 iflag=direct &>/dev/null || error "dd failed"
13486
13487         nrpcs=$($LCTL get_param osc.*.stats | awk '/ost_read/ { print $2 }')
13488         if [ x$nrpcs != "x1" ]; then
13489                 $LCTL get_param osc.*.stats
13490                 error "found $nrpcs ost_read RPCs, not 1 as expected"
13491         fi
13492 }
13493 run_test 231a "checking that reading/writing of BRW RPC size results in one RPC"
13494
13495 test_231b() {
13496         mkdir -p $DIR/$tdir
13497         local i
13498         for i in {0..1023}; do
13499                 dd if=/dev/zero of=$DIR/$tdir/$tfile conv=notrunc \
13500                         seek=$((2 * i)) bs=4096 count=1 &>/dev/null ||
13501                         error "dd of=$DIR/$tdir/$tfile seek=$((2 * i)) failed"
13502         done
13503         sync
13504 }
13505 run_test 231b "must not assert on fully utilized OST request buffer"
13506
13507 test_232() {
13508         mkdir -p $DIR/$tdir
13509         #define OBD_FAIL_LDLM_OST_LVB            0x31c
13510         $LCTL set_param fail_loc=0x31c
13511
13512         # ignore dd failure
13513         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=1 || true
13514
13515         $LCTL set_param fail_loc=0
13516         umount_client $MOUNT || error "umount failed"
13517         mount_client $MOUNT || error "mount failed"
13518 }
13519 run_test 232 "failed lock should not block umount"
13520
13521 test_233a() {
13522         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.64) ] ||
13523         { skip "Need MDS version at least 2.3.64"; return; }
13524         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
13525
13526         local fid=$($LFS path2fid $MOUNT)
13527         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
13528                 error "cannot access $MOUNT using its FID '$fid'"
13529 }
13530 run_test 233a "checking that OBF of the FS root succeeds"
13531
13532 test_233b() {
13533         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.5.90) ] ||
13534         { skip "Need MDS version at least 2.5.90"; return; }
13535         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
13536
13537         local fid=$($LFS path2fid $MOUNT/.lustre)
13538         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
13539                 error "cannot access $MOUNT/.lustre using its FID '$fid'"
13540
13541         fid=$($LFS path2fid $MOUNT/.lustre/fid)
13542         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
13543                 error "cannot access $MOUNT/.lustre/fid using its FID '$fid'"
13544 }
13545 run_test 233b "checking that OBF of the FS .lustre succeeds"
13546
13547 test_234() {
13548         local p="$TMP/sanityN-$TESTNAME.parameters"
13549         save_lustre_params client "llite.*.xattr_cache" > $p
13550         lctl set_param llite.*.xattr_cache 1 ||
13551                 { skip "xattr cache is not supported"; return 0; }
13552
13553         mkdir -p $DIR/$tdir || error "mkdir failed"
13554         touch $DIR/$tdir/$tfile || error "touch failed"
13555         # OBD_FAIL_LLITE_XATTR_ENOMEM
13556         $LCTL set_param fail_loc=0x1405
13557         # output of the form: attr 2 4 44 3 fc13 x86_64
13558         V=($(IFS=".-" rpm -q attr))
13559         if [[ ${V[1]} > 2 || ${V[2]} > 4 || ${V[3]} > 44 ||
13560               ${V[1]} = 2 && ${V[2]} = 4 && ${V[3]} = 44 && ${V[4]} > 6 ]]; then
13561                 # attr pre-2.4.44-7 had a bug with rc
13562                 # LU-3703 - SLES 11 and FC13 clients have older attr
13563                 getfattr -n user.attr $DIR/$tdir/$tfile &&
13564                         error "getfattr should have failed with ENOMEM"
13565         else
13566                 skip "LU-3703: attr version $(getfattr --version) too old"
13567         fi
13568         $LCTL set_param fail_loc=0x0
13569         rm -rf $DIR/$tdir
13570
13571         restore_lustre_params < $p
13572         rm -f $p
13573 }
13574 run_test 234 "xattr cache should not crash on ENOMEM"
13575
13576 test_235() {
13577         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.52) ] &&
13578                 skip "Need MDS version at least 2.4.52" && return
13579         flock_deadlock $DIR/$tfile
13580         local RC=$?
13581         case $RC in
13582                 0)
13583                 ;;
13584                 124) error "process hangs on a deadlock"
13585                 ;;
13586                 *) error "error executing flock_deadlock $DIR/$tfile"
13587                 ;;
13588         esac
13589 }
13590 run_test 235 "LU-1715: flock deadlock detection does not work properly"
13591
13592 #LU-2935
13593 test_236() {
13594         check_swap_layouts_support && return 0
13595         test_mkdir -p -c1 $DIR/$tdir || error "mkdir $tdir failed"
13596
13597         local ref1=/etc/passwd
13598         local ref2=/etc/group
13599         local file1=$DIR/$tdir/f1
13600         local file2=$DIR/$tdir/f2
13601
13602         $SETSTRIPE -c 1 $file1 || error "cannot setstripe on '$file1': rc = $?"
13603         cp $ref1 $file1 || error "cp $ref1 $file1 failed: rc = $?"
13604         $SETSTRIPE -c 2 $file2 || error "cannot setstripe on '$file2': rc = $?"
13605         cp $ref2 $file2 || error "cp $ref2 $file2 failed: rc = $?"
13606         local fd=$(free_fd)
13607         local cmd="exec $fd<>$file2"
13608         eval $cmd
13609         rm $file2
13610         $LFS swap_layouts $file1 /proc/self/fd/${fd} ||
13611                 error "cannot swap layouts of '$file1' and /proc/self/fd/${fd}"
13612         cmd="exec $fd>&-"
13613         eval $cmd
13614         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
13615
13616         #cleanup
13617         rm -rf $DIR/$tdir
13618 }
13619 run_test 236 "Layout swap on open unlinked file"
13620
13621 # test to verify file handle related system calls
13622 # (name_to_handle_at/open_by_handle_at)
13623 # The new system calls are supported in glibc >= 2.14.
13624
13625 test_237() {
13626         echo "Test file_handle syscalls" > $DIR/$tfile ||
13627                 error "write failed"
13628         check_fhandle_syscalls $DIR/$tfile ||
13629                 error "check_fhandle_syscalls failed"
13630 }
13631 run_test 237 "Verify name_to_handle_at/open_by_handle_at syscalls"
13632
13633 # LU-4659 linkea consistency
13634 test_238() {
13635         local server_version=$(lustre_version_code $SINGLEMDS)
13636
13637         [[ $server_version -gt $(version_code 2.5.57) ]] ||
13638                 [[ $server_version -gt $(version_code 2.5.1) &&
13639                    $server_version -lt $(version_code 2.5.50) ]] ||
13640                 { skip "Need MDS version at least 2.5.58 or 2.5.2+"; return; }
13641
13642         touch $DIR/$tfile
13643         ln $DIR/$tfile $DIR/$tfile.lnk
13644         touch $DIR/$tfile.new
13645         mv $DIR/$tfile.new $DIR/$tfile
13646         local fid1=$($LFS path2fid $DIR/$tfile)
13647         local fid2=$($LFS path2fid $DIR/$tfile.lnk)
13648         local path1=$($LFS fid2path $FSNAME "$fid1")
13649         [ $tfile == $path1 ] || error "linkea inconsistent: $tfile $fid1 $path1"
13650         local path2=$($LFS fid2path $FSNAME "$fid2")
13651         [ $tfile.lnk == $path2 ] ||
13652                 error "linkea inconsistent: $tfile.lnk $fid2 $path2!"
13653         rm -f $DIR/$tfile*
13654 }
13655 run_test 238 "Verify linkea consistency"
13656
13657 test_239() {
13658         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.60) ] &&
13659                 skip "Need MDS version at least 2.5.60" && return
13660         local list=$(comma_list $(mdts_nodes))
13661
13662         mkdir -p $DIR/$tdir
13663         createmany -o $DIR/$tdir/f- 5000
13664         unlinkmany $DIR/$tdir/f- 5000
13665         do_nodes $list "lctl set_param -n osp*.*.sync_changes 1"
13666         changes=$(do_nodes $list "lctl get_param -n osc.*MDT*.sync_changes \
13667                         osc.*MDT*.sync_in_flight" | calc_sum)
13668         [ "$changes" -eq 0 ] || error "$changes not synced"
13669 }
13670 run_test 239 "osp_sync test"
13671
13672 test_239a() { #LU-5297
13673         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13674         touch $DIR/$tfile
13675         #define OBD_FAIL_OSP_CHECK_INVALID_REC     0x2100
13676         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2100
13677         chgrp $RUNAS_GID $DIR/$tfile
13678         wait_delete_completed
13679 }
13680 run_test 239a "process invalid osp sync record correctly"
13681
13682 test_239b() { #LU-5297
13683         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13684         touch $DIR/$tfile1
13685         #define OBD_FAIL_OSP_CHECK_ENOMEM     0x2101
13686         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2101
13687         chgrp $RUNAS_GID $DIR/$tfile1
13688         wait_delete_completed
13689         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
13690         touch $DIR/$tfile2
13691         chgrp $RUNAS_GID $DIR/$tfile2
13692         wait_delete_completed
13693 }
13694 run_test 239b "process osp sync record with ENOMEM error correctly"
13695
13696 test_240() {
13697         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13698         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13699
13700         mkdir -p $DIR/$tdir
13701
13702         $LFS mkdir -i 0 $DIR/$tdir/d0 ||
13703                 error "failed to mkdir $DIR/$tdir/d0 on MDT0"
13704         $LFS mkdir -i 1 $DIR/$tdir/d0/d1 ||
13705                 error "failed to mkdir $DIR/$tdir/d0/d1 on MDT1"
13706
13707         umount_client $MOUNT || error "umount failed"
13708         #define OBD_FAIL_TGT_DELAY_CONDITIONAL   0x713
13709         do_facet mds2 lctl set_param fail_loc=0x713 fail_val=1
13710         mount_client $MOUNT || error "failed to mount client"
13711
13712         echo "stat $DIR/$tdir/d0/d1, should not fail/ASSERT"
13713         stat $DIR/$tdir/d0/d1 || error "fail to stat $DIR/$tdir/d0/d1"
13714 }
13715 run_test 240 "race between ldlm enqueue and the connection RPC (no ASSERT)"
13716
13717 test_241_bio() {
13718         for LOOP in $(seq $1); do
13719                 dd if=$DIR/$tfile of=/dev/null bs=40960 count=1 2>/dev/null
13720                 cancel_lru_locks osc || true
13721         done
13722 }
13723
13724 test_241_dio() {
13725         for LOOP in $(seq $1); do
13726                 dd if=$DIR/$tfile of=/dev/null bs=40960 count=1 \
13727                                                 iflag=direct 2>/dev/null
13728         done
13729 }
13730
13731 test_241() {
13732         dd if=/dev/zero of=$DIR/$tfile count=1 bs=40960
13733         ls -la $DIR/$tfile
13734         cancel_lru_locks osc
13735         test_241_bio 1000 &
13736         PID=$!
13737         test_241_dio 1000
13738         wait $PID
13739 }
13740 run_test 241 "bio vs dio"
13741
13742 test_241b() {
13743         dd if=/dev/zero of=$DIR/$tfile count=1 bs=40960
13744         ls -la $DIR/$tfile
13745         test_241_dio 1000 &
13746         PID=$!
13747         test_241_dio 1000
13748         wait $PID
13749 }
13750 run_test 241b "dio vs dio"
13751
13752 test_242() {
13753         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13754         mkdir -p $DIR/$tdir
13755         touch $DIR/$tdir/$tfile
13756
13757         #define OBD_FAIL_MDS_READPAGE_PACK      0x105
13758         do_facet mds1 lctl set_param fail_loc=0x105
13759         /bin/ls $DIR/$tdir && error "ls $DIR/$tdir should fail"
13760
13761         do_facet mds1 lctl set_param fail_loc=0
13762         /bin/ls $DIR/$tdir || error "ls $DIR/$tdir failed"
13763 }
13764 run_test 242 "mdt_readpage failure should not cause directory unreadable"
13765
13766 test_243()
13767 {
13768         test_mkdir -p $DIR/$tdir
13769         group_lock_test -d $DIR/$tdir || error "A group lock test failed"
13770 }
13771 run_test 243 "various group lock tests"
13772
13773 test_244()
13774 {
13775         test_mkdir -p $DIR/$tdir
13776         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=35
13777         sendfile_grouplock $DIR/$tdir/$tfile || \
13778                 error "sendfile+grouplock failed"
13779         rm -rf $DIR/$tdir
13780 }
13781 run_test 244 "sendfile with group lock tests"
13782
13783 test_245() {
13784         local flagname="multi_mod_rpcs"
13785         local connect_data_name="max_mod_rpcs"
13786         local out
13787
13788         # check if multiple modify RPCs flag is set
13789         out=$($LCTL get_param mdc.$FSNAME-MDT0000-*.import |
13790                 grep "connect_flags:")
13791         echo "$out"
13792
13793         echo "$out" | grep -qw $flagname
13794         if [ $? -ne 0 ]; then
13795                 echo "connect flag $flagname is not set"
13796                 return
13797         fi
13798
13799         # check if multiple modify RPCs data is set
13800         out=$($LCTL get_param mdc.$FSNAME-MDT0000-*.import)
13801         echo "$out"
13802
13803         echo "$out" | grep -qw $connect_data_name ||
13804                 error "import should have connect data $connect_data_name"
13805 }
13806 run_test 245 "check mdc connection flag/data: multiple modify RPCs"
13807
13808 test_246() { # LU-7371
13809         remote_ost_nodsh && skip "remote OST with nodsh" && return
13810         [ $(lustre_version_code ost1) -lt $(version_code 2.7.62) ] &&
13811                 skip "Need OST version >= 2.7.62" && return 0
13812         do_facet ost1 $LCTL set_param fail_val=4095
13813 #define OBD_FAIL_OST_READ_SIZE          0x234
13814         do_facet ost1 $LCTL set_param fail_loc=0x234
13815         $LFS setstripe $DIR/$tfile -i 0 -c 1
13816         dd if=/dev/zero of=$DIR/$tfile bs=4095 count=1 > /dev/null 2>&1
13817         cancel_lru_locks $FSNAME-OST0000
13818         dd if=$DIR/$tfile of=/dev/null bs=1048576 || error "Read failed"
13819 }
13820 run_test 246 "Read file of size 4095 should return right length"
13821
13822 test_247a() {
13823         lctl get_param -n mdc.$FSNAME-MDT0000*.import |
13824                 grep -q subtree ||
13825                 { skip "Fileset feature is not supported"; return; }
13826
13827         local submount=${MOUNT}_$tdir
13828
13829         mkdir $MOUNT/$tdir
13830         mkdir -p $submount || error "mkdir $submount failed"
13831         FILESET="$FILESET/$tdir" mount_client $submount ||
13832                 error "mount $submount failed"
13833         echo foo > $submount/$tfile || error "write $submount/$tfile failed"
13834         [ $(cat $MOUNT/$tdir/$tfile) = "foo" ] ||
13835                 error "read $MOUNT/$tdir/$tfile failed"
13836         umount_client $submount || error "umount $submount failed"
13837         rmdir $submount
13838 }
13839 run_test 247a "mount subdir as fileset"
13840
13841 test_247b() {
13842         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
13843                 { skip "Fileset feature is not supported"; return; }
13844
13845         local submount=${MOUNT}_$tdir
13846
13847         rm -rf $MOUNT/$tdir
13848         mkdir -p $submount || error "mkdir $submount failed"
13849         SKIP_FILESET=1
13850         FILESET="$FILESET/$tdir" mount_client $submount &&
13851                 error "mount $submount should fail"
13852         rmdir $submount
13853 }
13854 run_test 247b "mount subdir that dose not exist"
13855
13856 test_247c() {
13857         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
13858                 { skip "Fileset feature is not supported"; return; }
13859
13860         local submount=${MOUNT}_$tdir
13861
13862         mkdir -p $MOUNT/$tdir/dir1
13863         mkdir -p $submount || error "mkdir $submount failed"
13864         FILESET="$FILESET/$tdir" mount_client $submount ||
13865                 error "mount $submount failed"
13866         local fid=$($LFS path2fid $MOUNT/)
13867         $LFS fid2path $submount $fid && error "fid2path should fail"
13868         umount_client $submount || error "umount $submount failed"
13869         rmdir $submount
13870 }
13871 run_test 247c "running fid2path outside root"
13872
13873 test_247d() {
13874         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
13875                 { skip "Fileset feature is not supported"; return; }
13876
13877         local submount=${MOUNT}_$tdir
13878
13879         mkdir -p $MOUNT/$tdir/dir1
13880         mkdir -p $submount || error "mkdir $submount failed"
13881         FILESET="$FILESET/$tdir" mount_client $submount ||
13882                 error "mount $submount failed"
13883         local fid=$($LFS path2fid $submount/dir1)
13884         $LFS fid2path $submount $fid || error "fid2path should succeed"
13885         umount_client $submount || error "umount $submount failed"
13886         rmdir $submount
13887 }
13888 run_test 247d "running fid2path inside root"
13889
13890 # LU-8037
13891 test_247e() {
13892         lctl get_param -n mdc.$FSNAME-MDT0000*.import |
13893                 grep -q subtree ||
13894                 { skip "Fileset feature is not supported"; return; }
13895
13896         local submount=${MOUNT}_$tdir
13897
13898         mkdir $MOUNT/$tdir
13899         mkdir -p $submount || error "mkdir $submount failed"
13900         FILESET="$FILESET/.." mount_client $submount &&
13901                 error "mount $submount should fail"
13902         rmdir $submount
13903 }
13904 run_test 247e "mount .. as fileset"
13905
13906 test_248() {
13907         local fast_read_sav=$($LCTL get_param -n llite.*.fast_read 2>/dev/null)
13908         [ -z "$fast_read_sav" ] && skip "no fast read support" && return
13909
13910         # create a large file for fast read verification
13911         dd if=/dev/zero of=$DIR/$tfile bs=1M count=128 > /dev/null 2>&1
13912
13913         # make sure the file is created correctly
13914         $CHECKSTAT -s $((128*1024*1024)) $DIR/$tfile ||
13915                 { rm -f $DIR/$tfile; skip "file creation error" && return; }
13916
13917         echo "Test 1: verify that fast read is 4 times faster on cache read"
13918
13919         # small read with fast read enabled
13920         $LCTL set_param -n llite.*.fast_read=1
13921         local t_fast=$(dd if=$DIR/$tfile of=/dev/null bs=4k 2>&1 |
13922                 awk '/copied/ { print $6 }')
13923
13924         # small read with fast read disabled
13925         $LCTL set_param -n llite.*.fast_read=0
13926         local t_slow=$(dd if=$DIR/$tfile of=/dev/null bs=4k 2>&1 |
13927                 awk '/copied/ { print $6 }')
13928
13929         # verify that fast read is 4 times faster for cache read
13930         [ $(bc <<< "4 * $t_fast < $t_slow") -eq 1 ] ||
13931                 error_not_in_vm "fast read was not 4 times faster: " \
13932                            "$t_fast vs $t_slow"
13933
13934         echo "Test 2: verify the performance between big and small read"
13935         $LCTL set_param -n llite.*.fast_read=1
13936
13937         # 1k non-cache read
13938         cancel_lru_locks osc
13939         local t_1k=$(dd if=$DIR/$tfile of=/dev/null bs=1k 2>&1 |
13940                 awk '/copied/ { print $6 }')
13941
13942         # 1M non-cache read
13943         cancel_lru_locks osc
13944         local t_1m=$(dd if=$DIR/$tfile of=/dev/null bs=1k 2>&1 |
13945                 awk '/copied/ { print $6 }')
13946
13947         # verify that big IO is not 4 times faster than small IO
13948         [ $(bc <<< "4 * $t_1k >= $t_1m") -eq 1 ] ||
13949                 error_not_in_vm "bigger IO is way too fast: $t_1k vs $t_1m"
13950
13951         $LCTL set_param -n llite.*.fast_read=$fast_read_sav
13952         rm -f $DIR/$tfile
13953 }
13954 run_test 248 "fast read verification"
13955
13956 test_249() { # LU-7890
13957         rm -f $DIR/$tfile
13958         $SETSTRIPE -c 1 $DIR/$tfile
13959
13960         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.53) ] &&
13961         skip "Need at least version 2.8.54"
13962
13963         # Offset 2T == 4k * 512M
13964         dd if=/dev/zero of=$DIR/$tfile bs=4k count=1 seek=512M ||
13965                 error "dd to 2T offset failed"
13966 }
13967 run_test 249 "Write above 2T file size"
13968
13969 test_250() {
13970         [ "$(facet_fstype ost$(($($GETSTRIPE -i $DIR/$tfile) + 1)))" = "zfs" ] \
13971          && skip "no 16TB file size limit on ZFS" && return
13972
13973         $SETSTRIPE -c 1 $DIR/$tfile
13974         # ldiskfs extent file size limit is (16TB - 4KB - 1) bytes
13975         local size=$((16 * 1024 * 1024 * 1024 * 1024 - 4096 - 1))
13976         $TRUNCATE $DIR/$tfile $size || error "truncate $tfile to $size failed"
13977         dd if=/dev/zero of=$DIR/$tfile bs=10 count=1 oflag=append \
13978                 conv=notrunc,fsync && error "append succeeded"
13979         return 0
13980 }
13981 run_test 250 "Write above 16T limit"
13982
13983 test_251() {
13984         $SETSTRIPE -c -1 -S 1048576 $DIR/$tfile
13985
13986         #define OBD_FAIL_LLITE_LOST_LAYOUT 0x1407
13987         #Skip once - writing the first stripe will succeed
13988         $LCTL set_param fail_loc=0xa0001407 fail_val=1
13989         $MULTIOP $DIR/$tfile o:O_RDWR:w2097152c 2>&1 | grep -q "short write" &&
13990                 error "short write happened"
13991
13992         $LCTL set_param fail_loc=0xa0001407 fail_val=1
13993         $MULTIOP $DIR/$tfile or2097152c 2>&1 | grep -q "short read" &&
13994                 error "short read happened"
13995
13996         rm -f $DIR/$tfile
13997 }
13998 run_test 251 "Handling short read and write correctly"
13999
14000 test_252() {
14001         local tgt
14002         local dev
14003         local out
14004         local uuid
14005         local num
14006         local gen
14007
14008         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14009         remote_ost_nodsh && skip "remote OST with nodsh" && return
14010         if [ "$(facet_fstype ost1)" != "ldiskfs" -o \
14011              "$(facet_fstype mds1)" != "ldiskfs" ]; then
14012                 skip "can only run lr_reader on ldiskfs target"
14013                 return
14014         fi
14015
14016         # check lr_reader on OST0000
14017         tgt=ost1
14018         dev=$(facet_device $tgt)
14019         out=$(do_facet $tgt $LR_READER $dev)
14020         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
14021         echo "$out"
14022         uuid=$(echo "$out" | grep -i uuid | awk '{ print $2 }')
14023         [ "$uuid" == "$(ostuuid_from_index 0)" ] ||
14024                 error "Invalid uuid returned by $LR_READER on target $tgt"
14025         echo -e "uuid returned by $LR_READER is '$uuid'\n"
14026
14027         # check lr_reader -c on MDT0000
14028         tgt=mds1
14029         dev=$(facet_device $tgt)
14030         if ! do_facet $tgt $LR_READER -h | grep -q OPTIONS; then
14031                 echo "$LR_READER does not support additional options"
14032                 return 0
14033         fi
14034         out=$(do_facet $tgt $LR_READER -c $dev)
14035         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
14036         echo "$out"
14037         num=$(echo "$out" | grep -c "mdtlov")
14038         [ "$num" -eq $((MDSCOUNT - 1)) ] ||
14039                 error "Invalid number of mdtlov clients returned by $LR_READER"
14040         echo -e "Number of mdtlov clients returned by $LR_READER is '$num'\n"
14041
14042         # check lr_reader -cr on MDT0000
14043         out=$(do_facet $tgt $LR_READER -cr $dev)
14044         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
14045         echo "$out"
14046         echo "$out" | grep -q "^reply_data:$" ||
14047                 error "$LR_READER should have returned 'reply_data' section"
14048         num=$(echo "$out" | grep -c "client_generation")
14049         echo -e "Number of reply data returned by $LR_READER is '$num'\n"
14050 }
14051 run_test 252 "check lr_reader tool"
14052
14053 test_253_fill_ost() {
14054         local size_mb #how many MB should we write to pass watermark
14055         local lwm=$3  #low watermark
14056         local free_10mb #10% of free space
14057
14058         free_kb=$($LFS df $MOUNT | grep $1 | awk '{ print $4 }')
14059         size_mb=$((free_kb / 1024 - lwm))
14060         free_10mb=$((free_kb / 10240))
14061         #If 10% of free space cross low watermark use it
14062         if (( free_10mb > size_mb )); then
14063                 size_mb=$free_10mb
14064         else
14065                 #At least we need to store 1.1 of difference between
14066                 #free space and low watermark
14067                 size_mb=$((size_mb + size_mb / 10))
14068         fi
14069         if (( lwm <= $((free_kb / 1024)) )) || [ ! -f $DIR/$tdir/1 ]; then
14070                 dd if=/dev/zero of=$DIR/$tdir/1 bs=1M count=$size_mb \
14071                          oflag=append conv=notrunc
14072         fi
14073
14074         sleep_maxage
14075
14076         free_kb=$($LFS df $MOUNT | grep $1 | awk '{ print $4 }')
14077         echo "OST still has $((free_kb / 1024)) mbytes free"
14078 }
14079
14080 test_253() {
14081         local ostidx=0
14082         local rc=0
14083
14084         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14085         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14086         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
14087
14088         local ost_name=$($LFS osts | grep ${ostidx}": " | \
14089                 awk '{print $2}' | sed -e 's/_UUID$//')
14090         # on the mdt's osc
14091         local mdtosc_proc1=$(get_mdtosc_proc_path $SINGLEMDS $ost_name)
14092         do_facet $SINGLEMDS $LCTL get_param -n \
14093                 osp.$mdtosc_proc1.reserved_mb_high ||
14094                 { skip  "remote MDS does not support reserved_mb_high" &&
14095                   return; }
14096
14097         rm -rf $DIR/$tdir
14098         wait_mds_ost_sync
14099         wait_delete_completed
14100         mkdir $DIR/$tdir
14101
14102         local last_wm_h=$(do_facet $SINGLEMDS $LCTL get_param -n \
14103                         osp.$mdtosc_proc1.reserved_mb_high)
14104         local last_wm_l=$(do_facet $SINGLEMDS $LCTL get_param -n \
14105                         osp.$mdtosc_proc1.reserved_mb_low)
14106         echo "prev high watermark $last_wm_h, prev low watermark $last_wm_l"
14107
14108         do_facet mgs $LCTL pool_new $FSNAME.$TESTNAME ||
14109                 error "Pool creation failed"
14110         do_facet mgs $LCTL pool_add $FSNAME.$TESTNAME $ost_name ||
14111                 error "Adding $ost_name to pool failed"
14112
14113         # Wait for client to see a OST at pool
14114         wait_update $HOSTNAME "$LCTL get_param -n
14115                 lov.$FSNAME-*.pools.$TESTNAME | sort -u |
14116                 grep $ost_name" "$ost_name""_UUID" $((TIMEOUT/2)) ||
14117                 error "Client can not see the pool"
14118         $SETSTRIPE $DIR/$tdir -i $ostidx -c 1 -p $FSNAME.$TESTNAME ||
14119                 error "Setstripe failed"
14120
14121         dd if=/dev/zero of=$DIR/$tdir/0 bs=1M count=10
14122         local blocks=$($LFS df $MOUNT | grep $ost_name | awk '{ print $4 }')
14123         echo "OST still has $((blocks/1024)) mbytes free"
14124
14125         local new_lwm=$((blocks/1024-10))
14126         do_facet $SINGLEMDS $LCTL set_param \
14127                         osp.$mdtosc_proc1.reserved_mb_high=$((new_lwm+5))
14128         do_facet $SINGLEMDS $LCTL set_param \
14129                         osp.$mdtosc_proc1.reserved_mb_low=$new_lwm
14130
14131         test_253_fill_ost $ost_name $mdtosc_proc1 $new_lwm
14132
14133         #First enospc could execute orphan deletion so repeat.
14134         test_253_fill_ost $ost_name $mdtosc_proc1 $new_lwm
14135
14136         local oa_status=$(do_facet $SINGLEMDS $LCTL get_param -n \
14137                         osp.$mdtosc_proc1.prealloc_status)
14138         echo "prealloc_status $oa_status"
14139
14140         dd if=/dev/zero of=$DIR/$tdir/2 bs=1M count=1 &&
14141                 error "File creation should fail"
14142         #object allocation was stopped, but we still able to append files
14143         dd if=/dev/zero of=$DIR/$tdir/1 bs=1M seek=6 count=5 oflag=append ||
14144                 error "Append failed"
14145         rm -f $DIR/$tdir/1 $DIR/$tdir/0 $DIR/$tdir/r*
14146
14147         wait_delete_completed
14148
14149         sleep_maxage
14150
14151         for i in $(seq 10 12); do
14152                 dd if=/dev/zero of=$DIR/$tdir/$i bs=1M count=1 2>/dev/null ||
14153                         error "File creation failed after rm";
14154         done
14155
14156         oa_status=$(do_facet $SINGLEMDS $LCTL get_param -n \
14157                         osp.$mdtosc_proc1.prealloc_status)
14158         echo "prealloc_status $oa_status"
14159
14160         if (( oa_status != 0 )); then
14161                 error "Object allocation still disable after rm"
14162         fi
14163         do_facet $SINGLEMDS $LCTL set_param \
14164                         osp.$mdtosc_proc1.reserved_mb_high=$last_wm_h
14165         do_facet $SINGLEMDS $LCTL set_param \
14166                         osp.$mdtosc_proc1.reserved_mb_low=$last_wm_l
14167
14168
14169         do_facet mgs $LCTL pool_remove $FSNAME.$TESTNAME $ost_name ||
14170                 error "Remove $ost_name from pool failed"
14171         do_facet mgs $LCTL pool_destroy $FSNAME.$TESTNAME ||
14172                 error "Pool destroy fialed"
14173 }
14174 run_test 253 "Check object allocation limit"
14175
14176 test_254() {
14177         local cl_user
14178
14179         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14180         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14181         do_facet mds1 $LCTL get_param -n mdd.$MDT0.changelog_size ||
14182                 { skip "MDS does not support changelog_size" && return; }
14183
14184         cl_user=$(do_facet mds1 $LCTL --device $MDT0 changelog_register -n)
14185         echo "Registered as changelog user $cl_user"
14186
14187         $LFS changelog_clear $MDT0 $cl_user 0
14188
14189         local size1=$(do_facet mds1 \
14190                       $LCTL get_param -n mdd.$MDT0.changelog_size)
14191         echo "Changelog size $size1"
14192
14193         rm -rf $DIR/$tdir
14194         $LFS mkdir -i 0 $DIR/$tdir
14195         # change something
14196         mkdir -p $DIR/$tdir/pics/2008/zachy
14197         touch $DIR/$tdir/pics/2008/zachy/timestamp
14198         cp /etc/hosts $DIR/$tdir/pics/2008/zachy/pic1.jpg
14199         mv $DIR/$tdir/pics/2008/zachy $DIR/$tdir/pics/zach
14200         ln $DIR/$tdir/pics/zach/pic1.jpg $DIR/$tdir/pics/2008/portland.jpg
14201         ln -s $DIR/$tdir/pics/2008/portland.jpg $DIR/$tdir/pics/desktop.jpg
14202         rm $DIR/$tdir/pics/desktop.jpg
14203
14204         local size2=$(do_facet mds1 \
14205                       $LCTL get_param -n mdd.$MDT0.changelog_size)
14206         echo "Changelog size after work $size2"
14207
14208         do_facet mds1 $LCTL --device $MDT0 changelog_deregister $cl_user
14209
14210         if (( size2 <= size1 )); then
14211                 error "Changelog size after work should be greater than original"
14212         fi
14213         return 0
14214 }
14215 run_test 254 "Check changelog size"
14216
14217 ladvise_no_type()
14218 {
14219         local type=$1
14220         local file=$2
14221
14222         lfs ladvise -a invalid $file 2>&1 | grep "Valid types" |
14223                 awk -F: '{print $2}' | grep $type > /dev/null
14224         if [ $? -ne 0 ]; then
14225                 return 0
14226         fi
14227         return 1
14228 }
14229
14230 ladvise_no_ioctl()
14231 {
14232         local file=$1
14233
14234         lfs ladvise -a willread $file > /dev/null 2>&1
14235         if [ $? -eq 0 ]; then
14236                 return 1
14237         fi
14238
14239         lfs ladvise -a willread $file 2>&1 |
14240                 grep "Inappropriate ioctl for device" > /dev/null
14241         if [ $? -eq 0 ]; then
14242                 return 0
14243         fi
14244         return 1
14245 }
14246
14247 ladvise_willread_performance()
14248 {
14249         local repeat=10
14250         local average_cache=0
14251         local average_ladvise=0
14252
14253         for ((i = 1; i <= $repeat; i++)); do
14254                 echo "Iter $i/$repeat: reading without willread hint"
14255                 cancel_lru_locks osc
14256                 do_nodes $(comma_list $(osts_nodes)) \
14257                         "echo 3 > /proc/sys/vm/drop_caches"
14258                 local speed_origin=$($READS -f $DIR/$tfile -s $size \
14259                         -b 4096 -n $((size / 4096)) -t 60 |
14260                         sed -e '/^$/d' -e 's#.*s, ##' -e 's#MB/s##')
14261
14262                 echo "Iter $i/$repeat: Reading again without willread hint"
14263                 cancel_lru_locks osc
14264                 local speed_cache=$($READS -f $DIR/$tfile -s $size \
14265                         -b 4096 -n $((size / 4096)) -t 60 |
14266                         sed -e '/^$/d' -e 's#.*s, ##' -e 's#MB/s##')
14267
14268                 echo "Iter $i/$repeat: reading with willread hint"
14269                 cancel_lru_locks osc
14270                 do_nodes $(comma_list $(osts_nodes)) \
14271                         "echo 3 > /proc/sys/vm/drop_caches"
14272                 lfs ladvise -a willread $DIR/$tfile ||
14273                         error "Ladvise failed"
14274                 local speed_ladvise=$($READS -f $DIR/$tfile -s $size \
14275                         -b 4096 -n $((size / 4096)) -t 60 |
14276                         sed -e '/^$/d' -e 's#.*s, ##' -e 's#MB/s##')
14277
14278                 local cache_speedup=$(echo "scale=2; \
14279                         ($speed_cache-$speed_origin)/$speed_origin*100" | bc)
14280                 cache_speedup=$(echo ${cache_speedup%.*})
14281                 echo "Iter $i/$repeat: cache speedup: $cache_speedup%"
14282                 average_cache=$((average_cache + cache_speedup))
14283
14284                 local ladvise_speedup=$(echo "scale=2; \
14285                         ($speed_ladvise-$speed_origin)/$speed_origin*100" | bc)
14286                 ladvise_speedup=$(echo ${ladvise_speedup%.*})
14287                 echo "Iter $i/$repeat: ladvise speedup: $ladvise_speedup%"
14288                 average_ladvise=$((average_ladvise + ladvise_speedup))
14289         done
14290         average_cache=$((average_cache / repeat))
14291         average_ladvise=$((average_ladvise / repeat))
14292
14293         if [ $average_cache -lt 20 ]; then
14294                 echo "Speedup with cache is less than 20% ($average_cache%),"\
14295                         "skipping check of speedup with willread:"\
14296                         "$average_ladvise%"
14297                 return 0
14298         fi
14299
14300         local lowest_speedup=$((average_cache / 2))
14301         [ $average_ladvise -gt $lowest_speedup ] ||
14302                 error_not_in_vm "Speedup with willread is less than " \
14303                            "$lowest_speedup%, got $average_ladvise%"
14304         echo "Speedup with willread ladvise: $average_ladvise%"
14305         echo "Speedup with cache: $average_cache%"
14306 }
14307
14308 test_255a() {
14309         lfs setstripe -c -1 -i 0 $DIR/$tfile || error "$tfile failed"
14310
14311         ladvise_no_type willread $DIR/$tfile &&
14312                 skip "willread ladvise is not supported" && return
14313
14314         ladvise_no_ioctl $DIR/$tfile &&
14315                 skip "ladvise ioctl is not supported" && return
14316
14317         [ $(lustre_version_code ost1) -lt $(version_code 2.8.54) ] &&
14318                 skip "lustre < 2.8.54 does not support ladvise " && return
14319
14320         local size_mb=100
14321         local size=$((size_mb * 1048576))
14322         dd if=/dev/zero of=$DIR/$tfile bs=1048576 count=$size_mb ||
14323                 error "dd to $DIR/$tfile failed"
14324
14325         lfs ladvise -a willread $DIR/$tfile ||
14326                 error "Ladvise failed with no range argument"
14327
14328         lfs ladvise -a willread -s 0 $DIR/$tfile ||
14329                 error "Ladvise failed with no -l or -e argument"
14330
14331         lfs ladvise -a willread -e 1 $DIR/$tfile ||
14332                 error "Ladvise failed with only -e argument"
14333
14334         lfs ladvise -a willread -l 1 $DIR/$tfile ||
14335                 error "Ladvise failed with only -l argument"
14336
14337         lfs ladvise -a willread -s 2 -e 1 $DIR/$tfile &&
14338                 error "End offset should not be smaller than start offset"
14339
14340         lfs ladvise -a willread -s 2 -e 2 $DIR/$tfile &&
14341                 error "End offset should not be equal to start offset"
14342
14343         lfs ladvise -a willread -s $size -l 1 $DIR/$tfile ||
14344                 error "Ladvise failed with overflowing -s argument"
14345
14346         lfs ladvise -a willread -s 1 -e $((size + 1)) $DIR/$tfile ||
14347                 error "Ladvise failed with overflowing -e argument"
14348
14349         lfs ladvise -a willread -s 1 -l $size $DIR/$tfile ||
14350                 error "Ladvise failed with overflowing -l argument"
14351
14352         lfs ladvise -a willread -l 1 -e 2 $DIR/$tfile &&
14353                 error "Ladvise succeeded with conflicting -l and -e arguments"
14354
14355         echo "Synchronous ladvise should wait"
14356         local delay=4
14357 #define OBD_FAIL_OST_LADVISE_PAUSE       0x237
14358         do_nodes $(comma_list $(osts_nodes)) \
14359                 $LCTL set_param fail_val=$delay fail_loc=0x237
14360
14361         local start_ts=$SECONDS
14362         lfs ladvise -a willread $DIR/$tfile ||
14363                 error "Ladvise failed with no range argument"
14364         local end_ts=$SECONDS
14365         local inteval_ts=$((end_ts - start_ts))
14366
14367         if [ $inteval_ts -lt $(($delay - 1)) ]; then
14368                 error "Synchronous advice didn't wait reply"
14369         fi
14370
14371         echo "Asynchronous ladvise shouldn't wait"
14372         local start_ts=$SECONDS
14373         lfs ladvise -a willread -b $DIR/$tfile ||
14374                 error "Ladvise failed with no range argument"
14375         local end_ts=$SECONDS
14376         local inteval_ts=$((end_ts - start_ts))
14377
14378         if [ $inteval_ts -gt $(($delay / 2)) ]; then
14379                 error "Asynchronous advice blocked"
14380         fi
14381
14382         do_nodes $(comma_list $(osts_nodes)) $LCTL set_param fail_loc=0
14383         ladvise_willread_performance
14384 }
14385 run_test 255a "check 'lfs ladvise -a willread'"
14386
14387 facet_meminfo() {
14388         local facet=$1
14389         local info=$2
14390
14391         do_facet $facet "cat /proc/meminfo | grep ^${info}:" | awk '{print $2}'
14392 }
14393
14394 test_255b() {
14395         lfs setstripe -c -1 -i 0 $DIR/$tfile
14396
14397         ladvise_no_type dontneed $DIR/$tfile &&
14398                 skip "dontneed ladvise is not supported" && return
14399
14400         ladvise_no_ioctl $DIR/$tfile &&
14401                 skip "ladvise ioctl is not supported" && return
14402
14403         [ $(lustre_version_code ost1) -lt $(version_code 2.8.54) ] &&
14404                 skip "lustre < 2.8.54 does not support ladvise" && return
14405
14406         [ "$(facet_fstype ost1)" = "zfs" ] &&
14407                 skip "zfs-osd does not support dontneed advice" && return
14408
14409         local size_mb=100
14410         local size=$((size_mb * 1048576))
14411         # In order to prevent disturbance of other processes, only check 3/4
14412         # of the memory usage
14413         local kibibytes=$((size_mb * 1024 * 3 / 4))
14414
14415         dd if=/dev/zero of=$DIR/$tfile bs=1048576 count=$size_mb ||
14416                 error "dd to $DIR/$tfile failed"
14417
14418         local total=$(facet_meminfo ost1 MemTotal)
14419         echo "Total memory: $total KiB"
14420
14421         do_facet ost1 "sync && echo 3 > /proc/sys/vm/drop_caches"
14422         local before_read=$(facet_meminfo ost1 Cached)
14423         echo "Cache used before read: $before_read KiB"
14424
14425         lfs ladvise -a willread $DIR/$tfile ||
14426                 error "Ladvise willread failed"
14427         local after_read=$(facet_meminfo ost1 Cached)
14428         echo "Cache used after read: $after_read KiB"
14429
14430         lfs ladvise -a dontneed $DIR/$tfile ||
14431                 error "Ladvise dontneed again failed"
14432         local no_read=$(facet_meminfo ost1 Cached)
14433         echo "Cache used after dontneed ladvise: $no_read KiB"
14434
14435         if [ $total -lt $((before_read + kibibytes)) ]; then
14436                 echo "Memory is too small, abort checking"
14437                 return 0
14438         fi
14439
14440         if [ $((before_read + kibibytes)) -gt $after_read ]; then
14441                 error "Ladvise willread should use more memory" \
14442                         "than $kibibytes KiB"
14443         fi
14444
14445         if [ $((no_read + kibibytes)) -gt $after_read ]; then
14446                 error "Ladvise dontneed should release more memory" \
14447                         "than $kibibytes KiB"
14448         fi
14449 }
14450 run_test 255b "check 'lfs ladvise -a dontneed'"
14451
14452 test_256() {
14453         local cl_user
14454         local cat_sl
14455         local mdt_dev
14456
14457         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14458         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14459         [ "$(facet_fstype mds1)" != "ldiskfs" ] &&
14460                 skip "non-ldiskfs backend" && return
14461
14462         mdt_dev=$(mdsdevname 1)
14463         echo $mdt_dev
14464         cl_user=$(do_facet mds1 \
14465         "$LCTL get_param -n mdd.$MDT0.changelog_users | grep cl")
14466         if [[ -n $cl_user ]]; then
14467                 skip "active changelog user"
14468                 return
14469         fi
14470
14471         cl_user=$(do_facet mds1 $LCTL --device $MDT0 changelog_register -n)
14472         echo "Registered as changelog user $cl_user"
14473
14474         rm -rf $DIR/$tdir
14475         mkdir -p $DIR/$tdir
14476
14477         $LFS changelog_clear $MDT0 $cl_user 0
14478
14479         # change something
14480         touch $DIR/$tdir/{1..10}
14481
14482         # stop the MDT
14483         stop mds1 || error "Fail to stop MDT."
14484
14485         # remount the MDT
14486         start mds1 $mdt_dev $MDS_MOUNT_OPTS || error "Fail to start MDT."
14487
14488         #after mount new plainllog is used
14489         touch $DIR/$tdir/{11..19}
14490         cat_sl=$(do_facet mds1 \
14491         "$DEBUGFS -R \\\"dump changelog_catalog cat.dmp\\\" $mdt_dev; \
14492          llog_reader cat.dmp | grep \\\"type=1064553b\\\" | wc -l")
14493
14494         if (( cat_sl != 2 )); then
14495                 do_facet mds1 $LCTL --device $MDT0 changelog_deregister $cl_user
14496                 error "Changelog catalog has wrong number of slots $cat_sl"
14497         fi
14498
14499         $LFS changelog_clear $MDT0 $cl_user 0
14500
14501         cat_sl=$(do_facet mds1 \
14502         "$DEBUGFS -R \\\"dump changelog_catalog cat.dmp\\\" $mdt_dev; \
14503          llog_reader cat.dmp | grep \\\"type=1064553b\\\" | wc -l")
14504
14505         do_facet mds1 $LCTL --device $MDT0 changelog_deregister $cl_user
14506
14507         if (( cat_sl == 2 )); then
14508                 error "Empty plain llog was not deleted from changelog catalog"
14509         fi
14510         if (( cat_sl != 1 )); then
14511                 error "Active plain llog shouldn\`t be deleted from catalog"
14512         fi
14513 }
14514 run_test 256 "Check llog delete for empty and not full state"
14515
14516 test_257() {
14517         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14518         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.55) ]] &&
14519                 skip "Need MDS version at least 2.8.55" && return
14520
14521         test_mkdir -p $DIR/$tdir
14522
14523         setfattr -n trusted.name1 -v value1 $DIR/$tdir ||
14524                 error "setfattr -n trusted.name1=value1 $DIR/$tdir failed"
14525         stat $DIR/$tdir
14526
14527 #define OBD_FAIL_MDS_XATTR_REP                  0x161
14528         local mdtidx=$($LFS getstripe -M $DIR/$tdir)
14529         local facet=mds$((mdtidx + 1))
14530         set_nodes_failloc $(facet_active_host $facet) 0x80000161
14531         getfattr -n trusted.name1 $DIR/$tdir 2> /dev/null
14532
14533         stop $facet || error "stop MDS failed"
14534         start $facet $(mdsdevname $((mdtidx + 1))) $MDS_MOUNT_OPTS ||
14535                 error "start MDS fail"
14536 }
14537 run_test 257 "xattr locks are not lost"
14538
14539 test_260() {
14540 #define OBD_FAIL_MDC_CLOSE               0x806
14541         $LCTL set_param fail_loc=0x80000806
14542         touch $DIR/$tfile
14543
14544 }
14545 run_test 260 "Check mdc_close fail"
14546
14547 cleanup_test_300() {
14548         trap 0
14549         umask $SAVE_UMASK
14550 }
14551 test_striped_dir() {
14552         local mdt_index=$1
14553         local stripe_count
14554         local stripe_index
14555
14556         mkdir -p $DIR/$tdir
14557
14558         SAVE_UMASK=$(umask)
14559         trap cleanup_test_300 RETURN EXIT
14560
14561         $LFS setdirstripe -i $mdt_index -c 2 -t all_char -m 755 \
14562                                                 $DIR/$tdir/striped_dir ||
14563                 error "set striped dir error"
14564
14565         local mode=$(stat -c%a $DIR/$tdir/striped_dir)
14566         [ "$mode" = "755" ] || error "expect 755 got $mode"
14567
14568         $LFS getdirstripe $DIR/$tdir/striped_dir > /dev/null 2>&1 ||
14569                 error "getdirstripe failed"
14570         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir)
14571         if [ "$stripe_count" != "2" ]; then
14572                 error "stripe_count is $stripe_count, expect 2"
14573         fi
14574
14575         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir)
14576         if [ "$stripe_index" != "$mdt_index" ]; then
14577                 error "stripe_index is $stripe_index, expect $mdt_index"
14578         fi
14579
14580         [ $(stat -c%h $DIR/$tdir/striped_dir) == '2' ] ||
14581                 error "nlink error after create striped dir"
14582
14583         mkdir $DIR/$tdir/striped_dir/a
14584         mkdir $DIR/$tdir/striped_dir/b
14585
14586         stat $DIR/$tdir/striped_dir/a ||
14587                 error "create dir under striped dir failed"
14588         stat $DIR/$tdir/striped_dir/b ||
14589                 error "create dir under striped dir failed"
14590
14591         [ $(stat -c%h $DIR/$tdir/striped_dir) == '4' ] ||
14592                 error "nlink error after mkdir"
14593
14594         rmdir $DIR/$tdir/striped_dir/a
14595         [ $(stat -c%h $DIR/$tdir/striped_dir) == '3' ] ||
14596                 error "nlink error after rmdir"
14597
14598         rmdir $DIR/$tdir/striped_dir/b
14599         [ $(stat -c%h $DIR/$tdir/striped_dir) == '2' ] ||
14600                 error "nlink error after rmdir"
14601
14602         chattr +i $DIR/$tdir/striped_dir
14603         createmany -o $DIR/$tdir/striped_dir/f 10 &&
14604                 error "immutable flags not working under striped dir!"
14605         chattr -i $DIR/$tdir/striped_dir
14606
14607         rmdir $DIR/$tdir/striped_dir ||
14608                 error "rmdir striped dir error"
14609
14610         cleanup_test_300
14611
14612         true
14613 }
14614
14615 test_300a() {
14616         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
14617                 skip "skipped for lustre < 2.7.0" && return
14618         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14619         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14620
14621         test_striped_dir 0 || error "failed on striped dir on MDT0"
14622         test_striped_dir 1 || error "failed on striped dir on MDT0"
14623 }
14624 run_test 300a "basic striped dir sanity test"
14625
14626 test_300b() {
14627         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
14628                 skip "skipped for lustre < 2.7.0" && return
14629         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14630         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14631         local i
14632         local mtime1
14633         local mtime2
14634         local mtime3
14635
14636         test_mkdir $DIR/$tdir || error "mkdir fail"
14637         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir ||
14638                 error "set striped dir error"
14639         for ((i=0; i<10; i++)); do
14640                 mtime1=$(stat -c %Y $DIR/$tdir/striped_dir)
14641                 sleep 1
14642                 touch $DIR/$tdir/striped_dir/file_$i ||
14643                                         error "touch error $i"
14644                 mtime2=$(stat -c %Y $DIR/$tdir/striped_dir)
14645                 [ $mtime1 -eq $mtime2 ] &&
14646                         error "mtime not change after create"
14647                 sleep 1
14648                 rm -f $DIR/$tdir/striped_dir/file_$i ||
14649                                         error "unlink error $i"
14650                 mtime3=$(stat -c %Y $DIR/$tdir/striped_dir)
14651                 [ $mtime2 -eq $mtime3 ] &&
14652                         error "mtime did not change after unlink"
14653         done
14654         true
14655 }
14656 run_test 300b "check ctime/mtime for striped dir"
14657
14658 test_300c() {
14659         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
14660                 skip "skipped for lustre < 2.7.0" && return
14661         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14662         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14663         local file_count
14664
14665         mkdir -p $DIR/$tdir
14666         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir ||
14667                 error "set striped dir error"
14668
14669         chown $RUNAS_ID:$RUNAS_GID $DIR/$tdir/striped_dir ||
14670                 error "chown striped dir failed"
14671
14672         $RUNAS createmany -o $DIR/$tdir/striped_dir/f 5000 ||
14673                 error "create 5k files failed"
14674
14675         file_count=$(ls $DIR/$tdir/striped_dir | wc -l)
14676
14677         [ "$file_count" = 5000 ] || error "file count $file_count != 5000"
14678
14679         rm -rf $DIR/$tdir
14680 }
14681 run_test 300c "chown && check ls under striped directory"
14682
14683 test_300d() {
14684         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
14685                 skip "skipped for lustre < 2.7.0" && return
14686         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14687         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14688         local stripe_count
14689         local file
14690
14691         mkdir -p $DIR/$tdir
14692         $SETSTRIPE -c 2 $DIR/$tdir
14693
14694         #local striped directory
14695         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir ||
14696                 error "set striped dir error"
14697         createmany -o $DIR/$tdir/striped_dir/f 10 ||
14698                 error "create 10 files failed"
14699
14700         #remote striped directory
14701         $LFS setdirstripe -i 1 -c 2 $DIR/$tdir/remote_striped_dir ||
14702                 error "set striped dir error"
14703         createmany -o $DIR/$tdir/remote_striped_dir/f 10 ||
14704                 error "create 10 files failed"
14705
14706         for file in $(find $DIR/$tdir); do
14707                 stripe_count=$($GETSTRIPE -c $file)
14708                 [ $stripe_count -eq 2 ] ||
14709                         error "wrong stripe $stripe_count for $file"
14710         done
14711
14712         rm -rf $DIR/$tdir
14713 }
14714 run_test 300d "check default stripe under striped directory"
14715
14716 test_300e() {
14717         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
14718                 skip "Need MDS version at least 2.7.55" && return
14719         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14720         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14721         local stripe_count
14722         local file
14723
14724         mkdir -p $DIR/$tdir
14725
14726         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir ||
14727                 error "set striped dir error"
14728
14729         touch $DIR/$tdir/striped_dir/a
14730         touch $DIR/$tdir/striped_dir/b
14731         touch $DIR/$tdir/striped_dir/c
14732
14733         mkdir $DIR/$tdir/striped_dir/dir_a
14734         mkdir $DIR/$tdir/striped_dir/dir_b
14735         mkdir $DIR/$tdir/striped_dir/dir_c
14736
14737         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir/stp_a ||
14738                 error "set striped dir under striped dir error"
14739
14740         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir/stp_b ||
14741                 error "set striped dir under striped dir error"
14742
14743         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir/stp_c ||
14744                 error "set striped dir under striped dir error"
14745
14746         mrename $DIR/$tdir/striped_dir/dir_a $DIR/$tdir/striped_dir/dir_b ||
14747                 error "rename dir under striped dir fails"
14748
14749         mrename $DIR/$tdir/striped_dir/stp_a $DIR/$tdir/striped_dir/stp_b ||
14750                 error "rename dir under different stripes fails"
14751
14752         mrename $DIR/$tdir/striped_dir/a $DIR/$tdir/striped_dir/c ||
14753                 error "rename file under striped dir should succeed"
14754
14755         mrename $DIR/$tdir/striped_dir/dir_b $DIR/$tdir/striped_dir/dir_c ||
14756                 error "rename dir under striped dir should succeed"
14757
14758         rm -rf $DIR/$tdir
14759 }
14760 run_test 300e "check rename under striped directory"
14761
14762 test_300f() {
14763         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
14764                 skip "Need MDS version at least 2.7.55" && return
14765         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14766         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14767         local stripe_count
14768         local file
14769
14770         rm -rf $DIR/$tdir
14771         mkdir -p $DIR/$tdir
14772
14773         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir ||
14774                 error "set striped dir error"
14775
14776         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir1 ||
14777                 error "set striped dir error"
14778
14779         touch $DIR/$tdir/striped_dir/a
14780         mkdir $DIR/$tdir/striped_dir/dir_a
14781         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir/stp_a ||
14782                 error "create striped dir under striped dir fails"
14783
14784         touch $DIR/$tdir/striped_dir1/b
14785         mkdir $DIR/$tdir/striped_dir1/dir_b
14786         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir/stp_b ||
14787                 error "create striped dir under striped dir fails"
14788
14789         mrename $DIR/$tdir/striped_dir/dir_a $DIR/$tdir/striped_dir1/dir_b ||
14790                 error "rename dir under different striped dir should fail"
14791
14792         mrename $DIR/$tdir/striped_dir/stp_a $DIR/$tdir/striped_dir1/stp_b ||
14793                 error "rename striped dir under diff striped dir should fail"
14794
14795         mrename $DIR/$tdir/striped_dir/a $DIR/$tdir/striped_dir1/a ||
14796                 error "rename file under diff striped dirs fails"
14797
14798         rm -rf $DIR/$tdir
14799 }
14800 run_test 300f "check rename cross striped directory"
14801
14802 test_300_check_default_striped_dir()
14803 {
14804         local dirname=$1
14805         local default_count=$2
14806         local default_index=$3
14807         local stripe_count
14808         local stripe_index
14809         local dir_stripe_index
14810         local dir
14811
14812         echo "checking $dirname $default_count $default_index"
14813         $LFS setdirstripe -D -c $default_count -i $default_index \
14814                                 -t all_char $DIR/$tdir/$dirname ||
14815                 error "set default stripe on striped dir error"
14816         stripe_count=$($LFS getdirstripe -D -c $DIR/$tdir/$dirname)
14817         [ $stripe_count -eq $default_count ] ||
14818                 error "expect $default_count get $stripe_count for $dirname"
14819
14820         stripe_index=$($LFS getdirstripe -D -i $DIR/$tdir/$dirname)
14821         [ $stripe_index -eq $default_index ] ||
14822                 error "expect $default_index get $stripe_index for $dirname"
14823
14824         mkdir $DIR/$tdir/$dirname/{test1,test2,test3,test4} ||
14825                                                 error "create dirs failed"
14826
14827         createmany -o $DIR/$tdir/$dirname/f- 10 || error "create files failed"
14828         unlinkmany $DIR/$tdir/$dirname/f- 10    || error "unlink files failed"
14829         for dir in $(find $DIR/$tdir/$dirname/*); do
14830                 stripe_count=$($LFS getdirstripe -c $dir)
14831                 [ $stripe_count -eq $default_count ] ||
14832                 [ $stripe_count -eq 0 -o $default_count -eq 1 ] ||
14833                 error "stripe count $default_count != $stripe_count for $dir"
14834
14835                 stripe_index=$($LFS getdirstripe -i $dir)
14836                 [ $default_index -eq -1 -o $stripe_index -eq $default_index ] ||
14837                         error "$stripe_index != $default_index for $dir"
14838
14839                 #check default stripe
14840                 stripe_count=$($LFS getdirstripe -D -c $dir)
14841                 [ $stripe_count -eq $default_count ] ||
14842                 error "default count $default_count != $stripe_count for $dir"
14843
14844                 stripe_index=$($LFS getdirstripe -D -i $dir)
14845                 [ $stripe_index -eq $default_index ] ||
14846                 error "default index $default_index != $stripe_index for $dir"
14847         done
14848         rmdir $DIR/$tdir/$dirname/* || error "rmdir failed"
14849 }
14850
14851 test_300g() {
14852         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
14853                 skip "Need MDS version at least 2.7.55" && return
14854         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14855         local dir
14856         local stripe_count
14857         local stripe_index
14858
14859         mkdir $DIR/$tdir
14860         mkdir $DIR/$tdir/normal_dir
14861
14862         test_300_check_default_striped_dir normal_dir $MDSCOUNT 1
14863         test_300_check_default_striped_dir normal_dir 1 0
14864         test_300_check_default_striped_dir normal_dir 2 1
14865         test_300_check_default_striped_dir normal_dir 2 -1
14866
14867         #delete default stripe information
14868         echo "delete default stripeEA"
14869         $LFS setdirstripe -d $DIR/$tdir/normal_dir ||
14870                 error "set default stripe on striped dir error"
14871
14872         mkdir -p $DIR/$tdir/normal_dir/{test1,test2,test3,test4}
14873         for dir in $(find $DIR/$tdir/normal_dir/*); do
14874                 stripe_count=$($LFS getdirstripe -c $dir)
14875                 [ $stripe_count -eq 0 ] ||
14876                         error "expect 1 get $stripe_count for $dir"
14877                 stripe_index=$($LFS getdirstripe -i $dir)
14878                 [ $stripe_index -eq 0 ] ||
14879                         error "expect 0 get $stripe_index for $dir"
14880         done
14881 }
14882 run_test 300g "check default striped directory for normal directory"
14883
14884 test_300h() {
14885         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
14886                 skip "Need MDS version at least 2.7.55" && return
14887         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14888         local dir
14889         local stripe_count
14890
14891         mkdir $DIR/$tdir
14892         $LFS setdirstripe -i 0 -c $MDSCOUNT -t all_char \
14893                                         $DIR/$tdir/striped_dir ||
14894                 error "set striped dir error"
14895
14896         test_300_check_default_striped_dir striped_dir $MDSCOUNT 1
14897         test_300_check_default_striped_dir striped_dir 1 0
14898         test_300_check_default_striped_dir striped_dir 2 1
14899         test_300_check_default_striped_dir striped_dir 2 -1
14900
14901         #delete default stripe information
14902         $LFS setdirstripe -d $DIR/$tdir/striped_dir ||
14903                 error "set default stripe on striped dir error"
14904
14905         mkdir -p $DIR/$tdir/striped_dir/{test1,test2,test3,test4}
14906         for dir in $(find $DIR/$tdir/striped_dir/*); do
14907                 stripe_count=$($LFS getdirstripe -c $dir)
14908                 [ $stripe_count -eq 0 ] ||
14909                         error "expect 1 get $stripe_count for $dir"
14910         done
14911 }
14912 run_test 300h "check default striped directory for striped directory"
14913
14914 test_300i() {
14915         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
14916                 skip "Need MDS version at least 2.7.55" && return
14917         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14918         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14919         local stripe_count
14920         local file
14921
14922         mkdir $DIR/$tdir
14923
14924         $LFS setdirstripe -i 0 -c$MDSCOUNT -t all_char $DIR/$tdir/striped_dir ||
14925                 error "set striped dir error"
14926
14927         createmany -o $DIR/$tdir/striped_dir/f- 10 ||
14928                 error "create files under striped dir failed"
14929
14930         # unfortunately, we need to umount to clear dir layout cache for now
14931         # once we fully implement dir layout, we can drop this
14932         umount_client $MOUNT || error "umount failed"
14933         mount_client $MOUNT || error "mount failed"
14934
14935         #set the stripe to be unknown hash type
14936         #define OBD_FAIL_UNKNOWN_LMV_STRIPE     0x1901
14937         $LCTL set_param fail_loc=0x1901
14938         for ((i = 0; i < 10; i++)); do
14939                 $CHECKSTAT -t file $DIR/$tdir/striped_dir/f-$i ||
14940                         error "stat f-$i failed"
14941                 rm $DIR/$tdir/striped_dir/f-$i || error "unlink f-$i failed"
14942         done
14943
14944         touch $DIR/$tdir/striped_dir/f0 &&
14945                 error "create under striped dir with unknown hash should fail"
14946
14947         $LCTL set_param fail_loc=0
14948
14949         umount_client $MOUNT || error "umount failed"
14950         mount_client $MOUNT || error "mount failed"
14951
14952         return 0
14953 }
14954 run_test 300i "client handle unknown hash type striped directory"
14955
14956 test_300j() {
14957         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14958         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
14959                 skip "Need MDS version at least 2.7.55" && return
14960         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14961         local stripe_count
14962         local file
14963
14964         mkdir $DIR/$tdir
14965
14966         #define OBD_FAIL_SPLIT_UPDATE_REC       0x1702
14967         $LCTL set_param fail_loc=0x1702
14968         $LFS setdirstripe -i 0 -c$MDSCOUNT -t all_char $DIR/$tdir/striped_dir ||
14969                 error "set striped dir error"
14970
14971         createmany -o $DIR/$tdir/striped_dir/f- 10 ||
14972                 error "create files under striped dir failed"
14973
14974         $LCTL set_param fail_loc=0
14975
14976         rm -rf $DIR/$tdir || error "unlink striped dir fails"
14977
14978         return 0
14979 }
14980 run_test 300j "test large update record"
14981
14982 test_300k() {
14983         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
14984                 skip "Need MDS version at least 2.7.55" && return
14985         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14986         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14987         local stripe_count
14988         local file
14989
14990         mkdir $DIR/$tdir
14991
14992         #define OBD_FAIL_LARGE_STRIPE   0x1703
14993         $LCTL set_param fail_loc=0x1703
14994         $LFS setdirstripe -i 0 -c512 $DIR/$tdir/striped_dir ||
14995                 error "set striped dir error"
14996         $LCTL set_param fail_loc=0
14997
14998         $LFS getdirstripe $DIR/$tdir/striped_dir ||
14999                 error "getstripeddir fails"
15000         rm -rf $DIR/$tdir/striped_dir ||
15001                 error "unlink striped dir fails"
15002
15003         return 0
15004 }
15005 run_test 300k "test large striped directory"
15006
15007 test_300l() {
15008         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15009                 skip "Need MDS version at least 2.7.55" && return
15010         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15011         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15012         local stripe_index
15013
15014         test_mkdir -p $DIR/$tdir/striped_dir
15015         chown $RUNAS_ID $DIR/$tdir/striped_dir ||
15016                         error "chown $RUNAS_ID failed"
15017         $LFS setdirstripe -i 1 -D $DIR/$tdir/striped_dir ||
15018                 error "set default striped dir failed"
15019
15020         #define OBD_FAIL_MDS_STALE_DIR_LAYOUT    0x158
15021         $LCTL set_param fail_loc=0x80000158
15022         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir || error "create dir fails"
15023
15024         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir/test_dir)
15025         [ $stripe_index -eq 1 ] ||
15026                 error "expect 1 get $stripe_index for $dir"
15027 }
15028 run_test 300l "non-root user to create dir under striped dir with stale layout"
15029
15030 test_300m() {
15031         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15032                 skip "Need MDS version at least 2.7.55" && return
15033         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15034         [ $MDSCOUNT -ge 2 ] && skip "Only for single MDT" && return
15035
15036         mkdir -p $DIR/$tdir/striped_dir
15037         $LFS setdirstripe -D -c 1 $DIR/$tdir/striped_dir ||
15038                 error "set default stripes dir error"
15039
15040         mkdir $DIR/$tdir/striped_dir/a || error "mkdir a fails"
15041
15042         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir/a)
15043         [ $stripe_count -eq 0 ] ||
15044                         error "expect 0 get $stripe_count for a"
15045
15046         $LFS setdirstripe -D -c 2 $DIR/$tdir/striped_dir ||
15047                 error "set default stripes dir error"
15048
15049         mkdir $DIR/$tdir/striped_dir/b || error "mkdir b fails"
15050
15051         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir/b)
15052         [ $stripe_count -eq 0 ] ||
15053                         error "expect 0 get $stripe_count for b"
15054
15055         $LFS setdirstripe -D -c1 -i2 $DIR/$tdir/striped_dir ||
15056                 error "set default stripes dir error"
15057
15058         mkdir $DIR/$tdir/striped_dir/c &&
15059                 error "default stripe_index is invalid, mkdir c should fails"
15060
15061         rm -rf $DIR/$tdir || error "rmdir fails"
15062 }
15063 run_test 300m "setstriped directory on single MDT FS"
15064
15065 cleanup_300n() {
15066         local list=$(comma_list $(mdts_nodes))
15067
15068         trap 0
15069         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
15070 }
15071
15072 test_300n() {
15073         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15074                 skip "Need MDS version at least 2.7.55" && return
15075         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15076         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15077         local stripe_index
15078         local list=$(comma_list $(mdts_nodes))
15079
15080         trap cleanup_300n RETURN EXIT
15081         mkdir -p $DIR/$tdir
15082         chmod 777 $DIR/$tdir
15083         $RUNAS $LFS setdirstripe -i0 -c$MDSCOUNT \
15084                                 $DIR/$tdir/striped_dir > /dev/null 2>&1 &&
15085                 error "create striped dir succeeds with gid=0"
15086
15087         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=-1
15088         $RUNAS $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir ||
15089                 error "create striped dir fails with gid=-1"
15090
15091         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
15092         $RUNAS $LFS setdirstripe -i 1 -c$MDSCOUNT -D \
15093                                 $DIR/$tdir/striped_dir > /dev/null 2>&1 &&
15094                 error "set default striped dir succeeds with gid=0"
15095
15096
15097         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=-1
15098         $RUNAS $LFS setdirstripe -i 1 -c$MDSCOUNT -D $DIR/$tdir/striped_dir ||
15099                 error "set default striped dir fails with gid=-1"
15100
15101
15102         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
15103         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir ||
15104                                         error "create test_dir fails"
15105         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir1 ||
15106                                         error "create test_dir1 fails"
15107         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir2 ||
15108                                         error "create test_dir2 fails"
15109         cleanup_300n
15110 }
15111 run_test 300n "non-root user to create dir under striped dir with default EA"
15112
15113 test_300o() {
15114         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15115                 skip "Need MDS version at least 2.7.55" && return
15116         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15117         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15118         local numfree1
15119         local numfree2
15120
15121         mkdir -p $DIR/$tdir
15122
15123         numfree1=$(lctl get_param -n mdc.*MDT0000*.filesfree)
15124         numfree2=$(lctl get_param -n mdc.*MDT0001*.filesfree)
15125         if [ $numfree1 -lt 66000 -o $numfree2 -lt 66000 ]; then
15126                 skip "not enough free inodes $numfree1 $numfree2"
15127                 return
15128         fi
15129
15130         numfree1=$(lctl get_param -n mdc.*MDT0000-mdc-*.kbytesfree)
15131         numfree2=$(lctl get_param -n mdc.*MDT0001-mdc-*.kbytesfree)
15132         if [ $numfree1 -lt 300000 -o $numfree2 -lt 300000 ]; then
15133                 skip "not enough free space $numfree1 $numfree2"
15134                 return
15135         fi
15136
15137         $LFS setdirstripe -c2 $DIR/$tdir/striped_dir ||
15138                 error "setdirstripe fails"
15139
15140         createmany -d $DIR/$tdir/striped_dir/d 131000 ||
15141                 error "create dirs fails"
15142
15143         $LCTL set_param ldlm.namespaces.*mdc-*.lru_size=0
15144         ls $DIR/$tdir/striped_dir > /dev/null ||
15145                 error "ls striped dir fails"
15146         unlinkmany -d $DIR/$tdir/striped_dir/d 131000 ||
15147                 error "unlink big striped dir fails"
15148 }
15149 run_test 300o "unlink big sub stripe(> 65000 subdirs)"
15150
15151 test_300p() {
15152         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15153         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15154         remote_mds_nodsh && skip "remote MDS with nodsh" && return
15155
15156         mkdir -p $DIR/$tdir
15157
15158         #define OBD_FAIL_OUT_ENOSPC     0x1704
15159         do_facet mds2 lctl set_param fail_loc=0x80001704
15160         $LFS setdirstripe -c2 $DIR/$tdir/bad_striped_dir > /dev/null 2>&1 &&
15161                         error "create striped directory should fail"
15162
15163         [ -e $DIR/$tdir/bad_striped_dir ] && error "striped dir exists"
15164
15165         $LFS setdirstripe -c2 $DIR/$tdir/bad_striped_dir
15166         true
15167 }
15168 run_test 300p "create striped directory without space"
15169
15170 test_300q() {
15171         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15172         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15173
15174         local fd=$(free_fd)
15175         local cmd="exec $fd<$tdir"
15176         cd $DIR
15177         $LFS mkdir -c $MDSCOUNT $tdir || error "create $tdir fails"
15178         eval $cmd
15179         cmd="exec $fd<&-"
15180         trap "eval $cmd" EXIT
15181         cd $tdir || error "cd $tdir fails"
15182         rmdir  ../$tdir || error "rmdir $tdir fails"
15183         mkdir local_dir && error "create dir succeeds"
15184         $LFS setdirstripe -i1 remote_dir && error "create remote dir succeeds"
15185         eval $cmd
15186         return 0
15187 }
15188 run_test 300q "create remote directory under orphan directory"
15189
15190 prepare_remote_file() {
15191         mkdir $DIR/$tdir/src_dir ||
15192                 error "create remote source failed"
15193
15194         cp /etc/hosts $DIR/$tdir/src_dir/a || error
15195         touch $DIR/$tdir/src_dir/a
15196
15197         $LFS mkdir -i 1 $DIR/$tdir/tgt_dir ||
15198                 error "create remote target dir failed"
15199
15200         touch $DIR/$tdir/tgt_dir/b
15201
15202         mrename $DIR/$tdir/src_dir/a $DIR/$tdir/tgt_dir/b ||
15203                 error "rename dir cross MDT failed!"
15204
15205         $CHECKSTAT -t file $DIR/$tdir/src_dir/a &&
15206                 error "src_child still exists after rename"
15207
15208         $CHECKSTAT -t file $DIR/$tdir/tgt_dir/b ||
15209                 error "missing file(a) after rename"
15210
15211         diff /etc/hosts $DIR/$tdir/tgt_dir/b ||
15212                 error "diff after rename"
15213 }
15214
15215 test_310a() {
15216         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 4 MDTs" && return
15217         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15218         local remote_file=$DIR/$tdir/tgt_dir/b
15219
15220         mkdir -p $DIR/$tdir
15221
15222         prepare_remote_file || error "prepare remote file failed"
15223
15224         #open-unlink file
15225         $OPENUNLINK $remote_file $remote_file || error
15226         $CHECKSTAT -a $remote_file || error
15227 }
15228 run_test 310a "open unlink remote file"
15229
15230 test_310b() {
15231         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 4 MDTs" && return
15232         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15233         local remote_file=$DIR/$tdir/tgt_dir/b
15234
15235         mkdir -p $DIR/$tdir
15236
15237         prepare_remote_file || error "prepare remote file failed"
15238
15239         ln $remote_file $DIR/$tfile || error "link failed for remote file"
15240         $MULTIOP $DIR/$tfile Ouc || error "mulitop failed"
15241         $CHECKSTAT -t file $remote_file || error "check file failed"
15242 }
15243 run_test 310b "unlink remote file with multiple links while open"
15244
15245 test_310c() {
15246         [[ $MDSCOUNT -lt 4 ]] && skip "needs >= 4 MDTs" && return
15247         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15248         local remote_file=$DIR/$tdir/tgt_dir/b
15249
15250         mkdir -p $DIR/$tdir
15251
15252         prepare_remote_file || error "prepare remote file failed"
15253
15254         ln $remote_file $DIR/$tfile || error "link failed for remote file"
15255         multiop_bg_pause $remote_file O_uc ||
15256                         error "mulitop failed for remote file"
15257         MULTIPID=$!
15258         $MULTIOP $DIR/$tfile Ouc
15259         kill -USR1 $MULTIPID
15260         wait $MULTIPID
15261 }
15262 run_test 310c "open-unlink remote file with multiple links"
15263
15264 #LU-4825
15265 test_311() {
15266         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.54) ] &&
15267                 skip "lustre < 2.8.54 does not contain LU-4825 fix" && return
15268         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15269
15270         local old_iused=$($LFS df -i | grep OST0000 | awk '{ print $3 }')
15271
15272         mkdir -p $DIR/$tdir
15273         $SETSTRIPE -i 0 -c 1 $DIR/$tdir
15274         createmany -o $DIR/$tdir/$tfile. 1000
15275
15276         # statfs data is not real time, let's just calculate it
15277         old_iused=$((old_iused + 1000))
15278
15279         local count=$(do_facet $SINGLEMDS "lctl get_param -n \
15280                         osp.*OST0000*MDT0000.create_count")
15281         local max_count=$(do_facet $SINGLEMDS "lctl get_param -n \
15282                                 osp.*OST0000*MDT0000.max_create_count")
15283         for idx in $(seq $MDSCOUNT); do
15284                 do_facet mds$idx "lctl set_param -n \
15285                         osp.*OST0000*MDT000?.max_create_count=0"
15286         done
15287
15288         $SETSTRIPE -i 0 $DIR/$tdir/$tfile || error "setstripe failed"
15289         local index=$($GETSTRIPE -i $DIR/$tdir/$tfile)
15290         [ $index -ne 0 ] || error "$tfile stripe index is 0"
15291
15292         unlinkmany $DIR/$tdir/$tfile. 1000
15293
15294         for idx in $(seq $MDSCOUNT); do
15295                 do_facet mds$idx "lctl set_param -n \
15296                         osp.*OST0000*MDT000?.max_create_count=$max_count"
15297                 do_facet mds$idx "lctl set_param -n \
15298                         osp.*OST0000*MDT000?.create_count=$count"
15299         done
15300
15301         local new_iused
15302         for i in $(seq 120); do
15303                 new_iused=$($LFS df -i | grep OST0000 | awk '{ print $3 }')
15304                 [ $((old_iused - new_iused)) -gt 800 ] && break
15305                 sleep 1
15306         done
15307
15308         echo "waited $i sec, old Iused $old_iused, new Iused $new_iused"
15309         [ $((old_iused - new_iused)) -gt 800 ] ||
15310                 error "objs not destroyed after unlink"
15311 }
15312 run_test 311 "disable OSP precreate, and unlink should destroy objs"
15313
15314 zfs_oid_to_objid()
15315 {
15316         local ost=$1
15317         local objid=$2
15318
15319         local vdevdir=$(dirname $(facet_vdevice $ost))
15320         local cmd="$ZDB -e -p $vdevdir -dddd $(facet_device $ost)"
15321         local zfs_zapid=$(do_facet $ost $cmd |
15322                           grep -w "/O/0/d$((objid%32))" -C 5 |
15323                           awk '/Object/{getline; print $1}')
15324         local zfs_objid=$(do_facet $ost $cmd $zfs_zapid |
15325                           awk "/$objid = /"'{printf $3}')
15326
15327         echo $zfs_objid
15328 }
15329
15330 zfs_object_blksz() {
15331         local ost=$1
15332         local objid=$2
15333
15334         local vdevdir=$(dirname $(facet_vdevice $ost))
15335         local cmd="$ZDB -e -p $vdevdir -dddd $(facet_device $ost)"
15336         local blksz=$(do_facet $ost $cmd $objid |
15337                       awk '/dblk/{getline; printf $4}')
15338
15339         case "${blksz: -1}" in
15340                 k|K) blksz=$((${blksz:0:$((${#blksz} - 1))}*1024)) ;;
15341                 m|M) blksz=$((${blksz:0:$((${#blksz} - 1))}*1024*1024)) ;;
15342                 *) ;;
15343         esac
15344
15345         echo $blksz
15346 }
15347
15348 test_312() { # LU-4856
15349         [ $(facet_fstype ost1) = "zfs" ] ||
15350                 { skip "the test only applies to zfs" && return; }
15351
15352         local max_blksz=$(do_facet ost1 \
15353                           $ZFS get -p recordsize $(facet_device ost1) |
15354                           awk '!/VALUE/{print $3}')
15355
15356         # to make life a little bit easier
15357         $LFS mkdir -c 1 -i 0 $DIR/$tdir
15358         $LFS setstripe -c 1 -i 0 $DIR/$tdir
15359
15360         local tf=$DIR/$tdir/$tfile
15361         touch $tf
15362         local oid=$($LFS getstripe $tf | awk '/obdidx/{getline; print $2}')
15363
15364         # Get ZFS object id
15365         local zfs_objid=$(zfs_oid_to_objid ost1 $oid)
15366
15367         # block size change by sequential over write
15368         local blksz
15369         for ((bs=4096; bs <= max_blksz; bs <<= 2)); do
15370                 dd if=/dev/zero of=$tf bs=$bs count=1 oflag=sync conv=notrunc
15371
15372                 blksz=$(zfs_object_blksz ost1 $zfs_objid)
15373                 [ $blksz -eq $bs ] || error "blksz error: $blksz, expected: $bs"
15374         done
15375         rm -f $tf
15376
15377         # block size change by sequential append write
15378         dd if=/dev/zero of=$tf bs=4K count=1 oflag=sync conv=notrunc
15379         oid=$($LFS getstripe $tf | awk '/obdidx/{getline; print $2}')
15380         zfs_objid=$(zfs_oid_to_objid ost1 $oid)
15381
15382         for ((count = 1; count < $((max_blksz / 4096)); count *= 2)); do
15383                 dd if=/dev/zero of=$tf bs=4K count=$count seek=$count \
15384                         oflag=sync conv=notrunc
15385
15386                 blksz=$(zfs_object_blksz ost1 $zfs_objid)
15387                 blksz=$((blksz / 8192)) # in 2*4K unit
15388                 [ $blksz -eq $count ] ||
15389                         error "blksz error(in 8k): $blksz, expected: $count"
15390         done
15391         rm -f $tf
15392
15393         # random write
15394         touch $tf
15395         oid=$($LFS getstripe $tf | awk '/obdidx/{getline; print $2}')
15396         zfs_objid=$(zfs_oid_to_objid ost1 $oid)
15397
15398         dd if=/dev/zero of=$tf bs=8K count=1 oflag=sync conv=notrunc
15399         blksz=$(zfs_object_blksz ost1 $zfs_objid)
15400         [ $blksz -eq 8192 ] || error "blksz error: $blksz, expected: 8k"
15401
15402         dd if=/dev/zero of=$tf bs=64K count=1 oflag=sync conv=notrunc seek=128
15403         blksz=$(zfs_object_blksz ost1 $zfs_objid)
15404         [ $blksz -eq 65536 ] || error "blksz error: $blksz, expected: 64k"
15405
15406         dd if=/dev/zero of=$tf bs=1M count=1 oflag=sync conv=notrunc
15407         blksz=$(zfs_object_blksz ost1 $zfs_objid)
15408         [ $blksz -eq 65536 ] || error "rewrite error: $blksz, expected: 64k"
15409 }
15410 run_test 312 "make sure ZFS adjusts its block size by write pattern"
15411
15412 test_399() { # LU-7655 for OST fake write
15413         # turn off debug for performance testing
15414         local saved_debug=$($LCTL get_param -n debug)
15415         $LCTL set_param debug=0
15416
15417         $SETSTRIPE -c 1 -i 0 $DIR/$tfile
15418
15419         # get ost1 size - lustre-OST0000
15420         local ost1_avail_size=$($LFS df | awk /${ost1_svc}/'{ print $4 }')
15421         local blocks=$((ost1_avail_size/2/1024)) # half avail space by megabytes
15422         [ $blocks -gt 1000 ] && blocks=1000 # 1G in maximum
15423
15424         local start_time=$(date +%s.%N)
15425         dd if=/dev/zero of=$DIR/$tfile bs=1M count=$blocks oflag=sync ||
15426                 error "real dd writing error"
15427         local duration=$(bc <<< "$(date +%s.%N) - $start_time")
15428         rm -f $DIR/$tfile
15429
15430         # define OBD_FAIL_OST_FAKE_WRITE        0x238
15431         do_facet ost1 $LCTL set_param fail_loc=0x238
15432
15433         local start_time=$(date +%s.%N)
15434         dd if=/dev/zero of=$DIR/$tfile bs=1M count=$blocks oflag=sync ||
15435                 error "fake dd writing error"
15436         local duration_fake=$(bc <<< "$(date +%s.%N) - $start_time")
15437
15438         # verify file size
15439         cancel_lru_locks osc
15440         $CHECKSTAT -t file -s $((blocks * 1024 * 1024)) $DIR/$tfile ||
15441                 error "$tfile size not $blocks MB"
15442
15443         do_facet ost1 $LCTL set_param fail_loc=0
15444
15445         echo "fake write $duration_fake vs. normal write $duration in seconds"
15446         [ $(bc <<< "$duration_fake < $duration") -eq 1 ] ||
15447                 error_not_in_vm "fake write is slower"
15448
15449         $LCTL set_param -n debug="$saved_debug"
15450         rm -f $DIR/$tfile
15451 }
15452 run_test 399 "fake write should not be slower than normal write"
15453
15454 test_400a() { # LU-1606, was conf-sanity test_74
15455         local extra_flags=''
15456         local out=$TMP/$tfile
15457         local prefix=/usr/include/lustre
15458         local prog
15459
15460         if ! which $CC > /dev/null 2>&1; then
15461                 skip_env "$CC is not installed"
15462                 return 0
15463         fi
15464
15465         if ! [[ -d $prefix ]]; then
15466                 # Assume we're running in tree and fixup the include path.
15467                 extra_flags+=" -I$LUSTRE/../libcfs/include"
15468                 extra_flags+=" -I$LUSTRE/include"
15469                 extra_flags+=" -L$LUSTRE/utils"
15470         fi
15471
15472         for prog in $LUSTRE_TESTS_API_DIR/*.c; do
15473                 $CC -Wall -Werror $extra_flags -llustreapi -o $out $prog ||
15474                         error "client api broken"
15475         done
15476         rm -f $out
15477 }
15478 run_test 400a "Lustre client api program can compile and link"
15479
15480 test_400b() { # LU-1606, LU-5011
15481         local header
15482         local out=$TMP/$tfile
15483         local prefix=/usr/include/lustre
15484
15485         # We use a hard coded prefix so that this test will not fail
15486         # when run in tree. There are headers in lustre/include/lustre/
15487         # that are not packaged (like lustre_idl.h) and have more
15488         # complicated include dependencies (like config.h and lnet/types.h).
15489         # Since this test about correct packaging we just skip them when
15490         # they don't exist (see below) rather than try to fixup cppflags.
15491
15492         if ! which $CC > /dev/null 2>&1; then
15493                 skip_env "$CC is not installed"
15494                 return 0
15495         fi
15496
15497         for header in $prefix/*.h; do
15498                 if ! [[ -f "$header" ]]; then
15499                         continue
15500                 fi
15501
15502                 if [[ "$(basename $header)" == liblustreapi.h ]]; then
15503                         continue # liblustreapi.h is deprecated.
15504                 fi
15505
15506                 $CC -Wall -Werror -include $header -c -x c /dev/null -o $out ||
15507                         error "cannot compile '$header'"
15508         done
15509         rm -f $out
15510 }
15511 run_test 400b "packaged headers can be compiled"
15512
15513 test_401a() { #LU-7437
15514         local printf_arg=$(find -printf 2>&1 | grep "unrecognized:")
15515         [ -n "$printf_arg" ] && skip_env "find does not support -printf" &&
15516                 return
15517         #count the number of parameters by "list_param -R"
15518         local params=$($LCTL list_param -R '*' 2>/dev/null | wc -l)
15519         #count the number of parameters by listing proc files
15520         local procs=$(find -L $proc_dirs -mindepth 1 -printf '%P\n' 2>/dev/null|
15521                       sort -u | wc -l)
15522
15523         [ $params -eq $procs ] ||
15524                 error "found $params parameters vs. $procs proc files"
15525
15526         # test the list_param -D option only returns directories
15527         params=$($LCTL list_param -R -D '*' 2>/dev/null | wc -l)
15528         #count the number of parameters by listing proc directories
15529         procs=$(find -L $proc_dirs -mindepth 1 -type d -printf '%P\n' 2>/dev/null |
15530                 sort -u | wc -l)
15531
15532         [ $params -eq $procs ] ||
15533                 error "found $params parameters vs. $procs proc files"
15534 }
15535 run_test 401a "Verify if 'lctl list_param -R' can list parameters recursively"
15536
15537 test_401b() {
15538         local save=$($LCTL get_param -n jobid_var)
15539         local tmp=testing
15540
15541         $LCTL set_param foo=bar jobid_var=$tmp bar=baz &&
15542                 error "no error returned when setting bad parameters"
15543
15544         local jobid_new=$($LCTL get_param -n foe jobid_var baz)
15545         [[ "$jobid_new" == "$tmp" ]] || error "jobid tmp $jobid_new != $tmp"
15546
15547         $LCTL set_param -n fog=bam jobid_var=$save bat=fog
15548         local jobid_old=$($LCTL get_param -n foe jobid_var bag)
15549         [[ "$jobid_old" == "$save" ]] || error "jobid new $jobid_old != $save"
15550 }
15551 run_test 401b "Verify 'lctl {get,set}_param' continue after error"
15552
15553 test_401c() {
15554         local jobid_var_old=$($LCTL get_param -n jobid_var)
15555         local jobid_var_new
15556
15557         $LCTL set_param jobid_var= &&
15558                 error "no error returned for 'set_param a='"
15559
15560         jobid_var_new=$($LCTL get_param -n jobid_var)
15561         [[ "$jobid_var_old" == "$jobid_var_new" ]] ||
15562                 error "jobid_var was changed by setting without value"
15563
15564         $LCTL set_param jobid_var &&
15565                 error "no error returned for 'set_param a'"
15566
15567         jobid_var_new=$($LCTL get_param -n jobid_var)
15568         [[ "$jobid_var_old" == "$jobid_var_new" ]] ||
15569                 error "jobid_var was changed by setting without value"
15570 }
15571 run_test 401c "Verify 'lctl set_param' without value fails in either format."
15572
15573 test_401d() {
15574         local jobid_var_old=$($LCTL get_param -n jobid_var)
15575         local jobid_var_new
15576         local new_value="foo=bar"
15577
15578         $LCTL set_param jobid_var=$new_value ||
15579                 error "'set_param a=b' did not accept a value containing '='"
15580
15581         jobid_var_new=$($LCTL get_param -n jobid_var)
15582         [[ "$jobid_var_new" == "$new_value" ]] ||
15583                 error "'set_param a=b' failed on a value containing '='"
15584
15585         # Reset the jobid_var to test the other format
15586         $LCTL set_param jobid_var=$jobid_var_old
15587         jobid_var_new=$($LCTL get_param -n jobid_var)
15588         [[ "$jobid_var_new" == "$jobid_var_old" ]] ||
15589                 error "failed to reset jobid_var"
15590
15591         $LCTL set_param jobid_var $new_value ||
15592                 error "'set_param a b' did not accept a value containing '='"
15593
15594         jobid_var_new=$($LCTL get_param -n jobid_var)
15595         [[ "$jobid_var_new" == "$new_value" ]] ||
15596                 error "'set_param a b' failed on a value containing '='"
15597
15598         $LCTL set_param jobid_var $jobid_var_old
15599         jobid_var_new=$($LCTL get_param -n jobid_var)
15600         [[ "$jobid_var_new" == "$jobid_var_old" ]] ||
15601                 error "failed to reset jobid_var"
15602 }
15603 run_test 401d "Verify 'lctl set_param' accepts values containing '='"
15604
15605 test_402() {
15606         remote_mds_nodsh && skip "remote MDS with nodsh" && return
15607         $LFS setdirstripe -i 0 $DIR/$tdir || error "setdirstripe -i 0 failed"
15608 #define OBD_FAIL_MDS_FLD_LOOKUP 0x15c
15609         do_facet mds1 "lctl set_param fail_loc=0x8000015c"
15610         touch $DIR/$tdir/$tfile && error "touch should fail with ENOENT" ||
15611                 echo "Touch failed - OK"
15612 }
15613 run_test 402 "Return ENOENT to lod_generate_and_set_lovea"
15614
15615 test_403() {
15616         local file1=$DIR/$tfile.1
15617         local file2=$DIR/$tfile.2
15618         local tfile=$TMP/$tfile
15619
15620         rm -f $file1 $file2 $tfile
15621
15622         touch $file1
15623         ln $file1 $file2
15624
15625         # 30 sec OBD_TIMEOUT in ll_getattr()
15626         # right before populating st_nlink
15627         $LCTL set_param fail_loc=0x80001409
15628         stat -c %h $file1 > $tfile &
15629
15630         # create an alias, drop all locks and reclaim the dentry
15631         < $file2
15632         cancel_lru_locks mdc
15633         cancel_lru_locks osc
15634         sysctl -w vm.drop_caches=2
15635
15636         wait
15637
15638         [ `cat $tfile` -gt 0 ] || error "wrong nlink count: `cat $tfile`"
15639
15640         rm -f $tfile $file1 $file2
15641 }
15642 run_test 403 "i_nlink should not drop to zero due to aliasing"
15643
15644 test_404() { # LU-6601
15645         remote_mds_nodsh && skip "remote MDS with nodsh" && return
15646         local mosps=$(do_facet $SINGLEMDS $LCTL dl |
15647                 awk '/osp .*-osc-MDT/ { print $4}')
15648
15649         local osp
15650         for osp in $mosps; do
15651                 echo "Deactivate: " $osp
15652                 do_facet $SINGLEMDS $LCTL --device %$osp deactivate
15653                 local stat=$(do_facet $SINGLEMDS $LCTL dl |
15654                         awk -vp=$osp '$4 == p { print $2 }')
15655                 [ $stat = IN ] || {
15656                         do_facet $SINGLEMDS $LCTL dl | grep -w $osp
15657                         error "deactivate error"
15658                 }
15659                 echo "Activate: " $osp
15660                 do_facet $SINGLEMDS $LCTL --device %$osp activate
15661                 local stat=$(do_facet $SINGLEMDS $LCTL dl |
15662                         awk -vp=$osp '$4 == p { print $2 }')
15663                 [ $stat = UP ] || {
15664                         do_facet $SINGLEMDS $LCTL dl | grep -w $osp
15665                         error "activate error"
15666                 }
15667         done
15668 }
15669 run_test 404 "validate manual {de}activated works properly for OSPs"
15670
15671 test_405() {
15672         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.92) ] &&
15673                 skip "Layout swap lock is not supported" && return
15674
15675         check_swap_layouts_support && return 0
15676
15677         test_mkdir -p $DIR/$tdir
15678         swap_lock_test -d $DIR/$tdir ||
15679                 error "One layout swap locked test failed"
15680 }
15681 run_test 405 "Various layout swap lock tests"
15682
15683 test_406() {
15684         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15685         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
15686         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
15687         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15688         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.50) ] &&
15689                 skip "Need MDS version at least 2.8.50" && return
15690
15691         local def_stripenr=$($GETSTRIPE -c $MOUNT)
15692         local def_stripe_size=$($GETSTRIPE -S $MOUNT)
15693         local def_stripe_offset=$($GETSTRIPE -i $MOUNT)
15694         local def_pool=$($GETSTRIPE -p $MOUNT)
15695
15696         local test_pool=$TESTNAME
15697         pool_add $test_pool || error "pool_add failed"
15698         pool_add_targets $test_pool 0 $(($OSTCOUNT - 1)) 1 ||
15699                 error "pool_add_targets failed"
15700
15701         # parent set default stripe count only, child will stripe from both
15702         # parent and fs default
15703         $SETSTRIPE -c 1 -i 1 -S $((def_stripe_size * 2)) -p $test_pool $MOUNT ||
15704                 error "setstripe $MOUNT failed"
15705         $LFS mkdir -c $MDSCOUNT $DIR/$tdir || error "mkdir $tdir failed"
15706         $SETSTRIPE -c $OSTCOUNT $DIR/$tdir || error "setstripe $tdir failed"
15707         for i in $(seq 10); do
15708                 local f=$DIR/$tdir/$tfile.$i
15709                 touch $f || error "touch failed"
15710                 local count=$($GETSTRIPE -c $f)
15711                 [ $count -eq $OSTCOUNT ] ||
15712                         error "$f stripe count $count != $OSTCOUNT"
15713                 local offset=$($GETSTRIPE -i $f)
15714                 [ $offset -eq 1 ] || error "$f stripe offset $offset != 1"
15715                 local size=$($GETSTRIPE -S $f)
15716                 [ $size -eq $((def_stripe_size * 2)) ] ||
15717                         error "$f stripe size $size != $((def_stripe_size * 2))"
15718                 local pool=$($GETSTRIPE -p $f)
15719                 [ $pool == $test_pool ] || error "$f pool $pool != $test_pool"
15720         done
15721
15722         # change fs default striping, delete parent default striping, now child
15723         # will stripe from new fs default striping only
15724         $SETSTRIPE -c 1 -S $def_stripe_size -i 0 $MOUNT ||
15725                 error "change $MOUNT default stripe failed"
15726         $SETSTRIPE -c 0 $DIR/$tdir || error "delete $tdir default stripe failed"
15727         for i in $(seq 11 20); do
15728                 local f=$DIR/$tdir/$tfile.$i
15729                 touch $f || error "touch $f failed"
15730                 local count=$($GETSTRIPE -c $f)
15731                 [ $count -eq 1 ] || error "$f stripe count $count != 1"
15732                 local offset=$($GETSTRIPE -i $f)
15733                 [ $offset -eq 0 ] || error "$f stripe offset $offset != 0"
15734                 local size=$($GETSTRIPE -S $f)
15735                 [ $size -eq $def_stripe_size ] ||
15736                         error "$f stripe size $size != $def_stripe_size"
15737                 local pool=$($GETSTRIPE -p $f)
15738                 [ "#$pool" == "#" ] || error "$f pool $pool is set"
15739
15740         done
15741
15742         unlinkmany $DIR/$tdir/$tfile. 1 20
15743
15744         # restore FS default striping
15745         if [ -z $def_pool ]; then
15746                 $SETSTRIPE -c $def_stripenr -S $def_stripe_size \
15747                         -i $def_stripe_offset $MOUNT ||
15748                         error "restore default striping failed"
15749         else
15750                 $SETSTRIPE -c $def_stripenr -S $def_stripe_size -p $def_pool \
15751                         -i $def_stripe_offset $MOUNT ||
15752                         error "restore default striping with $def_pool failed"
15753         fi
15754
15755         local f=$DIR/$tdir/$tfile
15756         pool_remove_all_targets $test_pool $f
15757         pool_remove $test_pool $f
15758 }
15759 run_test 406 "DNE support fs default striping"
15760
15761 test_407() {
15762         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15763
15764         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.55) ]] &&
15765                 skip "Need MDS version at least 2.8.55" && return
15766
15767         $LFS mkdir -i 0 -c 1 $DIR/$tdir.0 ||
15768                 error "$LFS mkdir -i 0 -c 1 $tdir.0 failed"
15769         $LFS mkdir -i 1 -c 1 $DIR/$tdir.1 ||
15770                 error "$LFS mkdir -i 1 -c 1 $tdir.1 failed"
15771         touch $DIR/$tdir.0/$tfile.0 || error "touch $tdir.0/$tfile.0 failed"
15772
15773         #define OBD_FAIL_DT_TXN_STOP    0x2019
15774         for idx in $(seq $MDSCOUNT); do
15775                 do_facet mds$idx "lctl set_param fail_loc=0x2019"
15776         done
15777         $LFS mkdir -c 2 $DIR/$tdir && error "$LFS mkdir -c 2 $tdir should fail"
15778         mv $DIR/$tdir.0/$tfile.0 $DIR/$tdir.1/$tfile.1 &&
15779                 error "mv $tdir.0/$tfile.0 $tdir.1/$tfile.1 should fail"
15780         true
15781 }
15782 run_test 407 "transaction fail should cause operation fail"
15783
15784 #
15785 # tests that do cleanup/setup should be run at the end
15786 #
15787
15788 test_900() {
15789         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15790         local ls
15791         #define OBD_FAIL_MGC_PAUSE_PROCESS_LOG   0x903
15792         $LCTL set_param fail_loc=0x903
15793
15794         cancel_lru_locks MGC
15795
15796         FAIL_ON_ERROR=true cleanup
15797         FAIL_ON_ERROR=true setup
15798 }
15799 run_test 900 "umount should not race with any mgc requeue thread"
15800
15801 complete $SECONDS
15802 [ -f $EXT2_DEV ] && rm $EXT2_DEV || true
15803 check_and_cleanup_lustre
15804 if [ "$I_MOUNTED" != "yes" ]; then
15805         lctl set_param debug="$OLDDEBUG" 2> /dev/null || true
15806 fi
15807 exit_status