Whamcloud - gitweb
934cec936014a74f80705660bcf6c749cf52c5cf
[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 # bug number for skipped tests: LU-2036 LU-8411 LU-9096
16 ALWAYS_EXCEPT="                 76      407     253 $ALWAYS_EXCEPT"
17
18 is_sles11()                                             # LU-4341
19 {
20         if [ -r /etc/SuSE-release ]
21         then
22                 local vers=$(grep VERSION /etc/SuSE-release | awk '{print $3}')
23                 local patchlev=$(grep PATCHLEVEL /etc/SuSE-release |
24                         awk '{ print $3 }')
25                 if [ $vers -eq 11 ] && [ $patchlev -ge 3 ]; then
26                         return 0
27                 fi
28         fi
29         return 1
30 }
31
32 if is_sles11; then                                      # LU-4341
33         ALWAYS_EXCEPT="$ALWAYS_EXCEPT 170"
34 fi
35
36 SRCDIR=$(cd $(dirname $0); echo $PWD)
37 export PATH=$PATH:/sbin
38
39 TMP=${TMP:-/tmp}
40
41 CC=${CC:-cc}
42 CHECKSTAT=${CHECKSTAT:-"checkstat -v"}
43 CREATETEST=${CREATETEST:-createtest}
44 LFS=${LFS:-lfs}
45 LFIND=${LFIND:-"$LFS find"}
46 LVERIFY=${LVERIFY:-ll_dirstripe_verify}
47 LCTL=${LCTL:-lctl}
48 OPENFILE=${OPENFILE:-openfile}
49 OPENUNLINK=${OPENUNLINK:-openunlink}
50 export MULTIOP=${MULTIOP:-multiop}
51 READS=${READS:-"reads"}
52 MUNLINK=${MUNLINK:-munlink}
53 SOCKETSERVER=${SOCKETSERVER:-socketserver}
54 SOCKETCLIENT=${SOCKETCLIENT:-socketclient}
55 MEMHOG=${MEMHOG:-memhog}
56 DIRECTIO=${DIRECTIO:-directio}
57 ACCEPTOR_PORT=${ACCEPTOR_PORT:-988}
58 STRIPES_PER_OBJ=-1
59 CHECK_GRANT=${CHECK_GRANT:-"yes"}
60 GRANT_CHECK_LIST=${GRANT_CHECK_LIST:-""}
61 export PARALLEL=${PARALLEL:-"no"}
62
63 export NAME=${NAME:-local}
64
65 SAVE_PWD=$PWD
66
67 CLEANUP=${CLEANUP:-:}
68 SETUP=${SETUP:-:}
69 TRACE=${TRACE:-""}
70 LUSTRE=${LUSTRE:-$(cd $(dirname $0)/..; echo $PWD)}
71 LUSTRE_TESTS_API_DIR=${LUSTRE_TESTS_API_DIR:-${LUSTRE}/tests/clientapi}
72 . $LUSTRE/tests/test-framework.sh
73 init_test_env $@
74 . ${CONFIG:=$LUSTRE/tests/cfg/${NAME}.sh}
75 init_logging
76
77 #                                  5          12          (min)"
78 [ "$SLOW" = "no" ] && EXCEPT_SLOW="27m 64b 68 71 115 300o"
79
80 if [ $(facet_fstype $SINGLEMDS) = "zfs" ]; then
81         # bug number for skipped test: LU-4536 LU-1957
82         ALWAYS_EXCEPT="$ALWAYS_EXCEPT  65ic    180"
83         #                                               13    (min)"
84         [ "$SLOW" = "no" ] && EXCEPT_SLOW="$EXCEPT_SLOW 51b"
85 fi
86
87 FAIL_ON_ERROR=false
88
89 cleanup() {
90         echo -n "cln.."
91         pgrep ll_sa > /dev/null && { echo "There are ll_sa thread not exit!"; exit 20; }
92         cleanupall ${FORCE} $* || { echo "FAILed to clean up"; exit 20; }
93 }
94 setup() {
95         echo -n "mnt.."
96         load_modules
97         setupall || exit 10
98         echo "done"
99 }
100
101 check_swap_layouts_support()
102 {
103         $LCTL get_param -n llite.*.sbi_flags | grep -q layout ||
104                 { skip "Does not support layout lock."; return 0; }
105         return 1
106 }
107
108 check_and_setup_lustre
109 DIR=${DIR:-$MOUNT}
110 assert_DIR
111
112 MDT0=$($LCTL get_param -n mdc.*.mds_server_uuid |
113         awk '{ gsub(/_UUID/,""); print $1 }' | head -n1)
114 MAXFREE=${MAXFREE:-$((200000 * $OSTCOUNT))}
115
116 [ -f $DIR/d52a/foo ] && chattr -a $DIR/d52a/foo
117 [ -f $DIR/d52b/foo ] && chattr -i $DIR/d52b/foo
118 rm -rf $DIR/[Rdfs][0-9]*
119
120 # $RUNAS_ID may get set incorrectly somewhere else
121 [ $UID -eq 0 -a $RUNAS_ID -eq 0 ] && error "\$RUNAS_ID set to 0, but \$UID is also 0!"
122
123 check_runas_id $RUNAS_ID $RUNAS_GID $RUNAS
124
125 build_test_filter
126
127 if [ "${ONLY}" = "MOUNT" ] ; then
128         echo "Lustre is up, please go on"
129         exit
130 fi
131
132 echo "preparing for tests involving mounts"
133 EXT2_DEV=${EXT2_DEV:-$TMP/SANITY.LOOP}
134 touch $EXT2_DEV
135 mke2fs -j -F $EXT2_DEV 8000 > /dev/null
136 echo # add a newline after mke2fs.
137
138 umask 077
139
140 OLDDEBUG=$(lctl get_param -n debug 2> /dev/null)
141 lctl set_param debug=-1 2> /dev/null || true
142 test_0a() {
143         touch $DIR/$tfile
144         $CHECKSTAT -t file $DIR/$tfile || error "$tfile is not a file"
145         rm $DIR/$tfile
146         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
147 }
148 run_test 0a "touch; rm ====================="
149
150 test_0b() {
151         chmod 0755 $DIR || error "chmod 0755 $DIR failed"
152         $CHECKSTAT -p 0755 $DIR || error "$DIR permission is not 0755"
153 }
154 run_test 0b "chmod 0755 $DIR ============================="
155
156 test_0c() {
157         $LCTL get_param mdc.*.import | grep "state: FULL" ||
158                 error "import not FULL"
159         $LCTL get_param mdc.*.import | grep "target: $FSNAME-MDT" ||
160                 error "bad target"
161 }
162 run_test 0c "check import proc ============================="
163
164 test_1() {
165         test_mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
166         test_mkdir -p $DIR/$tdir/d2 || error "mkdir $tdir/d2 failed"
167         test_mkdir $DIR/$tdir/d2 && error "we expect EEXIST, but not returned"
168         $CHECKSTAT -t dir $DIR/$tdir/d2 || error "$tdir/d2 is not a dir"
169         rmdir $DIR/$tdir/d2
170         rmdir $DIR/$tdir
171         $CHECKSTAT -a $DIR/$tdir || error "$tdir was not removed"
172 }
173 run_test 1 "mkdir; remkdir; rmdir =============================="
174
175 test_2() {
176         test_mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
177         touch $DIR/$tdir/$tfile || error "touch $tdir/$tfile failed"
178         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "$tdir/$tfile not a file"
179         rm -r $DIR/$tdir
180         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$file is not removed"
181 }
182 run_test 2 "mkdir; touch; rmdir; check file ===================="
183
184 test_3() {
185         test_mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
186         $CHECKSTAT -t dir $DIR/$tdir || error "$tdir is not a directory"
187         touch $DIR/$tdir/$tfile
188         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "$tdir/$tfile not a file"
189         rm -r $DIR/$tdir
190         $CHECKSTAT -a $DIR/$tdir || error "$tdir is not removed"
191 }
192 run_test 3 "mkdir; touch; rmdir; check dir ====================="
193
194 # LU-4471 - failed rmdir on remote directories still removes directory on MDT0
195 test_4() {
196         local MDTIDX=1
197
198         test_mkdir $DIR/$tdir ||
199                 error "Create remote directory failed"
200
201         touch $DIR/$tdir/$tfile ||
202                 error "Create file under remote directory failed"
203
204         rmdir $DIR/$tdir &&
205                 error "Expect error removing in-use dir $DIR/$tdir"
206
207         test -d $DIR/$tdir || error "Remote directory disappeared"
208
209         rm -rf $DIR/$tdir || error "remove remote dir error"
210 }
211 run_test 4 "mkdir; touch dir/file; rmdir; checkdir (expect error)"
212
213 test_5() {
214         test_mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
215         test_mkdir $DIR/$tdir/d2 || error "mkdir $tdir/d2 failed"
216         chmod 0707 $DIR/$tdir/d2 || error "chmod 0707 $tdir/d2 failed"
217         $CHECKSTAT -t dir -p 0707 $DIR/$tdir/d2 || error "$tdir/d2 not mode 707"
218         $CHECKSTAT -t dir $DIR/$tdir/d2 || error "$tdir/d2 is not a directory"
219 }
220 run_test 5 "mkdir .../d5 .../d5/d2; chmod .../d5/d2 ============"
221
222 test_6a() {
223         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
224         chmod 0666 $DIR/$tfile || error "chmod 0666 $tfile failed"
225         $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/$tfile ||
226                 error "$tfile does not have perm 0666 or UID $UID"
227         $RUNAS chmod 0444 $DIR/$tfile && error "chmod $tfile worked on UID $UID"
228         $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/$tfile ||
229                 error "$tfile should be 0666 and owned by UID $UID"
230 }
231 run_test 6a "touch f6a; chmod f6a; $RUNAS chmod f6a (should return error) =="
232
233 test_6c() {
234         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
235         touch $DIR/$tfile
236         chown $RUNAS_ID $DIR/$tfile || error "chown $RUNAS_ID $file failed"
237         $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/$tfile ||
238                 error "$tfile should be owned by UID $RUNAS_ID"
239         $RUNAS chown $UID $DIR/$tfile && error "chown $UID $file succeeded"
240         $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/$tfile ||
241                 error "$tfile should be owned by UID $RUNAS_ID"
242 }
243 run_test 6c "touch f6c; chown f6c; $RUNAS chown f6c (should return error) =="
244
245 test_6e() {
246         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
247         touch $DIR/$tfile
248         chgrp $RUNAS_ID $DIR/$tfile || error "chgrp $RUNAS_ID $file failed"
249         $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/$tfile ||
250                 error "$tfile should be owned by GID $UID"
251         $RUNAS chgrp $UID $DIR/$tfile && error "chgrp $UID $file succeeded"
252         $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/$tfile ||
253                 error "$tfile should be owned by UID $UID and GID $RUNAS_ID"
254 }
255 run_test 6e "touch f6e; chgrp f6e; $RUNAS chgrp f6e (should return error) =="
256
257 test_6g() {
258         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
259         test_mkdir $DIR/$tdir || error "mkdir $tfile failed"
260         chmod 777 $DIR/$tdir || error "chmod 0777 $tdir failed"
261         $RUNAS mkdir $DIR/$tdir/d || error "mkdir $tdir/d failed"
262         chmod g+s $DIR/$tdir/d || error "chmod g+s $tdir/d failed"
263         test_mkdir $DIR/$tdir/d/subdir || error "mkdir $tdir/d/subdir failed"
264         $CHECKSTAT -g \#$RUNAS_GID $DIR/$tdir/d/subdir ||
265                 error "$tdir/d/subdir should be GID $RUNAS_GID"
266         if [[ $MDSCOUNT -gt 1 ]]; then
267                 # check remote dir sgid inherite
268                 $LFS mkdir -i 0 $DIR/$tdir.local ||
269                         error "mkdir $tdir.local failed"
270                 chmod g+s $DIR/$tdir.local ||
271                         error "chmod $tdir.local failed"
272                 chgrp $RUNAS_GID $DIR/$tdir.local ||
273                         error "chgrp $tdir.local failed"
274                 $LFS mkdir -i 1 $DIR/$tdir.local/$tdir.remote ||
275                         error "mkdir $tdir.remote failed"
276                 $CHECKSTAT -g \#$RUNAS_GID $DIR/$tdir.local/$tdir.remote ||
277                         error "$tdir.remote should be owned by $UID.$RUNAS_ID"
278                 $CHECKSTAT -p 02755 $DIR/$tdir.local/$tdir.remote ||
279                         error "$tdir.remote should be mode 02755"
280         fi
281 }
282 run_test 6g "Is new dir in sgid dir inheriting group?"
283
284 test_6h() { # bug 7331
285         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
286         touch $DIR/$tfile || error "touch failed"
287         chown $RUNAS_ID:$RUNAS_GID $DIR/$tfile || error "initial chown failed"
288         $RUNAS -G$RUNAS_GID chown $RUNAS_ID:0 $DIR/$tfile &&
289                 error "chown $RUNAS_ID:0 $tfile worked as GID $RUNAS_GID"
290         $CHECKSTAT -t file -u \#$RUNAS_ID -g \#$RUNAS_GID $DIR/$tfile ||
291                 error "$tdir/$tfile should be UID $RUNAS_UID GID $RUNAS_GID"
292 }
293 run_test 6h "$RUNAS chown RUNAS_ID.0 .../f6h (should return error)"
294
295 test_7a() {
296         test_mkdir $DIR/$tdir
297         $MCREATE $DIR/$tdir/$tfile
298         chmod 0666 $DIR/$tdir/$tfile
299         $CHECKSTAT -t file -p 0666 $DIR/$tdir/$tfile ||
300                 error "$tdir/$tfile should be mode 0666"
301 }
302 run_test 7a "mkdir .../d7; mcreate .../d7/f; chmod .../d7/f ===="
303
304 test_7b() {
305         if [ ! -d $DIR/$tdir ]; then
306                 test_mkdir $DIR/$tdir
307         fi
308         $MCREATE $DIR/$tdir/$tfile
309         echo -n foo > $DIR/$tdir/$tfile
310         [ "$(cat $DIR/$tdir/$tfile)" = "foo" ] || error "$tdir/$tfile not 'foo'"
311         $CHECKSTAT -t file -s 3 $DIR/$tdir/$tfile || error "$tfile size not 3"
312 }
313 run_test 7b "mkdir .../d7; mcreate d7/f2; echo foo > d7/f2 ====="
314
315 test_8() {
316         test_mkdir $DIR/$tdir
317         touch $DIR/$tdir/$tfile
318         chmod 0666 $DIR/$tdir/$tfile
319         $CHECKSTAT -t file -p 0666 $DIR/$tdir/$tfile ||
320                 error "$tfile mode not 0666"
321 }
322 run_test 8 "mkdir .../d8; touch .../d8/f; chmod .../d8/f ======="
323
324 test_9() {
325         test_mkdir $DIR/$tdir
326         test_mkdir $DIR/$tdir/d2
327         test_mkdir $DIR/$tdir/d2/d3
328         $CHECKSTAT -t dir $DIR/$tdir/d2/d3 || error "$tdir/d2/d3 not a dir"
329 }
330 run_test 9 "mkdir .../d9 .../d9/d2 .../d9/d2/d3 ================"
331
332 test_10() {
333         test_mkdir $DIR/$tdir
334         test_mkdir $DIR/$tdir/d2
335         touch $DIR/$tdir/d2/$tfile
336         $CHECKSTAT -t file $DIR/$tdir/d2/$tfile ||
337                 error "$tdir/d2/$tfile not a file"
338 }
339 run_test 10 "mkdir .../d10 .../d10/d2; touch .../d10/d2/f ======"
340
341 test_11() {
342         test_mkdir $DIR/$tdir
343         test_mkdir $DIR/$tdir/d2
344         chmod 0666 $DIR/$tdir/d2
345         chmod 0705 $DIR/$tdir/d2
346         $CHECKSTAT -t dir -p 0705 $DIR/$tdir/d2 ||
347                 error "$tdir/d2 mode not 0705"
348 }
349 run_test 11 "mkdir .../d11 d11/d2; chmod .../d11/d2 ============"
350
351 test_12() {
352         test_mkdir $DIR/$tdir
353         touch $DIR/$tdir/$tfile
354         chmod 0666 $DIR/$tdir/$tfile
355         chmod 0654 $DIR/$tdir/$tfile
356         $CHECKSTAT -t file -p 0654 $DIR/$tdir/$tfile ||
357                 error "$tdir/d2 mode not 0654"
358 }
359 run_test 12 "touch .../d12/f; chmod .../d12/f .../d12/f ========"
360
361 test_13() {
362         test_mkdir $DIR/$tdir
363         dd if=/dev/zero of=$DIR/$tdir/$tfile count=10
364         >  $DIR/$tdir/$tfile
365         $CHECKSTAT -t file -s 0 $DIR/$tdir/$tfile ||
366                 error "$tdir/$tfile size not 0 after truncate"
367 }
368 run_test 13 "creat .../d13/f; dd .../d13/f; > .../d13/f ========"
369
370 test_14() {
371         test_mkdir $DIR/$tdir
372         touch $DIR/$tdir/$tfile
373         rm $DIR/$tdir/$tfile
374         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$tfile not removed"
375 }
376 run_test 14 "touch .../d14/f; rm .../d14/f; rm .../d14/f ======="
377
378 test_15() {
379         test_mkdir $DIR/$tdir
380         touch $DIR/$tdir/$tfile
381         mv $DIR/$tdir/$tfile $DIR/$tdir/${tfile}_2
382         $CHECKSTAT -t file $DIR/$tdir/${tfile}_2 ||
383                 error "$tdir/${tfile_2} not a file after rename"
384         rm $DIR/$tdir/${tfile}_2 || error "unlink failed after rename"
385 }
386 run_test 15 "touch .../d15/f; mv .../d15/f .../d15/f2 =========="
387
388 test_16() {
389         test_mkdir $DIR/$tdir
390         touch $DIR/$tdir/$tfile
391         rm -rf $DIR/$tdir/$tfile
392         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$tfile not removed"
393 }
394 run_test 16 "touch .../d16/f; rm -rf .../d16/f ================="
395
396 test_17a() {
397         test_mkdir -p $DIR/$tdir
398         touch $DIR/$tdir/$tfile
399         ln -s $DIR/$tdir/$tfile $DIR/$tdir/l-exist
400         ls -l $DIR/$tdir
401         $CHECKSTAT -l $DIR/$tdir/$tfile $DIR/$tdir/l-exist ||
402                 error "$tdir/l-exist not a symlink"
403         $CHECKSTAT -f -t f $DIR/$tdir/l-exist ||
404                 error "$tdir/l-exist not referencing a file"
405         rm -f $DIR/$tdir/l-exist
406         $CHECKSTAT -a $DIR/$tdir/l-exist || error "$tdir/l-exist not removed"
407 }
408 run_test 17a "symlinks: create, remove (real) =================="
409
410 test_17b() {
411         test_mkdir -p $DIR/$tdir
412         ln -s no-such-file $DIR/$tdir/l-dangle
413         ls -l $DIR/$tdir
414         $CHECKSTAT -l no-such-file $DIR/$tdir/l-dangle ||
415                 error "$tdir/l-dangle not referencing no-such-file"
416         $CHECKSTAT -fa $DIR/$tdir/l-dangle ||
417                 error "$tdir/l-dangle not referencing non-existent file"
418         rm -f $DIR/$tdir/l-dangle
419         $CHECKSTAT -a $DIR/$tdir/l-dangle || error "$tdir/l-dangle not removed"
420 }
421 run_test 17b "symlinks: create, remove (dangling) =============="
422
423 test_17c() { # bug 3440 - don't save failed open RPC for replay
424         test_mkdir -p $DIR/$tdir
425         ln -s foo $DIR/$tdir/$tfile
426         cat $DIR/$tdir/$tfile && error "opened non-existent symlink" || true
427 }
428 run_test 17c "symlinks: open dangling (should return error) ===="
429
430 test_17d() {
431         test_mkdir -p $DIR/$tdir
432         ln -s foo $DIR/$tdir/$tfile
433         touch $DIR/$tdir/$tfile || error "creating to new symlink"
434 }
435 run_test 17d "symlinks: create dangling ========================"
436
437 test_17e() {
438         test_mkdir -p $DIR/$tdir
439         local foo=$DIR/$tdir/$tfile
440         ln -s $foo $foo || error "create symlink failed"
441         ls -l $foo || error "ls -l failed"
442         ls $foo && error "ls not failed" || true
443 }
444 run_test 17e "symlinks: create recursive symlink (should return error) ===="
445
446 test_17f() {
447         test_mkdir -p $DIR/$tdir
448         ln -s 1234567890/2234567890/3234567890/4234567890 $DIR/$tdir/111
449         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890 $DIR/$tdir/222
450         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890 $DIR/$tdir/333
451         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890 $DIR/$tdir/444
452         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890/c234567890/d234567890/f234567890 $DIR/$tdir/555
453         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
454         ls -l  $DIR/$tdir
455 }
456 run_test 17f "symlinks: long and very long symlink name ========================"
457
458 # str_repeat(S, N) generate a string that is string S repeated N times
459 str_repeat() {
460         local s=$1
461         local n=$2
462         local ret=''
463         while [ $((n -= 1)) -ge 0 ]; do
464                 ret=$ret$s
465         done
466         echo $ret
467 }
468
469 # Long symlinks and LU-2241
470 test_17g() {
471         test_mkdir -p $DIR/$tdir
472         local TESTS="59 60 61 4094 4095"
473
474         # Fix for inode size boundary in 2.1.4
475         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.1.4) ] &&
476                 TESTS="4094 4095"
477
478         # Patch not applied to 2.2 or 2.3 branches
479         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
480         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.3.55) ] &&
481                 TESTS="4094 4095"
482
483         # skip long symlink name for rhel6.5.
484         # rhel6.5 has a limit (PATH_MAX - sizeof(struct filename))
485         grep -q '6.5' /etc/redhat-release &>/dev/null &&
486                 TESTS="59 60 61 4062 4063"
487
488         for i in $TESTS; do
489                 local SYMNAME=$(str_repeat 'x' $i)
490                 ln -s $SYMNAME $DIR/$tdir/f$i || error "failed $i-char symlink"
491                 readlink $DIR/$tdir/f$i || error "failed $i-char readlink"
492         done
493 }
494 run_test 17g "symlinks: really long symlink name and inode boundaries"
495
496 test_17h() { #bug 17378
497         remote_mds_nodsh && skip "remote MDS with nodsh" && return
498         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
499         local mdt_idx
500         test_mkdir -p $DIR/$tdir
501         if [[ $MDSCOUNT -gt 1 ]]; then
502                 mdt_idx=$($LFS getdirstripe -i $DIR/$tdir)
503         else
504                 mdt_idx=0
505         fi
506         $SETSTRIPE -c -1 $DIR/$tdir
507 #define OBD_FAIL_MDS_LOV_PREP_CREATE 0x141
508         do_facet mds$((mdt_idx + 1)) lctl set_param fail_loc=0x80000141
509         touch $DIR/$tdir/$tfile || true
510 }
511 run_test 17h "create objects: lov_free_memmd() doesn't lbug"
512
513 test_17i() { #bug 20018
514         remote_mds_nodsh && skip "remote MDS with nodsh" && return
515         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
516         test_mkdir -c1 $DIR/$tdir
517         local foo=$DIR/$tdir/$tfile
518         local mdt_idx
519         if [[ $MDSCOUNT -gt 1 ]]; then
520                 mdt_idx=$($LFS getdirstripe -i $DIR/$tdir)
521         else
522                 mdt_idx=0
523         fi
524         ln -s $foo $foo || error "create symlink failed"
525 #define OBD_FAIL_MDS_READLINK_EPROTO     0x143
526         do_facet mds$((mdt_idx + 1)) lctl set_param fail_loc=0x80000143
527         ls -l $foo && error "error not detected"
528         return 0
529 }
530 run_test 17i "don't panic on short symlink"
531
532 test_17k() { #bug 22301
533         [[ -z "$(which rsync 2>/dev/null)" ]] &&
534                 skip "no rsync command" && return 0
535         rsync --help | grep -q xattr ||
536                 skip_env "$(rsync --version | head -n1) does not support xattrs"
537         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return 0
538         test_mkdir -p $DIR/$tdir
539         test_mkdir -p $DIR/$tdir.new
540         touch $DIR/$tdir/$tfile
541         ln -s $DIR/$tdir/$tfile $DIR/$tdir/$tfile.lnk
542         rsync -av -X $DIR/$tdir/ $DIR/$tdir.new ||
543                 error "rsync failed with xattrs enabled"
544 }
545 run_test 17k "symlinks: rsync with xattrs enabled ========================="
546
547 test_17l() { # LU-279
548         [[ -z "$(which getfattr 2>/dev/null)" ]] &&
549                 skip "no getfattr command" && return 0
550         test_mkdir -p $DIR/$tdir
551         touch $DIR/$tdir/$tfile
552         ln -s $DIR/$tdir/$tfile $DIR/$tdir/$tfile.lnk
553         for path in "$DIR/$tdir" "$DIR/$tdir/$tfile" "$DIR/$tdir/$tfile.lnk"; do
554                 # -h to not follow symlinks. -m '' to list all the xattrs.
555                 # grep to remove first line: '# file: $path'.
556                 for xattr in `getfattr -hm '' $path 2>/dev/null | grep -v '^#'`;
557                 do
558                         lgetxattr_size_check $path $xattr ||
559                                 error "lgetxattr_size_check $path $xattr failed"
560                 done
561         done
562 }
563 run_test 17l "Ensure lgetxattr's returned xattr size is consistent ========"
564
565 # LU-1540
566 test_17m() {
567         local short_sym="0123456789"
568         local WDIR=$DIR/${tdir}m
569         local i
570
571         remote_mds_nodsh && skip "remote MDS with nodsh" && return
572         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
573         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.2.93) ] &&
574                 skip "MDS 2.2.0-2.2.93 do not NUL-terminate symlinks" && return
575
576         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
577                 skip "only for ldiskfs MDT" && return 0
578
579         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
580
581         test_mkdir -p $WDIR
582         long_sym=$short_sym
583         # create a long symlink file
584         for ((i = 0; i < 4; ++i)); do
585                 long_sym=${long_sym}${long_sym}
586         done
587
588         echo "create 512 short and long symlink files under $WDIR"
589         for ((i = 0; i < 256; ++i)); do
590                 ln -sf ${long_sym}"a5a5" $WDIR/long-$i
591                 ln -sf ${short_sym}"a5a5" $WDIR/short-$i
592         done
593
594         echo "erase them"
595         rm -f $WDIR/*
596         sync
597         wait_delete_completed
598
599         echo "recreate the 512 symlink files with a shorter string"
600         for ((i = 0; i < 512; ++i)); do
601                 # rewrite the symlink file with a shorter string
602                 ln -sf ${long_sym} $WDIR/long-$i || error "long_sym failed"
603                 ln -sf ${short_sym} $WDIR/short-$i || error "short_sym failed"
604         done
605
606         local mds_index=$(($($LFS getstripe -M $WDIR) + 1))
607         local devname=$(mdsdevname $mds_index)
608
609         echo "stop and checking mds${mds_index}:"
610         # e2fsck should not return error
611         stop mds${mds_index}
612         run_e2fsck $(facet_active_host mds${mds_index}) $devname -n
613         rc=$?
614
615         start mds${mds_index} $devname $MDS_MOUNT_OPTS || error "start failed"
616         df $MOUNT > /dev/null 2>&1
617         [ $rc -eq 0 ] ||
618                 error "e2fsck detected error for short/long symlink: rc=$rc"
619 }
620 run_test 17m "run e2fsck against MDT which contains short/long symlink"
621
622 check_fs_consistency_17n() {
623         local mdt_index
624         local rc=0
625
626         # create/unlink in 17n only change 2 MDTs(MDT1/MDT2),
627         # so it only check MDT1/MDT2 instead of all of MDTs.
628         for mdt_index in 1 2; do
629                 local devname=$(mdsdevname $mdt_index)
630                 # e2fsck should not return error
631                 stop mds${mdt_index}
632                 run_e2fsck $(facet_active_host mds$mdt_index) $devname -n ||
633                         rc=$((rc + $?))
634
635                 start mds${mdt_index} $devname $MDS_MOUNT_OPTS ||
636                         error "mount mds$mdt_index failed"
637                 df $MOUNT > /dev/null 2>&1
638         done
639         return $rc
640 }
641
642 test_17n() {
643         local i
644
645         remote_mds_nodsh && skip "remote MDS with nodsh" && return
646         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
647         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.2.93) ] &&
648                 skip "MDS 2.2.0-2.2.93 do not NUL-terminate symlinks" && return
649
650         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
651                 skip "only for ldiskfs MDT" && return 0
652
653         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
654
655         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
656
657         test_mkdir $DIR/$tdir
658         for ((i=0; i<10; i++)); do
659                 $LFS mkdir -i1 -c2 $DIR/$tdir/remote_dir_${i} ||
660                         error "create remote dir error $i"
661                 createmany -o $DIR/$tdir/remote_dir_${i}/f 10 ||
662                         error "create files under remote dir failed $i"
663         done
664
665         check_fs_consistency_17n ||
666                 error "e2fsck report error after create files under remote dir"
667
668         for ((i = 0; i < 10; i++)); do
669                 rm -rf $DIR/$tdir/remote_dir_${i} ||
670                         error "destroy remote dir error $i"
671         done
672
673         check_fs_consistency_17n ||
674                 error "e2fsck report error after unlink files under remote dir"
675
676         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.50) ] &&
677                 skip "lustre < 2.4.50 does not support migrate mv " && return
678
679         for ((i = 0; i < 10; i++)); do
680                 mkdir -p $DIR/$tdir/remote_dir_${i}
681                 createmany -o $DIR/$tdir/remote_dir_${i}/f 10 ||
682                         error "create files under remote dir failed $i"
683                 $LFS migrate --mdt-index 1 $DIR/$tdir/remote_dir_${i} ||
684                         error "migrate remote dir error $i"
685         done
686         check_fs_consistency_17n || error "e2fsck report error after migration"
687
688         for ((i = 0; i < 10; i++)); do
689                 rm -rf $DIR/$tdir/remote_dir_${i} ||
690                         error "destroy remote dir error $i"
691         done
692
693         check_fs_consistency_17n || error "e2fsck report error after unlink"
694 }
695 run_test 17n "run e2fsck against master/slave MDT which contains remote dir"
696
697 test_17o() {
698         remote_mds_nodsh && skip "remote MDS with nodsh" && return
699         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.64) ] &&
700                 skip "Need MDS version at least 2.3.64" && return
701
702         local WDIR=$DIR/${tdir}o
703         local mdt_index
704         local rc=0
705
706         test_mkdir -p $WDIR
707         touch $WDIR/$tfile
708         mdt_index=$($LFS getstripe -M $WDIR/$tfile)
709         mdt_index=$((mdt_index+1))
710
711         cancel_lru_locks mdc
712         #fail mds will wait the failover finish then set
713         #following fail_loc to avoid interfer the recovery process.
714         fail mds${mdt_index}
715
716         #define OBD_FAIL_OSD_LMA_INCOMPAT 0x194
717         do_facet mds${mdt_index} lctl set_param fail_loc=0x194
718         ls -l $WDIR/$tfile && rc=1
719         do_facet mds${mdt_index} lctl set_param fail_loc=0
720         [[ $rc -ne 0 ]] && error "stat file should fail"
721         true
722 }
723 run_test 17o "stat file with incompat LMA feature"
724
725 test_18() {
726         touch $DIR/$tfile || error "Failed to touch $DIR/$tfile: $?"
727         ls $DIR || error "Failed to ls $DIR: $?"
728 }
729 run_test 18 "touch .../f ; ls ... =============================="
730
731 test_19a() {
732         touch $DIR/$tfile
733         ls -l $DIR
734         rm $DIR/$tfile
735         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
736 }
737 run_test 19a "touch .../f19 ; ls -l ... ; rm .../f19 ==========="
738
739 test_19b() {
740         ls -l $DIR/$tfile && error "ls -l $tfile failed"|| true
741 }
742 run_test 19b "ls -l .../f19 (should return error) =============="
743
744 test_19c() {
745         [ $RUNAS_ID -eq $UID ] &&
746                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
747         $RUNAS touch $DIR/$tfile && error "create non-root file failed" || true
748 }
749 run_test 19c "$RUNAS touch .../f19 (should return error) =="
750
751 test_19d() {
752         cat $DIR/f19 && error || true
753 }
754 run_test 19d "cat .../f19 (should return error) =============="
755
756 test_20() {
757         touch $DIR/$tfile
758         rm $DIR/$tfile
759         log "1 done"
760         touch $DIR/$tfile
761         rm $DIR/$tfile
762         log "2 done"
763         touch $DIR/$tfile
764         rm $DIR/$tfile
765         log "3 done"
766         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
767 }
768 run_test 20 "touch .../f ; ls -l ... ==========================="
769
770 test_21() {
771         test_mkdir -p $DIR/$tdir
772         [ -f $DIR/$tdir/dangle ] && rm -f $DIR/$tdir/dangle
773         ln -s dangle $DIR/$tdir/link
774         echo foo >> $DIR/$tdir/link
775         cat $DIR/$tdir/dangle
776         $CHECKSTAT -t link $DIR/$tdir/link || error "$tdir/link not a link"
777         $CHECKSTAT -f -t file $DIR/$tdir/link ||
778                 error "$tdir/link not linked to a file"
779 }
780 run_test 21 "write to dangling link ============================"
781
782 test_22() {
783         WDIR=$DIR/$tdir
784         test_mkdir -p $DIR/$tdir
785         chown $RUNAS_ID:$RUNAS_GID $WDIR
786         (cd $WDIR || error "cd $WDIR failed";
787         $RUNAS tar cf - /etc/hosts /etc/sysconfig/network | \
788         $RUNAS tar xf -)
789         ls -lR $WDIR/etc || error "ls -lR $WDIR/etc failed"
790         $CHECKSTAT -t dir $WDIR/etc || error "checkstat -t dir failed"
791         $CHECKSTAT -u \#$RUNAS_ID -g \#$RUNAS_GID $WDIR/etc || error "checkstat -u failed"
792 }
793 run_test 22 "unpack tar archive as non-root user ==============="
794
795 # was test_23
796 test_23a() {
797         test_mkdir -p $DIR/$tdir
798         local file=$DIR/$tdir/$tfile
799
800         openfile -f O_CREAT:O_EXCL $file || error "$file create failed"
801         openfile -f O_CREAT:O_EXCL $file &&
802                 error "$file recreate succeeded" || true
803 }
804 run_test 23a "O_CREAT|O_EXCL in subdir =========================="
805
806 test_23b() { # bug 18988
807         test_mkdir -p $DIR/$tdir
808         local file=$DIR/$tdir/$tfile
809
810         rm -f $file
811         echo foo > $file || error "write filed"
812         echo bar >> $file || error "append filed"
813         $CHECKSTAT -s 8 $file || error "wrong size"
814         rm $file
815 }
816 run_test 23b "O_APPEND check =========================="
817
818 # rename sanity
819 test_24a() {
820         echo '-- same directory rename'
821         test_mkdir $DIR/$tdir
822         touch $DIR/$tdir/$tfile.1
823         mv $DIR/$tdir/$tfile.1 $DIR/$tdir/$tfile.2
824         $CHECKSTAT -t file $DIR/$tdir/$tfile.2 || error "$tfile.2 not a file"
825 }
826 run_test 24a "rename file to non-existent target"
827
828 test_24b() {
829         test_mkdir $DIR/$tdir
830         touch $DIR/$tdir/$tfile.{1,2}
831         mv $DIR/$tdir/$tfile.1 $DIR/$tdir/$tfile.2
832         $CHECKSTAT -a $DIR/$tdir/$tfile.1 || error "$tfile.1 exists"
833         $CHECKSTAT -t file $DIR/$tdir/$tfile.2 || error "$tfile.2 not a file"
834 }
835 run_test 24b "rename file to existing target"
836
837 test_24c() {
838         test_mkdir $DIR/$tdir
839         test_mkdir $DIR/$tdir/d$testnum.1
840         mv $DIR/$tdir/d$testnum.1 $DIR/$tdir/d$testnum.2
841         $CHECKSTAT -a $DIR/$tdir/d$testnum.1 || error "d$testnum.1 exists"
842         $CHECKSTAT -t dir $DIR/$tdir/d$testnum.2 || error "d$testnum.2 not dir"
843 }
844 run_test 24c "rename directory to non-existent target"
845
846 test_24d() {
847         test_mkdir -c1 $DIR/$tdir
848         test_mkdir -c1 $DIR/$tdir/d$testnum.1
849         test_mkdir -c1 $DIR/$tdir/d$testnum.2
850         mrename $DIR/$tdir/d$testnum.1 $DIR/$tdir/d$testnum.2
851         $CHECKSTAT -a $DIR/$tdir/d$testnum.1 || error "d$testnum.1 exists"
852         $CHECKSTAT -t dir $DIR/$tdir/d$testnum.2 || error "d$testnum.2 not dir"
853 }
854 run_test 24d "rename directory to existing target"
855
856 test_24e() {
857         echo '-- cross directory renames --'
858         test_mkdir $DIR/R5a
859         test_mkdir $DIR/R5b
860         touch $DIR/R5a/f
861         mv $DIR/R5a/f $DIR/R5b/g
862         $CHECKSTAT -a $DIR/R5a/f || error
863         $CHECKSTAT -t file $DIR/R5b/g || error
864 }
865 run_test 24e "touch .../R5a/f; rename .../R5a/f .../R5b/g ======"
866
867 test_24f() {
868         test_mkdir $DIR/R6a
869         test_mkdir $DIR/R6b
870         touch $DIR/R6a/f $DIR/R6b/g
871         mv $DIR/R6a/f $DIR/R6b/g
872         $CHECKSTAT -a $DIR/R6a/f || error
873         $CHECKSTAT -t file $DIR/R6b/g || error
874 }
875 run_test 24f "touch .../R6a/f R6b/g; mv .../R6a/f .../R6b/g ===="
876
877 test_24g() {
878         test_mkdir $DIR/R7a
879         test_mkdir $DIR/R7b
880         test_mkdir $DIR/R7a/d
881         mv $DIR/R7a/d $DIR/R7b/e
882         $CHECKSTAT -a $DIR/R7a/d || error
883         $CHECKSTAT -t dir $DIR/R7b/e || error
884 }
885 run_test 24g "mkdir .../R7{a,b}/d; mv .../R7a/d .../R7b/e ======"
886
887 test_24h() {
888         test_mkdir -c1 $DIR/R8a
889         test_mkdir -c1 $DIR/R8b
890         test_mkdir -c1 $DIR/R8a/d
891         test_mkdir -c1 $DIR/R8b/e
892         mrename $DIR/R8a/d $DIR/R8b/e
893         $CHECKSTAT -a $DIR/R8a/d || error
894         $CHECKSTAT -t dir $DIR/R8b/e || error
895 }
896 run_test 24h "mkdir .../R8{a,b}/{d,e}; rename .../R8a/d .../R8b/e"
897
898 test_24i() {
899         echo "-- rename error cases"
900         test_mkdir $DIR/R9
901         test_mkdir $DIR/R9/a
902         touch $DIR/R9/f
903         mrename $DIR/R9/f $DIR/R9/a
904         $CHECKSTAT -t file $DIR/R9/f || error
905         $CHECKSTAT -t dir  $DIR/R9/a || error
906         $CHECKSTAT -a $DIR/R9/a/f || error
907 }
908 run_test 24i "rename file to dir error: touch f ; mkdir a ; rename f a"
909
910 test_24j() {
911         test_mkdir $DIR/R10
912         mrename $DIR/R10/f $DIR/R10/g
913         $CHECKSTAT -t dir $DIR/R10 || error
914         $CHECKSTAT -a $DIR/R10/f || error
915         $CHECKSTAT -a $DIR/R10/g || error
916 }
917 run_test 24j "source does not exist ============================"
918
919 test_24k() {
920         test_mkdir $DIR/R11a
921         test_mkdir $DIR/R11a/d
922         touch $DIR/R11a/f
923         mv $DIR/R11a/f $DIR/R11a/d
924         $CHECKSTAT -a $DIR/R11a/f || error
925         $CHECKSTAT -t file $DIR/R11a/d/f || error
926 }
927 run_test 24k "touch .../R11a/f; mv .../R11a/f .../R11a/d ======="
928
929 # bug 2429 - rename foo foo foo creates invalid file
930 test_24l() {
931         f="$DIR/f24l"
932         $MULTIOP $f OcNs || error
933 }
934 run_test 24l "Renaming a file to itself ========================"
935
936 test_24m() {
937         f="$DIR/f24m"
938         $MULTIOP $f OcLN ${f}2 ${f}2 || error "link ${f}2 ${f}2 failed"
939         # on ext3 this does not remove either the source or target files
940         # though the "expected" operation would be to remove the source
941         $CHECKSTAT -t file ${f} || error "${f} missing"
942         $CHECKSTAT -t file ${f}2 || error "${f}2 missing"
943 }
944 run_test 24m "Renaming a file to a hard link to itself ========="
945
946 test_24n() {
947     f="$DIR/f24n"
948     # this stats the old file after it was renamed, so it should fail
949     touch ${f}
950     $CHECKSTAT ${f}
951     mv ${f} ${f}.rename
952     $CHECKSTAT ${f}.rename
953     $CHECKSTAT -a ${f}
954 }
955 run_test 24n "Statting the old file after renaming (Posix rename 2)"
956
957 test_24o() {
958         test_mkdir -p $DIR/d24o
959         rename_many -s random -v -n 10 $DIR/d24o
960 }
961 run_test 24o "rename of files during htree split ==============="
962
963 test_24p() {
964         test_mkdir $DIR/R12a
965         test_mkdir $DIR/R12b
966         DIRINO=`ls -lid $DIR/R12a | awk '{ print $1 }'`
967         mrename $DIR/R12a $DIR/R12b
968         $CHECKSTAT -a $DIR/R12a || error
969         $CHECKSTAT -t dir $DIR/R12b || error
970         DIRINO2=`ls -lid $DIR/R12b | awk '{ print $1 }'`
971         [ "$DIRINO" = "$DIRINO2" ] || error "R12a $DIRINO != R12b $DIRINO2"
972 }
973 run_test 24p "mkdir .../R12{a,b}; rename .../R12a .../R12b"
974
975 cleanup_multiop_pause() {
976         trap 0
977         kill -USR1 $MULTIPID
978 }
979
980 test_24q() {
981         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
982         test_mkdir $DIR/R13a
983         test_mkdir $DIR/R13b
984         local DIRINO=$(ls -lid $DIR/R13a | awk '{ print $1 }')
985         multiop_bg_pause $DIR/R13b D_c || error "multiop failed to start"
986         MULTIPID=$!
987
988         trap cleanup_multiop_pause EXIT
989         mrename $DIR/R13a $DIR/R13b
990         $CHECKSTAT -a $DIR/R13a || error "R13a still exists"
991         $CHECKSTAT -t dir $DIR/R13b || error "R13b does not exist"
992         local DIRINO2=$(ls -lid $DIR/R13b | awk '{ print $1 }')
993         [ "$DIRINO" = "$DIRINO2" ] || error "R13a $DIRINO != R13b $DIRINO2"
994         cleanup_multiop_pause
995         wait $MULTIPID || error "multiop close failed"
996 }
997 run_test 24q "mkdir .../R13{a,b}; open R13b rename R13a R13b ==="
998
999 test_24r() { #bug 3789
1000         test_mkdir $DIR/R14a
1001         test_mkdir $DIR/R14a/b
1002         mrename $DIR/R14a $DIR/R14a/b && error "rename to subdir worked!"
1003         $CHECKSTAT -t dir $DIR/R14a || error "$DIR/R14a missing"
1004         $CHECKSTAT -t dir $DIR/R14a/b || error "$DIR/R14a/b missing"
1005 }
1006 run_test 24r "mkdir .../R14a/b; rename .../R14a .../R14a/b ====="
1007
1008 test_24s() {
1009         test_mkdir $DIR/R15a
1010         test_mkdir $DIR/R15a/b
1011         test_mkdir $DIR/R15a/b/c
1012         mrename $DIR/R15a $DIR/R15a/b/c && error "rename to sub-subdir worked!"
1013         $CHECKSTAT -t dir $DIR/R15a || error "$DIR/R15a missing"
1014         $CHECKSTAT -t dir $DIR/R15a/b/c || error "$DIR/R15a/b/c missing"
1015 }
1016 run_test 24s "mkdir .../R15a/b/c; rename .../R15a .../R15a/b/c ="
1017 test_24t() {
1018         test_mkdir $DIR/R16a
1019         test_mkdir $DIR/R16a/b
1020         test_mkdir $DIR/R16a/b/c
1021         mrename $DIR/R16a/b/c $DIR/R16a && error "rename to sub-subdir worked!"
1022         $CHECKSTAT -t dir $DIR/R16a || error "$DIR/R16a missing"
1023         $CHECKSTAT -t dir $DIR/R16a/b/c || error "$DIR/R16a/b/c missing"
1024 }
1025 run_test 24t "mkdir .../R16a/b/c; rename .../R16a/b/c .../R16a ="
1026
1027 test_24u() { # bug12192
1028         $MULTIOP $DIR/$tfile C2w$((2048 * 1024))c || error
1029         $CHECKSTAT -s $((2048 * 1024)) $DIR/$tfile || error "wrong file size"
1030 }
1031 run_test 24u "create stripe file"
1032
1033 page_size() {
1034         local size
1035         size=$(getconf PAGE_SIZE 2>/dev/null)
1036         echo -n ${size:-4096}
1037 }
1038
1039 simple_cleanup_common() {
1040         local rc=0
1041         trap 0
1042         [ -z "$DIR" -o -z "$tdir" ] && return 0
1043
1044         local start=$SECONDS
1045         rm -rf $DIR/$tdir
1046         rc=$?
1047         wait_delete_completed
1048         echo "cleanup time $((SECONDS - start))"
1049         return $rc
1050 }
1051
1052 max_pages_per_rpc() {
1053         local mdtname="$(printf "MDT%04x" ${1:-0})"
1054         $LCTL get_param -n mdc.*$mdtname*.max_pages_per_rpc
1055 }
1056
1057 test_24v() {
1058         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1059         local nrfiles=${COUNT:-100000}
1060         # Performance issue on ZFS see LU-4072 (c.f. LU-2887)
1061         [ $(facet_fstype $SINGLEMDS) = "zfs" ] && nrfiles=${COUNT:-10000}
1062
1063         local fname="$DIR/$tdir/$tfile"
1064         test_mkdir "$(dirname $fname)"
1065         # assume MDT0000 has the fewest inodes
1066         local stripes=$($LFS getdirstripe -c $(dirname $fname))
1067         local free_inodes=$(($(mdt_free_inodes 0) * stripes))
1068         [[ $free_inodes -lt $nrfiles ]] && nrfiles=$free_inodes
1069
1070         trap simple_cleanup_common EXIT
1071
1072         createmany -m "$fname" $nrfiles
1073
1074         cancel_lru_locks mdc
1075         lctl set_param mdc.*.stats clear
1076
1077         # was previously test_24D: LU-6101
1078         # readdir() returns correct number of entries after cursor reload
1079         local num_ls=$(ls $DIR/$tdir | wc -l)
1080         local num_uniq=$(ls $DIR/$tdir | sort -u | wc -l)
1081         local num_all=$(ls -a $DIR/$tdir | wc -l)
1082         if [ $num_ls -ne $nrfiles -o $num_uniq -ne $nrfiles -o \
1083              $num_all -ne $((nrfiles + 2)) ]; then
1084                 error "Expected $nrfiles files, got $num_ls " \
1085                         "($num_uniq unique $num_all .&..)"
1086         fi
1087         # LU-5 large readdir
1088         # dirent_size = 32 bytes for sizeof(struct lu_dirent) +
1089         #               N bytes for name (len($nrfiles) rounded to 8 bytes) +
1090         #               8 bytes for luda_type (4 bytes rounded to 8 bytes)
1091         # take into account of overhead in lu_dirpage header and end mark in
1092         # each page, plus one in rpc_num calculation.
1093         local dirent_size=$((32 + (${#tfile} | 7) + 1 + 8))
1094         local page_entries=$((($(page_size) - 24) / dirent_size))
1095         local mdt_idx=$($LFS getdirstripe -i $(dirname $fname))
1096         local rpc_pages=$(max_pages_per_rpc $mdt_idx)
1097         local rpc_max=$((nrfiles / (page_entries * rpc_pages) + stripes))
1098         local mds_readpage=$(calc_stats mdc.*.stats mds_readpage)
1099         echo "readpages: $mds_readpage rpc_max: $rpc_max"
1100         (( $mds_readpage < $rpc_max - 2 || $mds_readpage > $rpc_max + 1)) &&
1101                 error "large readdir doesn't take effect: " \
1102                       "$mds_readpage should be about $rpc_max"
1103
1104         simple_cleanup_common
1105 }
1106 run_test 24v "list large directory (test hash collision, b=17560)"
1107
1108 test_24w() { # bug21506
1109         SZ1=234852
1110         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=4096 || return 1
1111         dd if=/dev/zero bs=$SZ1 count=1 >> $DIR/$tfile || return 2
1112         dd if=$DIR/$tfile of=$DIR/${tfile}_left bs=1M skip=4097 || return 3
1113         SZ2=`ls -l $DIR/${tfile}_left | awk '{print $5}'`
1114         [[ "$SZ1" -eq "$SZ2" ]] ||
1115                 error "Error reading at the end of the file $tfile"
1116 }
1117 run_test 24w "Reading a file larger than 4Gb"
1118
1119 test_24x() {
1120         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
1121
1122         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.56) ]] &&
1123                 skip "Need MDS version at least 2.7.56" && return
1124
1125         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1126         local MDTIDX=1
1127         local remote_dir=$DIR/$tdir/remote_dir
1128
1129         test_mkdir -p $DIR/$tdir
1130         $LFS mkdir -i $MDTIDX $remote_dir ||
1131                 error "create remote directory failed"
1132
1133         test_mkdir -p $DIR/$tdir/src_dir
1134         touch $DIR/$tdir/src_file
1135         test_mkdir -p $remote_dir/tgt_dir
1136         touch $remote_dir/tgt_file
1137
1138         mrename $DIR/$tdir/src_dir $remote_dir/tgt_dir ||
1139                 error "rename dir cross MDT failed!"
1140
1141         mrename $DIR/$tdir/src_file $remote_dir/tgt_file ||
1142                 error "rename file cross MDT failed!"
1143
1144         touch $DIR/$tdir/ln_file
1145         ln $DIR/$tdir/ln_file $remote_dir/ln_name ||
1146                 error "ln file cross MDT failed"
1147
1148         rm -rf $DIR/$tdir || error "Can not delete directories"
1149 }
1150 run_test 24x "cross MDT rename/link"
1151
1152 test_24y() {
1153         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
1154         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1155         local MDTIDX=1
1156         local remote_dir=$DIR/$tdir/remote_dir
1157
1158         test_mkdir -p $DIR/$tdir
1159         $LFS mkdir -i $MDTIDX $remote_dir ||
1160                    error "create remote directory failed"
1161
1162         test_mkdir -p $remote_dir/src_dir
1163         touch $remote_dir/src_file
1164         test_mkdir -p $remote_dir/tgt_dir
1165         touch $remote_dir/tgt_file
1166
1167         mrename $remote_dir/src_dir $remote_dir/tgt_dir ||
1168                 error "rename subdir in the same remote dir failed!"
1169
1170         mrename $remote_dir/src_file $remote_dir/tgt_file ||
1171                 error "rename files in the same remote dir failed!"
1172
1173         ln $remote_dir/tgt_file $remote_dir/tgt_file1 ||
1174                 error "link files in the same remote dir failed!"
1175
1176         rm -rf $DIR/$tdir || error "Can not delete directories"
1177 }
1178 run_test 24y "rename/link on the same dir should succeed"
1179
1180 test_24A() { # LU-3182
1181         local NFILES=5000
1182
1183         rm -rf $DIR/$tdir
1184         test_mkdir -p $DIR/$tdir
1185         trap simple_cleanup_common EXIT
1186         createmany -m $DIR/$tdir/$tfile $NFILES
1187         local t=$(ls $DIR/$tdir | wc -l)
1188         local u=$(ls $DIR/$tdir | sort -u | wc -l)
1189         local v=$(ls -ai $DIR/$tdir | sort -u | wc -l)
1190         if [ $t -ne $NFILES -o $u -ne $NFILES -o $v -ne $((NFILES + 2)) ] ; then
1191                 error "Expected $NFILES files, got $t ($u unique $v .&..)"
1192         fi
1193
1194         simple_cleanup_common || error "Can not delete directories"
1195 }
1196 run_test 24A "readdir() returns correct number of entries."
1197
1198 test_24B() { # LU-4805
1199         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
1200         local count
1201
1202         test_mkdir $DIR/$tdir
1203         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir ||
1204                 error "create striped dir failed"
1205
1206         count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1207         [ $count -eq 2 ] || error "Expected 2, got $count"
1208
1209         touch $DIR/$tdir/striped_dir/a
1210
1211         count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1212         [ $count -eq 3 ] || error "Expected 3, got $count"
1213
1214         touch $DIR/$tdir/striped_dir/.f
1215
1216         count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1217         [ $count -eq 4 ] || error "Expected 4, got $count"
1218
1219         rm -rf $DIR/$tdir || error "Can not delete directories"
1220 }
1221 run_test 24B "readdir for striped dir return correct number of entries"
1222
1223 test_24C() {
1224         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
1225
1226         mkdir $DIR/$tdir
1227         mkdir $DIR/$tdir/d0
1228         mkdir $DIR/$tdir/d1
1229
1230         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/d0/striped_dir ||
1231                 error "create striped dir failed"
1232
1233         cd $DIR/$tdir/d0/striped_dir
1234
1235         local d0_ino=$(ls -i -l -a $DIR/$tdir | grep "d0" | awk '{print $1}')
1236         local d1_ino=$(ls -i -l -a $DIR/$tdir | grep "d1" | awk '{print $1}')
1237         local parent_ino=$(ls -i -l -a | grep "\.\." | awk '{print $1}')
1238
1239         [ "$d0_ino" = "$parent_ino" ] ||
1240                 error ".. wrong, expect $d0_ino, get $parent_ino"
1241
1242         mv $DIR/$tdir/d0/striped_dir $DIR/$tdir/d1/ ||
1243                 error "mv striped dir failed"
1244
1245         parent_ino=$(ls -i -l -a | grep "\.\." | awk '{print $1}')
1246
1247         [ "$d1_ino" = "$parent_ino" ] ||
1248                 error ".. wrong after mv, expect $d1_ino, get $parent_ino"
1249 }
1250 run_test 24C "check .. in striped dir"
1251
1252 test_24E() {
1253         [[ $MDSCOUNT -lt 4 ]] && skip "needs >= 4 MDTs" && return
1254         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1255
1256         mkdir -p $DIR/$tdir
1257         mkdir $DIR/$tdir/src_dir
1258         $LFS mkdir -i 1 $DIR/$tdir/src_dir/src_child ||
1259                 error "create remote source failed"
1260
1261         touch $DIR/$tdir/src_dir/src_child/a
1262
1263         $LFS mkdir -i 2 $DIR/$tdir/tgt_dir ||
1264                 error "create remote target dir failed"
1265
1266         $LFS mkdir -i 3 $DIR/$tdir/tgt_dir/tgt_child ||
1267                 error "create remote target child failed"
1268
1269         mrename $DIR/$tdir/src_dir/src_child $DIR/$tdir/tgt_dir/tgt_child ||
1270                 error "rename dir cross MDT failed!"
1271
1272         find $DIR/$tdir
1273
1274         $CHECKSTAT -t dir $DIR/$tdir/src_dir/src_child &&
1275                 error "src_child still exists after rename"
1276
1277         $CHECKSTAT -t file $DIR/$tdir/tgt_dir/tgt_child/a ||
1278                 error "missing file(a) after rename"
1279
1280         rm -rf $DIR/$tdir || error "Can not delete directories"
1281 }
1282 run_test 24E "cross MDT rename/link"
1283
1284 test_25a() {
1285         echo '== symlink sanity ============================================='
1286
1287         test_mkdir $DIR/d25
1288         ln -s d25 $DIR/s25
1289         touch $DIR/s25/foo || error
1290 }
1291 run_test 25a "create file in symlinked directory ==============="
1292
1293 test_25b() {
1294         [ ! -d $DIR/d25 ] && test_25a
1295         $CHECKSTAT -t file $DIR/s25/foo || error
1296 }
1297 run_test 25b "lookup file in symlinked directory ==============="
1298
1299 test_26a() {
1300         test_mkdir $DIR/d26
1301         test_mkdir $DIR/d26/d26-2
1302         ln -s d26/d26-2 $DIR/s26
1303         touch $DIR/s26/foo || error
1304 }
1305 run_test 26a "multiple component symlink ======================="
1306
1307 test_26b() {
1308         test_mkdir -p $DIR/d26b/d26-2
1309         ln -s d26b/d26-2/foo $DIR/s26-2
1310         touch $DIR/s26-2 || error
1311 }
1312 run_test 26b "multiple component symlink at end of lookup ======"
1313
1314 test_26c() {
1315         test_mkdir $DIR/d26.2
1316         touch $DIR/d26.2/foo
1317         ln -s d26.2 $DIR/s26.2-1
1318         ln -s s26.2-1 $DIR/s26.2-2
1319         ln -s s26.2-2 $DIR/s26.2-3
1320         chmod 0666 $DIR/s26.2-3/foo
1321 }
1322 run_test 26c "chain of symlinks ================================"
1323
1324 # recursive symlinks (bug 439)
1325 test_26d() {
1326         ln -s d26-3/foo $DIR/d26-3
1327 }
1328 run_test 26d "create multiple component recursive symlink ======"
1329
1330 test_26e() {
1331         [ ! -h $DIR/d26-3 ] && test_26d
1332         rm $DIR/d26-3
1333 }
1334 run_test 26e "unlink multiple component recursive symlink ======"
1335
1336 # recursive symlinks (bug 7022)
1337 test_26f() {
1338         test_mkdir -p $DIR/$tdir
1339         test_mkdir $DIR/$tdir/$tfile   || error "mkdir $DIR/$tdir/$tfile failed"
1340         cd $DIR/$tdir/$tfile           || error "cd $DIR/$tdir/$tfile failed"
1341         test_mkdir -p lndir/bar1      || error "mkdir lndir/bar1 failed"
1342         test_mkdir $DIR/$tdir/$tfile/$tfile   || error "mkdir $tfile failed"
1343         cd $tfile                || error "cd $tfile failed"
1344         ln -s .. dotdot          || error "ln dotdot failed"
1345         ln -s dotdot/lndir lndir || error "ln lndir failed"
1346         cd $DIR/$tdir                 || error "cd $DIR/$tdir failed"
1347         output=`ls $tfile/$tfile/lndir/bar1`
1348         [ "$output" = bar1 ] && error "unexpected output"
1349         rm -r $tfile             || error "rm $tfile failed"
1350         $CHECKSTAT -a $DIR/$tfile || error "$tfile not gone"
1351 }
1352 run_test 26f "rm -r of a directory which has recursive symlink ="
1353
1354 test_27a() {
1355         echo '== stripe sanity =============================================='
1356         test_mkdir -p $DIR/d27 || error "mkdir failed"
1357         $GETSTRIPE $DIR/d27
1358         $SETSTRIPE -c 1 $DIR/d27/f0 || error "setstripe failed"
1359         $CHECKSTAT -t file $DIR/d27/f0 || error "checkstat failed"
1360         log "== test_27a: write to one stripe file ========================="
1361         cp /etc/hosts $DIR/d27/f0 || error
1362 }
1363 run_test 27a "one stripe file =================================="
1364
1365 test_27b() {
1366         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping 2-stripe test" && return
1367         test_mkdir -p $DIR/d27
1368         $SETSTRIPE -c 2 $DIR/d27/f01 || error "setstripe failed"
1369         $GETSTRIPE -c $DIR/d27/f01
1370         [ $($GETSTRIPE -c $DIR/d27/f01) -eq 2 ] ||
1371                 error "two-stripe file doesn't have two stripes"
1372
1373         dd if=/dev/zero of=$DIR/d27/f01 bs=4k count=4 || error "dd failed"
1374 }
1375 run_test 27b "create and write to two stripe file"
1376
1377 test_27d() {
1378         test_mkdir -p $DIR/d27
1379         $SETSTRIPE -c 0 -i -1 -S 0 $DIR/d27/fdef || error "setstripe failed"
1380         $CHECKSTAT -t file $DIR/d27/fdef || error "checkstat failed"
1381         dd if=/dev/zero of=$DIR/d27/fdef bs=4k count=4 || error
1382 }
1383 run_test 27d "create file with default settings ================"
1384
1385 test_27e() {
1386         # LU-5839 adds check for existed layout before setting it
1387         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.56) ]] &&
1388                 skip "Need MDS version at least 2.7.56" && return
1389         test_mkdir -p $DIR/d27
1390         $SETSTRIPE -c 2 $DIR/d27/f12 || error "setstripe failed"
1391         $SETSTRIPE -c 2 $DIR/d27/f12 && error "setstripe succeeded twice"
1392         $CHECKSTAT -t file $DIR/d27/f12 || error "checkstat failed"
1393 }
1394 run_test 27e "setstripe existing file (should return error) ======"
1395
1396 test_27f() {
1397         test_mkdir $DIR/$tdir
1398         $SETSTRIPE -S 100 -i 0 -c 1 $DIR/$tdir/$tfile &&
1399                 error "$SETSTRIPE $DIR/$tdir/$tfile failed"
1400         $CHECKSTAT -t file $DIR/$tdir/$tfile &&
1401                 error "$CHECKSTAT -t file $DIR/$tdir/$tfile should fail"
1402         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=4k count=4 || error "dd failed"
1403         $GETSTRIPE $DIR/$tdir/$tfile || error "$GETSTRIPE failed"
1404 }
1405 run_test 27f "setstripe with bad stripe size (should return error)"
1406
1407 test_27g() {
1408         test_mkdir -p $DIR/d27
1409         $MCREATE $DIR/d27/fnone || error "mcreate failed"
1410         $GETSTRIPE $DIR/d27/fnone 2>&1 | grep "no stripe info" ||
1411                 error "$DIR/d27/fnone has object"
1412 }
1413 run_test 27g "$GETSTRIPE with no objects"
1414
1415 test_27i() {
1416         test_mkdir $DIR/$tdir
1417         touch $DIR/$tdir/$tfile || error "touch failed"
1418         [[ $($GETSTRIPE -c $DIR/$tdir/$tfile) -gt 0 ]] ||
1419                 error "missing objects"
1420 }
1421 run_test 27i "$GETSTRIPE with some objects"
1422
1423 test_27j() {
1424         test_mkdir -p $DIR/d27
1425         $SETSTRIPE -i $OSTCOUNT $DIR/d27/f27j && error "setstripe failed"||true
1426 }
1427 run_test 27j "setstripe with bad stripe offset (should return error)"
1428
1429 test_27k() { # bug 2844
1430         test_mkdir -p $DIR/d27
1431         FILE=$DIR/d27/f27k
1432         LL_MAX_BLKSIZE=$((4 * 1024 * 1024))
1433         [ ! -d $DIR/d27 ] && test_mkdir -p $DIR d27
1434         $SETSTRIPE -S 67108864 $FILE || error "setstripe failed"
1435         BLKSIZE=`stat $FILE | awk '/IO Block:/ { print $7 }'`
1436         [ $BLKSIZE -le $LL_MAX_BLKSIZE ] || error "1:$BLKSIZE > $LL_MAX_BLKSIZE"
1437         dd if=/dev/zero of=$FILE bs=4k count=1
1438         BLKSIZE=`stat $FILE | awk '/IO Block:/ { print $7 }'`
1439         [ $BLKSIZE -le $LL_MAX_BLKSIZE ] || error "2:$BLKSIZE > $LL_MAX_BLKSIZE"
1440 }
1441 run_test 27k "limit i_blksize for broken user apps ============="
1442
1443 test_27l() {
1444         test_mkdir -p $DIR/d27
1445         mcreate $DIR/f27l || error "creating file"
1446         $RUNAS $SETSTRIPE -c 1 $DIR/f27l && \
1447                 error "setstripe should have failed" || true
1448 }
1449 run_test 27l "check setstripe permissions (should return error)"
1450
1451 test_27m() {
1452         [[ $OSTCOUNT -lt 2 ]] && skip_env "$OSTCOUNT < 2 OSTs -- skipping" &&
1453                 return
1454
1455         ORIGFREE=$($LCTL get_param -n lov.$FSNAME-clilov-*.kbytesavail |
1456                    head -n1)
1457         if [[ $ORIGFREE -gt $MAXFREE ]]; then
1458                 skip "$ORIGFREE > $MAXFREE skipping out-of-space test on OST0"
1459                 return
1460         fi
1461         trap simple_cleanup_common EXIT
1462         test_mkdir -p $DIR/$tdir
1463         $SETSTRIPE -i 0 -c 1 $DIR/$tdir/f27m_1
1464         dd if=/dev/zero of=$DIR/$tdir/f27m_1 bs=1024 count=$MAXFREE &&
1465                 error "dd should fill OST0"
1466         i=2
1467         while $SETSTRIPE -i 0 -c 1 $DIR/$tdir/f27m_$i; do
1468                 i=$((i + 1))
1469                 [ $i -gt 256 ] && break
1470         done
1471         i=$((i + 1))
1472         touch $DIR/$tdir/f27m_$i
1473         [ `$GETSTRIPE $DIR/$tdir/f27m_$i | grep -A 10 obdidx | awk '{print $1}'| grep -w "0"` ] &&
1474                 error "OST0 was full but new created file still use it"
1475         i=$((i + 1))
1476         touch $DIR/$tdir/f27m_$i
1477         [ `$GETSTRIPE $DIR/$tdir/f27m_$i | grep -A 10 obdidx | awk '{print $1}'| grep -w "0"` ] &&
1478                 error "OST0 was full but new created file still use it"
1479         simple_cleanup_common
1480 }
1481 run_test 27m "create file while OST0 was full =================="
1482
1483 sleep_maxage() {
1484         local DELAY=$(do_facet $SINGLEMDS lctl get_param -n lov.*.qos_maxage | head -n 1 | awk '{print $1 * 2}')
1485         sleep $DELAY
1486 }
1487
1488 # OSCs keep a NOSPC flag that will be reset after ~5s (qos_maxage)
1489 # if the OST isn't full anymore.
1490 reset_enospc() {
1491         local OSTIDX=${1:-""}
1492
1493         local list=$(comma_list $(osts_nodes))
1494         [ "$OSTIDX" ] && list=$(facet_host ost$((OSTIDX + 1)))
1495
1496         do_nodes $list lctl set_param fail_loc=0
1497         sync    # initiate all OST_DESTROYs from MDS to OST
1498         sleep_maxage
1499 }
1500
1501 exhaust_precreations() {
1502         local OSTIDX=$1
1503         local FAILLOC=$2
1504         local FAILIDX=${3:-$OSTIDX}
1505         local ofacet=ost$((OSTIDX + 1))
1506
1507         test_mkdir -p -c1 $DIR/$tdir
1508         local mdtidx=$($LFS getstripe -M $DIR/$tdir)
1509         local mfacet=mds$((mdtidx + 1))
1510         echo OSTIDX=$OSTIDX MDTIDX=$mdtidx
1511
1512         local OST=$(ostname_from_index $OSTIDX)
1513
1514         # on the mdt's osc
1515         local mdtosc_proc1=$(get_mdtosc_proc_path $mfacet $OST)
1516         local last_id=$(do_facet $mfacet lctl get_param -n \
1517                         osc.$mdtosc_proc1.prealloc_last_id)
1518         local next_id=$(do_facet $mfacet lctl get_param -n \
1519                         osc.$mdtosc_proc1.prealloc_next_id)
1520
1521         local mdtosc_proc2=$(get_mdtosc_proc_path $mfacet)
1522         do_facet $mfacet lctl get_param osc.$mdtosc_proc2.prealloc*
1523
1524         test_mkdir -p $DIR/$tdir/${OST}
1525         $SETSTRIPE -i $OSTIDX -c 1 $DIR/$tdir/${OST}
1526 #define OBD_FAIL_OST_ENOSPC              0x215
1527         do_facet $ofacet lctl set_param fail_val=$FAILIDX fail_loc=0x215
1528         echo "Creating to objid $last_id on ost $OST..."
1529         createmany -o $DIR/$tdir/${OST}/f $next_id $((last_id - next_id + 2))
1530         do_facet $mfacet lctl get_param osc.$mdtosc_proc2.prealloc*
1531         do_facet $ofacet lctl set_param fail_loc=$FAILLOC
1532         sleep_maxage
1533 }
1534
1535 exhaust_all_precreations() {
1536         local i
1537         for (( i=0; i < OSTCOUNT; i++ )) ; do
1538                 exhaust_precreations $i $1 -1
1539         done
1540 }
1541
1542 test_27n() {
1543         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
1544         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1545         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1546         remote_ost_nodsh && skip "remote OST with nodsh" && return
1547
1548         reset_enospc
1549         rm -f $DIR/$tdir/$tfile
1550         exhaust_precreations 0 0x80000215
1551         $SETSTRIPE -c -1 $DIR/$tdir
1552         touch $DIR/$tdir/$tfile || error
1553         $GETSTRIPE $DIR/$tdir/$tfile
1554         reset_enospc
1555 }
1556 run_test 27n "create file with some full OSTs =================="
1557
1558 test_27o() {
1559         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
1560         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1561         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1562         remote_ost_nodsh && skip "remote OST with nodsh" && return
1563
1564         reset_enospc
1565         rm -f $DIR/$tdir/$tfile
1566         exhaust_all_precreations 0x215
1567
1568         touch $DIR/$tdir/$tfile && error "able to create $DIR/$tdir/$tfile"
1569
1570         reset_enospc
1571         rm -rf $DIR/$tdir/*
1572 }
1573 run_test 27o "create file with all full OSTs (should error) ===="
1574
1575 test_27p() {
1576         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
1577         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1578         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1579         remote_ost_nodsh && skip "remote OST with nodsh" && return
1580
1581         reset_enospc
1582         rm -f $DIR/$tdir/$tfile
1583         test_mkdir -p $DIR/$tdir
1584
1585         $MCREATE $DIR/$tdir/$tfile || error "mcreate failed"
1586         $TRUNCATE $DIR/$tdir/$tfile 80000000 || error "truncate failed"
1587         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1588
1589         exhaust_precreations 0 0x80000215
1590         echo foo >> $DIR/$tdir/$tfile || error "append failed"
1591         $CHECKSTAT -s 80000004 $DIR/$tdir/$tfile || error "checkstat failed"
1592         $GETSTRIPE $DIR/$tdir/$tfile
1593
1594         reset_enospc
1595 }
1596 run_test 27p "append to a truncated file with some full OSTs ==="
1597
1598 test_27q() {
1599         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
1600         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1601         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1602         remote_ost_nodsh && skip "remote OST with nodsh" && return
1603
1604         reset_enospc
1605         rm -f $DIR/$tdir/$tfile
1606
1607         test_mkdir -p $DIR/$tdir
1608         $MCREATE $DIR/$tdir/$tfile || error "mcreate $DIR/$tdir/$tfile failed"
1609         $TRUNCATE $DIR/$tdir/$tfile 80000000 ||error "truncate $DIR/$tdir/$tfile failed"
1610         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1611
1612         exhaust_all_precreations 0x215
1613
1614         echo foo >> $DIR/$tdir/$tfile && error "append succeeded"
1615         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat 2 failed"
1616
1617         reset_enospc
1618 }
1619 run_test 27q "append to truncated file with all OSTs full (should error) ==="
1620
1621 test_27r() {
1622         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
1623         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1624         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1625         remote_ost_nodsh && skip "remote OST with nodsh" && return
1626
1627         reset_enospc
1628         rm -f $DIR/$tdir/$tfile
1629         exhaust_precreations 0 0x80000215
1630
1631         $SETSTRIPE -i 0 -c 2 $DIR/$tdir/$tfile # && error
1632
1633         reset_enospc
1634 }
1635 run_test 27r "stripe file with some full OSTs (shouldn't LBUG) ="
1636
1637 test_27s() { # bug 10725
1638         test_mkdir -p $DIR/$tdir
1639         local stripe_size=$((4096 * 1024 * 1024))       # 2^32
1640         local stripe_count=0
1641         [ $OSTCOUNT -eq 1 ] || stripe_count=2
1642         $SETSTRIPE -S $stripe_size -c $stripe_count $DIR/$tdir &&
1643                 error "stripe width >= 2^32 succeeded" || true
1644
1645 }
1646 run_test 27s "lsm_xfersize overflow (should error) (bug 10725)"
1647
1648 test_27t() { # bug 10864
1649         WDIR=$(pwd)
1650         WLFS=$(which lfs)
1651         cd $DIR
1652         touch $tfile
1653         $WLFS getstripe $tfile
1654         cd $WDIR
1655 }
1656 run_test 27t "check that utils parse path correctly"
1657
1658 test_27u() { # bug 4900
1659         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
1660         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1661         local index
1662         local list=$(comma_list $(mdts_nodes))
1663
1664 #define OBD_FAIL_MDS_OSC_PRECREATE      0x139
1665         do_nodes $list $LCTL set_param fail_loc=0x139
1666         test_mkdir -p $DIR/$tdir
1667         trap simple_cleanup_common EXIT
1668         createmany -o $DIR/$tdir/t- 1000
1669         do_nodes $list $LCTL set_param fail_loc=0
1670
1671         TLOG=$TMP/$tfile.getstripe
1672         $GETSTRIPE $DIR/$tdir > $TLOG
1673         OBJS=$(awk -vobj=0 '($1 == 0) { obj += 1 } END { print obj; }' $TLOG)
1674         unlinkmany $DIR/$tdir/t- 1000
1675         trap 0
1676         [[ $OBJS -gt 0 ]] &&
1677                 error "$OBJS objects created on OST-0. See $TLOG" || pass
1678 }
1679 run_test 27u "skip object creation on OSC w/o objects =========="
1680
1681 test_27v() { # bug 4900
1682         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
1683         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1684         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1685         remote_ost_nodsh && skip "remote OST with nodsh" && return
1686
1687         exhaust_all_precreations 0x215
1688         reset_enospc
1689
1690         test_mkdir -p $DIR/$tdir
1691         $SETSTRIPE -c 1 $DIR/$tdir         # 1 stripe / file
1692
1693         touch $DIR/$tdir/$tfile
1694         #define OBD_FAIL_TGT_DELAY_PRECREATE     0x705
1695         # all except ost1
1696         for (( i=1; i < OSTCOUNT; i++ )); do
1697                 do_facet ost$i lctl set_param fail_loc=0x705
1698         done
1699         local START=`date +%s`
1700         createmany -o $DIR/$tdir/$tfile 32
1701
1702         local FINISH=`date +%s`
1703         local TIMEOUT=`lctl get_param -n timeout`
1704         local PROCESS=$((FINISH - START))
1705         [ $PROCESS -ge $((TIMEOUT / 2)) ] && \
1706                error "$FINISH - $START >= $TIMEOUT / 2"
1707         sleep $((TIMEOUT / 2 - PROCESS))
1708         reset_enospc
1709 }
1710 run_test 27v "skip object creation on slow OST ================="
1711
1712 test_27w() { # bug 10997
1713         test_mkdir -p $DIR/$tdir || error "mkdir failed"
1714         $SETSTRIPE -S 65536 $DIR/$tdir/f0 || error "setstripe failed"
1715         [ $($GETSTRIPE -S $DIR/$tdir/f0) -ne 65536 ] &&
1716                 error "stripe size $size != 65536" || true
1717         [ $($GETSTRIPE -d $DIR/$tdir | grep -c "stripe_count") -ne 1 ] &&
1718                 error "$GETSTRIPE -d $DIR/$tdir failed" || true
1719 }
1720 run_test 27w "check $SETSTRIPE -S option"
1721
1722 test_27wa() {
1723         [[ $OSTCOUNT -lt 2 ]] &&
1724                 skip_env "skipping multiple stripe count/offset test" && return
1725
1726         test_mkdir -p $DIR/$tdir || error "mkdir failed"
1727         for i in $(seq 1 $OSTCOUNT); do
1728                 offset=$((i - 1))
1729                 $SETSTRIPE -c $i -i $offset $DIR/$tdir/f$i ||
1730                         error "setstripe -c $i -i $offset failed"
1731                 count=$($GETSTRIPE -c $DIR/$tdir/f$i)
1732                 index=$($GETSTRIPE -i $DIR/$tdir/f$i)
1733                 [ $count -ne $i ] && error "stripe count $count != $i" || true
1734                 [ $index -ne $offset ] &&
1735                         error "stripe offset $index != $offset" || true
1736         done
1737 }
1738 run_test 27wa "check $SETSTRIPE -c -i options"
1739
1740 test_27x() {
1741         remote_ost_nodsh && skip "remote OST with nodsh" && return
1742         [[ $OSTCOUNT -lt 2 ]] && skip_env "$OSTCOUNT < 2 OSTs" && return
1743         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1744         OFFSET=$(($OSTCOUNT - 1))
1745         OSTIDX=0
1746         local OST=$(ostname_from_index $OSTIDX)
1747
1748         test_mkdir -p $DIR/$tdir
1749         $SETSTRIPE -c 1 $DIR/$tdir      # 1 stripe per file
1750         do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 1
1751         sleep_maxage
1752         createmany -o $DIR/$tdir/$tfile $OSTCOUNT
1753         for i in `seq 0 $OFFSET`; do
1754                 [ `$GETSTRIPE $DIR/$tdir/$tfile$i | grep -A 10 obdidx | awk '{print $1}' | grep -w "$OSTIDX"` ] &&
1755                 error "OST0 was degraded but new created file still use it"
1756         done
1757         do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 0
1758 }
1759 run_test 27x "create files while OST0 is degraded"
1760
1761 test_27y() {
1762         [[ $OSTCOUNT -lt 2 ]] &&
1763                 skip_env "$OSTCOUNT < 2 OSTs -- skipping" && return
1764         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1765         remote_ost_nodsh && skip "remote OST with nodsh" && return
1766         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1767
1768         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS $FSNAME-OST0000)
1769         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
1770             osc.$mdtosc.prealloc_last_id)
1771         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
1772             osc.$mdtosc.prealloc_next_id)
1773         local fcount=$((last_id - next_id))
1774         [[ $fcount -eq 0 ]] && skip "not enough space on OST0" && return
1775         [[ $fcount -gt $OSTCOUNT ]] && fcount=$OSTCOUNT
1776
1777         local MDS_OSCS=$(do_facet $SINGLEMDS lctl dl |
1778                          awk '/[oO][sS][cC].*md[ts]/ { print $4 }')
1779         local OST_DEACTIVE_IDX=-1
1780         local OSC
1781         local OSTIDX
1782         local OST
1783
1784         for OSC in $MDS_OSCS; do
1785                 OST=$(osc_to_ost $OSC)
1786                 OSTIDX=$(index_from_ostuuid $OST)
1787                 if [ $OST_DEACTIVE_IDX == -1 ]; then
1788                         OST_DEACTIVE_IDX=$OSTIDX
1789                 fi
1790                 if [ $OSTIDX != $OST_DEACTIVE_IDX ]; then
1791                         echo $OSC "is Deactivated:"
1792                         do_facet $SINGLEMDS lctl --device  %$OSC deactivate
1793                 fi
1794         done
1795
1796         OSTIDX=$(index_from_ostuuid $OST)
1797         test_mkdir -p $DIR/$tdir
1798         $SETSTRIPE -c 1 $DIR/$tdir      # 1 stripe / file
1799
1800         for OSC in $MDS_OSCS; do
1801                 OST=$(osc_to_ost $OSC)
1802                 OSTIDX=$(index_from_ostuuid $OST)
1803                 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
1804                         echo $OST "is degraded:"
1805                         do_facet ost$((OSTIDX+1)) lctl set_param -n \
1806                                                 obdfilter.$OST.degraded=1
1807                 fi
1808         done
1809
1810         sleep_maxage
1811         createmany -o $DIR/$tdir/$tfile $fcount
1812
1813         for OSC in $MDS_OSCS; do
1814                 OST=$(osc_to_ost $OSC)
1815                 OSTIDX=$(index_from_ostuuid $OST)
1816                 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
1817                         echo $OST "is recovered from degraded:"
1818                         do_facet ost$((OSTIDX+1)) lctl set_param -n \
1819                                                 obdfilter.$OST.degraded=0
1820                 else
1821                         do_facet $SINGLEMDS lctl --device %$OSC activate
1822                 fi
1823         done
1824
1825         # all osp devices get activated, hence -1 stripe count restored
1826         local stripecnt=0
1827
1828         # sleep 2*lod_qos_maxage seconds waiting for lod qos to notice osp
1829         # devices get activated.
1830         sleep_maxage
1831         $SETSTRIPE -c -1 $DIR/$tfile
1832         stripecnt=$($GETSTRIPE -c $DIR/$tfile)
1833         rm -f $DIR/$tfile
1834         [ $stripecnt -ne $OSTCOUNT ] &&
1835                 error "Of $OSTCOUNT OSTs, only $stripecnt is available"
1836         return 0
1837 }
1838 run_test 27y "create files while OST0 is degraded and the rest inactive"
1839
1840 check_seq_oid()
1841 {
1842         log "check file $1"
1843
1844         lmm_count=$($GETSTRIPE -c $1)
1845         lmm_seq=$($GETSTRIPE -v $1 | awk '/lmm_seq/ { print $2 }')
1846         lmm_oid=$($GETSTRIPE -v $1 | awk '/lmm_object_id/ { print $2 }')
1847
1848         local old_ifs="$IFS"
1849         IFS=$'[:]'
1850         fid=($($LFS path2fid $1))
1851         IFS="$old_ifs"
1852
1853         log "FID seq ${fid[1]}, oid ${fid[2]} ver ${fid[3]}"
1854         log "LOV seq $lmm_seq, oid $lmm_oid, count: $lmm_count"
1855
1856         # compare lmm_seq and lu_fid->f_seq
1857         [ $lmm_seq = ${fid[1]} ] || { error "SEQ mismatch"; return 1; }
1858         # compare lmm_object_id and lu_fid->oid
1859         [ $lmm_oid = ${fid[2]} ] || { error "OID mismatch"; return 2; }
1860
1861         # check the trusted.fid attribute of the OST objects of the file
1862         local have_obdidx=false
1863         local stripe_nr=0
1864         $GETSTRIPE $1 | while read obdidx oid hex seq; do
1865                 # skip lines up to and including "obdidx"
1866                 [ -z "$obdidx" ] && break
1867                 [ "$obdidx" = "obdidx" ] && have_obdidx=true && continue
1868                 $have_obdidx || continue
1869
1870                 local ost=$((obdidx + 1))
1871                 local dev=$(ostdevname $ost)
1872                 local oid_hex
1873
1874                 log "want: stripe:$stripe_nr ost:$obdidx oid:$oid/$hex seq:$seq"
1875
1876                 seq=$(echo $seq | sed -e "s/^0x//g")
1877                 if [ $seq == 0 ] || [ $(facet_fstype ost$ost) == zfs ]; then
1878                         oid_hex=$(echo $oid)
1879                 else
1880                         oid_hex=$(echo $hex | sed -e "s/^0x//g")
1881                 fi
1882                 local obj_file="O/$seq/d$((oid %32))/$oid_hex"
1883
1884                 local ff
1885                 #
1886                 # Don't unmount/remount the OSTs if we don't need to do that.
1887                 # LU-2577 changes filter_fid to be smaller, so debugfs needs
1888                 # update too, until that use mount/ll_decode_filter_fid/mount.
1889                 # Re-enable when debugfs will understand new filter_fid.
1890                 #
1891                 if [ $(facet_fstype ost$ost) == ldiskfs ]; then
1892                         ff=$(do_facet ost$ost "$DEBUGFS -c -R 'stat $obj_file' \
1893                                 $dev 2>/dev/null" | grep "parent=")
1894                 fi
1895                 if [ -z "$ff" ]; then
1896                         stop ost$ost
1897                         mount_fstype ost$ost
1898                         ff=$(do_facet ost$ost $LL_DECODE_FILTER_FID \
1899                                 $(facet_mntpt ost$ost)/$obj_file)
1900                         unmount_fstype ost$ost
1901                         start ost$ost $dev $OST_MOUNT_OPTS
1902                         clients_up
1903                 fi
1904
1905                 [ -z "$ff" ] && error "$obj_file: no filter_fid info"
1906
1907                 echo "$ff" | sed -e 's#.*objid=#got: objid=#'
1908
1909                 # /mnt/O/0/d23/23: objid=23 seq=0 parent=[0x200000400:0x1e:0x1]
1910                 # fid: objid=23 seq=0 parent=[0x200000400:0x1e:0x0] stripe=1
1911                 #
1912                 # fid: parent=[0x200000400:0x1e:0x0] stripe=1 stripe_count=2 \
1913                 #       stripe_size=1048576 component_id=1 component_start=0 \
1914                 #       component_end=33554432
1915                 local ff_parent=$(sed -e 's/.*parent=.//' <<<$ff)
1916                 local ff_pseq=$(cut -d: -f1 <<<$ff_parent)
1917                 local ff_poid=$(cut -d: -f2 <<<$ff_parent)
1918                 local ff_pstripe
1919                 if grep -q 'stripe=' <<<$ff; then
1920                         ff_pstripe=$(sed -e 's/.*stripe=//' -e 's/ .*//' <<<$ff)
1921                 else
1922                         # $LL_DECODE_FILTER_FID does not print "stripe="; look
1923                         # into f_ver in this case.  See comment on ff_parent.
1924                         ff_pstripe=$(cut -d: -f3 <<<$ff_parent | sed -e 's/]//')
1925                 fi
1926
1927                 if grep -q 'stripe_count=' <<<$ff; then
1928                         local ff_scnt=$(sed -e 's/.*stripe_count=//' \
1929                                             -e 's/ .*//' <<<$ff)
1930                         [ $lmm_count = $ff_scnt ] ||
1931                                 error "FF stripe count $lmm_count != $ff_scnt"
1932                 fi
1933                 # compare lmm_seq and filter_fid->ff_parent.f_seq
1934                 [ $ff_pseq = $lmm_seq ] ||
1935                         error "FF parent SEQ $ff_pseq != $lmm_seq"
1936                 # compare lmm_object_id and filter_fid->ff_parent.f_oid
1937                 [ $ff_poid = $lmm_oid ] ||
1938                         error "FF parent OID $ff_poid != $lmm_oid"
1939                 (($ff_pstripe == $stripe_nr)) ||
1940                         error "FF stripe $ff_pstripe != $stripe_nr"
1941
1942                 stripe_nr=$((stripe_nr + 1))
1943         done
1944 }
1945
1946 test_27z() {
1947         remote_ost_nodsh && skip "remote OST with nodsh" && return
1948         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1949         test_mkdir -p $DIR/$tdir
1950
1951         $SETSTRIPE -c 1 -i 0 -S 64k $DIR/$tdir/$tfile-1 ||
1952                 { error "setstripe -c -1 failed"; return 1; }
1953         # We need to send a write to every object to get parent FID info set.
1954         # This _should_ also work for setattr, but does not currently.
1955         # touch $DIR/$tdir/$tfile-1 ||
1956         dd if=/dev/zero of=$DIR/$tdir/$tfile-1 bs=1M count=1 ||
1957                 { error "dd $tfile-1 failed"; return 2; }
1958         $SETSTRIPE -c -1 -i $((OSTCOUNT - 1)) -S 1M $DIR/$tdir/$tfile-2 ||
1959                 { error "setstripe -c -1 failed"; return 3; }
1960         dd if=/dev/zero of=$DIR/$tdir/$tfile-2 bs=1M count=$OSTCOUNT ||
1961                 { error "dd $tfile-2 failed"; return 4; }
1962
1963         # make sure write RPCs have been sent to OSTs
1964         sync; sleep 5; sync
1965
1966         check_seq_oid $DIR/$tdir/$tfile-1 || return 5
1967         check_seq_oid $DIR/$tdir/$tfile-2 || return 6
1968 }
1969 run_test 27z "check SEQ/OID on the MDT and OST filesystems"
1970
1971 test_27A() { # b=19102
1972         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1973         local restore_size=$($GETSTRIPE -S $MOUNT)
1974         local restore_count=$($GETSTRIPE -c $MOUNT)
1975         local restore_offset=$($GETSTRIPE -i $MOUNT)
1976         $SETSTRIPE -c 0 -i -1 -S 0 $MOUNT
1977         wait_update $HOSTNAME "$GETSTRIPE -c $MOUNT | sed 's/  *//g'" "1" 20 ||
1978                 error "stripe count $($GETSTRIPE -c $MOUNT) != 1"
1979         local default_size=$($GETSTRIPE -S $MOUNT)
1980         local default_offset=$($GETSTRIPE -i $MOUNT)
1981         local dsize=$((1024 * 1024))
1982         [ $default_size -eq $dsize ] ||
1983                 error "stripe size $default_size != $dsize"
1984         [ $default_offset -eq -1 ] ||error "stripe offset $default_offset != -1"
1985         $SETSTRIPE -c $restore_count -i $restore_offset -S $restore_size $MOUNT
1986 }
1987 run_test 27A "check filesystem-wide default LOV EA values"
1988
1989 test_27B() { # LU-2523
1990         test_mkdir -p $DIR/$tdir
1991         rm -f $DIR/$tdir/f0 $DIR/$tdir/f1
1992         touch $DIR/$tdir/f0
1993         # open f1 with O_LOV_DELAY_CREATE
1994         # rename f0 onto f1
1995         # call setstripe ioctl on open file descriptor for f1
1996         # close
1997         multiop $DIR/$tdir/f1 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:nB1c \
1998                 $DIR/$tdir/f0
1999
2000         rm -f $DIR/$tdir/f1
2001         # open f1 with O_LOV_DELAY_CREATE
2002         # unlink f1
2003         # call setstripe ioctl on open file descriptor for f1
2004         # close
2005         multiop $DIR/$tdir/f1 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:uB1c
2006
2007         # Allow multiop to fail in imitation of NFS's busted semantics.
2008         true
2009 }
2010 run_test 27B "call setstripe on open unlinked file/rename victim"
2011
2012 test_27C() { #LU-2871
2013         [[ $OSTCOUNT -lt 2 ]] && skip "needs >= 2 OSTs" && return
2014
2015         declare -a ost_idx
2016         local index
2017         local found
2018         local i
2019         local j
2020
2021         test_mkdir -p $DIR/$tdir
2022         cd $DIR/$tdir
2023         for i in $(seq 0 $((OSTCOUNT - 1))); do
2024                 # set stripe across all OSTs starting from OST$i
2025                 $SETSTRIPE -i $i -c -1 $tfile$i
2026                 # get striping information
2027                 ost_idx=($($GETSTRIPE $tfile$i |
2028                          tail -n $((OSTCOUNT + 1)) | awk '{print $1}'))
2029                 echo ${ost_idx[@]}
2030
2031                 # check the layout
2032                 [ ${#ost_idx[@]} -eq $OSTCOUNT ] ||
2033                         error "${#ost_idx[@]} != $OSTCOUNT"
2034
2035                 for index in $(seq 0 $((OSTCOUNT - 1))); do
2036                         found=0
2037                         for j in $(echo ${ost_idx[@]}); do
2038                                 if [ $index -eq $j ]; then
2039                                         found=1
2040                                         break
2041                                 fi
2042                         done
2043                         [ $found = 1 ] ||
2044                                 error "Can not find $index in ${ost_idx[@]}"
2045                 done
2046         done
2047 }
2048 run_test 27C "check full striping across all OSTs"
2049
2050 test_27D() {
2051         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
2052         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
2053         remote_mds_nodsh && skip "remote MDS with nodsh" && return
2054         local POOL=${POOL:-testpool}
2055         local first_ost=0
2056         local last_ost=$(($OSTCOUNT - 1))
2057         local ost_step=1
2058         local ost_list=$(seq $first_ost $ost_step $last_ost)
2059         local ost_range="$first_ost $last_ost $ost_step"
2060
2061         test_mkdir -p $DIR/$tdir
2062         pool_add $POOL || error "pool_add failed"
2063         pool_add_targets $POOL $ost_range || error "pool_add_targets failed"
2064
2065         local skip27D
2066         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.55) ] &&
2067                 skip27D += "-s 29"
2068         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.9.55) ] &&
2069                 skip27D += "-s 30,31"
2070         llapi_layout_test -d$DIR/$tdir -p$POOL -o$OSTCOUNT $skip27D ||
2071                 error "llapi_layout_test failed"
2072
2073         destroy_test_pools || error "destroy test pools failed"
2074 }
2075 run_test 27D "validate llapi_layout API"
2076
2077 # Verify that default_easize is increased from its initial value after
2078 # accessing a widely striped file.
2079 test_27E() {
2080         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
2081         [ $(lustre_version_code client) -lt $(version_code 2.5.57) ] &&
2082                 skip "client does not have LU-3338 fix" && return
2083
2084         # 72 bytes is the minimum space required to store striping
2085         # information for a file striped across one OST:
2086         # (sizeof(struct lov_user_md_v3) +
2087         #  sizeof(struct lov_user_ost_data_v1))
2088         local min_easize=72
2089         $LCTL set_param -n llite.*.default_easize $min_easize ||
2090                 error "lctl set_param failed"
2091         local easize=$($LCTL get_param -n llite.*.default_easize)
2092
2093         [ $easize -eq $min_easize ] ||
2094                 error "failed to set default_easize"
2095
2096         $LFS setstripe -c $OSTCOUNT $DIR/$tfile ||
2097                 error "setstripe failed"
2098         cat $DIR/$tfile
2099         rm $DIR/$tfile
2100
2101         easize=$($LCTL get_param -n llite.*.default_easize)
2102
2103         [ $easize -gt $min_easize ] ||
2104                 error "default_easize not updated"
2105 }
2106 run_test 27E "check that default extended attribute size properly increases"
2107
2108 test_27F() { # LU-5346/LU-7975
2109         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2110         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.51) ]] &&
2111                 skip "Need MDS version at least 2.8.51" && return
2112         remote_ost_nodsh && skip "remote OST with nodsh" && return
2113
2114         test_mkdir -p $DIR/$tdir
2115         rm -f $DIR/$tdir/f0
2116         $SETSTRIPE -c 2 $DIR/$tdir
2117
2118         # stop all OSTs to reproduce situation for LU-7975 ticket
2119         for num in $(seq $OSTCOUNT); do
2120                 stop ost$num
2121         done
2122
2123         # open/create f0 with O_LOV_DELAY_CREATE
2124         # truncate f0 to a non-0 size
2125         # close
2126         multiop $DIR/$tdir/f0 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:T1050000c
2127
2128         $CHECKSTAT -s 1050000 $DIR/$tdir/f0 || error "checkstat failed"
2129         # open/write it again to force delayed layout creation
2130         cat /etc/hosts > $DIR/$tdir/f0 &
2131         catpid=$!
2132
2133         # restart OSTs
2134         for num in $(seq $OSTCOUNT); do
2135                 start ost$num $(ostdevname $num) $OST_MOUNT_OPTS ||
2136                         error "ost$num failed to start"
2137         done
2138
2139         wait $catpid || error "cat failed"
2140
2141         cmp /etc/hosts $DIR/$tdir/f0 || error "cmp failed"
2142         [[ $($GETSTRIPE -c $DIR/$tdir/f0) == 2 ]] || error "wrong stripecount"
2143
2144 }
2145 run_test 27F "Client resend delayed layout creation with non-zero size"
2146
2147 # createtest also checks that device nodes are created and
2148 # then visible correctly (#2091)
2149 test_28() { # bug 2091
2150         test_mkdir $DIR/d28
2151         $CREATETEST $DIR/d28/ct || error
2152 }
2153 run_test 28 "create/mknod/mkdir with bad file types ============"
2154
2155 test_29() {
2156         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return 0
2157         sync; sleep 1; sync # flush out any dirty pages from previous tests
2158         cancel_lru_locks
2159         test_mkdir $DIR/d29
2160         touch $DIR/d29/foo
2161         log 'first d29'
2162         ls -l $DIR/d29
2163
2164         declare -i LOCKCOUNTORIG=0
2165         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
2166                 let LOCKCOUNTORIG=$LOCKCOUNTORIG+$lock_count
2167         done
2168         [ $LOCKCOUNTORIG -eq 0 ] && error "No mdc lock count" && return 1
2169
2170         declare -i LOCKUNUSEDCOUNTORIG=0
2171         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
2172                 let LOCKUNUSEDCOUNTORIG=$LOCKUNUSEDCOUNTORIG+$unused_count
2173         done
2174
2175         log 'second d29'
2176         ls -l $DIR/d29
2177         log 'done'
2178
2179         declare -i LOCKCOUNTCURRENT=0
2180         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
2181                 let LOCKCOUNTCURRENT=$LOCKCOUNTCURRENT+$lock_count
2182         done
2183
2184         declare -i LOCKUNUSEDCOUNTCURRENT=0
2185         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
2186                 let LOCKUNUSEDCOUNTCURRENT=$LOCKUNUSEDCOUNTCURRENT+$unused_count
2187         done
2188
2189         if [[ $LOCKCOUNTCURRENT -gt $LOCKCOUNTORIG ]]; then
2190                 $LCTL set_param -n ldlm.dump_namespaces ""
2191                 error "CURRENT: $LOCKCOUNTCURRENT > $LOCKCOUNTORIG"
2192                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
2193                 log "dumped log to $TMP/test_29.dk (bug 5793)"
2194                 return 2
2195         fi
2196         if [[ $LOCKUNUSEDCOUNTCURRENT -gt $LOCKUNUSEDCOUNTORIG ]]; then
2197                 error "UNUSED: $LOCKUNUSEDCOUNTCURRENT > $LOCKUNUSEDCOUNTORIG"
2198                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
2199                 log "dumped log to $TMP/test_29.dk (bug 5793)"
2200                 return 3
2201         fi
2202 }
2203 run_test 29 "IT_GETATTR regression  ============================"
2204
2205 test_30a() { # was test_30
2206         cp $(which ls) $DIR || cp /bin/ls $DIR
2207         $DIR/ls / || error
2208         rm $DIR/ls
2209 }
2210 run_test 30a "execute binary from Lustre (execve) =============="
2211
2212 test_30b() {
2213         cp `which ls` $DIR || cp /bin/ls $DIR
2214         chmod go+rx $DIR/ls
2215         $RUNAS $DIR/ls / || error
2216         rm $DIR/ls
2217 }
2218 run_test 30b "execute binary from Lustre as non-root ==========="
2219
2220 test_30c() { # b=22376
2221         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2222         cp `which ls` $DIR || cp /bin/ls $DIR
2223         chmod a-rw $DIR/ls
2224         cancel_lru_locks mdc
2225         cancel_lru_locks osc
2226         $RUNAS $DIR/ls / || error
2227         rm -f $DIR/ls
2228 }
2229 run_test 30c "execute binary from Lustre without read perms ===="
2230
2231 test_31a() {
2232         $OPENUNLINK $DIR/f31 $DIR/f31 || error
2233         $CHECKSTAT -a $DIR/f31 || error
2234 }
2235 run_test 31a "open-unlink file =================================="
2236
2237 test_31b() {
2238         touch $DIR/f31 || error
2239         ln $DIR/f31 $DIR/f31b || error
2240         $MULTIOP $DIR/f31b Ouc || error
2241         $CHECKSTAT -t file $DIR/f31 || error
2242 }
2243 run_test 31b "unlink file with multiple links while open ======="
2244
2245 test_31c() {
2246         touch $DIR/f31 || error
2247         ln $DIR/f31 $DIR/f31c || error
2248         multiop_bg_pause $DIR/f31 O_uc || return 1
2249         MULTIPID=$!
2250         $MULTIOP $DIR/f31c Ouc
2251         kill -USR1 $MULTIPID
2252         wait $MULTIPID
2253 }
2254 run_test 31c "open-unlink file with multiple links ============="
2255
2256 test_31d() {
2257         opendirunlink $DIR/d31d $DIR/d31d || error
2258         $CHECKSTAT -a $DIR/d31d || error
2259 }
2260 run_test 31d "remove of open directory ========================="
2261
2262 test_31e() { # bug 2904
2263         openfilleddirunlink $DIR/d31e || error
2264 }
2265 run_test 31e "remove of open non-empty directory ==============="
2266
2267 test_31f() { # bug 4554
2268         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2269         set -vx
2270         test_mkdir $DIR/d31f
2271         $SETSTRIPE -S 1048576 -c 1 $DIR/d31f
2272         cp /etc/hosts $DIR/d31f
2273         ls -l $DIR/d31f
2274         $GETSTRIPE $DIR/d31f/hosts
2275         multiop_bg_pause $DIR/d31f D_c || return 1
2276         MULTIPID=$!
2277
2278         rm -rv $DIR/d31f || error "first of $DIR/d31f"
2279         test_mkdir $DIR/d31f
2280         $SETSTRIPE -S 1048576 -c 1 $DIR/d31f
2281         cp /etc/hosts $DIR/d31f
2282         ls -l $DIR/d31f
2283         $GETSTRIPE $DIR/d31f/hosts
2284         multiop_bg_pause $DIR/d31f D_c || return 1
2285         MULTIPID2=$!
2286
2287         kill -USR1 $MULTIPID || error "first opendir $MULTIPID not running"
2288         wait $MULTIPID || error "first opendir $MULTIPID failed"
2289
2290         sleep 6
2291
2292         kill -USR1 $MULTIPID2 || error "second opendir $MULTIPID not running"
2293         wait $MULTIPID2 || error "second opendir $MULTIPID2 failed"
2294         set +vx
2295 }
2296 run_test 31f "remove of open directory with open-unlink file ==="
2297
2298 test_31g() {
2299         echo "-- cross directory link --"
2300         test_mkdir -c1 $DIR/${tdir}ga
2301         test_mkdir -c1 $DIR/${tdir}gb
2302         touch $DIR/${tdir}ga/f
2303         ln $DIR/${tdir}ga/f $DIR/${tdir}gb/g
2304         $CHECKSTAT -t file $DIR/${tdir}ga/f || error "source"
2305         [ `stat -c%h $DIR/${tdir}ga/f` == '2' ] || error "source nlink"
2306         $CHECKSTAT -t file $DIR/${tdir}gb/g || error "target"
2307         [ `stat -c%h $DIR/${tdir}gb/g` == '2' ] || error "target nlink"
2308 }
2309 run_test 31g "cross directory link==============="
2310
2311 test_31h() {
2312         echo "-- cross directory link --"
2313         test_mkdir -c1 $DIR/${tdir}
2314         test_mkdir -c1 $DIR/${tdir}/dir
2315         touch $DIR/${tdir}/f
2316         ln $DIR/${tdir}/f $DIR/${tdir}/dir/g
2317         $CHECKSTAT -t file $DIR/${tdir}/f || error "source"
2318         [ `stat -c%h $DIR/${tdir}/f` == '2' ] || error "source nlink"
2319         $CHECKSTAT -t file $DIR/${tdir}/dir/g || error "target"
2320         [ `stat -c%h $DIR/${tdir}/dir/g` == '2' ] || error "target nlink"
2321 }
2322 run_test 31h "cross directory link under child==============="
2323
2324 test_31i() {
2325         echo "-- cross directory link --"
2326         test_mkdir -c1 $DIR/$tdir
2327         test_mkdir -c1 $DIR/$tdir/dir
2328         touch $DIR/$tdir/dir/f
2329         ln $DIR/$tdir/dir/f $DIR/$tdir/g
2330         $CHECKSTAT -t file $DIR/$tdir/dir/f || error "source"
2331         [ `stat -c%h $DIR/$tdir/dir/f` == '2' ] || error "source nlink"
2332         $CHECKSTAT -t file $DIR/$tdir/g || error "target"
2333         [ `stat -c%h $DIR/$tdir/g` == '2' ] || error "target nlink"
2334 }
2335 run_test 31i "cross directory link under parent==============="
2336
2337 test_31j() {
2338         test_mkdir -c1 -p $DIR/$tdir
2339         test_mkdir -c1 -p $DIR/$tdir/dir1
2340         ln $DIR/$tdir/dir1 $DIR/$tdir/dir2 && error "ln for dir"
2341         link $DIR/$tdir/dir1 $DIR/$tdir/dir3 && error "link for dir"
2342         mlink $DIR/$tdir/dir1 $DIR/$tdir/dir4 && error "mlink for dir"
2343         mlink $DIR/$tdir/dir1 $DIR/$tdir/dir1 && error "mlink to the same dir"
2344         return 0
2345 }
2346 run_test 31j "link for directory==============="
2347
2348 test_31k() {
2349         test_mkdir -c1 -p $DIR/$tdir
2350         touch $DIR/$tdir/s
2351         touch $DIR/$tdir/exist
2352         mlink $DIR/$tdir/s $DIR/$tdir/t || error "mlink"
2353         mlink $DIR/$tdir/s $DIR/$tdir/exist && error "mlink to exist file"
2354         mlink $DIR/$tdir/s $DIR/$tdir/s && error "mlink to the same file"
2355         mlink $DIR/$tdir/s $DIR/$tdir && error "mlink to parent dir"
2356         mlink $DIR/$tdir $DIR/$tdir/s && error "mlink parent dir to target"
2357         mlink $DIR/$tdir/not-exist $DIR/$tdir/foo && error "mlink non-existing to new"
2358         mlink $DIR/$tdir/not-exist $DIR/$tdir/s && error "mlink non-existing to exist"
2359         return 0
2360 }
2361 run_test 31k "link to file: the same, non-existing, dir==============="
2362
2363 test_31m() {
2364         mkdir $DIR/d31m
2365         touch $DIR/d31m/s
2366         mkdir $DIR/d31m2
2367         touch $DIR/d31m2/exist
2368         mlink $DIR/d31m/s $DIR/d31m2/t || error "mlink"
2369         mlink $DIR/d31m/s $DIR/d31m2/exist && error "mlink to exist file"
2370         mlink $DIR/d31m/s $DIR/d31m2 && error "mlink to parent dir"
2371         mlink $DIR/d31m2 $DIR/d31m/s && error "mlink parent dir to target"
2372         mlink $DIR/d31m/not-exist $DIR/d31m2/foo && error "mlink non-existing to new"
2373         mlink $DIR/d31m/not-exist $DIR/d31m2/s && error "mlink non-existing to exist"
2374         return 0
2375 }
2376 run_test 31m "link to file: the same, non-existing, dir==============="
2377
2378 test_31n() {
2379         touch $DIR/$tfile || error "cannot create '$DIR/$tfile'"
2380         nlink=$(stat --format=%h $DIR/$tfile)
2381         [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
2382         local fd=$(free_fd)
2383         local cmd="exec $fd<$DIR/$tfile"
2384         eval $cmd
2385         cmd="exec $fd<&-"
2386         trap "eval $cmd" EXIT
2387         nlink=$(stat --dereference --format=%h /proc/self/fd/$fd)
2388         [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
2389         rm $DIR/$tfile || error "cannot remove '$DIR/$tfile'"
2390         nlink=$(stat --dereference --format=%h /proc/self/fd/$fd)
2391         [ ${nlink:--1} -eq 0 ] || error "nlink is $nlink, expected 0"
2392         eval $cmd
2393 }
2394 run_test 31n "check link count of unlinked file"
2395
2396 link_one() {
2397         local TEMPNAME=$(mktemp $1_XXXXXX)
2398         mlink $TEMPNAME $1 2> /dev/null &&
2399                 echo "$BASHPID: link $TEMPNAME to $1 succeeded"
2400         munlink $TEMPNAME
2401 }
2402
2403 test_31o() { # LU-2901
2404         test_mkdir -p $DIR/$tdir
2405         for LOOP in $(seq 100); do
2406                 rm -f $DIR/$tdir/$tfile*
2407                 for THREAD in $(seq 8); do
2408                         link_one $DIR/$tdir/$tfile.$LOOP &
2409                 done
2410                 wait
2411                 local LINKS=$(ls -1 $DIR/$tdir | grep -c $tfile.$LOOP)
2412                 [[ $LINKS -gt 1 ]] && ls $DIR/$tdir &&
2413                         error "$LINKS duplicate links to $tfile.$LOOP" &&
2414                         break || true
2415         done
2416 }
2417 run_test 31o "duplicate hard links with same filename"
2418
2419 test_31p() {
2420         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2421
2422         test_mkdir $DIR/$tdir
2423         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2424         $LFS setdirstripe -D -c2 -t all_char $DIR/$tdir/striped_dir
2425
2426         opendirunlink $DIR/$tdir/striped_dir/test1 ||
2427                 error "open unlink test1 failed"
2428         opendirunlink $DIR/$tdir/striped_dir/test2 ||
2429                 error "open unlink test2 failed"
2430
2431         $CHECKSTAT -a $DIR/$tdir/striped_dir/test1 ||
2432                 error "test1 still exists"
2433         $CHECKSTAT -a $DIR/$tdir/striped_dir/test2 ||
2434                 error "test2 still exists"
2435 }
2436 run_test 31p "remove of open striped directory"
2437
2438 cleanup_test32_mount() {
2439         local rc=0
2440         trap 0
2441         local loopdev=$(losetup -a | grep $EXT2_DEV | sed -ne 's/:.*$//p')
2442         $UMOUNT $DIR/$tdir/ext2-mountpoint || rc=$?
2443         losetup -d $loopdev || true
2444         rm -rf $DIR/$tdir
2445         return $rc
2446 }
2447
2448 test_32a() {
2449         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2450         echo "== more mountpoints and symlinks ================="
2451         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2452         trap cleanup_test32_mount EXIT
2453         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2454         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2455         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/.. || error
2456         cleanup_test32_mount
2457 }
2458 run_test 32a "stat d32a/ext2-mountpoint/.. ====================="
2459
2460 test_32b() {
2461         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2462         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2463         trap cleanup_test32_mount EXIT
2464         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2465         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2466         ls -al $DIR/$tdir/ext2-mountpoint/.. || error
2467         cleanup_test32_mount
2468 }
2469 run_test 32b "open d32b/ext2-mountpoint/.. ====================="
2470
2471 test_32c() {
2472         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2473         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2474         trap cleanup_test32_mount EXIT
2475         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2476         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2477         test_mkdir -p $DIR/$tdir/d2/test_dir
2478         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/../d2/test_dir || error
2479         cleanup_test32_mount
2480 }
2481 run_test 32c "stat d32c/ext2-mountpoint/../d2/test_dir ========="
2482
2483 test_32d() {
2484         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2485         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2486         trap cleanup_test32_mount EXIT
2487         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2488         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2489         test_mkdir -p $DIR/$tdir/d2/test_dir
2490         ls -al $DIR/$tdir/ext2-mountpoint/../d2/test_dir || error
2491         cleanup_test32_mount
2492 }
2493 run_test 32d "open d32d/ext2-mountpoint/../d2/test_dir ========="
2494
2495 test_32e() {
2496         [ -e $DIR/d32e ] && rm -fr $DIR/d32e
2497         test_mkdir -p $DIR/d32e/tmp
2498         TMP_DIR=$DIR/d32e/tmp
2499         ln -s $DIR/d32e $TMP_DIR/symlink11
2500         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2501         $CHECKSTAT -t link $DIR/d32e/tmp/symlink11 || error
2502         $CHECKSTAT -t link $DIR/d32e/symlink01 || error
2503 }
2504 run_test 32e "stat d32e/symlink->tmp/symlink->lustre-subdir ===="
2505
2506 test_32f() {
2507         [ -e $DIR/d32f ] && rm -fr $DIR/d32f
2508         test_mkdir -p $DIR/d32f/tmp
2509         TMP_DIR=$DIR/d32f/tmp
2510         ln -s $DIR/d32f $TMP_DIR/symlink11
2511         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2512         ls $DIR/d32f/tmp/symlink11  || error
2513         ls $DIR/d32f/symlink01 || error
2514 }
2515 run_test 32f "open d32f/symlink->tmp/symlink->lustre-subdir ===="
2516
2517 test_32g() {
2518         TMP_DIR=$DIR/$tdir/tmp
2519         test_mkdir -p $DIR/$tdir/tmp
2520         test_mkdir $DIR/${tdir}2
2521         ln -s $DIR/${tdir}2 $TMP_DIR/symlink12
2522         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2523         $CHECKSTAT -t link $TMP_DIR/symlink12 || error
2524         $CHECKSTAT -t link $DIR/$tdir/symlink02 || error
2525         $CHECKSTAT -t dir -f $TMP_DIR/symlink12 || error
2526         $CHECKSTAT -t dir -f $DIR/$tdir/symlink02 || error
2527 }
2528 run_test 32g "stat d32g/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2529
2530 test_32h() {
2531         rm -fr $DIR/$tdir $DIR/${tdir}2
2532         TMP_DIR=$DIR/$tdir/tmp
2533         test_mkdir -p $DIR/$tdir/tmp
2534         test_mkdir $DIR/${tdir}2
2535         ln -s $DIR/${tdir}2 $TMP_DIR/symlink12
2536         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2537         ls $TMP_DIR/symlink12 || error
2538         ls $DIR/$tdir/symlink02  || error
2539 }
2540 run_test 32h "open d32h/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2541
2542 test_32i() {
2543         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2544         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2545         trap cleanup_test32_mount EXIT
2546         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2547         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2548         touch $DIR/$tdir/test_file
2549         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../test_file || error
2550         cleanup_test32_mount
2551 }
2552 run_test 32i "stat d32i/ext2-mountpoint/../test_file ==========="
2553
2554 test_32j() {
2555         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2556         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2557         trap cleanup_test32_mount EXIT
2558         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2559         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2560         touch $DIR/$tdir/test_file
2561         cat $DIR/$tdir/ext2-mountpoint/../test_file || error
2562         cleanup_test32_mount
2563 }
2564 run_test 32j "open d32j/ext2-mountpoint/../test_file ==========="
2565
2566 test_32k() {
2567         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2568         rm -fr $DIR/$tdir
2569         trap cleanup_test32_mount EXIT
2570         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2571         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint
2572         test_mkdir -p $DIR/$tdir/d2
2573         touch $DIR/$tdir/d2/test_file || error
2574         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../d2/test_file || error
2575         cleanup_test32_mount
2576 }
2577 run_test 32k "stat d32k/ext2-mountpoint/../d2/test_file ========"
2578
2579 test_32l() {
2580         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2581         rm -fr $DIR/$tdir
2582         trap cleanup_test32_mount EXIT
2583         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2584         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2585         test_mkdir -p $DIR/$tdir/d2
2586         touch $DIR/$tdir/d2/test_file
2587         cat  $DIR/$tdir/ext2-mountpoint/../d2/test_file || error
2588         cleanup_test32_mount
2589 }
2590 run_test 32l "open d32l/ext2-mountpoint/../d2/test_file ========"
2591
2592 test_32m() {
2593         rm -fr $DIR/d32m
2594         test_mkdir -p $DIR/d32m/tmp
2595         TMP_DIR=$DIR/d32m/tmp
2596         ln -s $DIR $TMP_DIR/symlink11
2597         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2598         $CHECKSTAT -t link $DIR/d32m/tmp/symlink11 || error
2599         $CHECKSTAT -t link $DIR/d32m/symlink01 || error
2600 }
2601 run_test 32m "stat d32m/symlink->tmp/symlink->lustre-root ======"
2602
2603 test_32n() {
2604         rm -fr $DIR/d32n
2605         test_mkdir -p $DIR/d32n/tmp
2606         TMP_DIR=$DIR/d32n/tmp
2607         ln -s $DIR $TMP_DIR/symlink11
2608         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2609         ls -l $DIR/d32n/tmp/symlink11  || error
2610         ls -l $DIR/d32n/symlink01 || error
2611 }
2612 run_test 32n "open d32n/symlink->tmp/symlink->lustre-root ======"
2613
2614 test_32o() {
2615         touch $DIR/$tfile
2616         test_mkdir -p $DIR/d32o/tmp
2617         TMP_DIR=$DIR/d32o/tmp
2618         ln -s $DIR/$tfile $TMP_DIR/symlink12
2619         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2620         $CHECKSTAT -t link $DIR/d32o/tmp/symlink12 || error
2621         $CHECKSTAT -t link $DIR/d32o/symlink02 || error
2622         $CHECKSTAT -t file -f $DIR/d32o/tmp/symlink12 || error
2623         $CHECKSTAT -t file -f $DIR/d32o/symlink02 || error
2624 }
2625 run_test 32o "stat d32o/symlink->tmp/symlink->lustre-root/$tfile"
2626
2627 test_32p() {
2628         log 32p_1
2629         rm -fr $DIR/d32p
2630         log 32p_2
2631         rm -f $DIR/$tfile
2632         log 32p_3
2633         touch $DIR/$tfile
2634         log 32p_4
2635         test_mkdir -p $DIR/d32p/tmp
2636         log 32p_5
2637         TMP_DIR=$DIR/d32p/tmp
2638         log 32p_6
2639         ln -s $DIR/$tfile $TMP_DIR/symlink12
2640         log 32p_7
2641         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2642         log 32p_8
2643         cat $DIR/d32p/tmp/symlink12 || error
2644         log 32p_9
2645         cat $DIR/d32p/symlink02 || error
2646         log 32p_10
2647 }
2648 run_test 32p "open d32p/symlink->tmp/symlink->lustre-root/$tfile"
2649
2650 test_32q() {
2651         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2652         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2653         trap cleanup_test32_mount EXIT
2654         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2655         touch $DIR/$tdir/ext2-mountpoint/under_the_mount
2656         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint
2657         ls $DIR/$tdir/ext2-mountpoint | grep "\<under_the_mount\>" && error
2658         cleanup_test32_mount
2659 }
2660 run_test 32q "stat follows mountpoints in Lustre (should return error)"
2661
2662 test_32r() {
2663         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2664         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2665         trap cleanup_test32_mount EXIT
2666         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2667         touch $DIR/$tdir/ext2-mountpoint/under_the_mount
2668         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint
2669         ls $DIR/$tdir/ext2-mountpoint | grep -q under_the_mount && error || true
2670         cleanup_test32_mount
2671 }
2672 run_test 32r "opendir follows mountpoints in Lustre (should return error)"
2673
2674 test_33aa() {
2675         rm -f $DIR/$tfile
2676         touch $DIR/$tfile
2677         chmod 444 $DIR/$tfile
2678         chown $RUNAS_ID $DIR/$tfile
2679         log 33_1
2680         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
2681         log 33_2
2682 }
2683 run_test 33aa "write file with mode 444 (should return error) ===="
2684
2685 test_33a() {
2686         rm -fr $DIR/d33
2687         test_mkdir -p $DIR/d33
2688         chown $RUNAS_ID $DIR/d33
2689         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/d33/f33|| error "create"
2690         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/d33/f33 && \
2691                 error "open RDWR" || true
2692 }
2693 run_test 33a "test open file(mode=0444) with O_RDWR (should return error)"
2694
2695 test_33b() {
2696         rm -fr $DIR/d33
2697         test_mkdir -p $DIR/d33
2698         chown $RUNAS_ID $DIR/d33
2699         $RUNAS $OPENFILE -f 1286739555 $DIR/d33/f33 || true
2700 }
2701 run_test 33b "test open file with malformed flags (No panic)"
2702
2703 test_33c() {
2704         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2705         local ostnum
2706         local ostname
2707         local write_bytes
2708         local all_zeros
2709
2710         remote_ost_nodsh && skip "remote OST with nodsh" && return
2711         all_zeros=:
2712         rm -fr $DIR/d33
2713         test_mkdir -p $DIR/d33
2714         # Read: 0, Write: 4, create/destroy: 2/0, stat: 1, punch: 0
2715
2716         sync
2717         for ostnum in $(seq $OSTCOUNT); do
2718                 # test-framework's OST numbering is one-based, while Lustre's
2719                 # is zero-based
2720                 ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2721                 # Parsing llobdstat's output sucks; we could grep the /proc
2722                 # path, but that's likely to not be as portable as using the
2723                 # llobdstat utility.  So we parse lctl output instead.
2724                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2725                         obdfilter/$ostname/stats |
2726                         awk '/^write_bytes/ {print $7}' )
2727                 echo "baseline_write_bytes@$OSTnum/$ostname=$write_bytes"
2728                 if (( ${write_bytes:-0} > 0 ))
2729                 then
2730                         all_zeros=false
2731                         break;
2732                 fi
2733         done
2734
2735         $all_zeros || return 0
2736
2737         # Write four bytes
2738         echo foo > $DIR/d33/bar
2739         # Really write them
2740         sync
2741
2742         # Total up write_bytes after writing.  We'd better find non-zeros.
2743         for ostnum in $(seq $OSTCOUNT); do
2744                 ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2745                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2746                         obdfilter/$ostname/stats |
2747                         awk '/^write_bytes/ {print $7}' )
2748                 echo "write_bytes@$OSTnum/$ostname=$write_bytes"
2749                 if (( ${write_bytes:-0} > 0 ))
2750                 then
2751                         all_zeros=false
2752                         break;
2753                 fi
2754         done
2755
2756         if $all_zeros
2757         then
2758                 for ostnum in $(seq $OSTCOUNT); do
2759                         ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2760                         echo "Check that write_bytes is present in obdfilter/*/stats:"
2761                         do_facet ost$ostnum lctl get_param -n \
2762                                 obdfilter/$ostname/stats
2763                 done
2764                 error "OST not keeping write_bytes stats (b22312)"
2765         fi
2766 }
2767 run_test 33c "test llobdstat and write_bytes"
2768
2769 test_33d() {
2770         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
2771         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2772         local MDTIDX=1
2773         local remote_dir=$DIR/$tdir/remote_dir
2774
2775         test_mkdir -p $DIR/$tdir
2776         $LFS mkdir -i $MDTIDX $remote_dir ||
2777                 error "create remote directory failed"
2778
2779         touch $remote_dir/$tfile
2780         chmod 444 $remote_dir/$tfile
2781         chown $RUNAS_ID $remote_dir/$tfile
2782
2783         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
2784
2785         chown $RUNAS_ID $remote_dir
2786         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 ||
2787                                         error "create" || true
2788         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 &&
2789                                     error "open RDWR" || true
2790         $RUNAS $OPENFILE -f 1286739555 $remote_dir/f33 || true
2791 }
2792 run_test 33d "openfile with 444 modes and malformed flags under remote dir"
2793
2794 test_33e() {
2795         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2796
2797         mkdir $DIR/$tdir
2798
2799         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2800         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
2801         mkdir $DIR/$tdir/local_dir
2802
2803         local s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
2804         local s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
2805         local l_mode=$(stat -c%f $DIR/$tdir/local_dir)
2806
2807         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
2808                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode"
2809
2810         rmdir $DIR/$tdir/* || error "rmdir failed"
2811
2812         umask 777
2813         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2814         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
2815         mkdir $DIR/$tdir/local_dir
2816
2817         s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
2818         s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
2819         l_mode=$(stat -c%f $DIR/$tdir/local_dir)
2820
2821         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
2822                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode 777"
2823
2824         rmdir $DIR/$tdir/* || error "rmdir(umask 777) failed"
2825
2826         umask 000
2827         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2828         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
2829         mkdir $DIR/$tdir/local_dir
2830
2831         s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
2832         s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
2833         l_mode=$(stat -c%f $DIR/$tdir/local_dir)
2834
2835         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
2836                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode 0"
2837 }
2838 run_test 33e "mkdir and striped directory should have same mode"
2839
2840 cleanup_33f() {
2841         trap 0
2842         do_facet $SINGLEMDS $LCTL set_param mdt.*.enable_remote_dir_gid=0
2843 }
2844
2845 test_33f() {
2846         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2847         remote_mds_nodsh && skip "remote MDS with nodsh" && return
2848
2849         mkdir $DIR/$tdir
2850         chmod go+rwx $DIR/$tdir
2851         do_facet $SINGLEMDS $LCTL set_param mdt.*.enable_remote_dir_gid=-1
2852         trap cleanup_33f EXIT
2853
2854         $RUNAS lfs mkdir -c$MDSCOUNT $DIR/$tdir/striped_dir ||
2855                 error "cannot create striped directory"
2856
2857         $RUNAS touch $DIR/$tdir/striped_dir/{0..16} ||
2858                 error "cannot create files in striped directory"
2859
2860         $RUNAS rm $DIR/$tdir/striped_dir/{0..16} ||
2861                 error "cannot remove files in striped directory"
2862
2863         $RUNAS rmdir $DIR/$tdir/striped_dir ||
2864                 error "cannot remove striped directory"
2865
2866         cleanup_33f
2867 }
2868 run_test 33f "nonroot user can create, access, and remove a striped directory"
2869
2870 test_33g() {
2871         mkdir -p $DIR/$tdir/dir2
2872
2873         local err=$($RUNAS mkdir $DIR/$tdir/dir2 2>&1)
2874         echo $err
2875         [[ $err =~ "exists" ]] || error "Not exists error"
2876 }
2877 run_test 33g "nonroot user create already existing root created file"
2878
2879 TEST_34_SIZE=${TEST_34_SIZE:-2000000000000}
2880 test_34a() {
2881         rm -f $DIR/f34
2882         $MCREATE $DIR/f34 || error
2883         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2884         $TRUNCATE $DIR/f34 $TEST_34_SIZE || error
2885         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2886         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2887 }
2888 run_test 34a "truncate file that has not been opened ==========="
2889
2890 test_34b() {
2891         [ ! -f $DIR/f34 ] && test_34a
2892         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2893         $OPENFILE -f O_RDONLY $DIR/f34
2894         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2895         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2896 }
2897 run_test 34b "O_RDONLY opening file doesn't create objects ====="
2898
2899 test_34c() {
2900         [ ! -f $DIR/f34 ] && test_34a
2901         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2902         $OPENFILE -f O_RDWR $DIR/f34
2903         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" && error
2904         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2905 }
2906 run_test 34c "O_RDWR opening file-with-size works =============="
2907
2908 test_34d() {
2909         [ ! -f $DIR/f34 ] && test_34a
2910         dd if=/dev/zero of=$DIR/f34 conv=notrunc bs=4k count=1 || error
2911         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2912         rm $DIR/f34
2913 }
2914 run_test 34d "write to sparse file ============================="
2915
2916 test_34e() {
2917         rm -f $DIR/f34e
2918         $MCREATE $DIR/f34e || error
2919         $TRUNCATE $DIR/f34e 1000 || error
2920         $CHECKSTAT -s 1000 $DIR/f34e || error
2921         $OPENFILE -f O_RDWR $DIR/f34e
2922         $CHECKSTAT -s 1000 $DIR/f34e || error
2923 }
2924 run_test 34e "create objects, some with size and some without =="
2925
2926 test_34f() { # bug 6242, 6243
2927         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2928         SIZE34F=48000
2929         rm -f $DIR/f34f
2930         $MCREATE $DIR/f34f || error
2931         $TRUNCATE $DIR/f34f $SIZE34F || error "truncating $DIR/f3f to $SIZE34F"
2932         dd if=$DIR/f34f of=$TMP/f34f
2933         $CHECKSTAT -s $SIZE34F $TMP/f34f || error "$TMP/f34f not $SIZE34F bytes"
2934         dd if=/dev/zero of=$TMP/f34fzero bs=$SIZE34F count=1
2935         cmp $DIR/f34f $TMP/f34fzero || error "$DIR/f34f not all zero"
2936         cmp $TMP/f34f $TMP/f34fzero || error "$TMP/f34f not all zero"
2937         rm $TMP/f34f $TMP/f34fzero $DIR/f34f
2938 }
2939 run_test 34f "read from a file with no objects until EOF ======="
2940
2941 test_34g() {
2942         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2943         dd if=/dev/zero of=$DIR/$tfile bs=1 count=100 seek=$TEST_34_SIZE || error
2944         $TRUNCATE $DIR/$tfile $((TEST_34_SIZE / 2))|| error
2945         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile || error "truncate failed"
2946         cancel_lru_locks osc
2947         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile || \
2948                 error "wrong size after lock cancel"
2949
2950         $TRUNCATE $DIR/$tfile $TEST_34_SIZE || error
2951         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile || \
2952                 error "expanding truncate failed"
2953         cancel_lru_locks osc
2954         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile || \
2955                 error "wrong expanded size after lock cancel"
2956 }
2957 run_test 34g "truncate long file ==============================="
2958
2959 test_34h() {
2960         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2961         local gid=10
2962         local sz=1000
2963
2964         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10 || error
2965         sync # Flush the cache so that multiop below does not block on cache
2966              # flush when getting the group lock
2967         $MULTIOP $DIR/$tfile OG${gid}T${sz}g${gid}c &
2968         MULTIPID=$!
2969
2970         # Since just timed wait is not good enough, let's do a sync write
2971         # that way we are sure enough time for a roundtrip + processing
2972         # passed + 2 seconds of extra margin.
2973         dd if=/dev/zero of=$DIR/${tfile}-1 bs=4096 oflag=direct count=1
2974         rm $DIR/${tfile}-1
2975         sleep 2
2976
2977         if [[ `ps h -o comm -p $MULTIPID` == "multiop" ]]; then
2978                 error "Multiop blocked on ftruncate, pid=$MULTIPID"
2979                 kill -9 $MULTIPID
2980         fi
2981         wait $MULTIPID
2982         local nsz=`stat -c %s $DIR/$tfile`
2983         [[ $nsz == $sz ]] || error "New size wrong $nsz != $sz"
2984 }
2985 run_test 34h "ftruncate file under grouplock should not block"
2986
2987 test_35a() {
2988         cp /bin/sh $DIR/f35a
2989         chmod 444 $DIR/f35a
2990         chown $RUNAS_ID $DIR/f35a
2991         $RUNAS $DIR/f35a && error || true
2992         rm $DIR/f35a
2993 }
2994 run_test 35a "exec file with mode 444 (should return and not leak) ====="
2995
2996 test_36a() {
2997         rm -f $DIR/f36
2998         utime $DIR/f36 || error
2999 }
3000 run_test 36a "MDS utime check (mknod, utime) ==================="
3001
3002 test_36b() {
3003         echo "" > $DIR/f36
3004         utime $DIR/f36 || error
3005 }
3006 run_test 36b "OST utime check (open, utime) ===================="
3007
3008 test_36c() {
3009         rm -f $DIR/d36/f36
3010         test_mkdir $DIR/d36
3011         chown $RUNAS_ID $DIR/d36
3012         $RUNAS utime $DIR/d36/f36 || error
3013 }
3014 run_test 36c "non-root MDS utime check (mknod, utime) =========="
3015
3016 test_36d() {
3017         [ ! -d $DIR/d36 ] && test_36c
3018         echo "" > $DIR/d36/f36
3019         $RUNAS utime $DIR/d36/f36 || error
3020 }
3021 run_test 36d "non-root OST utime check (open, utime) ==========="
3022
3023 test_36e() {
3024         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID -- skipping" && return
3025         test_mkdir -p $DIR/$tdir
3026         touch $DIR/$tdir/$tfile
3027         $RUNAS utime $DIR/$tdir/$tfile && \
3028                 error "utime worked, expected failure" || true
3029 }
3030 run_test 36e "utime on non-owned file (should return error) ===="
3031
3032 subr_36fh() {
3033         local fl="$1"
3034         local LANG_SAVE=$LANG
3035         local LC_LANG_SAVE=$LC_LANG
3036         export LANG=C LC_LANG=C # for date language
3037
3038         DATESTR="Dec 20  2000"
3039         test_mkdir -p $DIR/$tdir
3040         lctl set_param fail_loc=$fl
3041         date; date +%s
3042         cp /etc/hosts $DIR/$tdir/$tfile
3043         sync & # write RPC generated with "current" inode timestamp, but delayed
3044         sleep 1
3045         touch --date="$DATESTR" $DIR/$tdir/$tfile # setattr timestamp in past
3046         LS_BEFORE="`ls -l $DIR/$tdir/$tfile`" # old timestamp from client cache
3047         cancel_lru_locks osc
3048         LS_AFTER="`ls -l $DIR/$tdir/$tfile`"  # timestamp from OST object
3049         date; date +%s
3050         [ "$LS_BEFORE" != "$LS_AFTER" ] && \
3051                 echo "BEFORE: $LS_BEFORE" && \
3052                 echo "AFTER : $LS_AFTER" && \
3053                 echo "WANT  : $DATESTR" && \
3054                 error "$DIR/$tdir/$tfile timestamps changed" || true
3055
3056         export LANG=$LANG_SAVE LC_LANG=$LC_LANG_SAVE
3057 }
3058
3059 test_36f() {
3060         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3061         #define OBD_FAIL_OST_BRW_PAUSE_BULK 0x214
3062         subr_36fh "0x80000214"
3063 }
3064 run_test 36f "utime on file racing with OST BRW write =========="
3065
3066 test_36g() {
3067         remote_ost_nodsh && skip "remote OST with nodsh" && return
3068         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3069         local fmd_max_age
3070         local fmd_before
3071         local fmd_after
3072
3073         test_mkdir -p $DIR/$tdir
3074         fmd_max_age=$(do_facet ost1 \
3075                 "lctl get_param -n obdfilter.*.client_cache_seconds 2> /dev/null | \
3076                 head -n 1")
3077
3078         fmd_before=$(do_facet ost1 \
3079                 "awk '/ll_fmd_cache/ {print \\\$2}' /proc/slabinfo")
3080         touch $DIR/$tdir/$tfile
3081         sleep $((fmd_max_age + 12))
3082         fmd_after=$(do_facet ost1 \
3083                 "awk '/ll_fmd_cache/ {print \\\$2}' /proc/slabinfo")
3084
3085         echo "fmd_before: $fmd_before"
3086         echo "fmd_after: $fmd_after"
3087         [[ $fmd_after -gt $fmd_before ]] &&
3088                 echo "AFTER: $fmd_after > BEFORE: $fmd_before" &&
3089                 error "fmd didn't expire after ping" || true
3090 }
3091 run_test 36g "filter mod data cache expiry ====================="
3092
3093 test_36h() {
3094         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3095         #define OBD_FAIL_OST_BRW_PAUSE_BULK2 0x227
3096         subr_36fh "0x80000227"
3097 }
3098 run_test 36h "utime on file racing with OST BRW write =========="
3099
3100 test_36i() {
3101         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
3102
3103         test_mkdir $DIR/$tdir
3104         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir
3105
3106         local mtime=$(stat -c%Y $DIR/$tdir/striped_dir)
3107         local new_mtime=$((mtime + 200))
3108
3109         #change Modify time of striped dir
3110         touch -m -d @$new_mtime $DIR/$tdir/striped_dir ||
3111                         error "change mtime failed"
3112
3113         local got=$(stat -c%Y $DIR/$tdir/striped_dir)
3114
3115         [ "$new_mtime" = "$got" ] || error "expect $new_mtime got $got"
3116 }
3117 run_test 36i "change mtime on striped directory"
3118
3119 # test_37 - duplicate with tests 32q 32r
3120
3121 test_38() {
3122         local file=$DIR/$tfile
3123         touch $file
3124         openfile -f O_DIRECTORY $file
3125         local RC=$?
3126         local ENOTDIR=20
3127         [ $RC -eq 0 ] && error "opened file $file with O_DIRECTORY" || true
3128         [ $RC -eq $ENOTDIR ] || error "error $RC should be ENOTDIR ($ENOTDIR)"
3129 }
3130 run_test 38 "open a regular file with O_DIRECTORY should return -ENOTDIR ==="
3131
3132 test_39a() { # was test_39
3133         touch $DIR/$tfile
3134         touch $DIR/${tfile}2
3135 #       ls -l  $DIR/$tfile $DIR/${tfile}2
3136 #       ls -lu  $DIR/$tfile $DIR/${tfile}2
3137 #       ls -lc  $DIR/$tfile $DIR/${tfile}2
3138         sleep 2
3139         $OPENFILE -f O_CREAT:O_TRUNC:O_WRONLY $DIR/${tfile}2
3140         if [ ! $DIR/${tfile}2 -nt $DIR/$tfile ]; then
3141                 echo "mtime"
3142                 ls -l --full-time $DIR/$tfile $DIR/${tfile}2
3143                 echo "atime"
3144                 ls -lu --full-time $DIR/$tfile $DIR/${tfile}2
3145                 echo "ctime"
3146                 ls -lc --full-time $DIR/$tfile $DIR/${tfile}2
3147                 error "O_TRUNC didn't change timestamps"
3148         fi
3149 }
3150 run_test 39a "mtime changed on create ==========================="
3151
3152 test_39b() {
3153         test_mkdir -p -c1 $DIR/$tdir
3154         cp -p /etc/passwd $DIR/$tdir/fopen
3155         cp -p /etc/passwd $DIR/$tdir/flink
3156         cp -p /etc/passwd $DIR/$tdir/funlink
3157         cp -p /etc/passwd $DIR/$tdir/frename
3158         ln $DIR/$tdir/funlink $DIR/$tdir/funlink2
3159
3160         sleep 1
3161         echo "aaaaaa" >> $DIR/$tdir/fopen
3162         echo "aaaaaa" >> $DIR/$tdir/flink
3163         echo "aaaaaa" >> $DIR/$tdir/funlink
3164         echo "aaaaaa" >> $DIR/$tdir/frename
3165
3166         local open_new=`stat -c %Y $DIR/$tdir/fopen`
3167         local link_new=`stat -c %Y $DIR/$tdir/flink`
3168         local unlink_new=`stat -c %Y $DIR/$tdir/funlink`
3169         local rename_new=`stat -c %Y $DIR/$tdir/frename`
3170
3171         cat $DIR/$tdir/fopen > /dev/null
3172         ln $DIR/$tdir/flink $DIR/$tdir/flink2
3173         rm -f $DIR/$tdir/funlink2
3174         mv -f $DIR/$tdir/frename $DIR/$tdir/frename2
3175
3176         for (( i=0; i < 2; i++ )) ; do
3177                 local open_new2=`stat -c %Y $DIR/$tdir/fopen`
3178                 local link_new2=`stat -c %Y $DIR/$tdir/flink`
3179                 local unlink_new2=`stat -c %Y $DIR/$tdir/funlink`
3180                 local rename_new2=`stat -c %Y $DIR/$tdir/frename2`
3181
3182                 [ $open_new2 -eq $open_new ] || error "open file reverses mtime"
3183                 [ $link_new2 -eq $link_new ] || error "link file reverses mtime"
3184                 [ $unlink_new2 -eq $unlink_new ] || error "unlink file reverses mtime"
3185                 [ $rename_new2 -eq $rename_new ] || error "rename file reverses mtime"
3186
3187                 cancel_lru_locks osc
3188                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3189         done
3190 }
3191 run_test 39b "mtime change on open, link, unlink, rename  ======"
3192
3193 # this should be set to past
3194 TEST_39_MTIME=`date -d "1 year ago" +%s`
3195
3196 # bug 11063
3197 test_39c() {
3198         touch $DIR1/$tfile
3199         sleep 2
3200         local mtime0=`stat -c %Y $DIR1/$tfile`
3201
3202         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3203         local mtime1=`stat -c %Y $DIR1/$tfile`
3204         [ "$mtime1" = $TEST_39_MTIME ] || \
3205                 error "mtime is not set to past: $mtime1, should be $TEST_39_MTIME"
3206
3207         local d1=`date +%s`
3208         echo hello >> $DIR1/$tfile
3209         local d2=`date +%s`
3210         local mtime2=`stat -c %Y $DIR1/$tfile`
3211         [ "$mtime2" -ge "$d1" ] && [ "$mtime2" -le "$d2" ] || \
3212                 error "mtime is not updated on write: $d1 <= $mtime2 <= $d2"
3213
3214         mv $DIR1/$tfile $DIR1/$tfile-1
3215
3216         for (( i=0; i < 2; i++ )) ; do
3217                 local mtime3=`stat -c %Y $DIR1/$tfile-1`
3218                 [ "$mtime2" = "$mtime3" ] || \
3219                         error "mtime ($mtime2) changed (to $mtime3) on rename"
3220
3221                 cancel_lru_locks osc
3222                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3223         done
3224 }
3225 run_test 39c "mtime change on rename ==========================="
3226
3227 # bug 21114
3228 test_39d() {
3229         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3230         touch $DIR1/$tfile
3231
3232         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3233
3234         for (( i=0; i < 2; i++ )) ; do
3235                 local mtime=`stat -c %Y $DIR1/$tfile`
3236                 [ $mtime = $TEST_39_MTIME ] || \
3237                         error "mtime($mtime) is not set to $TEST_39_MTIME"
3238
3239                 cancel_lru_locks osc
3240                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3241         done
3242 }
3243 run_test 39d "create, utime, stat =============================="
3244
3245 # bug 21114
3246 test_39e() {
3247         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3248         touch $DIR1/$tfile
3249         local mtime1=`stat -c %Y $DIR1/$tfile`
3250
3251         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3252
3253         for (( i=0; i < 2; i++ )) ; do
3254                 local mtime2=`stat -c %Y $DIR1/$tfile`
3255                 [ $mtime2 = $TEST_39_MTIME ] || \
3256                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
3257
3258                 cancel_lru_locks osc
3259                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3260         done
3261 }
3262 run_test 39e "create, stat, utime, stat ========================"
3263
3264 # bug 21114
3265 test_39f() {
3266         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3267         touch $DIR1/$tfile
3268         mtime1=`stat -c %Y $DIR1/$tfile`
3269
3270         sleep 2
3271         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3272
3273         for (( i=0; i < 2; i++ )) ; do
3274                 local mtime2=`stat -c %Y $DIR1/$tfile`
3275                 [ $mtime2 = $TEST_39_MTIME ] || \
3276                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
3277
3278                 cancel_lru_locks osc
3279                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3280         done
3281 }
3282 run_test 39f "create, stat, sleep, utime, stat ================="
3283
3284 # bug 11063
3285 test_39g() {
3286         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3287         echo hello >> $DIR1/$tfile
3288         local mtime1=`stat -c %Y $DIR1/$tfile`
3289
3290         sleep 2
3291         chmod o+r $DIR1/$tfile
3292
3293         for (( i=0; i < 2; i++ )) ; do
3294                 local mtime2=`stat -c %Y $DIR1/$tfile`
3295                 [ "$mtime1" = "$mtime2" ] || \
3296                         error "lost mtime: $mtime2, should be $mtime1"
3297
3298                 cancel_lru_locks osc
3299                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3300         done
3301 }
3302 run_test 39g "write, chmod, stat ==============================="
3303
3304 # bug 11063
3305 test_39h() {
3306         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3307         touch $DIR1/$tfile
3308         sleep 1
3309
3310         local d1=`date`
3311         echo hello >> $DIR1/$tfile
3312         local mtime1=`stat -c %Y $DIR1/$tfile`
3313
3314         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3315         local d2=`date`
3316         if [ "$d1" != "$d2" ]; then
3317                 echo "write and touch not within one second"
3318         else
3319                 for (( i=0; i < 2; i++ )) ; do
3320                         local mtime2=`stat -c %Y $DIR1/$tfile`
3321                         [ "$mtime2" = $TEST_39_MTIME ] || \
3322                                 error "lost mtime: $mtime2, should be $TEST_39_MTIME"
3323
3324                         cancel_lru_locks osc
3325                         if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3326                 done
3327         fi
3328 }
3329 run_test 39h "write, utime within one second, stat ============="
3330
3331 test_39i() {
3332         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3333         touch $DIR1/$tfile
3334         sleep 1
3335
3336         echo hello >> $DIR1/$tfile
3337         local mtime1=`stat -c %Y $DIR1/$tfile`
3338
3339         mv $DIR1/$tfile $DIR1/$tfile-1
3340
3341         for (( i=0; i < 2; i++ )) ; do
3342                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
3343
3344                 [ "$mtime1" = "$mtime2" ] || \
3345                         error "lost mtime: $mtime2, should be $mtime1"
3346
3347                 cancel_lru_locks osc
3348                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3349         done
3350 }
3351 run_test 39i "write, rename, stat =============================="
3352
3353 test_39j() {
3354         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3355         start_full_debug_logging
3356         touch $DIR1/$tfile
3357         sleep 1
3358
3359         #define OBD_FAIL_OSC_DELAY_SETTIME       0x412
3360         lctl set_param fail_loc=0x80000412
3361         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c ||
3362                 error "multiop failed"
3363         local multipid=$!
3364         local mtime1=`stat -c %Y $DIR1/$tfile`
3365
3366         mv $DIR1/$tfile $DIR1/$tfile-1
3367
3368         kill -USR1 $multipid
3369         wait $multipid || error "multiop close failed"
3370
3371         for (( i=0; i < 2; i++ )) ; do
3372                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
3373                 [ "$mtime1" = "$mtime2" ] ||
3374                         error "mtime is lost on close: $mtime2, " \
3375                               "should be $mtime1"
3376
3377                 cancel_lru_locks osc
3378                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3379         done
3380         lctl set_param fail_loc=0
3381         stop_full_debug_logging
3382 }
3383 run_test 39j "write, rename, close, stat ======================="
3384
3385 test_39k() {
3386         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3387         touch $DIR1/$tfile
3388         sleep 1
3389
3390         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c || error "multiop failed"
3391         local multipid=$!
3392         local mtime1=`stat -c %Y $DIR1/$tfile`
3393
3394         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3395
3396         kill -USR1 $multipid
3397         wait $multipid || error "multiop close failed"
3398
3399         for (( i=0; i < 2; i++ )) ; do
3400                 local mtime2=`stat -c %Y $DIR1/$tfile`
3401
3402                 [ "$mtime2" = $TEST_39_MTIME ] || \
3403                         error "mtime is lost on close: $mtime2, should be $TEST_39_MTIME"
3404
3405                 cancel_lru_locks osc
3406                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3407         done
3408 }
3409 run_test 39k "write, utime, close, stat ========================"
3410
3411 # this should be set to future
3412 TEST_39_ATIME=`date -d "1 year" +%s`
3413
3414 test_39l() {
3415         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3416         remote_mds_nodsh && skip "remote MDS with nodsh" && return
3417         local atime_diff=$(do_facet $SINGLEMDS \
3418                                 lctl get_param -n mdd.*MDT0000*.atime_diff)
3419         rm -rf $DIR/$tdir
3420         mkdir -p $DIR/$tdir
3421
3422         # test setting directory atime to future
3423         touch -a -d @$TEST_39_ATIME $DIR/$tdir
3424         local atime=$(stat -c %X $DIR/$tdir)
3425         [ "$atime" = $TEST_39_ATIME ] ||
3426                 error "atime is not set to future: $atime, $TEST_39_ATIME"
3427
3428         # test setting directory atime from future to now
3429         local now=$(date +%s)
3430         touch -a -d @$now $DIR/$tdir
3431
3432         atime=$(stat -c %X $DIR/$tdir)
3433         [ "$atime" -eq "$now"  ] ||
3434                 error "atime is not updated from future: $atime, $now"
3435
3436         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=2
3437         sleep 3
3438
3439         # test setting directory atime when now > dir atime + atime_diff
3440         local d1=$(date +%s)
3441         ls $DIR/$tdir
3442         local d2=$(date +%s)
3443         cancel_lru_locks mdc
3444         atime=$(stat -c %X $DIR/$tdir)
3445         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] ||
3446                 error "atime is not updated  : $atime, should be $d2"
3447
3448         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=60
3449         sleep 3
3450
3451         # test not setting directory atime when now < dir atime + atime_diff
3452         ls $DIR/$tdir
3453         cancel_lru_locks mdc
3454         atime=$(stat -c %X $DIR/$tdir)
3455         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] ||
3456                 error "atime is updated to $atime, should remain $d1<atime<$d2"
3457
3458         do_facet $SINGLEMDS \
3459                 lctl set_param -n mdd.*MDT0000*.atime_diff=$atime_diff
3460 }
3461 run_test 39l "directory atime update ==========================="
3462
3463 test_39m() {
3464         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3465         touch $DIR1/$tfile
3466         sleep 2
3467         local far_past_mtime=$(date -d "May 29 1953" +%s)
3468         local far_past_atime=$(date -d "Dec 17 1903" +%s)
3469
3470         touch -m -d @$far_past_mtime $DIR1/$tfile
3471         touch -a -d @$far_past_atime $DIR1/$tfile
3472
3473         for (( i=0; i < 2; i++ )) ; do
3474                 local timestamps=$(stat -c "%X %Y" $DIR1/$tfile)
3475                 [ "$timestamps" = "$far_past_atime $far_past_mtime" ] || \
3476                         error "atime or mtime set incorrectly"
3477
3478                 cancel_lru_locks osc
3479                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3480         done
3481 }
3482 run_test 39m "test atime and mtime before 1970"
3483
3484 test_39n() { # LU-3832
3485         remote_mds_nodsh && skip "remote MDS with nodsh" && return
3486         local atime_diff=$(do_facet $SINGLEMDS \
3487                 lctl get_param -n mdd.*MDT0000*.atime_diff)
3488         local atime0
3489         local atime1
3490         local atime2
3491
3492         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=1
3493
3494         rm -rf $DIR/$tfile
3495         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 status=noxfer
3496         atime0=$(stat -c %X $DIR/$tfile)
3497
3498         sleep 5
3499         $MULTIOP $DIR/$tfile oO_RDONLY:O_NOATIME:r4096c
3500         atime1=$(stat -c %X $DIR/$tfile)
3501
3502         sleep 5
3503         cancel_lru_locks mdc
3504         cancel_lru_locks osc
3505         $MULTIOP $DIR/$tfile oO_RDONLY:O_NOATIME:r4096c
3506         atime2=$(stat -c %X $DIR/$tfile)
3507
3508         do_facet $SINGLEMDS \
3509                 lctl set_param -n mdd.*MDT0000*.atime_diff=$atime_diff
3510
3511         [ "$atime0" -eq "$atime1" ] || error "atime0 $atime0 != atime1 $atime1"
3512         [ "$atime1" -eq "$atime2" ] || error "atime0 $atime0 != atime1 $atime1"
3513 }
3514 run_test 39n "check that O_NOATIME is honored"
3515
3516 test_39o() {
3517         TESTDIR=$DIR/$tdir/$tfile
3518         [ -e $TESTDIR ] && rm -rf $TESTDIR
3519         mkdir -p $TESTDIR
3520         cd $TESTDIR
3521         links1=2
3522         ls
3523         mkdir a b
3524         ls
3525         links2=$(stat -c %h .)
3526         [ $(($links1 + 2)) != $links2 ] &&
3527                 error "wrong links count $(($links1 + 2)) != $links2"
3528         rmdir b
3529         links3=$(stat -c %h .)
3530         [ $(($links1 + 1)) != $links3 ] &&
3531                 error "wrong links count $links1 != $links3"
3532         return 0
3533 }
3534 run_test 39o "directory cached attributes updated after create ========"
3535
3536 test_39p() {
3537         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
3538         local MDTIDX=1
3539         TESTDIR=$DIR/$tdir/$tfile
3540         [ -e $TESTDIR ] && rm -rf $TESTDIR
3541         test_mkdir -p $TESTDIR
3542         cd $TESTDIR
3543         links1=2
3544         ls
3545         $LFS mkdir -i $MDTIDX $TESTDIR/remote_dir1
3546         $LFS mkdir -i $MDTIDX $TESTDIR/remote_dir2
3547         ls
3548         links2=$(stat -c %h .)
3549         [ $(($links1 + 2)) != $links2 ] &&
3550                 error "wrong links count $(($links1 + 2)) != $links2"
3551         rmdir remote_dir2
3552         links3=$(stat -c %h .)
3553         [ $(($links1 + 1)) != $links3 ] &&
3554                 error "wrong links count $links1 != $links3"
3555         return 0
3556 }
3557 run_test 39p "remote directory cached attributes updated after create ========"
3558
3559
3560 test_39q() { # LU-8041
3561         local testdir=$DIR/$tdir
3562         mkdir -p $testdir
3563         multiop_bg_pause $testdir D_c || error "multiop failed"
3564         local multipid=$!
3565         cancel_lru_locks mdc
3566         kill -USR1 $multipid
3567         local atime=$(stat -c %X $testdir)
3568         [ "$atime" -ne 0 ] || error "atime is zero"
3569 }
3570 run_test 39q "close won't zero out atime"
3571
3572 test_40() {
3573         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
3574         $RUNAS $OPENFILE -f O_WRONLY:O_TRUNC $DIR/$tfile &&
3575                 error "openfile O_WRONLY:O_TRUNC $tfile failed"
3576         $CHECKSTAT -t file -s 4096 $DIR/$tfile ||
3577                 error "$tfile is not 4096 bytes in size"
3578 }
3579 run_test 40 "failed open(O_TRUNC) doesn't truncate ============="
3580
3581 test_41() {
3582         # bug 1553
3583         small_write $DIR/f41 18
3584 }
3585 run_test 41 "test small file write + fstat ====================="
3586
3587 count_ost_writes() {
3588         lctl get_param -n osc.*.stats |
3589                 awk -vwrites=0 '/ost_write/ { writes += $2 } \
3590                         END { printf("%0.0f", writes) }'
3591 }
3592
3593 # decent default
3594 WRITEBACK_SAVE=500
3595 DIRTY_RATIO_SAVE=40
3596 MAX_DIRTY_RATIO=50
3597 BG_DIRTY_RATIO_SAVE=10
3598 MAX_BG_DIRTY_RATIO=25
3599
3600 start_writeback() {
3601         trap 0
3602         # in 2.6, restore /proc/sys/vm/dirty_writeback_centisecs,
3603         # dirty_ratio, dirty_background_ratio
3604         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
3605                 sysctl -w vm.dirty_writeback_centisecs=$WRITEBACK_SAVE
3606                 sysctl -w vm.dirty_background_ratio=$BG_DIRTY_RATIO_SAVE
3607                 sysctl -w vm.dirty_ratio=$DIRTY_RATIO_SAVE
3608         else
3609                 # if file not here, we are a 2.4 kernel
3610                 kill -CONT `pidof kupdated`
3611         fi
3612 }
3613
3614 stop_writeback() {
3615         # setup the trap first, so someone cannot exit the test at the
3616         # exact wrong time and mess up a machine
3617         trap start_writeback EXIT
3618         # in 2.6, save and 0 /proc/sys/vm/dirty_writeback_centisecs
3619         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
3620                 WRITEBACK_SAVE=`sysctl -n vm.dirty_writeback_centisecs`
3621                 sysctl -w vm.dirty_writeback_centisecs=0
3622                 sysctl -w vm.dirty_writeback_centisecs=0
3623                 # save and increase /proc/sys/vm/dirty_ratio
3624                 DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_ratio`
3625                 sysctl -w vm.dirty_ratio=$MAX_DIRTY_RATIO
3626                 # save and increase /proc/sys/vm/dirty_background_ratio
3627                 BG_DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_background_ratio`
3628                 sysctl -w vm.dirty_background_ratio=$MAX_BG_DIRTY_RATIO
3629         else
3630                 # if file not here, we are a 2.4 kernel
3631                 kill -STOP `pidof kupdated`
3632         fi
3633 }
3634
3635 # ensure that all stripes have some grant before we test client-side cache
3636 setup_test42() {
3637         for i in `seq -f $DIR/f42-%g 1 $OSTCOUNT`; do
3638                 dd if=/dev/zero of=$i bs=4k count=1
3639                 rm $i
3640         done
3641 }
3642
3643 # Tests 42* verify that our behaviour is correct WRT caching, file closure,
3644 # file truncation, and file removal.
3645 test_42a() {
3646         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3647         setup_test42
3648         cancel_lru_locks osc
3649         stop_writeback
3650         sync; sleep 1; sync # just to be safe
3651         BEFOREWRITES=`count_ost_writes`
3652         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur_grant_bytes | grep "[0-9]"
3653         dd if=/dev/zero of=$DIR/f42a bs=1024 count=100
3654         AFTERWRITES=`count_ost_writes`
3655         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
3656                 error "$BEFOREWRITES < $AFTERWRITES"
3657         start_writeback
3658 }
3659 run_test 42a "ensure that we don't flush on close"
3660
3661 test_42b() {
3662         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3663         setup_test42
3664         cancel_lru_locks osc
3665         stop_writeback
3666         sync
3667         dd if=/dev/zero of=$DIR/f42b bs=1024 count=100
3668         BEFOREWRITES=$(count_ost_writes)
3669         $MUNLINK $DIR/f42b || error "$MUNLINK $DIR/f42b: $?"
3670         AFTERWRITES=$(count_ost_writes)
3671         if [[ $BEFOREWRITES -lt $AFTERWRITES ]]; then
3672                 error "$BEFOREWRITES < $AFTERWRITES on unlink"
3673         fi
3674         BEFOREWRITES=$(count_ost_writes)
3675         sync || error "sync: $?"
3676         AFTERWRITES=$(count_ost_writes)
3677         if [[ $BEFOREWRITES -lt $AFTERWRITES ]]; then
3678                 error "$BEFOREWRITES < $AFTERWRITES on sync"
3679         fi
3680         dmesg | grep 'error from obd_brw_async' && error 'error writing back'
3681         start_writeback
3682         return 0
3683 }
3684 run_test 42b "test destroy of file with cached dirty data ======"
3685
3686 # if these tests just want to test the effect of truncation,
3687 # they have to be very careful.  consider:
3688 # - the first open gets a {0,EOF}PR lock
3689 # - the first write conflicts and gets a {0, count-1}PW
3690 # - the rest of the writes are under {count,EOF}PW
3691 # - the open for truncate tries to match a {0,EOF}PR
3692 #   for the filesize and cancels the PWs.
3693 # any number of fixes (don't get {0,EOF} on open, match
3694 # composite locks, do smarter file size management) fix
3695 # this, but for now we want these tests to verify that
3696 # the cancellation with truncate intent works, so we
3697 # start the file with a full-file pw lock to match against
3698 # until the truncate.
3699 trunc_test() {
3700         test=$1
3701         file=$DIR/$test
3702         offset=$2
3703         cancel_lru_locks osc
3704         stop_writeback
3705         # prime the file with 0,EOF PW to match
3706         touch $file
3707         $TRUNCATE $file 0
3708         sync; sync
3709         # now the real test..
3710         dd if=/dev/zero of=$file bs=1024 count=100
3711         BEFOREWRITES=`count_ost_writes`
3712         $TRUNCATE $file $offset
3713         cancel_lru_locks osc
3714         AFTERWRITES=`count_ost_writes`
3715         start_writeback
3716 }
3717
3718 test_42c() {
3719         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3720         trunc_test 42c 1024
3721         [ $BEFOREWRITES -eq $AFTERWRITES ] && \
3722             error "beforewrites $BEFOREWRITES == afterwrites $AFTERWRITES on truncate"
3723         rm $file
3724 }
3725 run_test 42c "test partial truncate of file with cached dirty data"
3726
3727 test_42d() {
3728         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3729         trunc_test 42d 0
3730         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
3731             error "beforewrites $BEFOREWRITES != afterwrites $AFTERWRITES on truncate"
3732         rm $file
3733 }
3734 run_test 42d "test complete truncate of file with cached dirty data"
3735
3736 test_42e() { # bug22074
3737         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3738         local TDIR=$DIR/${tdir}e
3739         local pagesz=$(page_size)
3740         local pages=16 # hardcoded 16 pages, don't change it.
3741         local files=$((OSTCOUNT * 500)) # hopefully 500 files on each OST
3742         local proc_osc0="osc.${FSNAME}-OST0000-osc-[^MDT]*"
3743         local max_dirty_mb
3744         local warmup_files
3745
3746         test_mkdir -p $DIR/${tdir}e
3747         $SETSTRIPE -c 1 $TDIR
3748         createmany -o $TDIR/f $files
3749
3750         max_dirty_mb=$($LCTL get_param -n $proc_osc0/max_dirty_mb)
3751
3752         # we assume that with $OSTCOUNT files, at least one of them will
3753         # be allocated on OST0.
3754         warmup_files=$((OSTCOUNT * max_dirty_mb))
3755         createmany -o $TDIR/w $warmup_files
3756
3757         # write a large amount of data into one file and sync, to get good
3758         # avail_grant number from OST.
3759         for ((i=0; i<$warmup_files; i++)); do
3760                 idx=$($GETSTRIPE -i $TDIR/w$i)
3761                 [ $idx -ne 0 ] && continue
3762                 dd if=/dev/zero of=$TDIR/w$i bs="$max_dirty_mb"M count=1
3763                 break
3764         done
3765         [[ $i -gt $warmup_files ]] && error "OST0 is still cold"
3766         sync
3767         $LCTL get_param $proc_osc0/cur_dirty_bytes
3768         $LCTL get_param $proc_osc0/cur_grant_bytes
3769
3770         # create as much dirty pages as we can while not to trigger the actual
3771         # RPCs directly. but depends on the env, VFS may trigger flush during this
3772         # period, hopefully we are good.
3773         for ((i=0; i<$warmup_files; i++)); do
3774                 idx=$($GETSTRIPE -i $TDIR/w$i)
3775                 [ $idx -ne 0 ] && continue
3776                 dd if=/dev/zero of=$TDIR/w$i bs=1M count=1 2>/dev/null
3777         done
3778         $LCTL get_param $proc_osc0/cur_dirty_bytes
3779         $LCTL get_param $proc_osc0/cur_grant_bytes
3780
3781         # perform the real test
3782         $LCTL set_param $proc_osc0/rpc_stats 0
3783         for ((;i<$files; i++)); do
3784                 [ $($GETSTRIPE -i $TDIR/f$i) -eq 0 ] || continue
3785                 dd if=/dev/zero of=$TDIR/f$i bs=$pagesz count=$pages 2>/dev/null
3786         done
3787         sync
3788         $LCTL get_param $proc_osc0/rpc_stats
3789
3790         local percent=0
3791         local have_ppr=false
3792         $LCTL get_param $proc_osc0/rpc_stats |
3793                 while read PPR RRPC RPCT RCUM BAR WRPC WPCT WCUM; do
3794                         # skip lines until we are at the RPC histogram data
3795                         [ "$PPR" == "pages" ] && have_ppr=true && continue
3796                         $have_ppr || continue
3797
3798                         # we only want the percent stat for < 16 pages
3799                         [[ $(echo $PPR | tr -d ':') -ge $pages ]] && break
3800
3801                         percent=$((percent + WPCT))
3802                         if [[ $percent -gt 15 ]]; then
3803                                 error "less than 16-pages write RPCs" \
3804                                       "$percent% > 15%"
3805                                 break
3806                         fi
3807                 done
3808         rm -rf $TDIR
3809 }
3810 run_test 42e "verify sub-RPC writes are not done synchronously"
3811
3812 test_43A() { # was test_43
3813         test_mkdir -p $DIR/$tdir
3814         cp -p /bin/ls $DIR/$tdir/$tfile
3815         $MULTIOP $DIR/$tdir/$tfile Ow_c &
3816         pid=$!
3817         # give multiop a chance to open
3818         sleep 1
3819
3820         $DIR/$tdir/$tfile && error "execute $DIR/$tdir/$tfile succeeded" || true
3821         kill -USR1 $pid
3822 }
3823 run_test 43A "execution of file opened for write should return -ETXTBSY"
3824
3825 test_43a() {
3826         test_mkdir $DIR/$tdir
3827         cp -p $(which $MULTIOP) $DIR/$tdir/multiop ||
3828                 cp -p multiop $DIR/$tdir/multiop
3829         MULTIOP_PROG=$DIR/$tdir/multiop multiop_bg_pause $TMP/$tfile.junk O_c ||
3830                 error "multiop open $TMP/$tfile.junk failed"
3831         MULTIOP_PID=$!
3832         $MULTIOP $DIR/$tdir/multiop Oc && error "expected error, got success"
3833         kill -USR1 $MULTIOP_PID || error "kill -USR1 PID $MULTIOP_PID failed"
3834         wait $MULTIOP_PID || error "wait PID $MULTIOP_PID failed"
3835 }
3836 run_test 43a "open(RDWR) of file being executed should return -ETXTBSY"
3837
3838 test_43b() {
3839         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3840         test_mkdir $DIR/$tdir
3841         cp -p $(which $MULTIOP) $DIR/$tdir/multiop ||
3842                 cp -p multiop $DIR/$tdir/multiop
3843         MULTIOP_PROG=$DIR/$tdir/multiop multiop_bg_pause $TMP/$tfile.junk O_c ||
3844                 error "multiop open $TMP/$tfile.junk failed"
3845         MULTIOP_PID=$!
3846         $TRUNCATE $DIR/$tdir/multiop 0 && error "expected error, got success"
3847         kill -USR1 $MULTIOP_PID || error "kill -USR1 PID $MULTIOP_PID failed"
3848         wait $MULTIOP_PID || error "wait PID $MULTIOP_PID failed"
3849 }
3850 run_test 43b "truncate of file being executed should return -ETXTBSY"
3851
3852 test_43c() {
3853         local testdir="$DIR/$tdir"
3854         test_mkdir $testdir
3855         cp $SHELL $testdir/
3856         ( cd $(dirname $SHELL) && md5sum $(basename $SHELL) ) |
3857                 ( cd $testdir && md5sum -c )
3858 }
3859 run_test 43c "md5sum of copy into lustre"
3860
3861 test_44A() { # was test_44
3862         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping 2-stripe test" && return
3863         dd if=/dev/zero of=$DIR/f1 bs=4k count=1 seek=1023
3864         dd if=$DIR/f1 bs=4k count=1 > /dev/null
3865 }
3866 run_test 44A "zero length read from a sparse stripe"
3867
3868 test_44a() {
3869         local nstripe=$($LCTL lov_getconfig $DIR | grep default_stripe_count: |
3870                 awk '{ print $2 }')
3871         [ -z "$nstripe" ] && skip "can't get stripe info" && return
3872         [[ $nstripe -gt $OSTCOUNT ]] &&
3873             skip "Wrong default_stripe_count: $nstripe (OSTCOUNT: $OSTCOUNT)" &&
3874             return
3875         local stride=$($LCTL lov_getconfig $DIR | grep default_stripe_size: |
3876                 awk '{ print $2 }')
3877         if [[ $nstripe -eq 0 || $nstripe -eq -1 ]]; then
3878                 nstripe=$($LCTL lov_getconfig $DIR | grep obd_count: |
3879                         awk '{ print $2 }')
3880         fi
3881
3882         OFFSETS="0 $((stride/2)) $((stride-1))"
3883         for offset in $OFFSETS; do
3884                 for i in $(seq 0 $((nstripe-1))); do
3885                         local GLOBALOFFSETS=""
3886                         # size in Bytes
3887                         local size=$((((i + 2 * $nstripe )*$stride + $offset)))
3888                         local myfn=$DIR/d44a-$size
3889                         echo "--------writing $myfn at $size"
3890                         ll_sparseness_write $myfn $size ||
3891                                 error "ll_sparseness_write"
3892                         GLOBALOFFSETS="$GLOBALOFFSETS $size"
3893                         ll_sparseness_verify $myfn $GLOBALOFFSETS ||
3894                                 error "ll_sparseness_verify $GLOBALOFFSETS"
3895
3896                         for j in $(seq 0 $((nstripe-1))); do
3897                                 # size in Bytes
3898                                 size=$((((j + $nstripe )*$stride + $offset)))
3899                                 ll_sparseness_write $myfn $size ||
3900                                         error "ll_sparseness_write"
3901                                 GLOBALOFFSETS="$GLOBALOFFSETS $size"
3902                         done
3903                         ll_sparseness_verify $myfn $GLOBALOFFSETS ||
3904                                 error "ll_sparseness_verify $GLOBALOFFSETS"
3905                         rm -f $myfn
3906                 done
3907         done
3908 }
3909 run_test 44a "test sparse pwrite ==============================="
3910
3911 dirty_osc_total() {
3912         tot=0
3913         for d in `lctl get_param -n osc.*.cur_dirty_bytes`; do
3914                 tot=$(($tot + $d))
3915         done
3916         echo $tot
3917 }
3918 do_dirty_record() {
3919         before=`dirty_osc_total`
3920         echo executing "\"$*\""
3921         eval $*
3922         after=`dirty_osc_total`
3923         echo before $before, after $after
3924 }
3925 test_45() {
3926         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3927         f="$DIR/f45"
3928         # Obtain grants from OST if it supports it
3929         echo blah > ${f}_grant
3930         stop_writeback
3931         sync
3932         do_dirty_record "echo blah > $f"
3933         [[ $before -eq $after ]] && error "write wasn't cached"
3934         do_dirty_record "> $f"
3935         [[ $before -gt $after ]] || error "truncate didn't lower dirty count"
3936         do_dirty_record "echo blah > $f"
3937         [[ $before -eq $after ]] && error "write wasn't cached"
3938         do_dirty_record "sync"
3939         [[ $before -gt $after ]] || error "writeback didn't lower dirty count"
3940         do_dirty_record "echo blah > $f"
3941         [[ $before -eq $after ]] && error "write wasn't cached"
3942         do_dirty_record "cancel_lru_locks osc"
3943         [[ $before -gt $after ]] ||
3944                 error "lock cancellation didn't lower dirty count"
3945         start_writeback
3946 }
3947 run_test 45 "osc io page accounting ============================"
3948
3949 # in a 2 stripe file (lov.sh), page 1023 maps to page 511 in its object.  this
3950 # test tickles a bug where re-dirtying a page was failing to be mapped to the
3951 # objects offset and an assert hit when an rpc was built with 1023's mapped
3952 # offset 511 and 511's raw 511 offset. it also found general redirtying bugs.
3953 test_46() {
3954         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3955         f="$DIR/f46"
3956         stop_writeback
3957         sync
3958         dd if=/dev/zero of=$f bs=`page_size` seek=511 count=1
3959         sync
3960         dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=1023 count=1
3961         dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=511 count=1
3962         sync
3963         start_writeback
3964 }
3965 run_test 46 "dirtying a previously written page ================"
3966
3967 # test_47 is removed "Device nodes check" is moved to test_28
3968
3969 test_48a() { # bug 2399
3970         [ $(facet_fstype $SINGLEMDS) = "zfs" ] &&
3971         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.63) ] &&
3972                 skip "MDS prior to 2.3.63 handle ZFS dir .. incorrectly" &&
3973                 return
3974         test_mkdir $DIR/$tdir
3975         cd $DIR/$tdir
3976         mv $DIR/$tdir $DIR/$tdir.new || error "move directory failed"
3977         test_mkdir $DIR/$tdir || error "recreate directory failed"
3978         touch foo || error "'touch foo' failed after recreating cwd"
3979         test_mkdir bar || error "'mkdir foo' failed after recreating cwd"
3980         touch .foo || error "'touch .foo' failed after recreating cwd"
3981         test_mkdir .bar || error "'mkdir .foo' failed after recreating cwd"
3982         ls . > /dev/null || error "'ls .' failed after recreating cwd"
3983         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
3984         cd . || error "'cd .' failed after recreating cwd"
3985         test_mkdir . && error "'mkdir .' worked after recreating cwd"
3986         rmdir . && error "'rmdir .' worked after recreating cwd"
3987         ln -s . baz || error "'ln -s .' failed after recreating cwd"
3988         cd .. || error "'cd ..' failed after recreating cwd"
3989 }
3990 run_test 48a "Access renamed working dir (should return errors)="
3991
3992 test_48b() { # bug 2399
3993         rm -rf $DIR/$tdir
3994         test_mkdir $DIR/$tdir
3995         cd $DIR/$tdir
3996         rmdir $DIR/$tdir || error "remove cwd $DIR/$tdir failed"
3997         touch foo && error "'touch foo' worked after removing cwd"
3998         test_mkdir foo && error "'mkdir foo' worked after removing cwd"
3999         touch .foo && error "'touch .foo' worked after removing cwd"
4000         test_mkdir .foo && error "'mkdir .foo' worked after removing cwd"
4001         ls . > /dev/null && error "'ls .' worked after removing cwd"
4002         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
4003         test_mkdir . && error "'mkdir .' worked after removing cwd"
4004         rmdir . && error "'rmdir .' worked after removing cwd"
4005         ln -s . foo && error "'ln -s .' worked after removing cwd"
4006         cd .. || echo "'cd ..' failed after removing cwd `pwd`"  #bug 3517
4007 }
4008 run_test 48b "Access removed working dir (should return errors)="
4009
4010 test_48c() { # bug 2350
4011         #lctl set_param debug=-1
4012         #set -vx
4013         rm -rf $DIR/$tdir
4014         test_mkdir -p $DIR/$tdir/dir
4015         cd $DIR/$tdir/dir
4016         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
4017         $TRACE touch foo && error "touch foo worked after removing cwd"
4018         $TRACE test_mkdir foo && error "'mkdir foo' worked after removing cwd"
4019         touch .foo && error "touch .foo worked after removing cwd"
4020         test_mkdir .foo && error "mkdir .foo worked after removing cwd"
4021         $TRACE ls . && error "'ls .' worked after removing cwd"
4022         $TRACE ls .. || error "'ls ..' failed after removing cwd"
4023         $TRACE test_mkdir . && error "'mkdir .' worked after removing cwd"
4024         $TRACE rmdir . && error "'rmdir .' worked after removing cwd"
4025         $TRACE ln -s . foo && error "'ln -s .' worked after removing cwd"
4026         $TRACE cd .. || echo "'cd ..' failed after removing cwd `pwd`" #bug 3415
4027 }
4028 run_test 48c "Access removed working subdir (should return errors)"
4029
4030 test_48d() { # bug 2350
4031         #lctl set_param debug=-1
4032         #set -vx
4033         rm -rf $DIR/$tdir
4034         test_mkdir -p $DIR/$tdir/dir
4035         cd $DIR/$tdir/dir
4036         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
4037         $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
4038         $TRACE touch foo && error "'touch foo' worked after removing parent"
4039         $TRACE test_mkdir foo && error "mkdir foo worked after removing parent"
4040         touch .foo && error "'touch .foo' worked after removing parent"
4041         test_mkdir .foo && error "mkdir .foo worked after removing parent"
4042         $TRACE ls . && error "'ls .' worked after removing parent"
4043         $TRACE ls .. && error "'ls ..' worked after removing parent"
4044         $TRACE test_mkdir . && error "'mkdir .' worked after removing parent"
4045         $TRACE rmdir . && error "'rmdir .' worked after removing parent"
4046         $TRACE ln -s . foo && error "'ln -s .' worked after removing parent"
4047         true
4048 }
4049 run_test 48d "Access removed parent subdir (should return errors)"
4050
4051 test_48e() { # bug 4134
4052         #lctl set_param debug=-1
4053         #set -vx
4054         rm -rf $DIR/$tdir
4055         test_mkdir -p $DIR/$tdir/dir
4056         cd $DIR/$tdir/dir
4057         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
4058         $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
4059         $TRACE touch $DIR/$tdir || error "'touch $DIR/$tdir' failed"
4060         $TRACE chmod +x $DIR/$tdir || error "'chmod +x $DIR/$tdir' failed"
4061         # On a buggy kernel addition of "touch foo" after cd .. will
4062         # produce kernel oops in lookup_hash_it
4063         touch ../foo && error "'cd ..' worked after recreate parent"
4064         cd $DIR
4065         $TRACE rm $DIR/$tdir || error "rm '$DIR/$tdir' failed"
4066 }
4067 run_test 48e "Access to recreated parent subdir (should return errors)"
4068
4069 test_49() { # LU-1030
4070         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4071         remote_ost_nodsh && skip "remote OST with nodsh" && return
4072         # get ost1 size - lustre-OST0000
4073         ost1_size=$(do_facet ost1 $LFS df | grep ${ost1_svc} |
4074                 awk '{ print $4 }')
4075         # write 800M at maximum
4076         [[ $ost1_size -lt 2 ]] && ost1_size=2
4077         [[ $ost1_size -gt 819200 ]] && ost1_size=819200
4078
4079         $SETSTRIPE -c 1 -i 0 $DIR/$tfile
4080         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((ost1_size >> 2)) &
4081         local dd_pid=$!
4082
4083         # change max_pages_per_rpc while writing the file
4084         local osc1_mppc=osc.$(get_osc_import_name client ost1).max_pages_per_rpc
4085         local orig_mppc=$($LCTL get_param -n $osc1_mppc)
4086         # loop until dd process exits
4087         while ps ax -opid | grep -wq $dd_pid; do
4088                 $LCTL set_param $osc1_mppc=$((RANDOM % 256 + 1))
4089                 sleep $((RANDOM % 5 + 1))
4090         done
4091         # restore original max_pages_per_rpc
4092         $LCTL set_param $osc1_mppc=$orig_mppc
4093         rm $DIR/$tfile || error "rm $DIR/$tfile failed"
4094 }
4095 run_test 49 "Change max_pages_per_rpc won't break osc extent"
4096
4097 test_50() {
4098         # bug 1485
4099         test_mkdir $DIR/$tdir
4100         cd $DIR/$tdir
4101         ls /proc/$$/cwd || error "ls /proc/$$/cwd failed"
4102 }
4103 run_test 50 "special situations: /proc symlinks  ==============="
4104
4105 test_51a() {    # was test_51
4106         # bug 1516 - create an empty entry right after ".." then split dir
4107         test_mkdir -c1 $DIR/$tdir
4108         touch $DIR/$tdir/foo
4109         $MCREATE $DIR/$tdir/bar
4110         rm $DIR/$tdir/foo
4111         createmany -m $DIR/$tdir/longfile 201
4112         FNUM=202
4113         while [[ $(ls -sd $DIR/$tdir | awk '{ print $1 }') -eq 4 ]]; do
4114                 $MCREATE $DIR/$tdir/longfile$FNUM
4115                 FNUM=$(($FNUM + 1))
4116                 echo -n "+"
4117         done
4118         echo
4119         ls -l $DIR/$tdir > /dev/null || error "ls -l $DIR/$tdir failed"
4120 }
4121 run_test 51a "special situations: split htree with empty entry =="
4122
4123 cleanup_print_lfs_df () {
4124         trap 0
4125         $LFS df
4126         $LFS df -i
4127 }
4128
4129 test_51b() {
4130         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4131         local dir=$DIR/$tdir
4132
4133         local nrdirs=$((65536 + 100))
4134
4135         # cleanup the directory
4136         rm -fr $dir
4137
4138         test_mkdir -p -c1 $dir
4139
4140         $LFS df
4141         $LFS df -i
4142         local mdtidx=$(printf "%04x" $($LFS getstripe -M $dir))
4143         local numfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.filesfree)
4144         [[ $numfree -lt $nrdirs ]] &&
4145                 skip "not enough free inodes ($numfree) on MDT$mdtidx" &&
4146                 return
4147
4148         # need to check free space for the directories as well
4149         local blkfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.kbytesavail)
4150         numfree=$(( blkfree / $(fs_inode_ksize) ))
4151         [[ $numfree -lt $nrdirs ]] && skip "not enough blocks ($numfree)" &&
4152                 return
4153
4154         trap cleanup_print_lfsdf EXIT
4155
4156         # create files
4157         createmany -d $dir/d $nrdirs ||
4158                 error "failed to create $nrdirs subdirs in MDT$mdtidx:$dir"
4159
4160         # really created :
4161         nrdirs=$(ls -U $dir | wc -l)
4162
4163         # unlink all but 100 subdirectories, then check it still works
4164         local left=100
4165         local delete=$((nrdirs - left))
4166
4167         $LFS df
4168         $LFS df -i
4169
4170         # for ldiskfs the nlink count should be 1, but this is OSD specific
4171         # and so this is listed for informational purposes only
4172         echo "nlink before: $(stat -c %h $dir), created before: $nrdirs"
4173         unlinkmany -d $dir/d $delete ||
4174                 error "unlink of first $delete subdirs failed"
4175
4176         echo "nlink between: $(stat -c %h $dir)"
4177         local found=$(ls -U $dir | wc -l)
4178         [ $found -ne $left ] &&
4179                 error "can't find subdirs: found only $found, expected $left"
4180
4181         unlinkmany -d $dir/d $delete $left ||
4182                 error "unlink of second $left subdirs failed"
4183         # regardless of whether the backing filesystem tracks nlink accurately
4184         # or not, the nlink count shouldn't be more than "." and ".." here
4185         local after=$(stat -c %h $dir)
4186         [[ $after -gt 2 ]] && error "nlink after: $after > 2" ||
4187                 echo "nlink after: $after"
4188
4189         cleanup_print_lfs_df
4190 }
4191 run_test 51b "exceed 64k subdirectory nlink limit on create, verify unlink"
4192
4193 test_51d() {
4194         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4195         [[ $OSTCOUNT -lt 3 ]] &&
4196                 skip_env "skipping test with few OSTs" && return
4197         test_mkdir -p $DIR/$tdir
4198         createmany -o $DIR/$tdir/t- 1000
4199         $GETSTRIPE $DIR/$tdir > $TMP/$tfile
4200         for N in $(seq 0 $((OSTCOUNT - 1))); do
4201                 OBJS[$N]=$(awk -vobjs=0 '($1 == '$N') { objs += 1 } \
4202                         END { printf("%0.0f", objs) }' $TMP/$tfile)
4203                 OBJS0[$N]=$(grep -A 1 idx $TMP/$tfile | awk -vobjs=0 \
4204                         '($1 == '$N') { objs += 1 } \
4205                         END { printf("%0.0f", objs) }')
4206                 log "OST$N has ${OBJS[$N]} objects, ${OBJS0[$N]} are index 0"
4207         done
4208         unlinkmany $DIR/$tdir/t- 1000
4209
4210         NLAST=0
4211         for N in $(seq 1 $((OSTCOUNT - 1))); do
4212                 [[ ${OBJS[$N]} -lt $((${OBJS[$NLAST]} - 20)) ]] &&
4213                         error "OST $N has less objects vs OST $NLAST" \
4214                               " (${OBJS[$N]} < ${OBJS[$NLAST]}"
4215                 [[ ${OBJS[$N]} -gt $((${OBJS[$NLAST]} + 20)) ]] &&
4216                         error "OST $N has less objects vs OST $NLAST" \
4217                               " (${OBJS[$N]} < ${OBJS[$NLAST]}"
4218
4219                 [[ ${OBJS0[$N]} -lt $((${OBJS0[$NLAST]} - 20)) ]] &&
4220                         error "OST $N has less #0 objects vs OST $NLAST" \
4221                               " (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
4222                 [[ ${OBJS0[$N]} -gt $((${OBJS0[$NLAST]} + 20)) ]] &&
4223                         error "OST $N has less #0 objects vs OST $NLAST" \
4224                               " (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
4225                 NLAST=$N
4226         done
4227         rm -f $TMP/$tfile
4228 }
4229 run_test 51d "check object distribution"
4230
4231 test_51e() {
4232         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
4233                 skip "Only applicable to ldiskfs-based MDTs"
4234                 return
4235         fi
4236
4237         test_mkdir -c1 $DIR/$tdir       || error "create $tdir failed"
4238         test_mkdir -c1 $DIR/$tdir/d0    || error "create d0 failed"
4239
4240         touch $DIR/$tdir/d0/foo
4241         createmany -l $DIR/$tdir/d0/foo $DIR/$tdir/d0/f- 65001 &&
4242                 error "file exceed 65000 nlink limit!"
4243         unlinkmany $DIR/$tdir/d0/f- 65001
4244         return 0
4245 }
4246 run_test 51e "check file nlink limit"
4247
4248 test_51f() {
4249         test_mkdir $DIR/$tdir
4250
4251         local max=100000
4252         local ulimit_old=$(ulimit -n)
4253         local spare=20 # number of spare fd's for scripts/libraries, etc.
4254         local mdt=$(lfs getstripe -M $DIR/$tdir)
4255         local numfree=$(lfs df -i $DIR/$tdir | awk '/MDT:'$mdt'/ { print $4 }')
4256
4257         echo "MDT$mdt numfree=$numfree, max=$max"
4258         [[ $numfree -gt $max ]] && numfree=$max || numfree=$((numfree * 7 / 8))
4259         if [ $((numfree + spare)) -gt $ulimit_old ]; then
4260                 while ! ulimit -n $((numfree + spare)); do
4261                         numfree=$((numfree * 3 / 4))
4262                 done
4263                 echo "changed ulimit from $ulimit_old to $((numfree + spare))"
4264         else
4265                 echo "left ulimit at $ulimit_old"
4266         fi
4267
4268         createmany -o -k -t 120 $DIR/$tdir/f $numfree ||
4269                 error "create+open $numfree files in $DIR/$tdir failed"
4270         ulimit -n $ulimit_old
4271
4272         # if createmany exits at 120s there will be fewer than $numfree files
4273         unlinkmany $DIR/$tdir/f $numfree || true
4274 }
4275 run_test 51f "check many open files limit"
4276
4277 test_52a() {
4278         [ -f $DIR/$tdir/foo ] && chattr -a $DIR/$tdir/foo
4279         test_mkdir -p $DIR/$tdir
4280         touch $DIR/$tdir/foo
4281         chattr +a $DIR/$tdir/foo || error "chattr +a failed"
4282         echo bar >> $DIR/$tdir/foo || error "append bar failed"
4283         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
4284         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
4285         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
4286                                         error "link worked"
4287         echo foo >> $DIR/$tdir/foo || error "append foo failed"
4288         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
4289         lsattr $DIR/$tdir/foo | egrep -q "^-+a[-e]+ $DIR/$tdir/foo" ||
4290                                                      error "lsattr"
4291         chattr -a $DIR/$tdir/foo || error "chattr -a failed"
4292         cp -r $DIR/$tdir $TMP/
4293         rm -fr $DIR/$tdir $TMP/$tdir || error "cleanup rm failed"
4294 }
4295 run_test 52a "append-only flag test (should return errors)"
4296
4297 test_52b() {
4298         [ -f $DIR/$tdir/foo ] && chattr -i $DIR/$tdir/foo
4299         test_mkdir -p $DIR/$tdir
4300         touch $DIR/$tdir/foo
4301         chattr +i $DIR/$tdir/foo || error "chattr +i failed"
4302         cat test > $DIR/$tdir/foo && error "cat test worked"
4303         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
4304         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
4305         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
4306                                         error "link worked"
4307         echo foo >> $DIR/$tdir/foo && error "echo worked"
4308         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
4309         [ -f $DIR/$tdir/foo ] || error "$tdir/foo is not a file"
4310         [ -f $DIR/$tdir/foo_ren ] && error "$tdir/foo_ren is not a file"
4311         lsattr $DIR/$tdir/foo | egrep -q "^-+i[-e]+ $DIR/$tdir/foo" ||
4312                                                         error "lsattr"
4313         chattr -i $DIR/$tdir/foo || error "chattr failed"
4314
4315         rm -fr $DIR/$tdir || error "unable to remove $DIR/$tdir"
4316 }
4317 run_test 52b "immutable flag test (should return errors) ======="
4318
4319 test_53() {
4320         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4321         remote_mds_nodsh && skip "remote MDS with nodsh" && return
4322         remote_ost_nodsh && skip "remote OST with nodsh" && return
4323
4324         local param
4325         local param_seq
4326         local ostname
4327         local mds_last
4328         local mds_last_seq
4329         local ost_last
4330         local ost_last_seq
4331         local ost_last_id
4332         local ostnum
4333         local node
4334         local found=false
4335         local support_last_seq=true
4336
4337         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.60) ]] ||
4338                 support_last_seq=false
4339
4340         # only test MDT0000
4341         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS)
4342         local value
4343         for value in $(do_facet $SINGLEMDS \
4344                        $LCTL get_param osc.$mdtosc.prealloc_last_id) ; do
4345                 param=$(echo ${value[0]} | cut -d "=" -f1)
4346                 ostname=$(echo $param | cut -d "." -f2 | cut -d - -f 1-2)
4347
4348                 if $support_last_seq; then
4349                         param_seq=$(echo $param |
4350                                 sed -e s/prealloc_last_id/prealloc_last_seq/g)
4351                         mds_last_seq=$(do_facet $SINGLEMDS \
4352                                        $LCTL get_param -n $param_seq)
4353                 fi
4354                 mds_last=$(do_facet $SINGLEMDS $LCTL get_param -n $param)
4355
4356                 ostnum=$(index_from_ostuuid ${ostname}_UUID)
4357                 node=$(facet_active_host ost$((ostnum+1)))
4358                 param="obdfilter.$ostname.last_id"
4359                 for ost_last in $(do_node $node $LCTL get_param -n $param) ; do
4360                         echo "$ostname.last_id=$ost_last; MDS.last_id=$mds_last"
4361                         ost_last_id=$ost_last
4362
4363                         if $support_last_seq; then
4364                                 ost_last_id=$(echo $ost_last |
4365                                               awk -F':' '{print $2}' |
4366                                               sed -e "s/^0x//g")
4367                                 ost_last_seq=$(echo $ost_last |
4368                                                awk -F':' '{print $1}')
4369                                 [[ $ost_last_seq = $mds_last_seq ]] || continue
4370                         fi
4371
4372                         if [[ $ost_last_id != $mds_last ]]; then
4373                                 error "$ost_last_id != $mds_last"
4374                         else
4375                                 found=true
4376                                 break
4377                         fi
4378                 done
4379         done
4380         $found || error "can not match last_seq/last_id for $mdtosc"
4381         return 0
4382 }
4383 run_test 53 "verify that MDS and OSTs agree on pre-creation ===="
4384
4385 test_54a() {
4386         perl -MSocket -e ';' || { skip "no Socket perl module installed" && return; }
4387
4388         $SOCKETSERVER $DIR/socket ||
4389                 error "$SOCKETSERVER $DIR/socket failed: $?"
4390         $SOCKETCLIENT $DIR/socket ||
4391                 error "$SOCKETCLIENT $DIR/socket failed: $?"
4392         $MUNLINK $DIR/socket || error "$MUNLINK $DIR/socket failed: $?"
4393 }
4394 run_test 54a "unix domain socket test =========================="
4395
4396 test_54b() {
4397         f="$DIR/f54b"
4398         mknod $f c 1 3
4399         chmod 0666 $f
4400         dd if=/dev/zero of=$f bs=$(page_size) count=1
4401 }
4402 run_test 54b "char device works in lustre ======================"
4403
4404 find_loop_dev() {
4405         [ -b /dev/loop/0 ] && LOOPBASE=/dev/loop/
4406         [ -b /dev/loop0 ] && LOOPBASE=/dev/loop
4407         [ -z "$LOOPBASE" ] && echo "/dev/loop/0 and /dev/loop0 gone?" && return
4408
4409         for i in $(seq 3 7); do
4410                 losetup $LOOPBASE$i > /dev/null 2>&1 && continue
4411                 LOOPDEV=$LOOPBASE$i
4412                 LOOPNUM=$i
4413                 break
4414         done
4415 }
4416
4417 cleanup_54c() {
4418         local rc=0
4419         loopdev="$DIR/loop54c"
4420
4421         trap 0
4422         $UMOUNT $DIR/$tdir || rc=$?
4423         losetup -d $loopdev || true
4424         losetup -d $LOOPDEV || true
4425         rm -rf $loopdev $DIR/$tfile $DIR/$tdir
4426         return $rc
4427 }
4428
4429 test_54c() {
4430         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4431         loopdev="$DIR/loop54c"
4432
4433         find_loop_dev
4434         [ -z "$LOOPNUM" ] && echo "couldn't find empty loop device" && return
4435         trap cleanup_54c EXIT
4436         mknod $loopdev b 7 $LOOPNUM
4437         echo "make a loop file system with $DIR/$tfile on $loopdev ($LOOPNUM)."
4438         dd if=/dev/zero of=$DIR/$tfile bs=$(get_page_size client) seek=1024 count=1 > /dev/null
4439         losetup $loopdev $DIR/$tfile ||
4440                 error "can't set up $loopdev for $DIR/$tfile"
4441         mkfs.ext2 $loopdev || error "mke2fs on $loopdev"
4442         test_mkdir -p $DIR/$tdir
4443         mount -t ext2 $loopdev $DIR/$tdir ||
4444                 error "error mounting $loopdev on $DIR/$tdir"
4445         dd if=/dev/zero of=$DIR/$tdir/tmp bs=$(get_page_size client) count=30 ||
4446                 error "dd write"
4447         df $DIR/$tdir
4448         dd if=$DIR/$tdir/tmp of=/dev/zero bs=$(get_page_size client) count=30 ||
4449                 error "dd read"
4450         cleanup_54c
4451 }
4452 run_test 54c "block device works in lustre ====================="
4453
4454 test_54d() {
4455         f="$DIR/f54d"
4456         string="aaaaaa"
4457         mknod $f p
4458         [ "$string" = $(echo $string > $f | cat $f) ] || error "$f != $string"
4459 }
4460 run_test 54d "fifo device works in lustre ======================"
4461
4462 test_54e() {
4463         f="$DIR/f54e"
4464         string="aaaaaa"
4465         cp -aL /dev/console $f
4466         echo $string > $f || error "echo $string to $f failed"
4467 }
4468 run_test 54e "console/tty device works in lustre ======================"
4469
4470 #The test_55 used to be iopen test and it was removed by bz#24037.
4471 #run_test 55 "check iopen_connect_dentry() ======================"
4472
4473 test_56a() {    # was test_56
4474         rm -rf $DIR/$tdir
4475         $SETSTRIPE -d $DIR
4476         test_mkdir -p $DIR/$tdir/dir
4477         NUMFILES=3
4478         NUMFILESx2=$(($NUMFILES * 2))
4479         for i in $(seq 1 $NUMFILES); do
4480                 touch $DIR/$tdir/file$i
4481                 touch $DIR/$tdir/dir/file$i
4482         done
4483
4484         # test lfs getstripe with --recursive
4485         FILENUM=$($GETSTRIPE --recursive $DIR/$tdir | grep -c obdidx)
4486         [[ $FILENUM -eq $NUMFILESx2 ]] ||
4487                 error "$GETSTRIPE --recursive: found $FILENUM, not $NUMFILESx2"
4488         FILENUM=$($GETSTRIPE $DIR/$tdir | grep -c obdidx)
4489         [[ $FILENUM -eq $NUMFILES ]] ||
4490                 error "$GETSTRIPE $DIR/$tdir: found $FILENUM, not $NUMFILES"
4491         echo "$GETSTRIPE --recursive passed."
4492
4493         # test lfs getstripe with file instead of dir
4494         FILENUM=$($GETSTRIPE $DIR/$tdir/file1 | grep -c obdidx)
4495         [[ $FILENUM -eq 1 ]] ||
4496                 error "$GETSTRIPE $DIR/$tdir/file1: found $FILENUM, not 1"
4497         echo "$GETSTRIPE file1 passed."
4498
4499         #test lfs getstripe with --verbose
4500         [[ $($GETSTRIPE --verbose $DIR/$tdir |
4501                 grep -c lmm_magic) -eq $NUMFILES ]] ||
4502                 error "$GETSTRIPE --verbose $DIR/$tdir: want $NUMFILES"
4503         [[ $($GETSTRIPE $DIR/$tdir | grep -c lmm_magic) -eq 0 ]] ||
4504                 error "$GETSTRIPE $DIR/$tdir: showed lmm_magic"
4505
4506         #test lfs getstripe with -v prints lmm_fid
4507         [[ $($GETSTRIPE -v $DIR/$tdir | grep -c lmm_fid) -eq $NUMFILES ]] ||
4508                 error "$GETSTRIPE -v $DIR/$tdir: want $NUMFILES lmm_fid: lines"
4509         [[ $($GETSTRIPE $DIR/$tdir | grep -c lmm_fid) -eq 0 ]] ||
4510                 error "$GETSTRIPE $DIR/$tdir: showed lmm_fid"
4511         echo "$GETSTRIPE --verbose passed."
4512
4513         #check for FID information
4514         local fid1=$($GETSTRIPE --fid $DIR/$tdir/file1)
4515         local fid2=$($GETSTRIPE --verbose $DIR/$tdir/file1 |
4516                        awk '/lmm_fid: / { print $2 }')
4517         local fid3=$($LFS path2fid $DIR/$tdir/file1)
4518         [ "$fid1" != "$fid2" ] &&
4519                 error "getstripe --fid $fid1 != getstripe --verbose $fid2"
4520         [ "$fid1" != "$fid3" ] &&
4521                 error "getstripe --fid $fid1 != lfs path2fid $fid3"
4522         echo "$GETSTRIPE --fid passed."
4523
4524         #test lfs getstripe with --obd
4525         $GETSTRIPE --obd wrong_uuid $DIR/$tdir 2>&1 |
4526                 grep -q "unknown obduuid" ||
4527                 error "$GETSTRIPE --obd wrong_uuid should return error message"
4528
4529         [[ $OSTCOUNT -lt 2 ]] &&
4530                 skip_env "skipping other $GETSTRIPE --obd test" && return
4531
4532         OSTIDX=1
4533         OBDUUID=$(ostuuid_from_index $OSTIDX)
4534         FILENUM=$($GETSTRIPE -ir $DIR/$tdir | grep "^$OSTIDX\$" | wc -l)
4535         FOUND=$($GETSTRIPE -r --obd $OBDUUID $DIR/$tdir | grep obdidx | wc -l)
4536         [[ $FOUND -eq $FILENUM ]] ||
4537                 error "$GETSTRIPE --obd wrong: found $FOUND, expected $FILENUM"
4538         [[ $($GETSTRIPE -r -v --obd $OBDUUID $DIR/$tdir |
4539                 sed '/^[         ]*'${OSTIDX}'[  ]/d' |
4540                 sed -n '/^[      ]*[0-9][0-9]*[  ]/p' | wc -l) -eq 0 ]] ||
4541                 error "$GETSTRIPE --obd: should not show file on other obd"
4542         echo "$GETSTRIPE --obd passed"
4543 }
4544 run_test 56a "check $GETSTRIPE"
4545
4546 test_56b() {
4547         test_mkdir $DIR/$tdir
4548         NUMDIRS=3
4549         for i in $(seq 1 $NUMDIRS); do
4550                 test_mkdir $DIR/$tdir/dir$i
4551         done
4552
4553         # test lfs getdirstripe default mode is non-recursion, which is
4554         # different from lfs getstripe
4555         dircnt=$($LFS getdirstripe $DIR/$tdir | grep -c lmv_stripe_count)
4556         [[ $dircnt -eq 1 ]] ||
4557                 error "$LFS getdirstripe: found $dircnt, not 1"
4558         dircnt=$($LFS getdirstripe --recursive $DIR/$tdir |
4559                 grep -c lmv_stripe_count)
4560         [[ $dircnt -eq $((NUMDIRS + 1)) ]] ||
4561                 error "$LFS getdirstripe --recursive: found $dircnt, \
4562                         not $((NUMDIRS + 1))"
4563 }
4564 run_test 56b "check $LFS getdirstripe"
4565
4566 test_56c() {
4567         local ost_idx=0
4568         local ost_name=$(ostname_from_index $ost_idx)
4569
4570         local old_status=$(ost_dev_status $ost_idx)
4571         [[ -z "$old_status" ]] ||
4572                 { skip_env "OST $ost_name is in $old_status status"; return 0; }
4573
4574         do_facet ost1 $LCTL set_param -n obdfilter.$ost_name.degraded=1
4575         sleep_maxage
4576
4577         local new_status=$(ost_dev_status $ost_idx)
4578         [[ "$new_status" = "D" ]] ||
4579                 error "OST $ost_name is in status of '$new_status', not 'D'"
4580
4581         do_facet ost1 $LCTL set_param -n obdfilter.$ost_name.degraded=0
4582         sleep_maxage
4583
4584         new_status=$(ost_dev_status $ost_idx)
4585         [[ -z "$new_status" ]] ||
4586                 error "OST $ost_name is in status of '$new_status', not ''"
4587 }
4588 run_test 56c "check 'lfs df' showing device status"
4589
4590 NUMFILES=3
4591 NUMDIRS=3
4592 setup_56() {
4593         local LOCAL_NUMFILES="$1"
4594         local LOCAL_NUMDIRS="$2"
4595         local MKDIR_PARAMS="$3"
4596         local DIR_STRIPE_PARAMS="$4"
4597
4598         if [ ! -d "$TDIR" ] ; then
4599                 test_mkdir -p $DIR_STRIPE_PARAMS $TDIR
4600                 [ "$MKDIR_PARAMS" ] && $SETSTRIPE $MKDIR_PARAMS $TDIR
4601                 for i in `seq 1 $LOCAL_NUMFILES` ; do
4602                         touch $TDIR/file$i
4603                 done
4604                 for i in `seq 1 $LOCAL_NUMDIRS` ; do
4605                         test_mkdir $DIR_STRIPE_PARAMS $TDIR/dir$i
4606                         for j in `seq 1 $LOCAL_NUMFILES` ; do
4607                                 touch $TDIR/dir$i/file$j
4608                         done
4609                 done
4610         fi
4611 }
4612
4613 setup_56_special() {
4614         LOCAL_NUMFILES=$1
4615         LOCAL_NUMDIRS=$2
4616         setup_56 $1 $2
4617         if [ ! -e "$TDIR/loop1b" ] ; then
4618                 for i in `seq 1 $LOCAL_NUMFILES` ; do
4619                         mknod $TDIR/loop${i}b b 7 $i
4620                         mknod $TDIR/null${i}c c 1 3
4621                         ln -s $TDIR/file1 $TDIR/link${i}l
4622                 done
4623                 for i in `seq 1 $LOCAL_NUMDIRS` ; do
4624                         mknod $TDIR/dir$i/loop${i}b b 7 $i
4625                         mknod $TDIR/dir$i/null${i}c c 1 3
4626                         ln -s $TDIR/dir$i/file1 $TDIR/dir$i/link${i}l
4627                 done
4628         fi
4629 }
4630
4631 test_56g() {
4632         $SETSTRIPE -d $DIR
4633
4634         TDIR=$DIR/${tdir}g
4635         setup_56 $NUMFILES $NUMDIRS
4636
4637         EXPECTED=$(($NUMDIRS + 2))
4638         # test lfs find with -name
4639         for i in $(seq 1 $NUMFILES) ; do
4640                 NUMS=$($LFIND -name "*$i" $TDIR | wc -l)
4641                 [ $NUMS -eq $EXPECTED ] ||
4642                         error "lfs find -name \"*$i\" $TDIR wrong: "\
4643                               "found $NUMS, expected $EXPECTED"
4644         done
4645 }
4646 run_test 56g "check lfs find -name ============================="
4647
4648 test_56h() {
4649         $SETSTRIPE -d $DIR
4650
4651         TDIR=$DIR/${tdir}g
4652         setup_56 $NUMFILES $NUMDIRS
4653
4654         EXPECTED=$(((NUMDIRS + 1) * (NUMFILES - 1) + NUMFILES))
4655         # test lfs find with ! -name
4656         for i in $(seq 1 $NUMFILES) ; do
4657                 NUMS=$($LFIND ! -name "*$i" $TDIR | wc -l)
4658                 [ $NUMS -eq $EXPECTED ] ||
4659                         error "lfs find ! -name \"*$i\" $TDIR wrong: "\
4660                               "found $NUMS, expected $EXPECTED"
4661         done
4662 }
4663 run_test 56h "check lfs find ! -name ============================="
4664
4665 test_56i() {
4666        tdir=${tdir}i
4667        test_mkdir -p $DIR/$tdir
4668        UUID=$(ostuuid_from_index 0 $DIR/$tdir)
4669        CMD="$LFIND -ost $UUID $DIR/$tdir"
4670        OUT=$($CMD)
4671        [ -z "$OUT" ] || error "\"$CMD\" returned directory '$OUT'"
4672 }
4673 run_test 56i "check 'lfs find -ost UUID' skips directories ======="
4674
4675 test_56j() {
4676         TDIR=$DIR/${tdir}g
4677         setup_56_special $NUMFILES $NUMDIRS
4678
4679         EXPECTED=$((NUMDIRS + 1))
4680         CMD="$LFIND -type d $TDIR"
4681         NUMS=$($CMD | wc -l)
4682         [ $NUMS -eq $EXPECTED ] ||
4683                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4684 }
4685 run_test 56j "check lfs find -type d ============================="
4686
4687 test_56k() {
4688         TDIR=$DIR/${tdir}g
4689         setup_56_special $NUMFILES $NUMDIRS
4690
4691         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4692         CMD="$LFIND -type f $TDIR"
4693         NUMS=$($CMD | wc -l)
4694         [ $NUMS -eq $EXPECTED ] ||
4695                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4696 }
4697 run_test 56k "check lfs find -type f ============================="
4698
4699 test_56l() {
4700         TDIR=$DIR/${tdir}g
4701         setup_56_special $NUMFILES $NUMDIRS
4702
4703         EXPECTED=$((NUMDIRS + NUMFILES))
4704         CMD="$LFIND -type b $TDIR"
4705         NUMS=$($CMD | wc -l)
4706         [ $NUMS -eq $EXPECTED ] ||
4707                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4708 }
4709 run_test 56l "check lfs find -type b ============================="
4710
4711 test_56m() {
4712         TDIR=$DIR/${tdir}g
4713         setup_56_special $NUMFILES $NUMDIRS
4714
4715         EXPECTED=$((NUMDIRS + NUMFILES))
4716         CMD="$LFIND -type c $TDIR"
4717         NUMS=$($CMD | wc -l)
4718         [ $NUMS -eq $EXPECTED ] ||
4719                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4720 }
4721 run_test 56m "check lfs find -type c ============================="
4722
4723 test_56n() {
4724         TDIR=$DIR/${tdir}g
4725         setup_56_special $NUMFILES $NUMDIRS
4726
4727         EXPECTED=$((NUMDIRS + NUMFILES))
4728         CMD="$LFIND -type l $TDIR"
4729         NUMS=$($CMD | wc -l)
4730         [ $NUMS -eq $EXPECTED ] ||
4731                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4732 }
4733 run_test 56n "check lfs find -type l ============================="
4734
4735 test_56o() {
4736         TDIR=$DIR/${tdir}o
4737         setup_56 $NUMFILES $NUMDIRS
4738         utime $TDIR/file1 > /dev/null || error "utime (1)"
4739         utime $TDIR/file2 > /dev/null || error "utime (2)"
4740         utime $TDIR/dir1 > /dev/null || error "utime (3)"
4741         utime $TDIR/dir2 > /dev/null || error "utime (4)"
4742         utime $TDIR/dir1/file1 > /dev/null || error "utime (5)"
4743         dd if=/dev/zero count=1 >> $TDIR/dir1/file1 && sync
4744
4745         EXPECTED=4
4746         NUMS=`$LFIND -mtime +0 $TDIR | wc -l`
4747         [ $NUMS -eq $EXPECTED ] || \
4748                 error "lfs find -mtime +0 $TDIR wrong: found $NUMS, expected $EXPECTED"
4749
4750         EXPECTED=12
4751         CMD="$LFIND -mtime 0 $TDIR"
4752         NUMS=$($CMD | wc -l)
4753         [ $NUMS -eq $EXPECTED ] ||
4754                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4755 }
4756 run_test 56o "check lfs find -mtime for old files =========================="
4757
4758 test_56p() {
4759         [ $RUNAS_ID -eq $UID ] &&
4760                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
4761
4762         TDIR=$DIR/${tdir}p
4763         setup_56 $NUMFILES $NUMDIRS
4764
4765         chown $RUNAS_ID $TDIR/file* || error "chown $DIR/${tdir}g/file$i failed"
4766         EXPECTED=$NUMFILES
4767         CMD="$LFIND -uid $RUNAS_ID $TDIR"
4768         NUMS=$($CMD | wc -l)
4769         [ $NUMS -eq $EXPECTED ] || \
4770                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4771
4772         EXPECTED=$(((NUMFILES + 1) * NUMDIRS + 1))
4773         CMD="$LFIND ! -uid $RUNAS_ID $TDIR"
4774         NUMS=$($CMD | wc -l)
4775         [ $NUMS -eq $EXPECTED ] || \
4776                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4777 }
4778 run_test 56p "check lfs find -uid and ! -uid ==============================="
4779
4780 test_56q() {
4781         [ $RUNAS_ID -eq $UID ] &&
4782                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
4783
4784         TDIR=$DIR/${tdir}q
4785         setup_56 $NUMFILES $NUMDIRS
4786
4787         chgrp $RUNAS_GID $TDIR/file* || error "chown $TDIR/file$i failed"
4788
4789         EXPECTED=$NUMFILES
4790         CMD="$LFIND -gid $RUNAS_GID $TDIR"
4791         NUMS=$($CMD | wc -l)
4792         [ $NUMS -eq $EXPECTED ] ||
4793                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4794
4795         EXPECTED=$(( ($NUMFILES+1) * $NUMDIRS + 1))
4796         CMD="$LFIND ! -gid $RUNAS_GID $TDIR"
4797         NUMS=$($CMD | wc -l)
4798         [ $NUMS -eq $EXPECTED ] ||
4799                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4800 }
4801 run_test 56q "check lfs find -gid and ! -gid ==============================="
4802
4803 test_56r() {
4804         TDIR=$DIR/${tdir}r
4805         setup_56 $NUMFILES $NUMDIRS
4806
4807         EXPECTED=12
4808         CMD="$LFIND -size 0 -type f $TDIR"
4809         NUMS=$($CMD | wc -l)
4810         [ $NUMS -eq $EXPECTED ] ||
4811                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4812         EXPECTED=0
4813         CMD="$LFIND ! -size 0 -type f $TDIR"
4814         NUMS=$($CMD | wc -l)
4815         [ $NUMS -eq $EXPECTED ] ||
4816                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4817         echo "test" > $TDIR/$tfile
4818         echo "test2" > $TDIR/$tfile.2 && sync
4819         EXPECTED=1
4820         CMD="$LFIND -size 5 -type f $TDIR"
4821         NUMS=$($CMD | wc -l)
4822         [ $NUMS -eq $EXPECTED ] ||
4823                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4824         EXPECTED=1
4825         CMD="$LFIND -size +5 -type f $TDIR"
4826         NUMS=$($CMD | wc -l)
4827         [ $NUMS -eq $EXPECTED ] ||
4828                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4829         EXPECTED=2
4830         CMD="$LFIND -size +0 -type f $TDIR"
4831         NUMS=$($CMD | wc -l)
4832         [ $NUMS -eq $EXPECTED ] ||
4833                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4834         EXPECTED=2
4835         CMD="$LFIND ! -size -5 -type f $TDIR"
4836         NUMS=$($CMD | wc -l)
4837         [ $NUMS -eq $EXPECTED ] ||
4838                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4839         EXPECTED=12
4840         CMD="$LFIND -size -5 -type f $TDIR"
4841         NUMS=$($CMD | wc -l)
4842         [ $NUMS -eq $EXPECTED ] ||
4843                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4844 }
4845 run_test 56r "check lfs find -size works =========================="
4846
4847 test_56s() { # LU-611
4848         TDIR=$DIR/${tdir}s
4849
4850         #LU-9369
4851         setup_56 0 $NUMDIRS
4852         for i in $(seq 1 $NUMDIRS); do
4853                 $SETSTRIPE -c $((OSTCOUNT + 1)) $TDIR/dir$i/$tfile
4854         done
4855         EXPECTED=$NUMDIRS
4856         CMD="$LFIND -c $OSTCOUNT $TDIR"
4857         NUMS=$($CMD | wc -l)
4858         [ $NUMS -eq $EXPECTED ] || {
4859                 $GETSTRIPE -R $TDIR
4860                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4861         }
4862         rm -rf $TDIR
4863
4864         setup_56 $NUMFILES $NUMDIRS "-c $OSTCOUNT"
4865         if [[ $OSTCOUNT -gt 1 ]]; then
4866                 $SETSTRIPE -c 1 $TDIR/$tfile.{0,1,2,3}
4867                 ONESTRIPE=4
4868                 EXTRA=4
4869         else
4870                 ONESTRIPE=$(((NUMDIRS + 1) * NUMFILES))
4871                 EXTRA=0
4872         fi
4873
4874         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4875         CMD="$LFIND -stripe-count $OSTCOUNT -type f $TDIR"
4876         NUMS=$($CMD | wc -l)
4877         [ $NUMS -eq $EXPECTED ] || {
4878                 $GETSTRIPE -R $TDIR
4879                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4880         }
4881
4882         EXPECTED=$(((NUMDIRS + 1) * NUMFILES + EXTRA))
4883         CMD="$LFIND -stripe-count +0 -type f $TDIR"
4884         NUMS=$($CMD | wc -l)
4885         [ $NUMS -eq $EXPECTED ] || {
4886                 $GETSTRIPE -R $TDIR
4887                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4888         }
4889
4890         EXPECTED=$ONESTRIPE
4891         CMD="$LFIND -stripe-count 1 -type f $TDIR"
4892         NUMS=$($CMD | wc -l)
4893         [ $NUMS -eq $EXPECTED ] || {
4894                 $GETSTRIPE -R $TDIR
4895                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4896         }
4897
4898         CMD="$LFIND -stripe-count -2 -type f $TDIR"
4899         NUMS=$($CMD | wc -l)
4900         [ $NUMS -eq $EXPECTED ] || {
4901                 $GETSTRIPE -R $TDIR
4902                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4903         }
4904
4905         EXPECTED=0
4906         CMD="$LFIND -stripe-count $((OSTCOUNT + 1)) -type f $TDIR"
4907         NUMS=$($CMD | wc -l)
4908         [ $NUMS -eq $EXPECTED ] || {
4909                 $GETSTRIPE -R $TDIR
4910                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4911         }
4912 }
4913 run_test 56s "check lfs find -stripe-count works"
4914
4915 test_56t() { # LU-611
4916         TDIR=$DIR/${tdir}t
4917
4918         #LU-9369
4919         setup_56 0 $NUMDIRS
4920         for i in $(seq 1 $NUMDIRS); do
4921                 $SETSTRIPE -S 4M $TDIR/dir$i/$tfile
4922         done
4923         EXPECTED=$NUMDIRS
4924         CMD="$LFIND -S 4M $TDIR"
4925         NUMS=$($CMD | wc -l)
4926         [ $NUMS -eq $EXPECTED ] || {
4927                 $GETSTRIPE -R $TDIR
4928                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4929         }
4930         rm -rf $TDIR
4931
4932         setup_56 $NUMFILES $NUMDIRS "--stripe-size 512k"
4933
4934         $SETSTRIPE -S 256k $TDIR/$tfile.{0,1,2,3}
4935
4936         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4937         CMD="$LFIND -stripe-size 512k -type f $TDIR"
4938         NUMS=$($CMD | wc -l)
4939         [ $NUMS -eq $EXPECTED ] ||
4940                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4941
4942         CMD="$LFIND -stripe-size +320k -type f $TDIR"
4943         NUMS=$($CMD | wc -l)
4944         [ $NUMS -eq $EXPECTED ] ||
4945                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4946
4947         EXPECTED=$(((NUMDIRS + 1) * NUMFILES + 4))
4948         CMD="$LFIND -stripe-size +200k -type f $TDIR"
4949         NUMS=$($CMD | wc -l)
4950         [ $NUMS -eq $EXPECTED ] ||
4951                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4952
4953         CMD="$LFIND -stripe-size -640k -type f $TDIR"
4954         NUMS=$($CMD | wc -l)
4955         [ $NUMS -eq $EXPECTED ] ||
4956                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4957
4958         EXPECTED=4
4959         CMD="$LFIND -stripe-size 256k -type f $TDIR"
4960         NUMS=$($CMD | wc -l)
4961         [ $NUMS -eq $EXPECTED ] ||
4962                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4963
4964         CMD="$LFIND -stripe-size -320k -type f $TDIR"
4965         NUMS=$($CMD | wc -l)
4966         [ $NUMS -eq $EXPECTED ] ||
4967                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4968
4969         EXPECTED=0
4970         CMD="$LFIND -stripe-size 1024k -type f $TDIR"
4971         NUMS=$($CMD | wc -l)
4972         [ $NUMS -eq $EXPECTED ] ||
4973                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4974 }
4975 run_test 56t "check lfs find -stripe-size works"
4976
4977 test_56u() { # LU-611
4978         TDIR=$DIR/${tdir}u
4979         setup_56 $NUMFILES $NUMDIRS "-i 0"
4980
4981         if [[ $OSTCOUNT -gt 1 ]]; then
4982                 $SETSTRIPE -i 1 $TDIR/$tfile.{0,1,2,3}
4983                 ONESTRIPE=4
4984         else
4985                 ONESTRIPE=0
4986         fi
4987
4988         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4989         CMD="$LFIND -stripe-index 0 -type f $TDIR"
4990         NUMS=$($CMD | wc -l)
4991         [ $NUMS -eq $EXPECTED ] ||
4992                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4993
4994         EXPECTED=$ONESTRIPE
4995         CMD="$LFIND -stripe-index 1 -type f $TDIR"
4996         NUMS=$($CMD | wc -l)
4997         [ $NUMS -eq $EXPECTED ] ||
4998                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4999
5000         CMD="$LFIND ! -stripe-index 0 -type f $TDIR"
5001         NUMS=$($CMD | wc -l)
5002         [ $NUMS -eq $EXPECTED ] ||
5003                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
5004
5005         EXPECTED=0
5006         # This should produce an error and not return any files
5007         CMD="$LFIND -stripe-index $OSTCOUNT -type f $TDIR"
5008         NUMS=$($CMD 2>/dev/null | wc -l)
5009         [ $NUMS -eq $EXPECTED ] ||
5010                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
5011
5012         if [[ $OSTCOUNT -gt 1 ]]; then
5013                 EXPECTED=$(((NUMDIRS + 1) * NUMFILES + ONESTRIPE))
5014                 CMD="$LFIND -stripe-index 0,1 -type f $TDIR"
5015                 NUMS=$($CMD | wc -l)
5016                 [ $NUMS -eq $EXPECTED ] ||
5017                         error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
5018         fi
5019 }
5020 run_test 56u "check lfs find -stripe-index works"
5021
5022 test_56v() {
5023     local MDT_IDX=0
5024
5025     TDIR=$DIR/${tdir}v
5026     rm -rf $TDIR
5027     setup_56 $NUMFILES $NUMDIRS
5028
5029     UUID=$(mdtuuid_from_index $MDT_IDX $TDIR)
5030     [ -z "$UUID" ] && error "mdtuuid_from_index cannot find MDT index $MDT_IDX"
5031
5032     for file in $($LFIND -mdt $UUID $TDIR); do
5033         file_mdt_idx=$($GETSTRIPE -M $file)
5034         [ $file_mdt_idx -eq $MDT_IDX ] ||
5035             error "'lfind -mdt $UUID' != 'getstripe -M' ($file_mdt_idx)"
5036     done
5037 }
5038 run_test 56v "check 'lfs find -mdt match with lfs getstripe -M' ======="
5039
5040 test_56w() {
5041         [[ $OSTCOUNT -lt 2 ]] && skip_env "$OSTCOUNT < 2 OSTs -- skipping" &&
5042                 return
5043         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5044         TDIR=$DIR/${tdir}w
5045
5046     rm -rf $TDIR || error "remove $TDIR failed"
5047     setup_56 $NUMFILES $NUMDIRS "-c $OSTCOUNT" "-c1"
5048
5049     local stripe_size
5050     stripe_size=$($GETSTRIPE -S -d $TDIR) ||
5051         error "$GETSTRIPE -S -d $TDIR failed"
5052     stripe_size=${stripe_size%% *}
5053
5054     local file_size=$((stripe_size * OSTCOUNT))
5055     local file_num=$((NUMDIRS * NUMFILES + NUMFILES))
5056     local required_space=$((file_num * file_size))
5057
5058     local free_space=$($LCTL get_param -n lov.$FSNAME-clilov-*.kbytesavail |
5059                         head -n1)
5060     [[ $free_space -le $((required_space / 1024)) ]] &&
5061         skip_env "need at least $required_space bytes free space," \
5062                  "have $free_space kbytes" && return
5063
5064     local dd_bs=65536
5065     local dd_count=$((file_size / dd_bs))
5066
5067     # write data into the files
5068     local i
5069     local j
5070     local file
5071     for i in $(seq 1 $NUMFILES); do
5072         file=$TDIR/file$i
5073         yes | dd bs=$dd_bs count=$dd_count of=$file >/dev/null 2>&1 ||
5074             error "write data into $file failed"
5075     done
5076     for i in $(seq 1 $NUMDIRS); do
5077         for j in $(seq 1 $NUMFILES); do
5078             file=$TDIR/dir$i/file$j
5079             yes | dd bs=$dd_bs count=$dd_count of=$file \
5080                 >/dev/null 2>&1 ||
5081                 error "write data into $file failed"
5082         done
5083     done
5084
5085     local expected=-1
5086     [[ $OSTCOUNT -gt 1 ]] && expected=$((OSTCOUNT - 1))
5087
5088     # lfs_migrate file
5089     local cmd="$LFS_MIGRATE -y -c $expected $TDIR/file1"
5090     echo "$cmd"
5091     eval $cmd || error "$cmd failed"
5092
5093     check_stripe_count $TDIR/file1 $expected
5094
5095         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.90) ];
5096         then
5097                 # lfs_migrate file onto OST 0 if it is on OST 1, or onto
5098                 # OST 1 if it is on OST 0. This file is small enough to
5099                 # be on only one stripe.
5100                 file=$TDIR/migr_1_ost
5101                 dd bs=$dd_bs count=1 if=/dev/urandom of=$file >/dev/null 2>&1 ||
5102                         error "write data into $file failed"
5103                 local obdidx=$($LFS getstripe -i $file)
5104                 local oldmd5=$(md5sum $file)
5105                 local newobdidx=0
5106                 [[ $obdidx -eq 0 ]] && newobdidx=1
5107                 cmd="$LFS migrate -i $newobdidx $file"
5108                 echo $cmd
5109                 eval $cmd || error "$cmd failed"
5110                 local realobdix=$($LFS getstripe -i $file)
5111                 local newmd5=$(md5sum $file)
5112                 [[ $newobdidx -ne $realobdix ]] &&
5113                         error "new OST is different (was=$obdidx, wanted=$newobdidx, got=$realobdix)"
5114                 [[ "$oldmd5" != "$newmd5" ]] &&
5115                         error "md5sum differ: $oldmd5, $newmd5"
5116         fi
5117
5118     # lfs_migrate dir
5119     cmd="$LFS_MIGRATE -y -c $expected $TDIR/dir1"
5120     echo "$cmd"
5121     eval $cmd || error "$cmd failed"
5122
5123     for j in $(seq 1 $NUMFILES); do
5124         check_stripe_count $TDIR/dir1/file$j $expected
5125     done
5126
5127     # lfs_migrate works with lfs find
5128     cmd="$LFIND -stripe_count $OSTCOUNT -type f $TDIR |
5129          $LFS_MIGRATE -y -c $expected"
5130     echo "$cmd"
5131     eval $cmd || error "$cmd failed"
5132
5133     for i in $(seq 2 $NUMFILES); do
5134         check_stripe_count $TDIR/file$i $expected
5135     done
5136     for i in $(seq 2 $NUMDIRS); do
5137         for j in $(seq 1 $NUMFILES); do
5138             check_stripe_count $TDIR/dir$i/file$j $expected
5139         done
5140     done
5141 }
5142 run_test 56w "check lfs_migrate -c stripe_count works"
5143
5144 test_56x() {
5145         check_swap_layouts_support && return 0
5146         [[ $OSTCOUNT -lt 2 ]] &&
5147                 skip_env "need 2 OST, skipping test" && return
5148
5149         local dir0=$DIR/$tdir/$testnum
5150         test_mkdir -p $dir0 || error "creating dir $dir0"
5151
5152         local ref1=/etc/passwd
5153         local file1=$dir0/file1
5154
5155         $SETSTRIPE -c 2 $file1
5156         cp $ref1 $file1
5157         $LFS migrate -c 1 $file1 || error "migrate failed rc = $?"
5158         stripe=$($GETSTRIPE -c $file1)
5159         [[ $stripe == 1 ]] || error "stripe of $file1 is $stripe != 1"
5160         cmp $file1 $ref1 || error "content mismatch $file1 differs from $ref1"
5161
5162         # clean up
5163         rm -f $file1
5164 }
5165 run_test 56x "lfs migration support"
5166
5167 test_56xa() {
5168         check_swap_layouts_support && return 0
5169         [[ $OSTCOUNT -lt 2 ]] &&
5170                 skip_env "need 2 OST, skipping test" && return
5171
5172         local dir0=$DIR/$tdir/$testnum
5173         test_mkdir -p $dir0 || error "creating dir $dir0"
5174
5175         local ref1=/etc/passwd
5176         local file1=$dir0/file1
5177
5178         $SETSTRIPE -c 2 $file1
5179         cp $ref1 $file1
5180         $LFS migrate --block -c 1 $file1 || error "migrate failed rc = $?"
5181         local stripe=$($GETSTRIPE -c $file1)
5182         [[ $stripe == 1 ]] || error "stripe of $file1 is $stripe != 1"
5183         cmp $file1 $ref1 || error "content mismatch $file1 differs from $ref1"
5184
5185         # clean up
5186         rm -f $file1
5187 }
5188 run_test 56xa "lfs migration --block support"
5189
5190 test_56y() {
5191         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.53) ] &&
5192                 skip "No HSM $(lustre_build_version $SINGLEMDS) MDS < 2.4.53" &&
5193                 return
5194
5195         local res=""
5196         local dir0=$DIR/$tdir/$testnum
5197         test_mkdir -p $dir0 || error "creating dir $dir0"
5198         local f1=$dir0/file1
5199         local f2=$dir0/file2
5200
5201         touch $f1 || error "creating std file $f1"
5202         $MULTIOP $f2 H2c || error "creating released file $f2"
5203
5204         # a directory can be raid0, so ask only for files
5205         res=$($LFIND $dir0 -L raid0 -type f | wc -l)
5206         [[ $res == 2 ]] || error "search raid0: found $res files != 2"
5207
5208         res=$($LFIND $dir0 \! -L raid0 -type f | wc -l)
5209         [[ $res == 0 ]] || error "search !raid0: found $res files != 0"
5210
5211         # only files can be released, so no need to force file search
5212         res=$($LFIND $dir0 -L released)
5213         [[ $res == $f2 ]] || error "search released: found $res != $f2"
5214
5215         res=$($LFIND $dir0 \! -L released)
5216         [[ $res == $f1 ]] || error "search !released: found $res != $f1"
5217
5218 }
5219 run_test 56y "lfs find -L raid0|released"
5220
5221 test_56z() { # LU-4824
5222         # This checks to make sure 'lfs find' continues after errors
5223         # There are two classes of errors that should be caught:
5224         # - If multiple paths are provided, all should be searched even if one
5225         #   errors out
5226         # - If errors are encountered during the search, it should not terminate
5227         #   early
5228         local i
5229         test_mkdir $DIR/$tdir
5230         for i in d{0..9}; do
5231                 test_mkdir $DIR/$tdir/$i
5232         done
5233         touch $DIR/$tdir/d{0..9}/$tfile
5234         $LFS find $DIR/non_existent_dir $DIR/$tdir &&
5235                 error "$LFS find did not return an error"
5236         # Make a directory unsearchable. This should NOT be the last entry in
5237         # directory order.  Arbitrarily pick the 6th entry
5238         chmod 700 $($LFS find $DIR/$tdir -type d | sed '6!d')
5239         local count=$($RUNAS $LFS find $DIR/non_existent $DIR/$tdir | wc -l)
5240         # The user should be able to see 10 directories and 9 files
5241         [ $count == 19 ] || error "$LFS find did not continue after error"
5242 }
5243 run_test 56z "lfs find should continue after an error"
5244
5245 test_56aa() { # LU-5937
5246         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
5247
5248         mkdir $DIR/$tdir
5249         $LFS setdirstripe -c$MDSCOUNT $DIR/$tdir/striped_dir
5250
5251         createmany -o $DIR/$tdir/striped_dir/${tfile}- 1024
5252         local dirs=$(lfs find --size +8k $DIR/$tdir/)
5253
5254         [ -n "$dirs" ] || error "lfs find --size wrong under striped dir"
5255 }
5256 run_test 56aa "lfs find --size under striped dir"
5257
5258 test_57a() {
5259         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5260         # note test will not do anything if MDS is not local
5261         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
5262                 skip "Only applicable to ldiskfs-based MDTs"
5263                 return
5264         fi
5265
5266         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5267         local MNTDEV="osd*.*MDT*.mntdev"
5268         DEV=$(do_facet $SINGLEMDS lctl get_param -n $MNTDEV)
5269         [ -z "$DEV" ] && error "can't access $MNTDEV"
5270         for DEV in $(do_facet $SINGLEMDS lctl get_param -n $MNTDEV); do
5271                 do_facet $SINGLEMDS $DUMPE2FS -h $DEV > $TMP/t57a.dump ||
5272                         error "can't access $DEV"
5273                 DEVISIZE=$(awk '/Inode size:/ { print $3 }' $TMP/t57a.dump)
5274                 [[ $DEVISIZE -gt 128 ]] || error "inode size $DEVISIZE"
5275                 rm $TMP/t57a.dump
5276         done
5277 }
5278 run_test 57a "verify MDS filesystem created with large inodes =="
5279
5280 test_57b() {
5281         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5282         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
5283                 skip "Only applicable to ldiskfs-based MDTs"
5284                 return
5285         fi
5286
5287         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5288         local dir=$DIR/$tdir
5289
5290         local FILECOUNT=100
5291         local FILE1=$dir/f1
5292         local FILEN=$dir/f$FILECOUNT
5293
5294         rm -rf $dir || error "removing $dir"
5295         test_mkdir -p -c1 $dir || error "creating $dir"
5296         local mdtidx=$($LFS getstripe -M $dir)
5297         local mdtname=MDT$(printf %04x $mdtidx)
5298         local facet=mds$((mdtidx + 1))
5299
5300         echo "mcreating $FILECOUNT files"
5301         createmany -m $dir/f 1 $FILECOUNT || \
5302                 error "creating files in $dir"
5303
5304         # verify that files do not have EAs yet
5305         $GETSTRIPE $FILE1 2>&1 | grep -q "no stripe" || error "$FILE1 has an EA"
5306         $GETSTRIPE $FILEN 2>&1 | grep -q "no stripe" || error "$FILEN has an EA"
5307
5308         sync
5309         sleep 1
5310         df $dir  #make sure we get new statfs data
5311         local MDSFREE=$(do_facet $facet \
5312                 lctl get_param -n osd*.*$mdtname.kbytesfree)
5313         local MDCFREE=$(lctl get_param -n mdc.*$mdtname-mdc-*.kbytesfree)
5314         echo "opening files to create objects/EAs"
5315         local FILE
5316         for FILE in `seq -f $dir/f%g 1 $FILECOUNT`; do
5317                 $OPENFILE -f O_RDWR $FILE > /dev/null 2>&1 || error "opening $FILE"
5318         done
5319
5320         # verify that files have EAs now
5321         $GETSTRIPE $FILE1 | grep -q "obdidx" || error "$FILE1 missing EA"
5322         $GETSTRIPE $FILEN | grep -q "obdidx" || error "$FILEN missing EA"
5323
5324         sleep 1  #make sure we get new statfs data
5325         df $dir
5326         local MDSFREE2=$(do_facet $facet \
5327                 lctl get_param -n osd*.*$mdtname.kbytesfree)
5328         local MDCFREE2=$(lctl get_param -n mdc.*$mdtname-mdc-*.kbytesfree)
5329         if [[ $MDCFREE2 -lt $((MDCFREE - 16)) ]]; then
5330                 if [ "$MDSFREE" != "$MDSFREE2" ]; then
5331                         error "MDC before $MDCFREE != after $MDCFREE2"
5332                 else
5333                         echo "MDC before $MDCFREE != after $MDCFREE2"
5334                         echo "unable to confirm if MDS has large inodes"
5335                 fi
5336         fi
5337         rm -rf $dir
5338 }
5339 run_test 57b "default LOV EAs are stored inside large inodes ==="
5340
5341 test_58() {
5342         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5343         [ -z "$(which wiretest 2>/dev/null)" ] &&
5344                         skip_env "could not find wiretest" && return
5345         wiretest
5346 }
5347 run_test 58 "verify cross-platform wire constants =============="
5348
5349 test_59() {
5350         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5351         echo "touch 130 files"
5352         createmany -o $DIR/f59- 130
5353         echo "rm 130 files"
5354         unlinkmany $DIR/f59- 130
5355         sync
5356         # wait for commitment of removal
5357         wait_delete_completed
5358 }
5359 run_test 59 "verify cancellation of llog records async ========="
5360
5361 TEST60_HEAD="test_60 run $RANDOM"
5362 test_60a() {
5363         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5364         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
5365         do_facet mgs "! which run-llog.sh &> /dev/null" &&
5366                 do_facet mgs "! ls run-llog.sh &> /dev/null" &&
5367                         skip_env "missing subtest run-llog.sh" && return
5368
5369         log "$TEST60_HEAD - from kernel mode"
5370         do_facet mgs "$LCTL set_param debug=warning; $LCTL dk > /dev/null"
5371         do_facet mgs sh run-llog.sh
5372         do_facet mgs $LCTL dk > $TMP/$tfile
5373
5374         # LU-6388: test llog_reader
5375         local llog_reader=$(do_facet mgs "which llog_reader 2> /dev/null")
5376         llog_reader=${llog_reader:-$LUSTRE/utils/llog_reader}
5377         [ -z $(do_facet mgs ls -d $llog_reader 2> /dev/null) ] &&
5378                         skip_env "missing llog_reader" && return
5379         local fstype=$(facet_fstype mgs)
5380         [ $fstype != ldiskfs -a $fstype != zfs ] &&
5381                 skip_env "Only for ldiskfs or zfs type mgs" && return
5382
5383         local mntpt=$(facet_mntpt mgs)
5384         local mgsdev=$(mgsdevname 1)
5385         local fid_list
5386         local fid
5387         local rec_list
5388         local rec
5389         local rec_type
5390         local obj_file
5391         local path
5392         local seq
5393         local oid
5394         local pass=true
5395
5396         #get fid and record list
5397         fid_list=($(awk '/9_sub.*record/ { print $NF }' /$TMP/$tfile |
5398                 tail -n 4))
5399         rec_list=($(awk '/9_sub.*record/ { print $((NF-3)) }' /$TMP/$tfile |
5400                 tail -n 4))
5401         #remount mgs as ldiskfs or zfs type
5402         stop mgs || error "stop mgs failed"
5403         mount_fstype mgs || error "remount mgs failed"
5404         for ((i = 0; i < ${#fid_list[@]}; i++)); do
5405                 fid=${fid_list[i]}
5406                 rec=${rec_list[i]}
5407                 seq=$(echo $fid | awk -F ':' '{ print $1 }' | sed -e "s/^0x//g")
5408                 oid=$(echo $fid | awk -F ':' '{ print $2 }' | sed -e "s/^0x//g")
5409                 oid=$((16#$oid))
5410
5411                 case $fstype in
5412                         ldiskfs )
5413                                 obj_file=$mntpt/O/$seq/d$((oid%32))/$oid ;;
5414                         zfs )
5415                                 obj_file=$mntpt/oi.$(($((16#$seq))&127))/$fid ;;
5416                 esac
5417                 echo "obj_file is $obj_file"
5418                 do_facet mgs $llog_reader $obj_file
5419
5420                 rec_type=$(do_facet mgs $llog_reader $obj_file | grep "type=" |
5421                         awk '{ print $3 }' | sed -e "s/^type=//g")
5422                 if [ $rec_type != $rec ]; then
5423                         echo "FAILED test_60a wrong record type $rec_type," \
5424                               "should be $rec"
5425                         pass=false
5426                         break
5427                 fi
5428
5429                 #check obj path if record type is LLOG_LOGID_MAGIC
5430                 if [ "$rec" == "1064553b" ]; then
5431                         path=$(do_facet mgs $llog_reader $obj_file |
5432                                 grep "path=" | awk '{ print $NF }' |
5433                                 sed -e "s/^path=//g")
5434                         if [ $obj_file != $mntpt/$path ]; then
5435                                 echo "FAILED test_60a wrong obj path" \
5436                                       "$montpt/$path, should be $obj_file"
5437                                 pass=false
5438                                 break
5439                         fi
5440                 fi
5441         done
5442         rm -f $TMP/$tfile
5443         #restart mgs before "error", otherwise it will block the next test
5444         stop mgs || error "stop mgs failed"
5445         start mgs $(mgsdevname) $MGS_MOUNT_OPTS || error "start mgs failed"
5446         $pass || error "test failed, see FAILED test_60a messages for specifics"
5447 }
5448 run_test 60a "llog_test run from kernel module and test llog_reader"
5449
5450 test_60aa() {
5451         # test old logid format
5452         if [ $(lustre_version_code mgs) -le $(version_code 3.1.53) ]; then
5453                 do_facet mgs $LCTL dl | grep MGS
5454                 do_facet mgs "$LCTL --device %MGS llog_print \\\\\\\$$FSNAME-client" ||
5455                         error "old llog_print failed"
5456         fi
5457
5458         # test new logid format
5459         if [ $(lustre_version_code mgs) -ge $(version_code 2.9.53) ]; then
5460                 do_facet mgs "$LCTL --device MGS llog_print $FSNAME-client" ||
5461                         error "new llog_print failed"
5462         fi
5463 }
5464 run_test 60aa "llog_print works with FIDs and simple names"
5465
5466 test_60b() { # bug 6411
5467         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5468         dmesg > $DIR/$tfile
5469         LLOG_COUNT=$(dmesg | awk "/$TEST60_HEAD/ { marker = 1; from_marker = 0; }
5470                                 /llog.test/ {
5471                                         if (marker)
5472                                                 from_marker++
5473                                         from_begin++
5474                                 }
5475                                 END {
5476                                         if (marker)
5477                                                 print from_marker
5478                                         else
5479                                                 print from_begin
5480                                 }")
5481         [[ $LLOG_COUNT -gt 100 ]] &&
5482                 error "CDEBUG_LIMIT not limiting messages ($LLOG_COUNT)" || true
5483 }
5484 run_test 60b "limit repeated messages from CERROR/CWARN ========"
5485
5486 test_60c() {
5487         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5488         echo "create 5000 files"
5489         createmany -o $DIR/f60c- 5000
5490 #define OBD_FAIL_MDS_LLOG_CREATE_FAILED  0x137
5491         lctl set_param fail_loc=0x80000137
5492         unlinkmany $DIR/f60c- 5000
5493         lctl set_param fail_loc=0
5494 }
5495 run_test 60c "unlink file when mds full"
5496
5497 test_60d() {
5498         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5499         SAVEPRINTK=$(lctl get_param -n printk)
5500
5501         # verify "lctl mark" is even working"
5502         MESSAGE="test message ID $RANDOM $$"
5503         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
5504         dmesg | grep -q "$MESSAGE" || error "didn't find debug marker in log"
5505
5506         lctl set_param printk=0 || error "set lnet.printk failed"
5507         lctl get_param -n printk | grep emerg || error "lnet.printk dropped emerg"
5508         MESSAGE="new test message ID $RANDOM $$"
5509         # Assume here that libcfs_debug_mark_buffer() uses D_WARNING
5510         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
5511         dmesg | grep -q "$MESSAGE" && error "D_WARNING wasn't masked" || true
5512
5513         lctl set_param -n printk="$SAVEPRINTK"
5514 }
5515 run_test 60d "test printk console message masking"
5516
5517 test_60e() {
5518         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5519         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5520         touch $DIR/$tfile
5521 #define OBD_FAIL_MDS_LLOG_CREATE_FAILED2  0x15b
5522         do_facet mds1 lctl set_param fail_loc=0x15b
5523         rm $DIR/$tfile
5524 }
5525 run_test 60e "no space while new llog is being created"
5526
5527 test_61() {
5528         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5529         f="$DIR/f61"
5530         dd if=/dev/zero of=$f bs=$(page_size) count=1 || error "dd $f failed"
5531         cancel_lru_locks osc
5532         $MULTIOP $f OSMWUc || error "$MULTIOP $f failed"
5533         sync
5534 }
5535 run_test 61 "mmap() writes don't make sync hang ================"
5536
5537 # bug 2330 - insufficient obd_match error checking causes LBUG
5538 test_62() {
5539         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5540         f="$DIR/f62"
5541         echo foo > $f
5542         cancel_lru_locks osc
5543         lctl set_param fail_loc=0x405
5544         cat $f && error "cat succeeded, expect -EIO"
5545         lctl set_param fail_loc=0
5546 }
5547 # This test is now irrelevant (as of bug 10718 inclusion), we no longer
5548 # match every page all of the time.
5549 #run_test 62 "verify obd_match failure doesn't LBUG (should -EIO)"
5550
5551 # bug 2319 - oig_wait() interrupted causes crash because of invalid waitq.
5552 # Though this test is irrelevant anymore, it helped to reveal some
5553 # other grant bugs (LU-4482), let's keep it.
5554 test_63a() {   # was test_63
5555         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5556         MAX_DIRTY_MB=`lctl get_param -n osc.*.max_dirty_mb | head -n 1`
5557         for i in `seq 10` ; do
5558                 dd if=/dev/zero of=$DIR/f63 bs=8k &
5559                 sleep 5
5560                 kill $!
5561                 sleep 1
5562         done
5563
5564         rm -f $DIR/f63 || true
5565 }
5566 run_test 63a "Verify oig_wait interruption does not crash ======="
5567
5568 # bug 2248 - async write errors didn't return to application on sync
5569 # bug 3677 - async write errors left page locked
5570 test_63b() {
5571         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5572         debugsave
5573         lctl set_param debug=-1
5574
5575         # ensure we have a grant to do async writes
5576         dd if=/dev/zero of=$DIR/$tfile bs=4k count=1
5577         rm $DIR/$tfile
5578
5579         sync    # sync lest earlier test intercept the fail_loc
5580
5581         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
5582         lctl set_param fail_loc=0x80000406
5583         $MULTIOP $DIR/$tfile Owy && \
5584                 error "sync didn't return ENOMEM"
5585         sync; sleep 2; sync     # do a real sync this time to flush page
5586         lctl get_param -n llite.*.dump_page_cache | grep locked && \
5587                 error "locked page left in cache after async error" || true
5588         debugrestore
5589 }
5590 run_test 63b "async write errors should be returned to fsync ==="
5591
5592 test_64a () {
5593         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5594         df $DIR
5595         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur* | grep "[0-9]"
5596 }
5597 run_test 64a "verify filter grant calculations (in kernel) ====="
5598
5599 test_64b () {
5600         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5601         sh oos.sh $MOUNT || error "oos.sh failed: $?"
5602 }
5603 run_test 64b "check out-of-space detection on client ==========="
5604
5605 test_64c() {
5606         $LCTL set_param osc.*OST0000-osc-[^mM]*.cur_grant_bytes=0
5607 }
5608 run_test 64c "verify grant shrink ========================------"
5609
5610 # bug 1414 - set/get directories' stripe info
5611 test_65a() {
5612         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5613         test_mkdir -p $DIR/$tdir
5614         touch $DIR/$tdir/f1
5615         $LVERIFY $DIR/$tdir $DIR/$tdir/f1 || error "lverify failed"
5616 }
5617 run_test 65a "directory with no stripe info ===================="
5618
5619 test_65b() {
5620         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5621         test_mkdir -p $DIR/$tdir
5622         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
5623
5624         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
5625                                                 error "setstripe"
5626         touch $DIR/$tdir/f2
5627         $LVERIFY $DIR/$tdir $DIR/$tdir/f2 || error "lverify failed"
5628 }
5629 run_test 65b "directory setstripe -S stripe_size*2 -i 0 -c 1"
5630
5631 test_65c() {
5632         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5633         if [[ $OSTCOUNT -gt 1 ]]; then
5634                 test_mkdir -p $DIR/$tdir
5635                 local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
5636
5637                 $SETSTRIPE -S $(($STRIPESIZE * 4)) -i 1 \
5638                         -c $(($OSTCOUNT - 1)) $DIR/$tdir || error "setstripe"
5639                 touch $DIR/$tdir/f3
5640                 $LVERIFY $DIR/$tdir $DIR/$tdir/f3 || error "lverify failed"
5641         fi
5642 }
5643 run_test 65c "directory setstripe -S stripe_size*4 -i 1 -c $((OSTCOUNT-1))"
5644
5645 test_65d() {
5646         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5647         test_mkdir -p $DIR/$tdir
5648         local STRIPECOUNT=$($GETSTRIPE -c $DIR/$tdir)
5649         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
5650
5651         if [[ $STRIPECOUNT -le 0 ]]; then
5652                 sc=1
5653         elif [[ $STRIPECOUNT -gt 2000 ]]; then
5654 #LOV_MAX_STRIPE_COUNT is 2000
5655                 [[ $OSTCOUNT -gt 2000 ]] && sc=2000 || sc=$(($OSTCOUNT - 1))
5656         else
5657                 sc=$(($STRIPECOUNT - 1))
5658         fi
5659         $SETSTRIPE -S $STRIPESIZE -c $sc $DIR/$tdir || error "setstripe"
5660         touch $DIR/$tdir/f4 $DIR/$tdir/f5
5661         $LVERIFY $DIR/$tdir $DIR/$tdir/f4 $DIR/$tdir/f5 ||
5662                 error "lverify failed"
5663 }
5664 run_test 65d "directory setstripe -S stripe_size -c stripe_count"
5665
5666 test_65e() {
5667         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5668         test_mkdir -p $DIR/$tdir
5669
5670         $SETSTRIPE $DIR/$tdir || error "setstripe"
5671         $GETSTRIPE -v $DIR/$tdir | grep "Default" ||
5672                                         error "no stripe info failed"
5673         touch $DIR/$tdir/f6
5674         $LVERIFY $DIR/$tdir $DIR/$tdir/f6 || error "lverify failed"
5675 }
5676 run_test 65e "directory setstripe defaults ======================="
5677
5678 test_65f() {
5679         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5680         test_mkdir -p $DIR/${tdir}f
5681         $RUNAS $SETSTRIPE $DIR/${tdir}f && error "setstripe succeeded" || true
5682 }
5683 run_test 65f "dir setstripe permission (should return error) ==="
5684
5685 test_65g() {
5686         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5687         test_mkdir -p $DIR/$tdir
5688         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
5689
5690         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
5691                                                         error "setstripe"
5692         $SETSTRIPE -d $DIR/$tdir || error "setstripe"
5693         $GETSTRIPE -v $DIR/$tdir | grep "Default" ||
5694                 error "delete default stripe failed"
5695 }
5696 run_test 65g "directory setstripe -d ==========================="
5697
5698 test_65h() {
5699         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5700         test_mkdir -p $DIR/$tdir
5701         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
5702
5703         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
5704                                                         error "setstripe"
5705         test_mkdir -p $DIR/$tdir/dd1
5706         [ $($GETSTRIPE -c $DIR/$tdir) == $($GETSTRIPE -c $DIR/$tdir/dd1) ] ||
5707                 error "stripe info inherit failed"
5708 }
5709 run_test 65h "directory stripe info inherit ===================="
5710
5711 test_65i() { # bug6367
5712         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5713         $SETSTRIPE -S 65536 -c -1 $MOUNT
5714 }
5715 run_test 65i "set non-default striping on root directory (bug 6367)="
5716
5717 test_65ia() { # bug12836
5718         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5719         $GETSTRIPE $MOUNT || error "getstripe $MOUNT failed"
5720 }
5721 run_test 65ia "getstripe on -1 default directory striping"
5722
5723 test_65ib() { # bug12836
5724         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5725         $GETSTRIPE -v $MOUNT || error "getstripe -v $MOUNT failed"
5726 }
5727 run_test 65ib "getstripe -v on -1 default directory striping"
5728
5729 test_65ic() { # bug12836
5730         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5731         $LFS find -mtime -1 $MOUNT > /dev/null || error "find $MOUNT failed"
5732 }
5733 run_test 65ic "new find on -1 default directory striping"
5734
5735 test_65j() { # bug6367
5736         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5737         sync; sleep 1
5738         # if we aren't already remounting for each test, do so for this test
5739         if [ "$CLEANUP" = ":" -a "$I_MOUNTED" = "yes" ]; then
5740                 cleanup || error "failed to unmount"
5741                 setup
5742         fi
5743         $SETSTRIPE -d $MOUNT || error "setstripe failed"
5744 }
5745 run_test 65j "set default striping on root directory (bug 6367)="
5746
5747 test_65k() { # bug11679
5748         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5749         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
5750         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5751
5752         local disable_precreate=true
5753         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.8.54) ] &&
5754                 disable_precreate=false
5755
5756         echo "Check OST status: "
5757         local MDS_OSCS=$(do_facet $SINGLEMDS lctl dl |
5758                 awk '/[oO][sS][cC].*md[ts]/ { print $4 }')
5759
5760         for OSC in $MDS_OSCS; do
5761                 echo $OSC "is active"
5762                 do_facet $SINGLEMDS lctl --device %$OSC activate
5763         done
5764
5765         for INACTIVE_OSC in $MDS_OSCS; do
5766                 local ost=$(osc_to_ost $INACTIVE_OSC)
5767                 local ostnum=$(do_facet $SINGLEMDS lctl get_param -n \
5768                                lov.*md*.target_obd |
5769                                awk -F: /$ost/'{ print $1 }' | head -n 1)
5770
5771                 mkdir -p $DIR/$tdir
5772                 $SETSTRIPE -i $ostnum -c 1 $DIR/$tdir
5773                 createmany -o $DIR/$tdir/$tfile.$ostnum. 1000
5774
5775                 echo "Deactivate: " $INACTIVE_OSC
5776                 do_facet $SINGLEMDS lctl --device %$INACTIVE_OSC deactivate
5777
5778                 local count=$(do_facet $SINGLEMDS "lctl get_param -n \
5779                               osp.$ost*MDT0000.create_count")
5780                 local max_count=$(do_facet $SINGLEMDS "lctl get_param -n \
5781                                   osp.$ost*MDT0000.max_create_count")
5782                 $disable_precreate &&
5783                         do_facet $SINGLEMDS "lctl set_param -n \
5784                                 osp.$ost*MDT0000.max_create_count=0"
5785
5786                 for idx in $(seq 0 $((OSTCOUNT - 1))); do
5787                         [ -f $DIR/$tdir/$idx ] && continue
5788                         echo "$SETSTRIPE -i $idx -c 1 $DIR/$tdir/$idx"
5789                         $SETSTRIPE -i $idx -c 1 $DIR/$tdir/$idx ||
5790                                 error "setstripe $idx should succeed"
5791                         rm -f $DIR/$tdir/$idx || error "rm $idx failed"
5792                 done
5793                 unlinkmany $DIR/$tdir/$tfile.$ostnum. 1000
5794                 rmdir $DIR/$tdir
5795
5796                 do_facet $SINGLEMDS "lctl set_param -n \
5797                         osp.$ost*MDT0000.max_create_count=$max_count"
5798                 do_facet $SINGLEMDS "lctl set_param -n \
5799                         osp.$ost*MDT0000.create_count=$count"
5800                 do_facet $SINGLEMDS lctl --device  %$INACTIVE_OSC activate
5801                 echo $INACTIVE_OSC "is Activate"
5802
5803                 wait_osc_import_state mds ost$ostnum FULL
5804         done
5805 }
5806 run_test 65k "validate manual striping works properly with deactivated OSCs"
5807
5808 test_65l() { # bug 12836
5809         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5810         test_mkdir -p $DIR/$tdir/test_dir
5811         $SETSTRIPE -c -1 $DIR/$tdir/test_dir
5812         $LFS find -mtime -1 $DIR/$tdir >/dev/null
5813 }
5814 run_test 65l "lfs find on -1 stripe dir ========================"
5815
5816 test_65m() {
5817         $RUNAS $SETSTRIPE -c 2 $MOUNT && error "setstripe should fail"
5818         true
5819 }
5820 run_test 65m "normal user can't set filesystem default stripe"
5821
5822 # bug 2543 - update blocks count on client
5823 test_66() {
5824         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5825         COUNT=${COUNT:-8}
5826         dd if=/dev/zero of=$DIR/f66 bs=1k count=$COUNT
5827         sync; sync_all_data; sync; sync_all_data
5828         cancel_lru_locks osc
5829         BLOCKS=`ls -s $DIR/f66 | awk '{ print $1 }'`
5830         [ $BLOCKS -ge $COUNT ] || error "$DIR/f66 blocks $BLOCKS < $COUNT"
5831 }
5832 run_test 66 "update inode blocks count on client ==============="
5833
5834 LLOOP=
5835 LLITELOOPLOAD=
5836 cleanup_68() {
5837         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5838         trap 0
5839         if [ ! -z "$LLOOP" ]; then
5840                 if swapon -s | grep -q $LLOOP; then
5841                         swapoff $LLOOP || error "swapoff failed"
5842                 fi
5843
5844                 $LCTL blockdev_detach $LLOOP || error "detach failed"
5845                 rm -f $LLOOP
5846                 unset LLOOP
5847         fi
5848         rm -f $DIR/f68*
5849 }
5850
5851 meminfo() {
5852         awk '($1 == "'$1':") { print $2 }' /proc/meminfo
5853 }
5854
5855 swap_used() {
5856         swapon -s | awk '($1 == "'$1'") { print $4 }'
5857 }
5858
5859 # bug5265, obdfilter oa2dentry return -ENOENT
5860 # #define OBD_FAIL_SRV_ENOENT 0x217
5861 test_69() {
5862         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5863         remote_ost_nodsh && skip "remote OST with nodsh" && return
5864
5865         f="$DIR/$tfile"
5866         $SETSTRIPE -c 1 -i 0 $f
5867
5868         $DIRECTIO write ${f}.2 0 1 || error "directio write error"
5869
5870         do_facet ost1 lctl set_param fail_loc=0x217
5871         $TRUNCATE $f 1 # vmtruncate() will ignore truncate() error.
5872         $DIRECTIO write $f 0 2 && error "write succeeded, expect -ENOENT"
5873
5874         do_facet ost1 lctl set_param fail_loc=0
5875         $DIRECTIO write $f 0 2 || error "write error"
5876
5877         cancel_lru_locks osc
5878         $DIRECTIO read $f 0 1 || error "read error"
5879
5880         do_facet ost1 lctl set_param fail_loc=0x217
5881         $DIRECTIO read $f 1 1 && error "read succeeded, expect -ENOENT"
5882
5883         do_facet ost1 lctl set_param fail_loc=0
5884         rm -f $f
5885 }
5886 run_test 69 "verify oa2dentry return -ENOENT doesn't LBUG ======"
5887
5888 test_71() {
5889         test_mkdir -p $DIR/$tdir
5890         $LFS setdirstripe -D -c$MDSCOUNT $DIR/$tdir
5891         sh rundbench -C -D $DIR/$tdir 2 || error "dbench failed!"
5892 }
5893 run_test 71 "Running dbench on lustre (don't segment fault) ===="
5894
5895 test_72a() { # bug 5695 - Test that on 2.6 remove_suid works properly
5896         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5897         [ "$RUNAS_ID" = "$UID" ] &&
5898                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
5899
5900         # Check that testing environment is properly set up. Skip if not
5901         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_GID $RUNAS || {
5902                 skip_env "User $RUNAS_ID does not exist - skipping"
5903                 return 0
5904         }
5905         touch $DIR/$tfile
5906         chmod 777 $DIR/$tfile
5907         chmod ug+s $DIR/$tfile
5908         $RUNAS dd if=/dev/zero of=$DIR/$tfile bs=512 count=1 ||
5909                 error "$RUNAS dd $DIR/$tfile failed"
5910         # See if we are still setuid/sgid
5911         test -u $DIR/$tfile -o -g $DIR/$tfile &&
5912                 error "S/gid is not dropped on write"
5913         # Now test that MDS is updated too
5914         cancel_lru_locks mdc
5915         test -u $DIR/$tfile -o -g $DIR/$tfile &&
5916                 error "S/gid is not dropped on MDS"
5917         rm -f $DIR/$tfile
5918 }
5919 run_test 72a "Test that remove suid works properly (bug5695) ===="
5920
5921 test_72b() { # bug 24226 -- keep mode setting when size is not changing
5922         local perm
5923
5924         [ "$RUNAS_ID" = "$UID" ] && \
5925                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
5926         [ "$RUNAS_ID" -eq 0 ] && \
5927                 skip_env "RUNAS_ID = 0 -- skipping" && return
5928
5929         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5930         # Check that testing environment is properly set up. Skip if not
5931         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_ID $RUNAS || {
5932                 skip_env "User $RUNAS_ID does not exist - skipping"
5933                 return 0
5934         }
5935         touch $DIR/${tfile}-f{g,u}
5936         test_mkdir $DIR/${tfile}-dg
5937         test_mkdir $DIR/${tfile}-du
5938         chmod 770 $DIR/${tfile}-{f,d}{g,u}
5939         chmod g+s $DIR/${tfile}-{f,d}g
5940         chmod u+s $DIR/${tfile}-{f,d}u
5941         for perm in 777 2777 4777; do
5942                 $RUNAS chmod $perm $DIR/${tfile}-fg && error "S/gid file allowed improper chmod to $perm"
5943                 $RUNAS chmod $perm $DIR/${tfile}-fu && error "S/uid file allowed improper chmod to $perm"
5944                 $RUNAS chmod $perm $DIR/${tfile}-dg && error "S/gid dir allowed improper chmod to $perm"
5945                 $RUNAS chmod $perm $DIR/${tfile}-du && error "S/uid dir allowed improper chmod to $perm"
5946         done
5947         true
5948 }
5949 run_test 72b "Test that we keep mode setting if without file data changed (bug 24226)"
5950
5951 # bug 3462 - multiple simultaneous MDC requests
5952 test_73() {
5953         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5954         test_mkdir $DIR/d73-1
5955         test_mkdir $DIR/d73-2
5956         multiop_bg_pause $DIR/d73-1/f73-1 O_c || return 1
5957         pid1=$!
5958
5959         lctl set_param fail_loc=0x80000129
5960         $MULTIOP $DIR/d73-1/f73-2 Oc &
5961         sleep 1
5962         lctl set_param fail_loc=0
5963
5964         $MULTIOP $DIR/d73-2/f73-3 Oc &
5965         pid3=$!
5966
5967         kill -USR1 $pid1
5968         wait $pid1 || return 1
5969
5970         sleep 25
5971
5972         $CHECKSTAT -t file $DIR/d73-1/f73-1 || return 4
5973         $CHECKSTAT -t file $DIR/d73-1/f73-2 || return 5
5974         $CHECKSTAT -t file $DIR/d73-2/f73-3 || return 6
5975
5976         rm -rf $DIR/d73-*
5977 }
5978 run_test 73 "multiple MDC requests (should not deadlock)"
5979
5980 test_74a() { # bug 6149, 6184
5981         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5982         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
5983         #
5984         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
5985         # will spin in a tight reconnection loop
5986         touch $DIR/f74a
5987         $LCTL set_param fail_loc=0x8000030e
5988         # get any lock that won't be difficult - lookup works.
5989         ls $DIR/f74a
5990         $LCTL set_param fail_loc=0
5991         rm -f $DIR/f74a
5992         true
5993 }
5994 run_test 74a "ldlm_enqueue freed-export error path, ls (shouldn't LBUG)"
5995
5996 test_74b() { # bug 13310
5997         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5998         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
5999         #
6000         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
6001         # will spin in a tight reconnection loop
6002         $LCTL set_param fail_loc=0x8000030e
6003         # get a "difficult" lock
6004         touch $DIR/f74b
6005         $LCTL set_param fail_loc=0
6006         rm -f $DIR/f74b
6007         true
6008 }
6009 run_test 74b "ldlm_enqueue freed-export error path, touch (shouldn't LBUG)"
6010
6011 test_74c() {
6012         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6013         #define OBD_FAIL_LDLM_NEW_LOCK
6014         $LCTL set_param fail_loc=0x319
6015         touch $DIR/$tfile && error "touch successful"
6016         $LCTL set_param fail_loc=0
6017         true
6018 }
6019 run_test 74c "ldlm_lock_create error path, (shouldn't LBUG)"
6020
6021 num_inodes() {
6022         awk '/lustre_inode_cache/ {print $2; exit}' /proc/slabinfo
6023 }
6024
6025 get_inode_slab_tunables() {
6026         awk '/lustre_inode_cache/ {print $9," ",$10," ",$11; exit}' /proc/slabinfo
6027 }
6028
6029 set_inode_slab_tunables() {
6030         echo "lustre_inode_cache $1" > /proc/slabinfo
6031 }
6032
6033 test_76() { # Now for bug 20433, added originally in bug 1443
6034         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6035         local SLAB_SETTINGS=$(get_inode_slab_tunables)
6036         local CPUS=$(getconf _NPROCESSORS_ONLN 2>/dev/null)
6037         # we cannot set limit below 1 which means 1 inode in each
6038         # per-cpu cache is still allowed
6039         set_inode_slab_tunables "1 1 0"
6040         cancel_lru_locks osc
6041         BEFORE_INODES=$(num_inodes)
6042         echo "before inodes: $BEFORE_INODES"
6043         local COUNT=1000
6044         [ "$SLOW" = "no" ] && COUNT=100
6045         for i in $(seq $COUNT); do
6046                 touch $DIR/$tfile
6047                 rm -f $DIR/$tfile
6048         done
6049         cancel_lru_locks osc
6050         AFTER_INODES=$(num_inodes)
6051         echo "after inodes: $AFTER_INODES"
6052         local wait=0
6053         while [[ $((AFTER_INODES-1*${CPUS:-1})) -gt $BEFORE_INODES ]]; do
6054                 sleep 2
6055                 AFTER_INODES=$(num_inodes)
6056                 wait=$((wait+2))
6057                 echo "wait $wait seconds inodes: $AFTER_INODES"
6058                 if [ $wait -gt 30 ]; then
6059                         error "inode slab grew from $BEFORE_INODES to $AFTER_INODES"
6060                 fi
6061         done
6062         set_inode_slab_tunables "$SLAB_SETTINGS"
6063 }
6064 run_test 76 "confirm clients recycle inodes properly ===="
6065
6066
6067 export ORIG_CSUM=""
6068 set_checksums()
6069 {
6070         # Note: in sptlrpc modes which enable its own bulk checksum, the
6071         # original crc32_le bulk checksum will be automatically disabled,
6072         # and the OBD_FAIL_OSC_CHECKSUM_SEND/OBD_FAIL_OSC_CHECKSUM_RECEIVE
6073         # will be checked by sptlrpc code against sptlrpc bulk checksum.
6074         # In this case set_checksums() will not be no-op, because sptlrpc
6075         # bulk checksum will be enabled all through the test.
6076
6077         [ "$ORIG_CSUM" ] || ORIG_CSUM=`lctl get_param -n osc.*.checksums | head -n1`
6078         lctl set_param -n osc.*.checksums $1
6079         return 0
6080 }
6081
6082 export ORIG_CSUM_TYPE="`lctl get_param -n osc.*osc-[^mM]*.checksum_type |
6083                         sed 's/.*\[\(.*\)\].*/\1/g' | head -n1`"
6084 CKSUM_TYPES=${CKSUM_TYPES:-"crc32 adler"}
6085 [ "$ORIG_CSUM_TYPE" = "crc32c" ] && CKSUM_TYPES="$CKSUM_TYPES crc32c"
6086 set_checksum_type()
6087 {
6088         lctl set_param -n osc.*osc-[^mM]*.checksum_type $1
6089         log "set checksum type to $1"
6090         return 0
6091 }
6092 F77_TMP=$TMP/f77-temp
6093 F77SZ=8
6094 setup_f77() {
6095         dd if=/dev/urandom of=$F77_TMP bs=1M count=$F77SZ || \
6096                 error "error writing to $F77_TMP"
6097 }
6098
6099 test_77a() { # bug 10889
6100         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6101         $GSS && skip "could not run with gss" && return
6102         [ ! -f $F77_TMP ] && setup_f77
6103         set_checksums 1
6104         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ || error "dd error"
6105         set_checksums 0
6106         rm -f $DIR/$tfile
6107 }
6108 run_test 77a "normal checksum read/write operation"
6109
6110 test_77b() { # bug 10889
6111         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6112         $GSS && skip "could not run with gss" && return
6113         [ ! -f $F77_TMP ] && setup_f77
6114         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
6115         $LCTL set_param fail_loc=0x80000409
6116         set_checksums 1
6117
6118         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ conv=sync ||
6119                 error "dd error: $?"
6120         $LCTL set_param fail_loc=0
6121
6122         for algo in $CKSUM_TYPES; do
6123                 cancel_lru_locks osc
6124                 set_checksum_type $algo
6125                 #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
6126                 $LCTL set_param fail_loc=0x80000408
6127                 cmp $F77_TMP $DIR/$tfile || error "file compare failed"
6128                 $LCTL set_param fail_loc=0
6129         done
6130         set_checksums 0
6131         set_checksum_type $ORIG_CSUM_TYPE
6132         rm -f $DIR/$tfile
6133 }
6134 run_test 77b "checksum error on client write, read"
6135
6136 cleanup_77c() {
6137         trap 0
6138         set_checksums 0
6139         $LCTL set_param osc.*osc-[^mM]*.checksum_dump=0
6140         $check_ost &&
6141                 do_facet ost1 $LCTL set_param obdfilter.*-OST*.checksum_dump=0
6142         [ -n $osc_file_prefix ] && rm -f ${osc_file_prefix}*
6143         $check_ost && [ -n $ost_file_prefix ] &&
6144                 do_facet ost1 rm -f ${ost_file_prefix}\*
6145 }
6146
6147 test_77c() {
6148         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6149         $GSS && skip "could not run with gss" && return
6150
6151         local bad1
6152         local osc_file_prefix
6153         local osc_file
6154         local check_ost=false
6155         local ost_file_prefix
6156         local ost_file
6157         local orig_cksum
6158         local dump_cksum
6159         local fid
6160
6161         # ensure corruption will occur on first OSS/OST
6162         $LFS setstripe -i 0 $DIR/$tfile
6163
6164         [ ! -f $F77_TMP ] && setup_f77
6165         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ conv=sync ||
6166                 error "dd write error: $?"
6167         fid=$($LFS path2fid $DIR/$tfile)
6168
6169         if [ $(lustre_version_code ost1) -ge $(version_code 2.5.42.6) ]
6170         then
6171                 check_ost=true
6172                 ost_file_prefix=$(do_facet ost1 $LCTL get_param -n debug_path)
6173                 ost_file_prefix=${ost_file_prefix}-checksum_dump-ost-\\${fid}
6174         else
6175                 echo "OSS do not support bulk pages dump upon error"
6176         fi
6177
6178         osc_file_prefix=$($LCTL get_param -n debug_path)
6179         osc_file_prefix=${osc_file_prefix}-checksum_dump-osc-\\${fid}
6180
6181         trap cleanup_77c EXIT
6182
6183         set_checksums 1
6184         # enable bulk pages dump upon error on Client
6185         $LCTL set_param osc.*osc-[^mM]*.checksum_dump=1
6186         # enable bulk pages dump upon error on OSS
6187         $check_ost &&
6188                 do_facet ost1 $LCTL set_param obdfilter.*-OST*.checksum_dump=1
6189
6190         # flush Client cache to allow next read to reach OSS
6191         cancel_lru_locks osc
6192
6193         #define OBD_FAIL_OSC_CHECKSUM_RECEIVE       0x408
6194         $LCTL set_param fail_loc=0x80000408
6195         dd if=$DIR/$tfile of=/dev/null bs=1M || error "dd read error: $?"
6196         $LCTL set_param fail_loc=0
6197
6198         rm -f $DIR/$tfile
6199
6200         # check cksum dump on Client
6201         osc_file=$(ls ${osc_file_prefix}*)
6202         [ -n "$osc_file" ] || error "no checksum dump file on Client"
6203         # OBD_FAIL_OSC_CHECKSUM_RECEIVE corrupts with "bad1" at start of file
6204         bad1=$(dd if=$osc_file bs=1 count=4 2>/dev/null) || error "dd error: $?"
6205         [ $bad1 == "bad1" ] || error "unexpected corrupt pattern"
6206         orig_cksum=$(dd if=$F77_TMP bs=1 skip=4 count=1048572 2>/dev/null |
6207                      cksum)
6208         dump_cksum=$(dd if=$osc_file bs=1 skip=4 2>/dev/null | cksum)
6209         [[ "$orig_cksum" == "$dump_cksum" ]] ||
6210                 error "dump content does not match on Client"
6211
6212         $check_ost || skip "No need to check cksum dump on OSS"
6213
6214         # check cksum dump on OSS
6215         ost_file=$(do_facet ost1 ls ${ost_file_prefix}\*)
6216         [ -n "$ost_file" ] || error "no checksum dump file on OSS"
6217         orig_cksum=$(dd if=$F77_TMP bs=1048576 count=1 2>/dev/null | cksum)
6218         dump_cksum=$(do_facet ost1 dd if=$ost_file 2>/dev/null \| cksum)
6219         [[ "$orig_cksum" == "$dump_cksum" ]] ||
6220                 error "dump content does not match on OSS"
6221
6222         cleanup_77c
6223 }
6224 run_test 77c "checksum error on client read with debug"
6225
6226 test_77d() { # bug 10889
6227         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6228         $GSS && skip "could not run with gss" && return
6229         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
6230         $LCTL set_param fail_loc=0x80000409
6231         set_checksums 1
6232         $DIRECTIO write $DIR/$tfile 0 $F77SZ $((1024 * 1024)) ||
6233                 error "direct write: rc=$?"
6234         $LCTL set_param fail_loc=0
6235         set_checksums 0
6236
6237         #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
6238         $LCTL set_param fail_loc=0x80000408
6239         set_checksums 1
6240         cancel_lru_locks osc
6241         $DIRECTIO read $DIR/$tfile 0 $F77SZ $((1024 * 1024)) ||
6242                 error "direct read: rc=$?"
6243         $LCTL set_param fail_loc=0
6244         set_checksums 0
6245 }
6246 run_test 77d "checksum error on OST direct write, read"
6247
6248 test_77f() { # bug 10889
6249         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6250         $GSS && skip "could not run with gss" && return
6251         set_checksums 1
6252         for algo in $CKSUM_TYPES; do
6253                 cancel_lru_locks osc
6254                 set_checksum_type $algo
6255                 #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
6256                 $LCTL set_param fail_loc=0x409
6257                 $DIRECTIO write $DIR/$tfile 0 $F77SZ $((1024 * 1024)) &&
6258                         error "direct write succeeded"
6259                 $LCTL set_param fail_loc=0
6260         done
6261         set_checksum_type $ORIG_CSUM_TYPE
6262         set_checksums 0
6263 }
6264 run_test 77f "repeat checksum error on write (expect error)"
6265
6266 test_77g() { # bug 10889
6267         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6268         $GSS && skip "could not run with gss" && return
6269         remote_ost_nodsh && skip "remote OST with nodsh" && return
6270
6271         [ ! -f $F77_TMP ] && setup_f77
6272
6273         $SETSTRIPE -c 1 -i 0 $DIR/$tfile
6274         #define OBD_FAIL_OST_CHECKSUM_RECEIVE       0x21a
6275         do_facet ost1 lctl set_param fail_loc=0x8000021a
6276         set_checksums 1
6277         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ ||
6278                 error "write error: rc=$?"
6279         do_facet ost1 lctl set_param fail_loc=0
6280         set_checksums 0
6281
6282         cancel_lru_locks osc
6283         #define OBD_FAIL_OST_CHECKSUM_SEND          0x21b
6284         do_facet ost1 lctl set_param fail_loc=0x8000021b
6285         set_checksums 1
6286         cmp $F77_TMP $DIR/$tfile || error "file compare failed"
6287         do_facet ost1 lctl set_param fail_loc=0
6288         set_checksums 0
6289 }
6290 run_test 77g "checksum error on OST write, read"
6291
6292 test_77j() { # bug 13805
6293         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6294         $GSS && skip "could not run with gss" && return
6295         #define OBD_FAIL_OSC_CKSUM_ADLER_ONLY    0x40c
6296         lctl set_param fail_loc=0x40c
6297         remount_client $MOUNT
6298         lctl set_param fail_loc=0
6299         # wait async osc connect to finish and reflect updated state value
6300         local i
6301         for (( i=0; i < OSTCOUNT; i++ )) ; do
6302                 wait_osc_import_state client ost$((i+1)) FULL
6303         done
6304
6305         for VALUE in $(lctl get_param osc.*osc-[^mM]*.checksum_type); do
6306                 PARAM=$(echo ${VALUE[0]} | cut -d "=" -f1)
6307                 algo=$(lctl get_param -n $PARAM | sed 's/.*\[\(.*\)\].*/\1/g')
6308                 [ "$algo" = "adler" ] || error "algo set to $algo instead of adler"
6309         done
6310         remount_client $MOUNT
6311 }
6312 run_test 77j "client only supporting ADLER32"
6313
6314 [ "$ORIG_CSUM" ] && set_checksums $ORIG_CSUM || true
6315 rm -f $F77_TMP
6316 unset F77_TMP
6317
6318 cleanup_test_78() {
6319         trap 0
6320         rm -f $DIR/$tfile
6321 }
6322
6323 test_78() { # bug 10901
6324         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6325         remote_ost || { skip_env "local OST" && return; }
6326
6327         NSEQ=5
6328         F78SIZE=$(($(awk '/MemFree:/ { print $2 }' /proc/meminfo) / 1024))
6329         echo "MemFree: $F78SIZE, Max file size: $MAXFREE"
6330         MEMTOTAL=$(($(awk '/MemTotal:/ { print $2 }' /proc/meminfo) / 1024))
6331         echo "MemTotal: $MEMTOTAL"
6332
6333         # reserve 256MB of memory for the kernel and other running processes,
6334         # and then take 1/2 of the remaining memory for the read/write buffers.
6335         if [ $MEMTOTAL -gt 512 ] ;then
6336                 MEMTOTAL=$(((MEMTOTAL - 256 ) / 2))
6337         else
6338                 # for those poor memory-starved high-end clusters...
6339                 MEMTOTAL=$((MEMTOTAL / 2))
6340         fi
6341         echo "Mem to use for directio: $MEMTOTAL"
6342
6343         [[ $F78SIZE -gt $MEMTOTAL ]] && F78SIZE=$MEMTOTAL
6344         [[ $F78SIZE -gt 512 ]] && F78SIZE=512
6345         [[ $F78SIZE -gt $((MAXFREE / 1024)) ]] && F78SIZE=$((MAXFREE / 1024))
6346         SMALLESTOST=$($LFS df $DIR | grep OST | awk '{ print $4 }' | sort -n |
6347                 head -n1)
6348         echo "Smallest OST: $SMALLESTOST"
6349         [[ $SMALLESTOST -lt 10240 ]] &&
6350                 skip "too small OSTSIZE, useless to run large O_DIRECT test" && return 0
6351
6352         trap cleanup_test_78 EXIT
6353
6354         [[ $F78SIZE -gt $((SMALLESTOST * $OSTCOUNT / 1024 - 80)) ]] &&
6355                 F78SIZE=$((SMALLESTOST * $OSTCOUNT / 1024 - 80))
6356
6357         [ "$SLOW" = "no" ] && NSEQ=1 && [ $F78SIZE -gt 32 ] && F78SIZE=32
6358         echo "File size: $F78SIZE"
6359         $SETSTRIPE -c $OSTCOUNT $DIR/$tfile || error "setstripe failed"
6360         for i in $(seq 1 $NSEQ); do
6361                 FSIZE=$(($F78SIZE / ($NSEQ - $i + 1)))
6362                 echo directIO rdwr round $i of $NSEQ
6363                 $DIRECTIO rdwr $DIR/$tfile 0 $FSIZE 1048576||error "rdwr failed"
6364         done
6365
6366         cleanup_test_78
6367 }
6368 run_test 78 "handle large O_DIRECT writes correctly ============"
6369
6370 test_79() { # bug 12743
6371         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6372         wait_delete_completed
6373
6374         BKTOTAL=$(calc_osc_kbytes kbytestotal)
6375         BKFREE=$(calc_osc_kbytes kbytesfree)
6376         BKAVAIL=$(calc_osc_kbytes kbytesavail)
6377
6378         STRING=`df -P $MOUNT | tail -n 1 | awk '{print $2","$3","$4}'`
6379         DFTOTAL=`echo $STRING | cut -d, -f1`
6380         DFUSED=`echo $STRING  | cut -d, -f2`
6381         DFAVAIL=`echo $STRING | cut -d, -f3`
6382         DFFREE=$(($DFTOTAL - $DFUSED))
6383
6384         ALLOWANCE=$((64 * $OSTCOUNT))
6385
6386         if [ $DFTOTAL -lt $(($BKTOTAL - $ALLOWANCE)) ] ||
6387            [ $DFTOTAL -gt $(($BKTOTAL + $ALLOWANCE)) ] ; then
6388                 error "df total($DFTOTAL) mismatch OST total($BKTOTAL)"
6389         fi
6390         if [ $DFFREE -lt $(($BKFREE - $ALLOWANCE)) ] ||
6391            [ $DFFREE -gt $(($BKFREE + $ALLOWANCE)) ] ; then
6392                 error "df free($DFFREE) mismatch OST free($BKFREE)"
6393         fi
6394         if [ $DFAVAIL -lt $(($BKAVAIL - $ALLOWANCE)) ] ||
6395            [ $DFAVAIL -gt $(($BKAVAIL + $ALLOWANCE)) ] ; then
6396                 error "df avail($DFAVAIL) mismatch OST avail($BKAVAIL)"
6397         fi
6398 }
6399 run_test 79 "df report consistency check ======================="
6400
6401 test_80() { # bug 10718
6402         remote_ost_nodsh && skip "remote OST with nodsh" && return
6403         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6404         # relax strong synchronous semantics for slow backends like ZFS
6405         local soc="obdfilter.*.sync_on_lock_cancel"
6406         local soc_old=$(do_facet ost1 lctl get_param -n $soc | head -n1)
6407         local hosts=
6408         if [ "$soc_old" != "never" -a "$(facet_fstype ost1)" != "ldiskfs" ]; then
6409                 hosts=$(for host in $(seq -f "ost%g" 1 $OSTCOUNT); do
6410                           facet_active_host $host; done | sort -u)
6411                 do_nodes $hosts lctl set_param $soc=never
6412         fi
6413
6414         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1M
6415         sync; sleep 1; sync
6416         local BEFORE=`date +%s`
6417         cancel_lru_locks osc
6418         local AFTER=`date +%s`
6419         local DIFF=$((AFTER-BEFORE))
6420         if [ $DIFF -gt 1 ] ; then
6421                 error "elapsed for 1M@1T = $DIFF"
6422         fi
6423
6424         [ -n "$hosts" ] && do_nodes $hosts lctl set_param $soc=$soc_old
6425
6426         rm -f $DIR/$tfile
6427 }
6428 run_test 80 "Page eviction is equally fast at high offsets too  ===="
6429
6430 test_81a() { # LU-456
6431         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6432         remote_ost_nodsh && skip "remote OST with nodsh" && return
6433         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
6434         # MUST OR with the OBD_FAIL_ONCE (0x80000000)
6435         do_facet ost1 lctl set_param fail_loc=0x80000228
6436
6437         # write should trigger a retry and success
6438         $SETSTRIPE -i 0 -c 1 $DIR/$tfile
6439         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6440         RC=$?
6441         if [ $RC -ne 0 ] ; then
6442                 error "write should success, but failed for $RC"
6443         fi
6444 }
6445 run_test 81a "OST should retry write when get -ENOSPC ==============="
6446
6447 test_81b() { # LU-456
6448         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6449         remote_ost_nodsh && skip "remote OST with nodsh" && return
6450         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
6451         # Don't OR with the OBD_FAIL_ONCE (0x80000000)
6452         do_facet ost1 lctl set_param fail_loc=0x228
6453
6454         # write should retry several times and return -ENOSPC finally
6455         $SETSTRIPE -i 0 -c 1 $DIR/$tfile
6456         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6457         RC=$?
6458         ENOSPC=28
6459         if [ $RC -ne $ENOSPC ] ; then
6460                 error "dd should fail for -ENOSPC, but succeed."
6461         fi
6462 }
6463 run_test 81b "OST should return -ENOSPC when retry still fails ======="
6464
6465 test_82() { # LU-1031
6466         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10
6467         local gid1=14091995
6468         local gid2=16022000
6469
6470         multiop_bg_pause $DIR/$tfile OG${gid1}_g${gid1}c || return 1
6471         local MULTIPID1=$!
6472         multiop_bg_pause $DIR/$tfile O_G${gid2}r10g${gid2}c || return 2
6473         local MULTIPID2=$!
6474         kill -USR1 $MULTIPID2
6475         sleep 2
6476         if [[ `ps h -o comm -p $MULTIPID2` == "" ]]; then
6477                 error "First grouplock does not block second one"
6478         else
6479                 echo "Second grouplock blocks first one"
6480         fi
6481         kill -USR1 $MULTIPID1
6482         wait $MULTIPID1
6483         wait $MULTIPID2
6484 }
6485 run_test 82 "Basic grouplock test ==============================="
6486
6487 test_99a() {
6488         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" &&
6489                 return
6490         test_mkdir -p $DIR/d99cvsroot
6491         chown $RUNAS_ID $DIR/d99cvsroot
6492         local oldPWD=$PWD       # bug 13584, use $TMP as working dir
6493         cd $TMP
6494
6495         $RUNAS cvs -d $DIR/d99cvsroot init || error "cvs init failed"
6496         cd $oldPWD
6497 }
6498 run_test 99a "cvs init ========================================="
6499
6500 test_99b() {
6501         [ -z "$(which cvs 2>/dev/null)" ] &&
6502                 skip_env "could not find cvs" && return
6503         [ ! -d $DIR/d99cvsroot ] && test_99a
6504         cd /etc/init.d
6505         # some versions of cvs import exit(1) when asked to import links or
6506         # files they can't read.  ignore those files.
6507         TOIGNORE=$(find . -type l -printf '-I %f\n' -o \
6508                         ! -perm /4 -printf '-I %f\n')
6509         $RUNAS cvs -d $DIR/d99cvsroot import -m "nomesg" $TOIGNORE \
6510                 d99reposname vtag rtag
6511 }
6512 run_test 99b "cvs import ======================================="
6513
6514 test_99c() {
6515         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
6516         [ ! -d $DIR/d99cvsroot ] && test_99b
6517         cd $DIR
6518         test_mkdir -p $DIR/d99reposname
6519         chown $RUNAS_ID $DIR/d99reposname
6520         $RUNAS cvs -d $DIR/d99cvsroot co d99reposname
6521 }
6522 run_test 99c "cvs checkout ====================================="
6523
6524 test_99d() {
6525         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
6526         [ ! -d $DIR/d99cvsroot ] && test_99c
6527         cd $DIR/d99reposname
6528         $RUNAS touch foo99
6529         $RUNAS cvs add -m 'addmsg' foo99
6530 }
6531 run_test 99d "cvs add =========================================="
6532
6533 test_99e() {
6534         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
6535         [ ! -d $DIR/d99cvsroot ] && test_99c
6536         cd $DIR/d99reposname
6537         $RUNAS cvs update
6538 }
6539 run_test 99e "cvs update ======================================="
6540
6541 test_99f() {
6542         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
6543         [ ! -d $DIR/d99cvsroot ] && test_99d
6544         cd $DIR/d99reposname
6545         $RUNAS cvs commit -m 'nomsg' foo99
6546     rm -fr $DIR/d99cvsroot
6547 }
6548 run_test 99f "cvs commit ======================================="
6549
6550 test_100() {
6551         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6552         [ "$NETTYPE" = tcp ] || \
6553                 { skip "TCP secure port test, not useful for NETTYPE=$NETTYPE" && \
6554                         return ; }
6555
6556         remote_ost_nodsh && skip "remote OST with nodsh" && return
6557         remote_mds_nodsh && skip "remote MDS with nodsh" && return
6558         remote_servers || \
6559                 { skip "useless for local single node setup" && return; }
6560
6561         netstat -tna | ( rc=1; while read PROT SND RCV LOCAL REMOTE STAT; do
6562                 [ "$PROT" != "tcp" ] && continue
6563                 RPORT=$(echo $REMOTE | cut -d: -f2)
6564                 [ "$RPORT" != "$ACCEPTOR_PORT" ] && continue
6565
6566                 rc=0
6567                 LPORT=`echo $LOCAL | cut -d: -f2`
6568                 if [ $LPORT -ge 1024 ]; then
6569                         echo "bad: $PROT $SND $RCV $LOCAL $REMOTE $STAT"
6570                         netstat -tna
6571                         error_exit "local: $LPORT > 1024, remote: $RPORT"
6572                 fi
6573         done
6574         [ "$rc" = 0 ] || error_exit "privileged port not found" )
6575 }
6576 run_test 100 "check local port using privileged port ==========="
6577
6578 function get_named_value()
6579 {
6580     local tag
6581
6582     tag=$1
6583     while read ;do
6584         line=$REPLY
6585         case $line in
6586         $tag*)
6587             echo $line | sed "s/^$tag[ ]*//"
6588             break
6589             ;;
6590         esac
6591     done
6592 }
6593
6594 export CACHE_MAX=$($LCTL get_param -n llite.*.max_cached_mb |
6595                    awk '/^max_cached_mb/ { print $2 }')
6596
6597 cleanup_101a() {
6598         $LCTL set_param -n llite.*.max_cached_mb $CACHE_MAX
6599         trap 0
6600 }
6601
6602 test_101a() {
6603         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6604         [ $MDSCOUNT -ge 2 ] && skip "skip now for >= 2 MDTs" && return #LU-4322
6605         local s
6606         local discard
6607         local nreads=10000
6608         local cache_limit=32
6609
6610         $LCTL set_param -n osc.*-osc*.rpc_stats 0
6611         trap cleanup_101a EXIT
6612         $LCTL set_param -n llite.*.read_ahead_stats 0
6613         $LCTL set_param -n llite.*.max_cached_mb $cache_limit
6614
6615         #
6616         # randomly read 10000 of 64K chunks from file 3x 32MB in size
6617         #
6618         echo "nreads: $nreads file size: $((cache_limit * 3))MB"
6619         $READS -f $DIR/$tfile -s$((cache_limit * 3192 * 1024)) -b65536 -C -n$nreads -t 180
6620
6621         discard=0
6622         for s in $($LCTL get_param -n llite.*.read_ahead_stats |
6623                 get_named_value 'read but discarded' | cut -d" " -f1); do
6624                         discard=$(($discard + $s))
6625         done
6626         cleanup_101a
6627
6628         if [[ $(($discard * 10)) -gt $nreads ]]; then
6629                 $LCTL get_param osc.*-osc*.rpc_stats
6630                 $LCTL get_param llite.*.read_ahead_stats
6631                 error "too many ($discard) discarded pages"
6632         fi
6633         rm -f $DIR/$tfile || true
6634 }
6635 run_test 101a "check read-ahead for random reads ================"
6636
6637 setup_test101bc() {
6638         test_mkdir -p $DIR/$tdir
6639         local STRIPE_SIZE=$1
6640         local FILE_LENGTH=$2
6641         STRIPE_OFFSET=0
6642
6643         local FILE_SIZE_MB=$((FILE_LENGTH / STRIPE_SIZE))
6644
6645         local list=$(comma_list $(osts_nodes))
6646         set_osd_param $list '' read_cache_enable 0
6647         set_osd_param $list '' writethrough_cache_enable 0
6648
6649         trap cleanup_test101bc EXIT
6650         # prepare the read-ahead file
6651         $SETSTRIPE -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $OSTCOUNT $DIR/$tfile
6652
6653         dd if=/dev/zero of=$DIR/$tfile bs=$STRIPE_SIZE \
6654                                 count=$FILE_SIZE_MB 2> /dev/null
6655
6656 }
6657
6658 cleanup_test101bc() {
6659         trap 0
6660         rm -rf $DIR/$tdir
6661         rm -f $DIR/$tfile
6662
6663         local list=$(comma_list $(osts_nodes))
6664         set_osd_param $list '' read_cache_enable 1
6665         set_osd_param $list '' writethrough_cache_enable 1
6666 }
6667
6668 calc_total() {
6669         awk 'BEGIN{total=0}; {total+=$1}; END{print total}'
6670 }
6671
6672 ra_check_101() {
6673         local READ_SIZE=$1
6674         local STRIPE_SIZE=$2
6675         local FILE_LENGTH=$3
6676         local RA_INC=1048576
6677         local STRIDE_LENGTH=$((STRIPE_SIZE/READ_SIZE))
6678         local discard_limit=$((((STRIDE_LENGTH - 1)*3/(STRIDE_LENGTH*OSTCOUNT))* \
6679                              (STRIDE_LENGTH*OSTCOUNT - STRIDE_LENGTH)))
6680         DISCARD=$($LCTL get_param -n llite.*.read_ahead_stats |
6681                         get_named_value 'read but discarded' |
6682                         cut -d" " -f1 | calc_total)
6683         if [[ $DISCARD -gt $discard_limit ]]; then
6684                 $LCTL get_param llite.*.read_ahead_stats
6685                 error "Too many ($DISCARD) discarded pages with size (${READ_SIZE})"
6686         else
6687                 echo "Read-ahead success for size ${READ_SIZE}"
6688         fi
6689 }
6690
6691 test_101b() {
6692         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6693         [[ $OSTCOUNT -lt 2 ]] &&
6694                 skip_env "skipping stride IO stride-ahead test" && return
6695         local STRIPE_SIZE=1048576
6696         local STRIDE_SIZE=$((STRIPE_SIZE*OSTCOUNT))
6697         if [ $SLOW == "yes" ]; then
6698                 local FILE_LENGTH=$((STRIDE_SIZE * 64))
6699         else
6700                 local FILE_LENGTH=$((STRIDE_SIZE * 8))
6701         fi
6702
6703         local ITERATION=$((FILE_LENGTH / STRIDE_SIZE))
6704
6705         # prepare the read-ahead file
6706         setup_test101bc $STRIPE_SIZE $FILE_LENGTH
6707         cancel_lru_locks osc
6708         for BIDX in 2 4 8 16 32 64 128 256
6709         do
6710                 local BSIZE=$((BIDX*4096))
6711                 local READ_COUNT=$((STRIPE_SIZE/BSIZE))
6712                 local STRIDE_LENGTH=$((STRIDE_SIZE/BSIZE))
6713                 local OFFSET=$((STRIPE_SIZE/BSIZE*(OSTCOUNT - 1)))
6714                 $LCTL set_param -n llite.*.read_ahead_stats 0
6715                 $READS -f $DIR/$tfile  -l $STRIDE_LENGTH -o $OFFSET \
6716                               -s $FILE_LENGTH -b $STRIPE_SIZE -a $READ_COUNT -n $ITERATION
6717                 cancel_lru_locks osc
6718                 ra_check_101 $BSIZE $STRIPE_SIZE $FILE_LENGTH
6719         done
6720         cleanup_test101bc
6721         true
6722 }
6723 run_test 101b "check stride-io mode read-ahead ================="
6724
6725 test_101c() {
6726         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6727         local STRIPE_SIZE=1048576
6728         local FILE_LENGTH=$((STRIPE_SIZE*100))
6729         local nreads=10000
6730         local osc_rpc_stats
6731
6732         setup_test101bc $STRIPE_SIZE $FILE_LENGTH
6733
6734         cancel_lru_locks osc
6735         $LCTL set_param osc.*.rpc_stats 0
6736         $READS -f $DIR/$tfile -s$FILE_LENGTH -b65536 -n$nreads -t 180
6737         for osc_rpc_stats in $($LCTL get_param -N osc.*.rpc_stats); do
6738                 local stats=$($LCTL get_param -n $osc_rpc_stats)
6739                 local lines=$(echo "$stats" | awk 'END {print NR;}')
6740                 local size
6741
6742                 if [ $lines -le 20 ]; then
6743                         continue
6744                 fi
6745                 for size in 1 2 4 8; do
6746                         local rpc=$(echo "$stats" |
6747                                     awk '($1 == "'$size':") {print $2; exit; }')
6748                         [ $rpc != 0 ] &&
6749                                 error "Small $((size*4))k read IO $rpc !"
6750                 done
6751                 echo "$osc_rpc_stats check passed!"
6752         done
6753         cleanup_test101bc
6754         true
6755 }
6756 run_test 101c "check stripe_size aligned read-ahead ================="
6757
6758 set_read_ahead() {
6759         $LCTL get_param -n llite.*.max_read_ahead_mb | head -n 1
6760         $LCTL set_param -n llite.*.max_read_ahead_mb $1 > /dev/null 2>&1
6761 }
6762
6763 test_101d() {
6764         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6765         local file=$DIR/$tfile
6766         local sz_MB=${FILESIZE_101d:-500}
6767         local ra_MB=${READAHEAD_MB:-40}
6768
6769         local free_MB=$(($(df -P $DIR | tail -n 1 | awk '{ print $4 }') / 1024))
6770         [ $free_MB -lt $sz_MB ] &&
6771                 skip "Need free space ${sz_MB}M, have ${free_MB}M" && return
6772
6773         echo "Create test file $file size ${sz_MB}M, ${free_MB}M free"
6774         $SETSTRIPE -c -1 $file || error "setstripe failed"
6775
6776         dd if=/dev/zero of=$file bs=1M count=$sz_MB || error "dd failed"
6777         echo Cancel LRU locks on lustre client to flush the client cache
6778         cancel_lru_locks osc
6779
6780         echo Disable read-ahead
6781         local old_READAHEAD=$(set_read_ahead 0)
6782
6783         echo Reading the test file $file with read-ahead disabled
6784         local raOFF=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$sz_MB")
6785
6786         echo Cancel LRU locks on lustre client to flush the client cache
6787         cancel_lru_locks osc
6788         echo Enable read-ahead with ${ra_MB}MB
6789         set_read_ahead $ra_MB
6790
6791         echo Reading the test file $file with read-ahead enabled
6792         local raON=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$sz_MB")
6793
6794         echo "read-ahead disabled time read $raOFF"
6795         echo "read-ahead enabled  time read $raON"
6796
6797         set_read_ahead $old_READAHEAD
6798         rm -f $file
6799         wait_delete_completed
6800
6801         [ $raOFF -le 1 -o $raON -lt $raOFF ] ||
6802                 error "readahead ${raON}s > no-readahead ${raOFF}s ${sz_MB}M"
6803 }
6804 run_test 101d "file read with and without read-ahead enabled"
6805
6806 test_101e() {
6807         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6808         local file=$DIR/$tfile
6809         local size_KB=500  #KB
6810         local count=100
6811         local bsize=1024
6812
6813         local free_KB=$(df -P $DIR | tail -n 1 | awk '{ print $4 }')
6814         local need_KB=$((count * size_KB))
6815         [[ $free_KB -le $need_KB ]] &&
6816                 skip_env "Need free space $need_KB, have $free_KB" && return
6817
6818         echo "Creating $count ${size_KB}K test files"
6819         for ((i = 0; i < $count; i++)); do
6820                 dd if=/dev/zero of=$file.$i bs=$bsize count=$size_KB 2>/dev/null
6821         done
6822
6823         echo "Cancel LRU locks on lustre client to flush the client cache"
6824         cancel_lru_locks osc
6825
6826         echo "Reset readahead stats"
6827         $LCTL set_param -n llite.*.read_ahead_stats 0
6828
6829         for ((i = 0; i < $count; i++)); do
6830                 dd if=$file.$i of=/dev/null bs=$bsize count=$size_KB 2>/dev/null
6831         done
6832
6833         local miss=$($LCTL get_param -n llite.*.read_ahead_stats |
6834                      get_named_value 'misses' | cut -d" " -f1 | calc_total)
6835
6836         for ((i = 0; i < $count; i++)); do
6837                 rm -rf $file.$i 2>/dev/null
6838         done
6839
6840         #10000 means 20% reads are missing in readahead
6841         [[ $miss -lt 10000 ]] ||  error "misses too much for small reads"
6842 }
6843 run_test 101e "check read-ahead for small read(1k) for small files(500k)"
6844
6845 test_101f() {
6846         which iozone || { skip "no iozone installed" && return; }
6847
6848         local old_debug=$($LCTL get_param debug)
6849         old_debug=${old_debug#*=}
6850         $LCTL set_param debug="reada mmap"
6851
6852         # create a test file
6853         iozone -i 0 -+n -r 1m -s 128m -w -f $DIR/$tfile > /dev/null 2>&1
6854
6855         echo Cancel LRU locks on lustre client to flush the client cache
6856         cancel_lru_locks osc
6857
6858         echo Reset readahead stats
6859         $LCTL set_param -n llite.*.read_ahead_stats 0
6860
6861         echo mmap read the file with small block size
6862         iozone -i 1 -u 1 -l 1 -+n -r 32k -s 128m -B -f $DIR/$tfile \
6863                 > /dev/null 2>&1
6864
6865         echo checking missing pages
6866         $LCTL get_param llite.*.read_ahead_stats
6867         local miss=$($LCTL get_param -n llite.*.read_ahead_stats |
6868                         get_named_value 'misses' | cut -d" " -f1 | calc_total)
6869
6870         $LCTL set_param debug="$old_debug"
6871         [ $miss -lt 3 ] || error "misses too much pages ('$miss')!"
6872         rm -f $DIR/$tfile
6873 }
6874 run_test 101f "check mmap read performance"
6875
6876 test_101g_brw_size_test() {
6877         local mb=$1
6878         local pages=$((mb * 1048576 / $(page_size)))
6879
6880         $LCTL set_param osc.*.max_pages_per_rpc=${mb}M ||
6881                 { error "unable to set max_pages_per_rpc=${mb}M"; return 1; }
6882         for mp in $($LCTL get_param -n osc.*.max_pages_per_rpc); do
6883                 [ $mp -ne $pages ] && error "max_pages_per_rpc $mp != $pages" &&
6884                         return 2
6885         done
6886
6887         $LCTL set_param -n osc.*.rpc_stats=0
6888
6889         # 10 RPCs should be enough for the test
6890         local count=10
6891         dd if=/dev/zero of=$DIR/$tfile bs=${mb}M count=$count ||
6892                 { error "dd write ${mb} MB blocks failed"; return 3; }
6893         cancel_lru_locks osc
6894         dd of=/dev/null if=$DIR/$tfile bs=${mb}M count=$count ||
6895                 { error "dd write ${mb} MB blocks failed"; return 4; }
6896
6897         # calculate number of full-sized read and write RPCs
6898         rpcs=($($LCTL get_param -n 'osc.*.rpc_stats' |
6899                 sed -n '/pages per rpc/,/^$/p' |
6900                 awk '/'$pages':/ { reads += $2; writes += $5 };' \
6901                 'END { print reads,writes }'))
6902         [ ${rpcs[0]} -ne $count ] && error "${rpcs[0]} != $count read RPCs" &&
6903                 return 5
6904         [ ${rpcs[1]} -ne $count ] && error "${rpcs[1]} != $count write RPCs" &&
6905                 return 6
6906
6907         return 0
6908 }
6909
6910 test_101g() {
6911         local rpcs
6912         local osts=$(get_facets OST)
6913         local list=$(comma_list $(osts_nodes))
6914         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
6915         local brw_size="obdfilter.*.brw_size"
6916
6917         $LFS setstripe -i 0 -c 1 $DIR/$tfile
6918
6919         local orig_mb=$(do_facet ost1 $LCTL get_param -n $brw_size | head -n 1)
6920         if [ $(lustre_version_code ost1) -ge $(version_code 2.8.52) ]; then
6921                 [ $(lustre_version_code ost1) -ge $(version_code 2.9.52) ] &&
6922                         suffix="M"
6923                 if [[ $orig_mb < 16 ]]; then
6924                         save_lustre_params $osts "$brw_size" > $p
6925                         do_nodes $list $LCTL set_param -n $brw_size=16$suffix ||
6926                                 error "set 16MB RPC size failed"
6927
6928                         echo "remount client to enable new RPC size"
6929                         remount_client $MOUNT || error "remount_client failed"
6930                 fi
6931
6932                 test_101g_brw_size_test 16 || error "16MB RPC test failed"
6933                 # should be able to set brw_size=12, but no rpc_stats for that
6934                 test_101g_brw_size_test 8 || error "8MB RPC test failed"
6935         fi
6936
6937         test_101g_brw_size_test 4 || error "4MB RPC test failed"
6938
6939         if [[ $orig_mb < 16 ]]; then
6940                 restore_lustre_params < $p
6941                 remount_client $MOUNT || error "remount_client restore failed"
6942         fi
6943
6944         rm -f $p $DIR/$tfile
6945 }
6946 run_test 101g "Big bulk(4/16 MiB) readahead"
6947
6948 setup_test102() {
6949         test_mkdir -p $DIR/$tdir
6950         chown $RUNAS_ID $DIR/$tdir
6951         STRIPE_SIZE=65536
6952         STRIPE_OFFSET=1
6953         STRIPE_COUNT=$OSTCOUNT
6954         [[ $OSTCOUNT -gt 4 ]] && STRIPE_COUNT=4
6955
6956         trap cleanup_test102 EXIT
6957         cd $DIR
6958         $1 $SETSTRIPE -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $STRIPE_COUNT $tdir
6959         cd $DIR/$tdir
6960         for num in 1 2 3 4; do
6961                 for count in $(seq 1 $STRIPE_COUNT); do
6962                         for idx in $(seq 0 $[$STRIPE_COUNT - 1]); do
6963                                 local size=`expr $STRIPE_SIZE \* $num`
6964                                 local file=file"$num-$idx-$count"
6965                                 $1 $SETSTRIPE -S $size -i $idx -c $count $file
6966                         done
6967                 done
6968         done
6969
6970         cd $DIR
6971         $1 $TAR cf $TMP/f102.tar $tdir --xattrs
6972 }
6973
6974 cleanup_test102() {
6975         trap 0
6976         rm -f $TMP/f102.tar
6977         rm -rf $DIR/d0.sanity/d102
6978 }
6979
6980 test_102a() {
6981         local testfile=$DIR/$tfile
6982
6983         touch $testfile
6984
6985         [ "$UID" != 0 ] && skip_env "must run as root" && return
6986         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep xattr)" ] &&
6987                 skip_env "must have user_xattr" && return
6988
6989         [ -z "$(which setfattr 2>/dev/null)" ] &&
6990                 skip_env "could not find setfattr" && return
6991
6992         echo "set/get xattr..."
6993         setfattr -n trusted.name1 -v value1 $testfile ||
6994                 error "setfattr -n trusted.name1=value1 $testfile failed"
6995         getfattr -n trusted.name1 $testfile 2> /dev/null |
6996           grep "trusted.name1=.value1" ||
6997                 error "$testfile missing trusted.name1=value1"
6998
6999         setfattr -n user.author1 -v author1 $testfile ||
7000                 error "setfattr -n user.author1=author1 $testfile failed"
7001         getfattr -n user.author1 $testfile 2> /dev/null |
7002           grep "user.author1=.author1" ||
7003                 error "$testfile missing trusted.author1=author1"
7004
7005         echo "listxattr..."
7006         setfattr -n trusted.name2 -v value2 $testfile ||
7007                 error "$testfile unable to set trusted.name2"
7008         setfattr -n trusted.name3 -v value3 $testfile ||
7009                 error "$testfile unable to set trusted.name3"
7010         [ $(getfattr -d -m "^trusted" $testfile 2> /dev/null |
7011             grep "trusted.name" | wc -l) -eq 3 ] ||
7012                 error "$testfile missing 3 trusted.name xattrs"
7013
7014         setfattr -n user.author2 -v author2 $testfile ||
7015                 error "$testfile unable to set user.author2"
7016         setfattr -n user.author3 -v author3 $testfile ||
7017                 error "$testfile unable to set user.author3"
7018         [ $(getfattr -d -m "^user" $testfile 2> /dev/null |
7019             grep "user.author" | wc -l) -eq 3 ] ||
7020                 error "$testfile missing 3 user.author xattrs"
7021
7022         echo "remove xattr..."
7023         setfattr -x trusted.name1 $testfile ||
7024                 error "$testfile error deleting trusted.name1"
7025         getfattr -d -m trusted $testfile 2> /dev/null | grep "trusted.name1" &&
7026                 error "$testfile did not delete trusted.name1 xattr"
7027
7028         setfattr -x user.author1 $testfile ||
7029                 error "$testfile error deleting user.author1"
7030         getfattr -d -m user $testfile 2> /dev/null | grep "user.author1" &&
7031                 error "$testfile did not delete trusted.name1 xattr"
7032
7033         # b10667: setting lustre special xattr be silently discarded
7034         echo "set lustre special xattr ..."
7035         setfattr -n "trusted.lov" -v "invalid value" $testfile ||
7036                 error "$testfile allowed setting trusted.lov"
7037 }
7038 run_test 102a "user xattr test =================================="
7039
7040 test_102b() {
7041         [ -z "$(which setfattr 2>/dev/null)" ] &&
7042                 skip_env "could not find setfattr" && return
7043
7044         # b10930: get/set/list trusted.lov xattr
7045         echo "get/set/list trusted.lov xattr ..."
7046         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping 2-stripe test" && return
7047         local testfile=$DIR/$tfile
7048         $SETSTRIPE -S 65536 -i 1 -c $OSTCOUNT $testfile ||
7049                 error "setstripe failed"
7050         local STRIPECOUNT=$($GETSTRIPE -c $testfile) ||
7051                 error "getstripe failed"
7052         getfattr -d -m "^trusted" $testfile 2>/dev/null | grep "trusted.lov" ||
7053                 error "can't get trusted.lov from $testfile"
7054
7055         local testfile2=${testfile}2
7056         local value=$(getfattr -n trusted.lov $testfile 2>/dev/null |
7057                         grep "trusted.lov" | sed -e 's/[^=]\+=//')
7058
7059         $MCREATE $testfile2
7060         setfattr -n trusted.lov -v $value $testfile2
7061         local stripe_size=$($GETSTRIPE -S $testfile2)
7062         local stripe_count=$($GETSTRIPE -c $testfile2)
7063         [[ $stripe_size -eq 65536 ]] ||
7064                 error "stripe size $stripe_size != 65536"
7065         [[ $stripe_count -eq $STRIPECOUNT ]] ||
7066                 error "stripe count $stripe_count != $STRIPECOUNT"
7067         rm -f $DIR/$tfile
7068 }
7069 run_test 102b "getfattr/setfattr for trusted.lov EAs ============"
7070
7071 test_102c() {
7072         [ -z "$(which setfattr 2>/dev/null)" ] &&
7073                 skip_env "could not find setfattr" && return
7074
7075         # b10930: get/set/list lustre.lov xattr
7076         echo "get/set/list lustre.lov xattr ..."
7077         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping 2-stripe test" && return
7078         test_mkdir -p $DIR/$tdir
7079         chown $RUNAS_ID $DIR/$tdir
7080         local testfile=$DIR/$tdir/$tfile
7081         $RUNAS $SETSTRIPE -S 65536 -i 1 -c $OSTCOUNT $testfile ||
7082                 error "setstripe failed"
7083         local STRIPECOUNT=$($RUNAS $GETSTRIPE -c $testfile) ||
7084                 error "getstripe failed"
7085         $RUNAS getfattr -d -m "^lustre" $testfile 2> /dev/null | \
7086         grep "lustre.lov" || error "can't get lustre.lov from $testfile"
7087
7088         local testfile2=${testfile}2
7089         local value=`getfattr -n lustre.lov $testfile 2> /dev/null | \
7090                      grep "lustre.lov" |sed -e 's/[^=]\+=//'  `
7091
7092         $RUNAS $MCREATE $testfile2
7093         $RUNAS setfattr -n lustre.lov -v $value $testfile2
7094         local stripe_size=$($RUNAS $GETSTRIPE -S $testfile2)
7095         local stripe_count=$($RUNAS $GETSTRIPE -c $testfile2)
7096         [ $stripe_size -eq 65536 ] || error "stripe size $stripe_size != 65536"
7097         [ $stripe_count -eq $STRIPECOUNT ] ||
7098                 error "stripe count $stripe_count != $STRIPECOUNT"
7099 }
7100 run_test 102c "non-root getfattr/setfattr for lustre.lov EAs ==========="
7101
7102 compare_stripe_info1() {
7103         local stripe_index_all_zero=true
7104
7105         for num in 1 2 3 4; do
7106                 for count in $(seq 1 $STRIPE_COUNT); do
7107                         for offset in $(seq 0 $[$STRIPE_COUNT - 1]); do
7108                                 local size=$((STRIPE_SIZE * num))
7109                                 local file=file"$num-$offset-$count"
7110                                 stripe_size=$($LFS getstripe -S $PWD/$file)
7111                                 [[ $stripe_size -ne $size ]] &&
7112                                     error "$file: size $stripe_size != $size"
7113                                 stripe_count=$($LFS getstripe -c $PWD/$file)
7114                                 # allow fewer stripes to be created, ORI-601
7115                                 [[ $stripe_count -lt $(((3 * count + 3) / 4)) ]] &&
7116                                     error "$file: count $stripe_count != $count"
7117                                 stripe_index=$($LFS getstripe -i $PWD/$file)
7118                                 [[ $stripe_index -ne 0 ]] &&
7119                                         stripe_index_all_zero=false
7120                         done
7121                 done
7122         done
7123         $stripe_index_all_zero &&
7124                 error "all files are being extracted starting from OST index 0"
7125         return 0
7126 }
7127
7128 find_lustre_tar() {
7129         [ -n "$(which tar 2>/dev/null)" ] &&
7130                 strings $(which tar) | grep -q "lustre" && echo tar
7131 }
7132
7133 test_102d() {
7134         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7135         # b10930: tar test for trusted.lov xattr
7136         TAR=$(find_lustre_tar)
7137         [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
7138         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping N-stripe test" && return
7139         setup_test102
7140         test_mkdir -p $DIR/d102d
7141         $TAR xf $TMP/f102.tar -C $DIR/d102d --xattrs
7142         cd $DIR/d102d/$tdir
7143         compare_stripe_info1
7144 }
7145 run_test 102d "tar restore stripe info from tarfile,not keep osts ==========="
7146
7147 test_102f() {
7148         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7149         # b10930: tar test for trusted.lov xattr
7150         TAR=$(find_lustre_tar)
7151         [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
7152         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping N-stripe test" && return
7153         setup_test102
7154         test_mkdir -p $DIR/d102f
7155         cd $DIR
7156         $TAR cf - --xattrs $tdir | $TAR xf - --xattrs -C $DIR/d102f
7157         cd $DIR/d102f/$tdir
7158         compare_stripe_info1
7159 }
7160 run_test 102f "tar copy files, not keep osts ==========="
7161
7162 grow_xattr() {
7163         local xsize=${1:-1024}  # in bytes
7164         local file=$DIR/$tfile
7165
7166         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep xattr)" ] &&
7167                 skip "must have user_xattr" && return 0
7168         [ -z "$(which setfattr 2>/dev/null)" ] &&
7169                 skip_env "could not find setfattr" && return 0
7170         [ -z "$(which getfattr 2>/dev/null)" ] &&
7171                 skip_env "could not find getfattr" && return 0
7172
7173         touch $file
7174
7175         local value="$(generate_string $xsize)"
7176
7177         local xbig=trusted.big
7178         log "save $xbig on $file"
7179         setfattr -n $xbig -v $value $file ||
7180                 error "saving $xbig on $file failed"
7181
7182         local orig=$(get_xattr_value $xbig $file)
7183         [[ "$orig" != "$value" ]] && error "$xbig different after saving $xbig"
7184
7185         local xsml=trusted.sml
7186         log "save $xsml on $file"
7187         setfattr -n $xsml -v val $file || error "saving $xsml on $file failed"
7188
7189         local new=$(get_xattr_value $xbig $file)
7190         [[ "$new" != "$orig" ]] && error "$xbig different after saving $xsml"
7191
7192         log "grow $xsml on $file"
7193         setfattr -n $xsml -v "$value" $file ||
7194                 error "growing $xsml on $file failed"
7195
7196         new=$(get_xattr_value $xbig $file)
7197         [[ "$new" != "$orig" ]] && error "$xbig different after growing $xsml"
7198         log "$xbig still valid after growing $xsml"
7199
7200         rm -f $file
7201 }
7202
7203 test_102h() { # bug 15777
7204         grow_xattr 1024
7205 }
7206 run_test 102h "grow xattr from inside inode to external block"
7207
7208 test_102ha() {
7209         large_xattr_enabled || { skip "large_xattr disabled" && return; }
7210         grow_xattr $(max_xattr_size)
7211 }
7212 run_test 102ha "grow xattr from inside inode to external inode"
7213
7214 test_102i() { # bug 17038
7215         [ -z "$(which getfattr 2>/dev/null)" ] &&
7216                 skip "could not find getfattr" && return
7217         touch $DIR/$tfile
7218         ln -s $DIR/$tfile $DIR/${tfile}link
7219         getfattr -n trusted.lov $DIR/$tfile ||
7220                 error "lgetxattr on $DIR/$tfile failed"
7221         getfattr -h -n trusted.lov $DIR/${tfile}link 2>&1 |
7222                 grep -i "no such attr" ||
7223                 error "error for lgetxattr on $DIR/${tfile}link is not ENODATA"
7224         rm -f $DIR/$tfile $DIR/${tfile}link
7225 }
7226 run_test 102i "lgetxattr test on symbolic link ============"
7227
7228 test_102j() {
7229         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7230         TAR=$(find_lustre_tar)
7231         [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
7232         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping N-stripe test" && return
7233         setup_test102 "$RUNAS"
7234         test_mkdir -p $DIR/d102j
7235         chown $RUNAS_ID $DIR/d102j
7236         $RUNAS $TAR xf $TMP/f102.tar -C $DIR/d102j --xattrs
7237         cd $DIR/d102j/$tdir
7238         compare_stripe_info1 "$RUNAS"
7239 }
7240 run_test 102j "non-root tar restore stripe info from tarfile, not keep osts ==="
7241
7242 test_102k() {
7243         [ -z "$(which setfattr 2>/dev/null)" ] &&
7244                 skip "could not find setfattr" && return
7245         touch $DIR/$tfile
7246         # b22187 just check that does not crash for regular file.
7247         setfattr -n trusted.lov $DIR/$tfile
7248         # b22187 'setfattr -n trusted.lov' should work as remove LOV EA for directories
7249         local test_kdir=$DIR/d102k
7250         test_mkdir $test_kdir
7251         local default_size=`$GETSTRIPE -S $test_kdir`
7252         local default_count=`$GETSTRIPE -c $test_kdir`
7253         local default_offset=`$GETSTRIPE -i $test_kdir`
7254         $SETSTRIPE -S 65536 -i 0 -c $OSTCOUNT $test_kdir ||
7255                 error 'dir setstripe failed'
7256         setfattr -n trusted.lov $test_kdir
7257         local stripe_size=`$GETSTRIPE -S $test_kdir`
7258         local stripe_count=`$GETSTRIPE -c $test_kdir`
7259         local stripe_offset=`$GETSTRIPE -i $test_kdir`
7260         [ $stripe_size -eq $default_size ] ||
7261                 error "stripe size $stripe_size != $default_size"
7262         [ $stripe_count -eq $default_count ] ||
7263                 error "stripe count $stripe_count != $default_count"
7264         [ $stripe_offset -eq $default_offset ] ||
7265                 error "stripe offset $stripe_offset != $default_offset"
7266         rm -rf $DIR/$tfile $test_kdir
7267 }
7268 run_test 102k "setfattr without parameter of value shouldn't cause a crash"
7269
7270 test_102l() {
7271         [ -z "$(which getfattr 2>/dev/null)" ] &&
7272                 skip "could not find getfattr" && return
7273
7274         # LU-532 trusted. xattr is invisible to non-root
7275         local testfile=$DIR/$tfile
7276
7277         touch $testfile
7278
7279         echo "listxattr as user..."
7280         chown $RUNAS_ID $testfile
7281         $RUNAS getfattr -d -m '.*' $testfile 2>&1 |
7282             grep -q "trusted" &&
7283                 error "$testfile trusted xattrs are user visible"
7284
7285         return 0;
7286 }
7287 run_test 102l "listxattr size test =================================="
7288
7289 test_102m() { # LU-3403 llite: error of listxattr when buffer is small
7290         local path=$DIR/$tfile
7291         touch $path
7292
7293         listxattr_size_check $path || error "listattr_size_check $path failed"
7294 }
7295 run_test 102m "Ensure listxattr fails on small bufffer ========"
7296
7297 cleanup_test102
7298
7299 getxattr() { # getxattr path name
7300         # Return the base64 encoding of the value of xattr name on path.
7301         local path=$1
7302         local name=$2
7303
7304         # # getfattr --absolute-names --encoding=base64 --name=trusted.lov $path
7305         # file: $path
7306         # trusted.lov=0s0AvRCwEAAAAGAAAAAAAAAAAEAAACAAAAAAAQAAEAA...AAAAAAAAA=
7307         #
7308         # We print just 0s0AvRCwEAAAAGAAAAAAAAAAAEAAACAAAAAAAQAAEAA...AAAAAAAAA=
7309
7310         getfattr --absolute-names --encoding=base64 --name=$name $path |
7311                 awk -F= -v name=$name '$1 == name {
7312                         print substr($0, index($0, "=") + 1);
7313         }'
7314 }
7315
7316 test_102n() { # LU-4101 mdt: protect internal xattrs
7317         [ -z "$(which setfattr 2>/dev/null)" ] &&
7318                 skip "could not find setfattr" && return
7319         if [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.50) ]
7320         then
7321                 skip "MDT < 2.5.50 allows setxattr on internal trusted xattrs"
7322                 return
7323         fi
7324
7325         local file0=$DIR/$tfile.0
7326         local file1=$DIR/$tfile.1
7327         local xattr0=$TMP/$tfile.0
7328         local xattr1=$TMP/$tfile.1
7329         local namelist="lov lma lmv link fid version som hsm"
7330         local name
7331         local value
7332
7333         rm -rf $file0 $file1 $xattr0 $xattr1
7334         touch $file0 $file1
7335
7336         # Get 'before' xattrs of $file1.
7337         getfattr --absolute-names --dump --match=- $file1 > $xattr0
7338
7339         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.53) ] &&
7340                 namelist+=" lfsck_namespace"
7341         for name in $namelist; do
7342                 # Try to copy xattr from $file0 to $file1.
7343                 value=$(getxattr $file0 trusted.$name 2> /dev/null)
7344
7345                 setfattr --name=trusted.$name --value="$value" $file1 ||
7346                         error "setxattr 'trusted.$name' failed"
7347
7348                 # Try to set a garbage xattr.
7349                 value=0sVGhlIHF1aWNrIGJyb3duIGZveCBqdW1wcyBvdmVyIGl0c2VsZi4=
7350
7351                 setfattr --name=trusted.$name --value="$value" $file1 ||
7352                         error "setxattr 'trusted.$name' failed"
7353
7354                 # Try to remove the xattr from $file1. We don't care if this
7355                 # appears to succeed or fail, we just don't want there to be
7356                 # any changes or crashes.
7357                 setfattr --remove=$trusted.$name $file1 2> /dev/null
7358         done
7359
7360         if [ $(lustre_version_code $SINGLEMDS) -gt $(version_code 2.6.50) ]
7361         then
7362                 name="lfsck_ns"
7363                 # Try to copy xattr from $file0 to $file1.
7364                 value=$(getxattr $file0 trusted.$name 2> /dev/null)
7365
7366                 setfattr --name=trusted.$name --value="$value" $file1 ||
7367                         error "setxattr 'trusted.$name' failed"
7368
7369                 # Try to set a garbage xattr.
7370                 value=0sVGhlIHF1aWNrIGJyb3duIGZveCBqdW1wcyBvdmVyIGl0c2VsZi4=
7371
7372                 setfattr --name=trusted.$name --value="$value" $file1 ||
7373                         error "setxattr 'trusted.$name' failed"
7374
7375                 # Try to remove the xattr from $file1. We don't care if this
7376                 # appears to succeed or fail, we just don't want there to be
7377                 # any changes or crashes.
7378                 setfattr --remove=$trusted.$name $file1 2> /dev/null
7379         fi
7380
7381         # Get 'after' xattrs of file1.
7382         getfattr --absolute-names --dump --match=- $file1 > $xattr1
7383
7384         if ! diff $xattr0 $xattr1; then
7385                 error "before and after xattrs of '$file1' differ"
7386         fi
7387
7388         rm -rf $file0 $file1 $xattr0 $xattr1
7389
7390         return 0
7391 }
7392 run_test 102n "silently ignore setxattr on internal trusted xattrs"
7393
7394 test_102p() { # LU-4703 setxattr did not check ownership
7395         local testfile=$DIR/$tfile
7396
7397         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.56) ] &&
7398                 skip "MDS needs to be at least 2.5.56" && return
7399
7400         touch $testfile
7401
7402         echo "setfacl as user..."
7403         $RUNAS setfacl -m "u:$RUNAS_ID:rwx" $testfile
7404         [ $? -ne 0 ] || error "setfacl by $RUNAS_ID was allowed on $testfile"
7405
7406         echo "setfattr as user..."
7407         setfacl -m "u:$RUNAS_ID:---" $testfile
7408         $RUNAS setfattr -x system.posix_acl_access $testfile
7409         [ $? -ne 0 ] || error "setfattr by $RUNAS_ID was allowed on $testfile"
7410 }
7411 run_test 102p "check setxattr(2) correctly fails without permission"
7412
7413 test_102q() {
7414         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.92) ] &&
7415                 skip "MDS needs to be at least 2.6.92" && return
7416         orphan_linkea_check $DIR/$tfile || error "orphan_linkea_check"
7417 }
7418 run_test 102q "flistxattr should not return trusted.link EAs for orphans"
7419
7420 test_102r() {
7421         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.93) ] &&
7422                 skip "MDS needs to be at least 2.6.93" && return
7423         touch $DIR/$tfile || error "touch"
7424         setfattr -n user.$(basename $tfile) $DIR/$tfile || error "setfattr"
7425         getfattr -n user.$(basename $tfile) $DIR/$tfile || error "getfattr"
7426         rm $DIR/$tfile || error "rm"
7427
7428         #normal directory
7429         mkdir -p $DIR/$tdir || error "mkdir"
7430         setfattr -n user.$(basename $tdir) $DIR/$tdir || error "setfattr dir"
7431         getfattr -n user.$(basename $tdir) $DIR/$tdir || error "getfattr dir"
7432         setfattr -x user.$(basename $tdir) $DIR/$tdir ||
7433                 error "$testfile error deleting user.author1"
7434         getfattr -d -m user.$(basename $tdir) 2> /dev/null |
7435                 grep "user.$(basename $tdir)" &&
7436                 error "$tdir did not delete user.$(basename $tdir)"
7437         rmdir $DIR/$tdir || error "rmdir"
7438
7439         #striped directory
7440         test_mkdir -p $DIR/$tdir || error "make striped dir"
7441         setfattr -n user.$(basename $tdir) $DIR/$tdir || error "setfattr dir"
7442         getfattr -n user.$(basename $tdir) $DIR/$tdir || error "getfattr dir"
7443         setfattr -x user.$(basename $tdir) $DIR/$tdir ||
7444                 error "$testfile error deleting user.author1"
7445         getfattr -d -m user.$(basename $tdir) 2> /dev/null |
7446                 grep "user.$(basename $tdir)" &&
7447                 error "$tdir did not delete user.$(basename $tdir)"
7448         rmdir $DIR/$tdir || error "rm striped dir"
7449 }
7450 run_test 102r "set EAs with empty values"
7451
7452 run_acl_subtest()
7453 {
7454     $LUSTRE/tests/acl/run $LUSTRE/tests/acl/$1.test
7455     return $?
7456 }
7457
7458 test_103a() {
7459         [ "$UID" != 0 ] && skip_env "must run as root" && return
7460         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl)" ] &&
7461                 skip "must have acl enabled" && return
7462         [ -z "$(which setfacl 2>/dev/null)" ] &&
7463                 skip_env "could not find setfacl" && return
7464         $GSS && skip "could not run under gss" && return
7465         remote_mds_nodsh && skip "remote MDS with nodsh" && return
7466
7467         gpasswd -a daemon bin                           # LU-5641
7468         do_facet $SINGLEMDS gpasswd -a daemon bin       # LU-5641
7469
7470         declare -a identity_old
7471
7472         for num in $(seq $MDSCOUNT); do
7473                 switch_identity $num true || identity_old[$num]=$?
7474         done
7475
7476         SAVE_UMASK=$(umask)
7477         umask 0022
7478         mkdir -p $DIR/$tdir
7479         cd $DIR/$tdir
7480
7481         echo "performing cp ..."
7482         run_acl_subtest cp || error "run_acl_subtest cp failed"
7483         echo "performing getfacl-noacl..."
7484         run_acl_subtest getfacl-noacl || error "getfacl-noacl test failed"
7485         echo "performing misc..."
7486         run_acl_subtest misc || error  "misc test failed"
7487         echo "performing permissions..."
7488         run_acl_subtest permissions || error "permissions failed"
7489         # LU-1482 mdd: Setting xattr are properly checked with and without ACLs
7490         if [ $(lustre_version_code $SINGLEMDS) -gt $(version_code 2.8.55) -o \
7491              \( $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6) -a \
7492              $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.5.29) \) ]
7493         then
7494                 echo "performing permissions xattr..."
7495                 run_acl_subtest permissions_xattr ||
7496                         error "permissions_xattr failed"
7497         fi
7498         echo "performing setfacl..."
7499         run_acl_subtest setfacl || error  "setfacl test failed"
7500
7501         # inheritance test got from HP
7502         echo "performing inheritance..."
7503         cp $LUSTRE/tests/acl/make-tree . || error "cannot copy make-tree"
7504         chmod +x make-tree || error "chmod +x failed"
7505         run_acl_subtest inheritance || error "inheritance test failed"
7506         rm -f make-tree
7507
7508         echo "LU-974 ignore umask when acl is enabled..."
7509         run_acl_subtest 974 || error "LU-974 umask test failed"
7510         if [ $MDSCOUNT -ge 2 ]; then
7511                 run_acl_subtest 974_remote ||
7512                         error "LU-974 umask test failed under remote dir"
7513         fi
7514
7515         echo "LU-2561 newly created file is same size as directory..."
7516         if [ $(facet_fstype $SINGLEMDS) != "zfs" ]; then
7517                 run_acl_subtest 2561 || error "LU-2561 test failed"
7518         else
7519                 run_acl_subtest 2561_zfs || error "LU-2561 zfs test failed"
7520         fi
7521
7522         run_acl_subtest 4924 || error "LU-4924 test failed"
7523
7524         cd $SAVE_PWD
7525         umask $SAVE_UMASK
7526
7527         for num in $(seq $MDSCOUNT); do
7528                 if [ "${identity_old[$num]}" = 1 ]; then
7529                         switch_identity $num false || identity_old[$num]=$?
7530                 fi
7531         done
7532 }
7533 run_test 103a "acl test ========================================="
7534
7535 test_103b() {
7536         remote_mds_nodsh && skip "remote MDS with nodsh" && return
7537         local noacl=false
7538         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
7539         local mountopts=$MDS_MOUNT_OPTS
7540
7541         if [[ "$MDS_MOUNT_OPTS" =~ "noacl" ]]; then
7542                 noacl=true
7543         else
7544                 # stop the MDT
7545                 stop $SINGLEMDS || error "failed to stop MDT."
7546                 # remount the MDT
7547                 if [ -z "$MDS_MOUNT_OPTS" ]; then
7548                         MDS_MOUNT_OPTS="-o noacl"
7549                 else
7550                         MDS_MOUNT_OPTS="${MDS_MOUNT_OPTS},noacl"
7551                 fi
7552                 start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS ||
7553                         error "failed to start MDT."
7554                 MDS_MOUNT_OPTS=$mountopts
7555         fi
7556
7557         touch $DIR/$tfile
7558         setfacl -m u:bin:rw $DIR/$tfile && error "setfacl should fail"
7559
7560         if ! $noacl; then
7561                 # stop the MDT
7562                 stop $SINGLEMDS || error "failed to stop MDT."
7563                 # remount the MDT
7564                 start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS ||
7565                         error "failed to start MDT."
7566         fi
7567
7568         true
7569 }
7570 run_test 103b "MDS mount option 'noacl'"
7571
7572 test_103c() {
7573         mkdir -p $DIR/$tdir
7574         cp -rp $DIR/$tdir $DIR/$tdir.bak
7575
7576         [ -n "$(getfattr -d -m. $DIR/$tdir | grep posix_acl_default)" ] &&
7577                 error "$DIR/$tdir shouldn't contain default ACL"
7578         [ -n "$(getfattr -d -m. $DIR/$tdir.bak | grep posix_acl_default)" ] &&
7579                 error "$DIR/$tdir.bak shouldn't contain default ACL"
7580         true
7581 }
7582 run_test 103c "'cp -rp' won't set empty acl"
7583
7584 test_104a() {
7585         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7586         touch $DIR/$tfile
7587         lfs df || error "lfs df failed"
7588         lfs df -ih || error "lfs df -ih failed"
7589         lfs df -h $DIR || error "lfs df -h $DIR failed"
7590         lfs df -i $DIR || error "lfs df -i $DIR failed"
7591         lfs df $DIR/$tfile || error "lfs df $DIR/$tfile failed"
7592         lfs df -ih $DIR/$tfile || error "lfs df -ih $DIR/$tfile failed"
7593
7594         local OSC=$(lctl dl | grep OST0000-osc-[^M] | awk '{ print $4 }')
7595         lctl --device %$OSC deactivate
7596         lfs df || error "lfs df with deactivated OSC failed"
7597         lctl --device %$OSC activate
7598         # wait the osc back to normal
7599         wait_osc_import_state client ost FULL
7600
7601         lfs df || error "lfs df with reactivated OSC failed"
7602         rm -f $DIR/$tfile
7603 }
7604 run_test 104a "lfs df [-ih] [path] test ========================="
7605
7606 test_104b() {
7607         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7608         [ $RUNAS_ID -eq $UID ] &&
7609                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
7610         chmod 666 /dev/obd
7611         denied_cnt=$(($($RUNAS $LFS check servers 2>&1 |
7612                         grep "Permission denied" | wc -l)))
7613         if [ $denied_cnt -ne 0 ]; then
7614                 error "lfs check servers test failed"
7615         fi
7616 }
7617 run_test 104b "$RUNAS lfs check servers test ===================="
7618
7619 test_105a() {
7620         # doesn't work on 2.4 kernels
7621         touch $DIR/$tfile
7622         if $(flock_is_enabled); then
7623                 flocks_test 1 on -f $DIR/$tfile || error "fail flock on"
7624         else
7625                 flocks_test 1 off -f $DIR/$tfile || error "fail flock off"
7626         fi
7627         rm -f $DIR/$tfile
7628 }
7629 run_test 105a "flock when mounted without -o flock test ========"
7630
7631 test_105b() {
7632         touch $DIR/$tfile
7633         if $(flock_is_enabled); then
7634                 flocks_test 1 on -c $DIR/$tfile || error "fail flock on"
7635         else
7636                 flocks_test 1 off -c $DIR/$tfile || error "fail flock off"
7637         fi
7638         rm -f $DIR/$tfile
7639 }
7640 run_test 105b "fcntl when mounted without -o flock test ========"
7641
7642 test_105c() {
7643         touch $DIR/$tfile
7644         if $(flock_is_enabled); then
7645                 flocks_test 1 on -l $DIR/$tfile || error "fail flock on"
7646         else
7647                 flocks_test 1 off -l $DIR/$tfile || error "fail flock off"
7648         fi
7649         rm -f $DIR/$tfile
7650 }
7651 run_test 105c "lockf when mounted without -o flock test ========"
7652
7653 test_105d() { # bug 15924
7654         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7655         test_mkdir -p $DIR/$tdir
7656         flock_is_enabled || { skip "mount w/o flock enabled" && return; }
7657         #define OBD_FAIL_LDLM_CP_CB_WAIT  0x315
7658         $LCTL set_param fail_loc=0x80000315
7659         flocks_test 2 $DIR/$tdir
7660 }
7661 run_test 105d "flock race (should not freeze) ========"
7662
7663 test_105e() { # bug 22660 && 22040
7664         flock_is_enabled || { skip "mount w/o flock enabled" && return; }
7665         touch $DIR/$tfile
7666         flocks_test 3 $DIR/$tfile
7667 }
7668 run_test 105e "Two conflicting flocks from same process ======="
7669
7670 test_106() { #bug 10921
7671         test_mkdir -p $DIR/$tdir
7672         $DIR/$tdir && error "exec $DIR/$tdir succeeded"
7673         chmod 777 $DIR/$tdir || error "chmod $DIR/$tdir failed"
7674 }
7675 run_test 106 "attempt exec of dir followed by chown of that dir"
7676
7677 test_107() {
7678         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7679         CDIR=`pwd`
7680         cd $DIR
7681
7682         local file=core
7683         rm -f $file
7684
7685         local save_pattern=$(sysctl -n kernel.core_pattern)
7686         local save_uses_pid=$(sysctl -n kernel.core_uses_pid)
7687         sysctl -w kernel.core_pattern=$file
7688         sysctl -w kernel.core_uses_pid=0
7689
7690         ulimit -c unlimited
7691         sleep 60 &
7692         SLEEPPID=$!
7693
7694         sleep 1
7695
7696         kill -s 11 $SLEEPPID
7697         wait $SLEEPPID
7698         if [ -e $file ]; then
7699                 size=`stat -c%s $file`
7700                 [ $size -eq 0 ] && error "Fail to create core file $file"
7701         else
7702                 error "Fail to create core file $file"
7703         fi
7704         rm -f $file
7705         sysctl -w kernel.core_pattern=$save_pattern
7706         sysctl -w kernel.core_uses_pid=$save_uses_pid
7707         cd $CDIR
7708 }
7709 run_test 107 "Coredump on SIG"
7710
7711 test_110() {
7712         test_mkdir -p $DIR/$tdir
7713         test_mkdir $DIR/$tdir/$(str_repeat 'a' 255) ||
7714                 error "mkdir with 255 char failed"
7715         test_mkdir $DIR/$tdir/$(str_repeat 'b' 256) &&
7716                 error "mkdir with 256 char should fail, but did not"
7717         touch $DIR/$tdir/$(str_repeat 'x' 255) ||
7718                 error "create with 255 char failed"
7719         touch $DIR/$tdir/$(str_repeat 'y' 256) &&
7720                 error "create with 256 char should fail, but did not"
7721
7722         ls -l $DIR/$tdir
7723         rm -rf $DIR/$tdir
7724 }
7725 run_test 110 "filename length checking"
7726
7727 test_115() {
7728         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7729         OSTIO_pre=$(ps -e | grep ll_ost_io | awk '{ print $4 }'| sort -n |
7730                 tail -1 | cut -c11-20)
7731         [ -z "$OSTIO_pre" ] && skip "no OSS threads" && return
7732         echo "Starting with $OSTIO_pre threads"
7733
7734         NUMTEST=20000
7735         NUMFREE=$(df -i -P $DIR | tail -n 1 | awk '{ print $4 }')
7736         [[ $NUMFREE -lt $NUMTEST ]] && NUMTEST=$(($NUMFREE - 1000))
7737         echo "$NUMTEST creates/unlinks"
7738         test_mkdir -p $DIR/$tdir
7739         createmany -o $DIR/$tdir/$tfile $NUMTEST
7740         unlinkmany $DIR/$tdir/$tfile $NUMTEST
7741
7742         OSTIO_post=$(ps -e | grep ll_ost_io | awk '{ print $4 }' | sort -n |
7743                 tail -1 | cut -c11-20)
7744
7745         # don't return an error
7746         [ $OSTIO_post == $OSTIO_pre ] && echo \
7747             "WARNING: No new ll_ost_io threads were created ($OSTIO_pre)" &&
7748             echo "This may be fine, depending on what ran before this test" &&
7749             echo "and how fast this system is." && return
7750
7751         echo "Started with $OSTIO_pre threads, ended with $OSTIO_post"
7752 }
7753 run_test 115 "verify dynamic thread creation===================="
7754
7755 free_min_max () {
7756         wait_delete_completed
7757         AVAIL=($(lctl get_param -n osc.*[oO][sS][cC]-[^M]*.kbytesavail))
7758         echo "OST kbytes available: ${AVAIL[@]}"
7759         MAXV=${AVAIL[0]}
7760         MAXI=0
7761         MINV=${AVAIL[0]}
7762         MINI=0
7763         for ((i = 0; i < ${#AVAIL[@]}; i++)); do
7764                 #echo OST $i: ${AVAIL[i]}kb
7765                 if [[ ${AVAIL[i]} -gt $MAXV ]]; then
7766                         MAXV=${AVAIL[i]}
7767                         MAXI=$i
7768                 fi
7769                 if [[ ${AVAIL[i]} -lt $MINV ]]; then
7770                         MINV=${AVAIL[i]}
7771                         MINI=$i
7772                 fi
7773         done
7774         echo "Min free space: OST $MINI: $MINV"
7775         echo "Max free space: OST $MAXI: $MAXV"
7776 }
7777
7778 test_116a() { # was previously test_116()
7779         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7780         remote_mds_nodsh && skip "remote MDS with nodsh" && return
7781
7782         [[ $OSTCOUNT -lt 2 ]] && skip_env "$OSTCOUNT < 2 OSTs" && return
7783
7784         echo -n "Free space priority "
7785         do_facet $SINGLEMDS lctl get_param -n lo*.*-mdtlov.qos_prio_free |
7786                 head -n1
7787         declare -a AVAIL
7788         free_min_max
7789
7790         [ $MINV -eq 0 ] && skip "no free space in OST$MINI, skip" && return
7791         [ $MINV -gt 10000000 ] && skip "too much free space in OST$MINI, skip" \
7792                 && return
7793         trap simple_cleanup_common EXIT
7794
7795
7796         # Check if we need to generate uneven OSTs
7797         test_mkdir -p $DIR/$tdir/OST${MINI}
7798         local FILL=$((MINV / 4))
7799         local DIFF=$((MAXV - MINV))
7800         local DIFF2=$((DIFF * 100 / MINV))
7801
7802         local threshold=$(do_facet $SINGLEMDS \
7803                 lctl get_param -n *.*MDT0000-mdtlov.qos_threshold_rr | head -n1)
7804         threshold=${threshold%%%}
7805         echo -n "Check for uneven OSTs: "
7806         echo -n "diff=${DIFF}KB (${DIFF2}%) must be > ${threshold}% ..."
7807
7808         if [[ $DIFF2 -gt $threshold ]]; then
7809                 echo "ok"
7810                 echo "Don't need to fill OST$MINI"
7811         else
7812                 # generate uneven OSTs. Write 2% over the QOS threshold value
7813                 echo "no"
7814                 DIFF=$((threshold - DIFF2 + 2))
7815                 DIFF2=$((MINV * DIFF / 100))
7816                 echo "Fill $DIFF% remaining space in OST$MINI with ${DIFF2}KB"
7817                 $SETSTRIPE -i $MINI -c 1 $DIR/$tdir/OST${MINI} ||
7818                         error "setstripe failed"
7819                 DIFF=$((DIFF2 / 2048))
7820                 i=0
7821                 while [ $i -lt $DIFF ]; do
7822                         i=$((i + 1))
7823                         dd if=/dev/zero of=$DIR/$tdir/OST${MINI}/$tfile-$i \
7824                                 bs=2M count=1 2>/dev/null
7825                         echo -n .
7826                 done
7827                 echo .
7828                 sync
7829                 sleep_maxage
7830                 free_min_max
7831         fi
7832
7833         DIFF=$((MAXV - MINV))
7834         DIFF2=$((DIFF * 100 / MINV))
7835         echo -n "diff=$DIFF=$DIFF2% must be > $threshold% for QOS mode..."
7836         if [ $DIFF2 -gt $threshold ]; then
7837                 echo "ok"
7838         else
7839                 echo "failed - QOS mode won't be used"
7840                 skip "QOS imbalance criteria not met"
7841                 simple_cleanup_common
7842                 return
7843         fi
7844
7845         MINI1=$MINI
7846         MINV1=$MINV
7847         MAXI1=$MAXI
7848         MAXV1=$MAXV
7849
7850         # now fill using QOS
7851         $SETSTRIPE -c 1 $DIR/$tdir
7852         FILL=$((FILL / 200))
7853         if [ $FILL -gt 600 ]; then
7854                 FILL=600
7855         fi
7856         echo "writing $FILL files to QOS-assigned OSTs"
7857         i=0
7858         while [ $i -lt $FILL ]; do
7859                 i=$((i + 1))
7860                 dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=200k \
7861                         count=1 2>/dev/null
7862                 echo -n .
7863         done
7864         echo "wrote $i 200k files"
7865         sync
7866         sleep_maxage
7867
7868         echo "Note: free space may not be updated, so measurements might be off"
7869         free_min_max
7870         DIFF2=$((MAXV - MINV))
7871         echo "free space delta: orig $DIFF final $DIFF2"
7872         [ $DIFF2 -gt $DIFF ] && echo "delta got worse!"
7873         DIFF=$((MINV1 - ${AVAIL[$MINI1]}))
7874         echo "Wrote ${DIFF}KB to smaller OST $MINI1"
7875         DIFF2=$((MAXV1 - ${AVAIL[$MAXI1]}))
7876         echo "Wrote ${DIFF2}KB to larger OST $MAXI1"
7877         if [[ $DIFF -gt 0 ]]; then
7878                 FILL=$((DIFF2 * 100 / DIFF - 100))
7879                 echo "Wrote ${FILL}% more data to larger OST $MAXI1"
7880         fi
7881
7882         # Figure out which files were written where
7883         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
7884                awk '/'$MINI1': / {print $2; exit}')
7885         echo $UUID
7886         MINC=$($GETSTRIPE --ost $UUID $DIR/$tdir | grep $DIR | wc -l)
7887         echo "$MINC files created on smaller OST $MINI1"
7888         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
7889                awk '/'$MAXI1': / {print $2; exit}')
7890         echo $UUID
7891         MAXC=$($GETSTRIPE --ost $UUID $DIR/$tdir | grep $DIR | wc -l)
7892         echo "$MAXC files created on larger OST $MAXI1"
7893         if [[ $MINC -gt 0 ]]; then
7894                 FILL=$((MAXC * 100 / MINC - 100))
7895                 echo "Wrote ${FILL}% more files to larger OST $MAXI1"
7896         fi
7897         [[ $MAXC -gt $MINC ]] ||
7898                 error_ignore LU-9 "stripe QOS didn't balance free space"
7899         simple_cleanup_common
7900 }
7901 run_test 116a "stripe QOS: free space balance ==================="
7902
7903 test_116b() { # LU-2093
7904         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7905         remote_mds_nodsh && skip "remote MDS with nodsh" && return
7906
7907 #define OBD_FAIL_MDS_OSC_CREATE_FAIL     0x147
7908         local old_rr=$(do_facet $SINGLEMDS lctl get_param -n \
7909                        lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr | head -1)
7910         [ -z "$old_rr" ] && skip "no QOS" && return 0
7911         do_facet $SINGLEMDS lctl set_param \
7912                 lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr=0
7913         mkdir -p $DIR/$tdir
7914         do_facet $SINGLEMDS lctl set_param fail_loc=0x147
7915         createmany -o $DIR/$tdir/f- 20 || error "can't create"
7916         do_facet $SINGLEMDS lctl set_param fail_loc=0
7917         rm -rf $DIR/$tdir
7918         do_facet $SINGLEMDS lctl set_param \
7919                 lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr=$old_rr
7920 }
7921 run_test 116b "QoS shouldn't LBUG if not enough OSTs found on the 2nd pass"
7922
7923 test_117() # bug 10891
7924 {
7925         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7926         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1
7927         #define OBD_FAIL_OST_SETATTR_CREDITS 0x21e
7928         lctl set_param fail_loc=0x21e
7929         > $DIR/$tfile || error "truncate failed"
7930         lctl set_param fail_loc=0
7931         echo "Truncate succeeded."
7932         rm -f $DIR/$tfile
7933 }
7934 run_test 117 "verify osd extend =========="
7935
7936 NO_SLOW_RESENDCOUNT=4
7937 export OLD_RESENDCOUNT=""
7938 set_resend_count () {
7939         local PROC_RESENDCOUNT="osc.${FSNAME}-OST*-osc-*.resend_count"
7940         OLD_RESENDCOUNT=$(lctl get_param -n $PROC_RESENDCOUNT | head -n1)
7941         lctl set_param -n $PROC_RESENDCOUNT $1
7942         echo resend_count is set to $(lctl get_param -n $PROC_RESENDCOUNT)
7943 }
7944
7945 # for reduce test_118* time (b=14842)
7946 [ "$SLOW" = "no" ] && set_resend_count $NO_SLOW_RESENDCOUNT
7947
7948 # Reset async IO behavior after error case
7949 reset_async() {
7950         FILE=$DIR/reset_async
7951
7952         # Ensure all OSCs are cleared
7953         $SETSTRIPE -c -1 $FILE
7954         dd if=/dev/zero of=$FILE bs=64k count=$OSTCOUNT
7955         sync
7956         rm $FILE
7957 }
7958
7959 test_118a() #bug 11710
7960 {
7961         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7962         reset_async
7963
7964         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7965         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7966         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
7967
7968         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7969                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7970                 return 1;
7971         fi
7972         rm -f $DIR/$tfile
7973 }
7974 run_test 118a "verify O_SYNC works =========="
7975
7976 test_118b()
7977 {
7978         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7979         remote_ost_nodsh && skip "remote OST with nodsh" && return
7980
7981         reset_async
7982
7983         #define OBD_FAIL_SRV_ENOENT 0x217
7984         set_nodes_failloc "$(osts_nodes)" 0x217
7985         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7986         RC=$?
7987         set_nodes_failloc "$(osts_nodes)" 0
7988         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7989         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
7990                     grep -c writeback)
7991
7992         if [[ $RC -eq 0 ]]; then
7993                 error "Must return error due to dropped pages, rc=$RC"
7994                 return 1;
7995         fi
7996
7997         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7998                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7999                 return 1;
8000         fi
8001
8002         echo "Dirty pages not leaked on ENOENT"
8003
8004         # Due to the above error the OSC will issue all RPCs syncronously
8005         # until a subsequent RPC completes successfully without error.
8006         $MULTIOP $DIR/$tfile Ow4096yc
8007         rm -f $DIR/$tfile
8008
8009         return 0
8010 }
8011 run_test 118b "Reclaim dirty pages on fatal error =========="
8012
8013 test_118c()
8014 {
8015         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8016
8017         # for 118c, restore the original resend count, LU-1940
8018         [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] &&
8019                                 set_resend_count $OLD_RESENDCOUNT
8020         remote_ost_nodsh && skip "remote OST with nodsh" && return
8021
8022         reset_async
8023
8024         #define OBD_FAIL_OST_EROFS               0x216
8025         set_nodes_failloc "$(osts_nodes)" 0x216
8026
8027         # multiop should block due to fsync until pages are written
8028         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
8029         MULTIPID=$!
8030         sleep 1
8031
8032         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
8033                 error "Multiop failed to block on fsync, pid=$MULTIPID"
8034         fi
8035
8036         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8037                     grep -c writeback)
8038         if [[ $WRITEBACK -eq 0 ]]; then
8039                 error "No page in writeback, writeback=$WRITEBACK"
8040         fi
8041
8042         set_nodes_failloc "$(osts_nodes)" 0
8043         wait $MULTIPID
8044         RC=$?
8045         if [[ $RC -ne 0 ]]; then
8046                 error "Multiop fsync failed, rc=$RC"
8047         fi
8048
8049         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8050         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8051                     grep -c writeback)
8052         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8053                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8054         fi
8055
8056         rm -f $DIR/$tfile
8057         echo "Dirty pages flushed via fsync on EROFS"
8058         return 0
8059 }
8060 run_test 118c "Fsync blocks on EROFS until dirty pages are flushed =========="
8061
8062 # continue to use small resend count to reduce test_118* time (b=14842)
8063 [ "$SLOW" = "no" ] && set_resend_count $NO_SLOW_RESENDCOUNT
8064
8065 test_118d()
8066 {
8067         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8068         remote_ost_nodsh && skip "remote OST with nodsh" && return
8069
8070         reset_async
8071
8072         #define OBD_FAIL_OST_BRW_PAUSE_BULK
8073         set_nodes_failloc "$(osts_nodes)" 0x214
8074         # multiop should block due to fsync until pages are written
8075         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
8076         MULTIPID=$!
8077         sleep 1
8078
8079         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
8080                 error "Multiop failed to block on fsync, pid=$MULTIPID"
8081         fi
8082
8083         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8084                     grep -c writeback)
8085         if [[ $WRITEBACK -eq 0 ]]; then
8086                 error "No page in writeback, writeback=$WRITEBACK"
8087         fi
8088
8089         wait $MULTIPID || error "Multiop fsync failed, rc=$?"
8090         set_nodes_failloc "$(osts_nodes)" 0
8091
8092         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8093         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8094                     grep -c writeback)
8095         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8096                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8097         fi
8098
8099         rm -f $DIR/$tfile
8100         echo "Dirty pages gaurenteed flushed via fsync"
8101         return 0
8102 }
8103 run_test 118d "Fsync validation inject a delay of the bulk =========="
8104
8105 test_118f() {
8106         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8107         reset_async
8108
8109         #define OBD_FAIL_OSC_BRW_PREP_REQ2        0x40a
8110         lctl set_param fail_loc=0x8000040a
8111
8112         # Should simulate EINVAL error which is fatal
8113         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
8114         RC=$?
8115         if [[ $RC -eq 0 ]]; then
8116                 error "Must return error due to dropped pages, rc=$RC"
8117         fi
8118
8119         lctl set_param fail_loc=0x0
8120
8121         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
8122         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8123         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8124                     grep -c writeback)
8125         if [[ $LOCKED -ne 0 ]]; then
8126                 error "Locked pages remain in cache, locked=$LOCKED"
8127         fi
8128
8129         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8130                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8131         fi
8132
8133         rm -f $DIR/$tfile
8134         echo "No pages locked after fsync"
8135
8136         reset_async
8137         return 0
8138 }
8139 run_test 118f "Simulate unrecoverable OSC side error =========="
8140
8141 test_118g() {
8142         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8143         reset_async
8144
8145         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
8146         lctl set_param fail_loc=0x406
8147
8148         # simulate local -ENOMEM
8149         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
8150         RC=$?
8151
8152         lctl set_param fail_loc=0
8153         if [[ $RC -eq 0 ]]; then
8154                 error "Must return error due to dropped pages, rc=$RC"
8155         fi
8156
8157         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
8158         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8159         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8160                         grep -c writeback)
8161         if [[ $LOCKED -ne 0 ]]; then
8162                 error "Locked pages remain in cache, locked=$LOCKED"
8163         fi
8164
8165         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8166                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8167         fi
8168
8169         rm -f $DIR/$tfile
8170         echo "No pages locked after fsync"
8171
8172         reset_async
8173         return 0
8174 }
8175 run_test 118g "Don't stay in wait if we got local -ENOMEM  =========="
8176
8177 test_118h() {
8178         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8179         remote_ost_nodsh && skip "remote OST with nodsh" && return
8180
8181         reset_async
8182
8183         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
8184         set_nodes_failloc "$(osts_nodes)" 0x20e
8185         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
8186         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
8187         RC=$?
8188
8189         set_nodes_failloc "$(osts_nodes)" 0
8190         if [[ $RC -eq 0 ]]; then
8191                 error "Must return error due to dropped pages, rc=$RC"
8192         fi
8193
8194         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
8195         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8196         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8197                     grep -c writeback)
8198         if [[ $LOCKED -ne 0 ]]; then
8199                 error "Locked pages remain in cache, locked=$LOCKED"
8200         fi
8201
8202         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8203                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8204         fi
8205
8206         rm -f $DIR/$tfile
8207         echo "No pages locked after fsync"
8208
8209         return 0
8210 }
8211 run_test 118h "Verify timeout in handling recoverables errors  =========="
8212
8213 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
8214
8215 test_118i() {
8216         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8217         remote_ost_nodsh && skip "remote OST with nodsh" && return
8218
8219         reset_async
8220
8221         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
8222         set_nodes_failloc "$(osts_nodes)" 0x20e
8223
8224         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
8225         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
8226         PID=$!
8227         sleep 5
8228         set_nodes_failloc "$(osts_nodes)" 0
8229
8230         wait $PID
8231         RC=$?
8232         if [[ $RC -ne 0 ]]; then
8233                 error "got error, but should be not, rc=$RC"
8234         fi
8235
8236         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
8237         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8238         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
8239         if [[ $LOCKED -ne 0 ]]; then
8240                 error "Locked pages remain in cache, locked=$LOCKED"
8241         fi
8242
8243         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8244                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8245         fi
8246
8247         rm -f $DIR/$tfile
8248         echo "No pages locked after fsync"
8249
8250         return 0
8251 }
8252 run_test 118i "Fix error before timeout in recoverable error  =========="
8253
8254 [ "$SLOW" = "no" ] && set_resend_count 4
8255
8256 test_118j() {
8257         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8258         remote_ost_nodsh && skip "remote OST with nodsh" && return
8259
8260         reset_async
8261
8262         #define OBD_FAIL_OST_BRW_WRITE_BULK2     0x220
8263         set_nodes_failloc "$(osts_nodes)" 0x220
8264
8265         # return -EIO from OST
8266         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
8267         RC=$?
8268         set_nodes_failloc "$(osts_nodes)" 0x0
8269         if [[ $RC -eq 0 ]]; then
8270                 error "Must return error due to dropped pages, rc=$RC"
8271         fi
8272
8273         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
8274         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8275         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
8276         if [[ $LOCKED -ne 0 ]]; then
8277                 error "Locked pages remain in cache, locked=$LOCKED"
8278         fi
8279
8280         # in recoverable error on OST we want resend and stay until it finished
8281         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8282                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8283         fi
8284
8285         rm -f $DIR/$tfile
8286         echo "No pages locked after fsync"
8287
8288         return 0
8289 }
8290 run_test 118j "Simulate unrecoverable OST side error =========="
8291
8292 test_118k()
8293 {
8294         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8295         remote_ost_nodsh && skip "remote OSTs with nodsh" && return
8296
8297         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
8298         set_nodes_failloc "$(osts_nodes)" 0x20e
8299         test_mkdir -p $DIR/$tdir
8300
8301         for ((i=0;i<10;i++)); do
8302                 (dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=1M count=10 || \
8303                         error "dd to $DIR/$tdir/$tfile-$i failed" )&
8304                 SLEEPPID=$!
8305                 sleep 0.500s
8306                 kill $SLEEPPID
8307                 wait $SLEEPPID
8308         done
8309
8310         set_nodes_failloc "$(osts_nodes)" 0
8311         rm -rf $DIR/$tdir
8312 }
8313 run_test 118k "bio alloc -ENOMEM and IO TERM handling ========="
8314
8315 test_118l()
8316 {
8317         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8318         # LU-646
8319         test_mkdir -p $DIR/$tdir
8320         $MULTIOP $DIR/$tdir Dy || error "fsync dir failed"
8321         rm -rf $DIR/$tdir
8322 }
8323 run_test 118l "fsync dir ========="
8324
8325 test_118m() # LU-3066
8326 {
8327         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8328         test_mkdir -p $DIR/$tdir
8329         $MULTIOP $DIR/$tdir DY || error "fdatasync dir failed"
8330         rm -rf $DIR/$tdir
8331 }
8332 run_test 118m "fdatasync dir ========="
8333
8334 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
8335
8336 test_119a() # bug 11737
8337 {
8338         BSIZE=$((512 * 1024))
8339         directio write $DIR/$tfile 0 1 $BSIZE
8340         # We ask to read two blocks, which is more than a file size.
8341         # directio will indicate an error when requested and actual
8342         # sizes aren't equeal (a normal situation in this case) and
8343         # print actual read amount.
8344         NOB=`directio read $DIR/$tfile 0 2 $BSIZE | awk '/error/ {print $6}'`
8345         if [ "$NOB" != "$BSIZE" ]; then
8346                 error "read $NOB bytes instead of $BSIZE"
8347         fi
8348         rm -f $DIR/$tfile
8349 }
8350 run_test 119a "Short directIO read must return actual read amount"
8351
8352 test_119b() # bug 11737
8353 {
8354         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
8355
8356         $SETSTRIPE -c 2 $DIR/$tfile || error "setstripe failed"
8357         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1 || error "dd failed"
8358         sync
8359         $MULTIOP $DIR/$tfile oO_RDONLY:O_DIRECT:r$((2048 * 1024)) || \
8360                 error "direct read failed"
8361         rm -f $DIR/$tfile
8362 }
8363 run_test 119b "Sparse directIO read must return actual read amount"
8364
8365 test_119c() # bug 13099
8366 {
8367         BSIZE=1048576
8368         directio write $DIR/$tfile 3 1 $BSIZE || error "direct write failed"
8369         directio readhole $DIR/$tfile 0 2 $BSIZE || error "reading hole failed"
8370         rm -f $DIR/$tfile
8371 }
8372 run_test 119c "Testing for direct read hitting hole"
8373
8374 test_119d() # bug 15950
8375 {
8376         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8377         MAX_RPCS_IN_FLIGHT=`$LCTL get_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight`
8378         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight 1
8379         BSIZE=1048576
8380         $SETSTRIPE $DIR/$tfile -i 0 -c 1 || error "setstripe failed"
8381         $DIRECTIO write $DIR/$tfile 0 1 $BSIZE || error "first directio failed"
8382         #define OBD_FAIL_OSC_DIO_PAUSE           0x40d
8383         lctl set_param fail_loc=0x40d
8384         $DIRECTIO write $DIR/$tfile 1 4 $BSIZE &
8385         pid_dio=$!
8386         sleep 1
8387         cat $DIR/$tfile > /dev/null &
8388         lctl set_param fail_loc=0
8389         pid_reads=$!
8390         wait $pid_dio
8391         log "the DIO writes have completed, now wait for the reads (should not block very long)"
8392         sleep 2
8393         [ -n "`ps h -p $pid_reads -o comm`" ] && \
8394         error "the read rpcs have not completed in 2s"
8395         rm -f $DIR/$tfile
8396         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight $MAX_RPCS_IN_FLIGHT
8397 }
8398 run_test 119d "The DIO path should try to send a new rpc once one is completed"
8399
8400 test_120a() {
8401         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8402         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8403         test_mkdir -p $DIR/$tdir
8404         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
8405                skip "no early lock cancel on server" && return 0
8406
8407         lru_resize_disable mdc
8408         lru_resize_disable osc
8409         cancel_lru_locks mdc
8410         # asynchronous object destroy at MDT could cause bl ast to client
8411         cancel_lru_locks osc
8412
8413         stat $DIR/$tdir > /dev/null
8414         can1=$(do_facet $SINGLEMDS \
8415                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8416                awk '/ldlm_cancel/ {print $2}')
8417         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8418                awk '/ldlm_bl_callback/ {print $2}')
8419         test_mkdir -c1 $DIR/$tdir/d1
8420         can2=$(do_facet $SINGLEMDS \
8421                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8422                awk '/ldlm_cancel/ {print $2}')
8423         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8424                awk '/ldlm_bl_callback/ {print $2}')
8425         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
8426         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
8427         lru_resize_enable mdc
8428         lru_resize_enable osc
8429 }
8430 run_test 120a "Early Lock Cancel: mkdir test"
8431
8432 test_120b() {
8433         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8434         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8435         test_mkdir $DIR/$tdir
8436         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel)" ] && \
8437                skip "no early lock cancel on server" && return 0
8438         lru_resize_disable mdc
8439         lru_resize_disable osc
8440         cancel_lru_locks mdc
8441         stat $DIR/$tdir > /dev/null
8442         can1=$(do_facet $SINGLEMDS \
8443                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8444                awk '/ldlm_cancel/ {print $2}')
8445         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8446                awk '/ldlm_bl_callback/ {print $2}')
8447         touch $DIR/$tdir/f1
8448         can2=$(do_facet $SINGLEMDS \
8449                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8450                awk '/ldlm_cancel/ {print $2}')
8451         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8452                awk '/ldlm_bl_callback/ {print $2}')
8453         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
8454         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
8455         lru_resize_enable mdc
8456         lru_resize_enable osc
8457 }
8458 run_test 120b "Early Lock Cancel: create test"
8459
8460 test_120c() {
8461         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8462         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8463         test_mkdir -c1 $DIR/$tdir
8464         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel)" ] && \
8465                skip "no early lock cancel on server" && return 0
8466         lru_resize_disable mdc
8467         lru_resize_disable osc
8468         test_mkdir -p -c1 $DIR/$tdir/d1
8469         test_mkdir -p -c1 $DIR/$tdir/d2
8470         touch $DIR/$tdir/d1/f1
8471         cancel_lru_locks mdc
8472         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 > /dev/null
8473         can1=$(do_facet $SINGLEMDS \
8474                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8475                awk '/ldlm_cancel/ {print $2}')
8476         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8477                awk '/ldlm_bl_callback/ {print $2}')
8478         ln $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
8479         can2=$(do_facet $SINGLEMDS \
8480                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8481                awk '/ldlm_cancel/ {print $2}')
8482         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8483                awk '/ldlm_bl_callback/ {print $2}')
8484         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
8485         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
8486         lru_resize_enable mdc
8487         lru_resize_enable osc
8488 }
8489 run_test 120c "Early Lock Cancel: link test"
8490
8491 test_120d() {
8492         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8493         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8494         test_mkdir -p -c1 $DIR/$tdir
8495         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel)" ] && \
8496                skip "no early lock cancel on server" && return 0
8497         lru_resize_disable mdc
8498         lru_resize_disable osc
8499         touch $DIR/$tdir
8500         cancel_lru_locks mdc
8501         stat $DIR/$tdir > /dev/null
8502         can1=$(do_facet $SINGLEMDS \
8503                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8504                awk '/ldlm_cancel/ {print $2}')
8505         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8506                awk '/ldlm_bl_callback/ {print $2}')
8507         chmod a+x $DIR/$tdir
8508         can2=$(do_facet $SINGLEMDS \
8509                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8510                awk '/ldlm_cancel/ {print $2}')
8511         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8512                awk '/ldlm_bl_callback/ {print $2}')
8513         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
8514         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
8515         lru_resize_enable mdc
8516         lru_resize_enable osc
8517 }
8518 run_test 120d "Early Lock Cancel: setattr test"
8519
8520 test_120e() {
8521         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8522         ! $($LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_can) &&
8523                 skip "no early lock cancel on server" && return 0
8524         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8525         local dlmtrace_set=false
8526
8527         test_mkdir -p -c1 $DIR/$tdir
8528         lru_resize_disable mdc
8529         lru_resize_disable osc
8530         ! $LCTL get_param debug | grep -q dlmtrace &&
8531                 $LCTL set_param debug=+dlmtrace && dlmtrace_set=true
8532         dd if=/dev/zero of=$DIR/$tdir/f1 count=1
8533         cancel_lru_locks mdc
8534         cancel_lru_locks osc
8535         dd if=$DIR/$tdir/f1 of=/dev/null
8536         stat $DIR/$tdir $DIR/$tdir/f1 > /dev/null
8537         # XXX client can not do early lock cancel of OST lock
8538         # during unlink (LU-4206), so cancel osc lock now.
8539         sleep 2
8540         cancel_lru_locks osc
8541         can1=$(do_facet $SINGLEMDS \
8542                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8543                awk '/ldlm_cancel/ {print $2}')
8544         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8545                awk '/ldlm_bl_callback/ {print $2}')
8546         unlink $DIR/$tdir/f1
8547         sleep 5
8548         can2=$(do_facet $SINGLEMDS \
8549                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8550                awk '/ldlm_cancel/ {print $2}')
8551         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8552                awk '/ldlm_bl_callback/ {print $2}')
8553         [ $can1 -ne $can2 ] && error "$((can2 - can1)) cancel RPC occured" &&
8554                 $LCTL dk $TMP/cancel.debug.txt
8555         [ $blk1 -ne $blk2 ] && error "$((blk2 - blk1)) blocking RPC occured" &&
8556                 $LCTL dk $TMP/blocking.debug.txt
8557         $dlmtrace_set && $LCTL set_param debug=-dlmtrace
8558         lru_resize_enable mdc
8559         lru_resize_enable osc
8560 }
8561 run_test 120e "Early Lock Cancel: unlink test"
8562
8563 test_120f() {
8564         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8565         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
8566                skip "no early lock cancel on server" && return 0
8567         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8568         test_mkdir -p -c1 $DIR/$tdir
8569         lru_resize_disable mdc
8570         lru_resize_disable osc
8571         test_mkdir -p -c1 $DIR/$tdir/d1
8572         test_mkdir -p -c1 $DIR/$tdir/d2
8573         dd if=/dev/zero of=$DIR/$tdir/d1/f1 count=1
8574         dd if=/dev/zero of=$DIR/$tdir/d2/f2 count=1
8575         cancel_lru_locks mdc
8576         cancel_lru_locks osc
8577         dd if=$DIR/$tdir/d1/f1 of=/dev/null
8578         dd if=$DIR/$tdir/d2/f2 of=/dev/null
8579         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2 > /dev/null
8580         # XXX client can not do early lock cancel of OST lock
8581         # during rename (LU-4206), so cancel osc lock now.
8582         sleep 2
8583         cancel_lru_locks osc
8584         can1=$(do_facet $SINGLEMDS \
8585                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8586                awk '/ldlm_cancel/ {print $2}')
8587         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8588                awk '/ldlm_bl_callback/ {print $2}')
8589         mrename $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
8590         sleep 5
8591         can2=$(do_facet $SINGLEMDS \
8592                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8593                awk '/ldlm_cancel/ {print $2}')
8594         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8595                awk '/ldlm_bl_callback/ {print $2}')
8596         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
8597         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
8598         lru_resize_enable mdc
8599         lru_resize_enable osc
8600 }
8601 run_test 120f "Early Lock Cancel: rename test"
8602
8603 test_120g() {
8604         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8605         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
8606                skip "no early lock cancel on server" && return 0
8607         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8608         lru_resize_disable mdc
8609         lru_resize_disable osc
8610         count=10000
8611         echo create $count files
8612         test_mkdir -p $DIR/$tdir
8613         cancel_lru_locks mdc
8614         cancel_lru_locks osc
8615         t0=`date +%s`
8616
8617         can0=$(do_facet $SINGLEMDS \
8618                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8619                awk '/ldlm_cancel/ {print $2}')
8620         blk0=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8621                awk '/ldlm_bl_callback/ {print $2}')
8622         createmany -o $DIR/$tdir/f $count
8623         sync
8624         can1=$(do_facet $SINGLEMDS \
8625                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8626                awk '/ldlm_cancel/ {print $2}')
8627         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8628                awk '/ldlm_bl_callback/ {print $2}')
8629         t1=$(date +%s)
8630         echo total: $((can1-can0)) cancels, $((blk1-blk0)) blockings
8631         echo rm $count files
8632         rm -r $DIR/$tdir
8633         sync
8634         can2=$(do_facet $SINGLEMDS \
8635                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8636                awk '/ldlm_cancel/ {print $2}')
8637         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8638                awk '/ldlm_bl_callback/ {print $2}')
8639         t2=$(date +%s)
8640         echo total: $count removes in $((t2-t1))
8641         echo total: $((can2-can1)) cancels, $((blk2-blk1)) blockings
8642         sleep 2
8643         # wait for commitment of removal
8644         lru_resize_enable mdc
8645         lru_resize_enable osc
8646 }
8647 run_test 120g "Early Lock Cancel: performance test"
8648
8649 test_121() { #bug #10589
8650         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8651         rm -rf $DIR/$tfile
8652         writes=$(LANG=C dd if=/dev/zero of=$DIR/$tfile count=1 2>&1 | awk -F '+' '/out$/ {print $1}')
8653 #define OBD_FAIL_LDLM_CANCEL_RACE        0x310
8654         lctl set_param fail_loc=0x310
8655         cancel_lru_locks osc > /dev/null
8656         reads=$(LANG=C dd if=$DIR/$tfile of=/dev/null 2>&1 | awk -F '+' '/in$/ {print $1}')
8657         lctl set_param fail_loc=0
8658         [[ $reads -eq $writes ]] ||
8659                 error "read $reads blocks, must be $writes blocks"
8660 }
8661 run_test 121 "read cancel race ========="
8662
8663 test_123a() { # was test 123, statahead(bug 11401)
8664         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8665         SLOWOK=0
8666         if [ -z "$(grep "processor.*: 1" /proc/cpuinfo)" ]; then
8667             log "testing on UP system. Performance may be not as good as expected."
8668                         SLOWOK=1
8669         fi
8670
8671         rm -rf $DIR/$tdir
8672         test_mkdir -p $DIR/$tdir
8673         NUMFREE=$(df -i -P $DIR | tail -n 1 | awk '{ print $4 }')
8674         [[ $NUMFREE -gt 100000 ]] && NUMFREE=100000 || NUMFREE=$((NUMFREE-1000))
8675         MULT=10
8676         for ((i=100, j=0; i<=$NUMFREE; j=$i, i=$((i * MULT)) )); do
8677                 createmany -o $DIR/$tdir/$tfile $j $((i - j))
8678
8679                 max=`lctl get_param -n llite.*.statahead_max | head -n 1`
8680                 lctl set_param -n llite.*.statahead_max 0
8681                 lctl get_param llite.*.statahead_max
8682                 cancel_lru_locks mdc
8683                 cancel_lru_locks osc
8684                 stime=`date +%s`
8685                 time ls -l $DIR/$tdir | wc -l
8686                 etime=`date +%s`
8687                 delta=$((etime - stime))
8688                 log "ls $i files without statahead: $delta sec"
8689                 lctl set_param llite.*.statahead_max=$max
8690
8691                 swrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
8692                 lctl get_param -n llite.*.statahead_max | grep '[0-9]'
8693                 cancel_lru_locks mdc
8694                 cancel_lru_locks osc
8695                 stime=`date +%s`
8696                 time ls -l $DIR/$tdir | wc -l
8697                 etime=`date +%s`
8698                 delta_sa=$((etime - stime))
8699                 log "ls $i files with statahead: $delta_sa sec"
8700                 lctl get_param -n llite.*.statahead_stats
8701                 ewrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
8702
8703                 [[ $swrong -lt $ewrong ]] &&
8704                         log "statahead was stopped, maybe too many locks held!"
8705                 [[ $delta -eq 0 || $delta_sa -eq 0 ]] && continue
8706
8707                 if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
8708                     max=`lctl get_param -n llite.*.statahead_max | head -n 1`
8709                     lctl set_param -n llite.*.statahead_max 0
8710                     lctl get_param llite.*.statahead_max
8711                     cancel_lru_locks mdc
8712                     cancel_lru_locks osc
8713                     stime=`date +%s`
8714                     time ls -l $DIR/$tdir | wc -l
8715                     etime=`date +%s`
8716                     delta=$((etime - stime))
8717                     log "ls $i files again without statahead: $delta sec"
8718                     lctl set_param llite.*.statahead_max=$max
8719                     if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
8720                         if [  $SLOWOK -eq 0 ]; then
8721                                 error "ls $i files is slower with statahead!"
8722                         else
8723                                 log "ls $i files is slower with statahead!"
8724                         fi
8725                         break
8726                     fi
8727                 fi
8728
8729                 [ $delta -gt 20 ] && break
8730                 [ $delta -gt 8 ] && MULT=$((50 / delta))
8731                 [ "$SLOW" = "no" -a $delta -gt 5 ] && break
8732         done
8733         log "ls done"
8734
8735         stime=`date +%s`
8736         rm -r $DIR/$tdir
8737         sync
8738         etime=`date +%s`
8739         delta=$((etime - stime))
8740         log "rm -r $DIR/$tdir/: $delta seconds"
8741         log "rm done"
8742         lctl get_param -n llite.*.statahead_stats
8743 }
8744 run_test 123a "verify statahead work"
8745
8746 test_123b () { # statahead(bug 15027)
8747         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8748         test_mkdir -p $DIR/$tdir
8749         createmany -o $DIR/$tdir/$tfile-%d 1000
8750
8751         cancel_lru_locks mdc
8752         cancel_lru_locks osc
8753
8754 #define OBD_FAIL_MDC_GETATTR_ENQUEUE     0x803
8755         lctl set_param fail_loc=0x80000803
8756         ls -lR $DIR/$tdir > /dev/null
8757         log "ls done"
8758         lctl set_param fail_loc=0x0
8759         lctl get_param -n llite.*.statahead_stats
8760         rm -r $DIR/$tdir
8761         sync
8762
8763 }
8764 run_test 123b "not panic with network error in statahead enqueue (bug 15027)"
8765
8766 test_124a() {
8767         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8768         [ -z "$($LCTL get_param -n mdc.*.connect_flags | grep lru_resize)" ] &&
8769                 skip "no lru resize on server" && return 0
8770         local NR=2000
8771         test_mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
8772
8773         log "create $NR files at $DIR/$tdir"
8774         createmany -o $DIR/$tdir/f $NR ||
8775                 error "failed to create $NR files in $DIR/$tdir"
8776
8777         cancel_lru_locks mdc
8778         ls -l $DIR/$tdir > /dev/null
8779
8780         local NSDIR=""
8781         local LRU_SIZE=0
8782         for VALUE in $($LCTL get_param ldlm.namespaces.*mdc-*.lru_size); do
8783                 local PARAM=$(echo ${VALUE[0]} | cut -d "=" -f1)
8784                 LRU_SIZE=$($LCTL get_param -n $PARAM)
8785                 if [[ $LRU_SIZE -gt $(default_lru_size) ]]; then
8786                         NSDIR=$(echo $PARAM | cut -d "." -f1-3)
8787                         log "NSDIR=$NSDIR"
8788                         log "NS=$(basename $NSDIR)"
8789                         break
8790                 fi
8791         done
8792
8793         if [[ -z "$NSDIR" || $LRU_SIZE -lt $(default_lru_size) ]]; then
8794                 skip "Not enough cached locks created!"
8795                 return 0
8796         fi
8797         log "LRU=$LRU_SIZE"
8798
8799         local SLEEP=30
8800
8801         # We know that lru resize allows one client to hold $LIMIT locks
8802         # for 10h. After that locks begin to be killed by client.
8803         local MAX_HRS=10
8804         local LIMIT=$($LCTL get_param -n $NSDIR.pool.limit)
8805         log "LIMIT=$LIMIT"
8806         if [ $LIMIT -lt $LRU_SIZE ]; then
8807             skip "Limit is too small $LIMIT"
8808             return 0
8809         fi
8810
8811         # Make LVF so higher that sleeping for $SLEEP is enough to _start_
8812         # killing locks. Some time was spent for creating locks. This means
8813         # that up to the moment of sleep finish we must have killed some of
8814         # them (10-100 locks). This depends on how fast ther were created.
8815         # Many of them were touched in almost the same moment and thus will
8816         # be killed in groups.
8817         local LVF=$(($MAX_HRS * 60 * 60 / $SLEEP * $LIMIT / $LRU_SIZE))
8818
8819         # Use $LRU_SIZE_B here to take into account real number of locks
8820         # created in the case of CMD, LRU_SIZE_B != $NR in most of cases
8821         local LRU_SIZE_B=$LRU_SIZE
8822         log "LVF=$LVF"
8823         local OLD_LVF=$($LCTL get_param -n $NSDIR.pool.lock_volume_factor)
8824         log "OLD_LVF=$OLD_LVF"
8825         $LCTL set_param -n $NSDIR.pool.lock_volume_factor $LVF
8826
8827         # Let's make sure that we really have some margin. Client checks
8828         # cached locks every 10 sec.
8829         SLEEP=$((SLEEP+20))
8830         log "Sleep ${SLEEP} sec"
8831         local SEC=0
8832         while ((SEC<$SLEEP)); do
8833                 echo -n "..."
8834                 sleep 5
8835                 SEC=$((SEC+5))
8836                 LRU_SIZE=$($LCTL get_param -n $NSDIR/lru_size)
8837                 echo -n "$LRU_SIZE"
8838         done
8839         echo ""
8840         $LCTL set_param -n $NSDIR.pool.lock_volume_factor $OLD_LVF
8841         local LRU_SIZE_A=$($LCTL get_param -n $NSDIR.lru_size)
8842
8843         [[ $LRU_SIZE_B -gt $LRU_SIZE_A ]] || {
8844                 error "No locks dropped in ${SLEEP}s. LRU size: $LRU_SIZE_A"
8845                 unlinkmany $DIR/$tdir/f $NR
8846                 return
8847         }
8848
8849         log "Dropped "$((LRU_SIZE_B-LRU_SIZE_A))" locks in ${SLEEP}s"
8850         log "unlink $NR files at $DIR/$tdir"
8851         unlinkmany $DIR/$tdir/f $NR
8852 }
8853 run_test 124a "lru resize ======================================="
8854
8855 get_max_pool_limit()
8856 {
8857         local limit=$($LCTL get_param \
8858                       -n ldlm.namespaces.*-MDT0000-mdc-*.pool.limit)
8859         local max=0
8860         for l in $limit; do
8861                 if [[ $l -gt $max ]]; then
8862                         max=$l
8863                 fi
8864         done
8865         echo $max
8866 }
8867
8868 test_124b() {
8869         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8870         [ -z "$($LCTL get_param -n mdc.*.connect_flags | grep lru_resize)" ] &&
8871                 skip "no lru resize on server" && return 0
8872
8873         LIMIT=$(get_max_pool_limit)
8874
8875         NR=$(($(default_lru_size)*20))
8876         if [[ $NR -gt $LIMIT ]]; then
8877                 log "Limit lock number by $LIMIT locks"
8878                 NR=$LIMIT
8879         fi
8880
8881         IFree=$(mdsrate_inodes_available)
8882         if [ $IFree -lt $NR ]; then
8883                 log "Limit lock number by $IFree inodes"
8884                 NR=$IFree
8885         fi
8886
8887         lru_resize_disable mdc
8888         test_mkdir -p $DIR/$tdir/disable_lru_resize ||
8889                 error "failed to create $DIR/$tdir/disable_lru_resize"
8890
8891         createmany -o $DIR/$tdir/disable_lru_resize/f $NR
8892         log "doing ls -la $DIR/$tdir/disable_lru_resize 3 times"
8893         cancel_lru_locks mdc
8894         stime=`date +%s`
8895         PID=""
8896         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
8897         PID="$PID $!"
8898         sleep 2
8899         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
8900         PID="$PID $!"
8901         sleep 2
8902         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
8903         PID="$PID $!"
8904         wait $PID
8905         etime=`date +%s`
8906         nolruresize_delta=$((etime-stime))
8907         log "ls -la time: $nolruresize_delta seconds"
8908         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
8909         unlinkmany $DIR/$tdir/disable_lru_resize/f $NR
8910
8911         lru_resize_enable mdc
8912         test_mkdir -p $DIR/$tdir/enable_lru_resize ||
8913                 error "failed to create $DIR/$tdir/enable_lru_resize"
8914
8915         createmany -o $DIR/$tdir/enable_lru_resize/f $NR
8916         log "doing ls -la $DIR/$tdir/enable_lru_resize 3 times"
8917         cancel_lru_locks mdc
8918         stime=`date +%s`
8919         PID=""
8920         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
8921         PID="$PID $!"
8922         sleep 2
8923         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
8924         PID="$PID $!"
8925         sleep 2
8926         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
8927         PID="$PID $!"
8928         wait $PID
8929         etime=`date +%s`
8930         lruresize_delta=$((etime-stime))
8931         log "ls -la time: $lruresize_delta seconds"
8932         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
8933
8934         if [ $lruresize_delta -gt $nolruresize_delta ]; then
8935                 log "ls -la is $(((lruresize_delta - $nolruresize_delta) * 100 / $nolruresize_delta))% slower with lru resize enabled"
8936         elif [ $nolruresize_delta -gt $lruresize_delta ]; then
8937                 log "ls -la is $(((nolruresize_delta - $lruresize_delta) * 100 / $nolruresize_delta))% faster with lru resize enabled"
8938         else
8939                 log "lru resize performs the same with no lru resize"
8940         fi
8941         unlinkmany $DIR/$tdir/enable_lru_resize/f $NR
8942 }
8943 run_test 124b "lru resize (performance test) ======================="
8944
8945 test_124c() {
8946         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8947         [ -z "$($LCTL get_param -n mdc.*.connect_flags | grep lru_resize)" ] &&
8948                 skip "no lru resize on server" && return 0
8949
8950         # cache ununsed locks on client
8951         local nr=100
8952         cancel_lru_locks mdc
8953         test_mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
8954         createmany -o $DIR/$tdir/f $nr ||
8955                 error "failed to create $nr files in $DIR/$tdir"
8956         ls -l $DIR/$tdir > /dev/null
8957
8958         local nsdir="ldlm.namespaces.*-MDT0000-mdc-*"
8959         local unused=$($LCTL get_param -n $nsdir.lock_unused_count)
8960         local max_age=$($LCTL get_param -n $nsdir.lru_max_age)
8961         local recalc_p=$($LCTL get_param -n $nsdir.pool.recalc_period)
8962         echo "unused=$unused, max_age=$max_age, recalc_p=$recalc_p"
8963
8964         # set lru_max_age to 1 sec
8965         $LCTL set_param $nsdir.lru_max_age=1000 # jiffies
8966         echo "sleep $((recalc_p * 2)) seconds..."
8967         sleep $((recalc_p * 2))
8968
8969         local remaining=$($LCTL get_param -n $nsdir.lock_unused_count)
8970         # restore lru_max_age
8971         $LCTL set_param -n $nsdir.lru_max_age $max_age
8972         [ $remaining -eq 0 ] || error "$remaining locks are not canceled"
8973         unlinkmany $DIR/$tdir/f $nr
8974 }
8975 run_test 124c "LRUR cancel very aged locks"
8976
8977 test_125() { # 13358
8978         [ -z "$(lctl get_param -n llite.*.client_type | grep local)" ] && skip "must run as local client" && return
8979         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl)" ] && skip "must have acl enabled" && return
8980         [ -z "$(which setfacl)" ] && skip "must have setfacl tool" && return
8981         test_mkdir -p $DIR/d125 || error "mkdir failed"
8982         $SETSTRIPE -S 65536 -c -1 $DIR/d125 || error "setstripe failed"
8983         setfacl -R -m u:bin:rwx $DIR/d125 || error "setfacl $DIR/d125 failed"
8984         ls -ld $DIR/d125 || error "cannot access $DIR/d125"
8985 }
8986 run_test 125 "don't return EPROTO when a dir has a non-default striping and ACLs"
8987
8988 test_126() { # bug 12829/13455
8989         [ -z "$(lctl get_param -n llite.*.client_type | grep local)" ] && skip "must run as local client" && return
8990         [ "$UID" != 0 ] && skip_env "skipping $TESTNAME (must run as root)" && return
8991         $GSS && skip "must run as gss disabled" && return
8992
8993         $RUNAS -u 0 -g 1 touch $DIR/$tfile || error "touch failed"
8994         gid=`ls -n $DIR/$tfile | awk '{print $4}'`
8995         rm -f $DIR/$tfile
8996         [ $gid -eq "1" ] || error "gid is set to" $gid "instead of 1"
8997 }
8998 run_test 126 "check that the fsgid provided by the client is taken into account"
8999
9000 test_127a() { # bug 15521
9001         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9002         $SETSTRIPE -i 0 -c 1 $DIR/$tfile || error "setstripe failed"
9003         $LCTL set_param osc.*.stats=0
9004         FSIZE=$((2048 * 1024))
9005         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
9006         cancel_lru_locks osc
9007         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE
9008
9009         $LCTL get_param osc.*0000-osc-*.stats | grep samples > $DIR/${tfile}.tmp
9010         while read NAME COUNT SAMP UNIT MIN MAX SUM SUMSQ; do
9011                 echo "got $COUNT $NAME"
9012                 [ ! $MIN ] && error "Missing min value for $NAME proc entry"
9013                 eval $NAME=$COUNT || error "Wrong proc format"
9014
9015                 case $NAME in
9016                         read_bytes|write_bytes)
9017                         [ $MIN -lt 4096 ] && error "min is too small: $MIN"
9018                         [ $MIN -gt $FSIZE ] && error "min is too big: $MIN"
9019                         [ $MAX -lt 4096 ] && error "max is too small: $MAX"
9020                         [ $MAX -gt $FSIZE ] && error "max is too big: $MAX"
9021                         [ $SUM -ne $FSIZE ] && error "sum is wrong: $SUM"
9022                         [ $SUMSQ -lt $(((FSIZE /4096) * (4096 * 4096))) ] &&
9023                                 error "sumsquare is too small: $SUMSQ"
9024                         [ $SUMSQ -gt $((FSIZE * FSIZE)) ] &&
9025                                 error "sumsquare is too big: $SUMSQ"
9026                         ;;
9027                         *) ;;
9028                 esac
9029         done < $DIR/${tfile}.tmp
9030
9031         #check that we actually got some stats
9032         [ "$read_bytes" ] || error "Missing read_bytes stats"
9033         [ "$write_bytes" ] || error "Missing write_bytes stats"
9034         [ "$read_bytes" != 0 ] || error "no read done"
9035         [ "$write_bytes" != 0 ] || error "no write done"
9036 }
9037 run_test 127a "verify the client stats are sane"
9038
9039 test_127b() { # bug LU-333
9040         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9041         $LCTL set_param llite.*.stats=0
9042         FSIZE=65536 # sized fixed to match PAGE_SIZE for most clients
9043         # perform 2 reads and writes so MAX is different from SUM.
9044         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
9045         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
9046         cancel_lru_locks osc
9047         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE count=1
9048         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE count=1
9049
9050         $LCTL get_param llite.*.stats | grep samples > $TMP/${tfile}.tmp
9051         while read NAME COUNT SAMP UNIT MIN MAX SUM SUMSQ; do
9052                 echo "got $COUNT $NAME"
9053                 eval $NAME=$COUNT || error "Wrong proc format"
9054
9055         case $NAME in
9056                 read_bytes)
9057                         [ $COUNT -ne 2 ] && error "count is not 2: $COUNT"
9058                         [ $MIN -ne $FSIZE ] && error "min is not $FSIZE: $MIN"
9059                         [ $MAX -ne $FSIZE ] && error "max is incorrect: $MAX"
9060                         [ $SUM -ne $((FSIZE * 2)) ] && error "sum is wrong: $SUM"
9061                         ;;
9062                 write_bytes)
9063                         [ $COUNT -ne 2 ] && error "count is not 2: $COUNT"
9064                         [ $MIN -ne $FSIZE ] && error "min is not $FSIZE: $MIN"
9065                         [ $MAX -ne $FSIZE ] && error "max is incorrect: $MAX"
9066                         [ $SUM -ne $((FSIZE * 2)) ] && error "sum is wrong: $SUM"
9067                         ;;
9068                         *) ;;
9069                 esac
9070         done < $TMP/${tfile}.tmp
9071
9072         #check that we actually got some stats
9073         [ "$read_bytes" ] || error "Missing read_bytes stats"
9074         [ "$write_bytes" ] || error "Missing write_bytes stats"
9075         [ "$read_bytes" != 0 ] || error "no read done"
9076         [ "$write_bytes" != 0 ] || error "no write done"
9077
9078         rm -f $TMP/${tfile}.tmp
9079 }
9080 run_test 127b "verify the llite client stats are sane"
9081
9082 test_128() { # bug 15212
9083         touch $DIR/$tfile
9084         $LFS 2>&1 <<-EOF | tee $TMP/$tfile.log
9085                 find $DIR/$tfile
9086                 find $DIR/$tfile
9087         EOF
9088
9089         result=$(grep error $TMP/$tfile.log)
9090         rm -f $DIR/$tfile $TMP/$tfile.log
9091         [ -z "$result" ] ||
9092                 error "consecutive find's under interactive lfs failed"
9093 }
9094 run_test 128 "interactive lfs for 2 consecutive find's"
9095
9096 set_dir_limits () {
9097         local mntdev
9098         local canondev
9099         local node
9100
9101         local ldproc=/proc/fs/ldiskfs
9102         local facets=$(get_facets MDS)
9103
9104         for facet in ${facets//,/ }; do
9105                 canondev=$(ldiskfs_canon \
9106                            *.$(convert_facet2label $facet).mntdev $facet)
9107                 do_facet $facet "test -e $ldproc/$canondev/max_dir_size" ||
9108                         ldproc=/sys/fs/ldiskfs
9109                 do_facet $facet "echo $1 >$ldproc/$canondev/max_dir_size"
9110                 do_facet $facet "echo $2 >$ldproc/$canondev/warning_dir_size"
9111         done
9112 }
9113
9114 check_mds_dmesg() {
9115         local facets=$(get_facets MDS)
9116         for facet in ${facets//,/ }; do
9117                 do_facet $facet "dmesg | tail -3 | grep -q $1" && return 0
9118         done
9119         return 1
9120 }
9121
9122 test_129() {
9123         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.5.56) ]] ||
9124                 { skip "Need MDS version with at least 2.5.56"; return 0; }
9125
9126         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9127         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
9128                 skip "Only applicable to ldiskfs-based MDTs"
9129                 return
9130         fi
9131         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9132         local ENOSPC=28
9133         local EFBIG=27
9134         local has_warning=false
9135
9136         rm -rf $DIR/$tdir
9137         mkdir -p $DIR/$tdir
9138
9139         # block size of mds1
9140         local maxsize=$(($($LCTL get_param -n mdc.*MDT0000*.blocksize) * 5))
9141         set_dir_limits $maxsize $maxsize
9142         local dirsize=$(stat -c%s "$DIR/$tdir")
9143         local nfiles=0
9144         while [[ $dirsize -le $maxsize ]]; do
9145                 $MULTIOP $DIR/$tdir/file_base_$nfiles Oc
9146                 rc=$?
9147                 if ! $has_warning; then
9148                         check_mds_dmesg '"is approaching"' && has_warning=true
9149                 fi
9150                 # check two errors:
9151                 # ENOSPC for new ext4 max_dir_size (kernel commit df981d03ee)
9152                 # EFBIG for previous versions included in ldiskfs series
9153                 if [ $rc -eq $EFBIG -o $rc -eq $ENOSPC ]; then
9154                         set_dir_limits 0 0
9155                         echo "return code $rc received as expected"
9156
9157                         createmany -o $DIR/$tdir/file_extra_$nfiles. 5 ||
9158                                 error_exit "create failed w/o dir size limit"
9159
9160                         check_mds_dmesg '"has reached"' ||
9161                                 error_exit "reached message should be output"
9162
9163                         [ $has_warning -eq 0 ] &&
9164                                 error_exit "warning message should be output"
9165
9166                         dirsize=$(stat -c%s "$DIR/$tdir")
9167
9168                         [[ $dirsize -ge $maxsize ]] && return 0
9169                         error_exit "current dir size $dirsize, " \
9170                                    "previous limit $maxsize"
9171                 elif [ $rc -ne 0 ]; then
9172                         set_dir_limits 0 0
9173                         error_exit "return $rc received instead of expected " \
9174                                    "$EFBIG or $ENOSPC, files in dir $dirsize"
9175                 fi
9176                 nfiles=$((nfiles + 1))
9177                 dirsize=$(stat -c%s "$DIR/$tdir")
9178         done
9179
9180         set_dir_limits 0 0
9181         error "exceeded dir size limit $maxsize($MDSCOUNT) : $dirsize bytes"
9182 }
9183 run_test 129 "test directory size limit ========================"
9184
9185 OLDIFS="$IFS"
9186 cleanup_130() {
9187         trap 0
9188         IFS="$OLDIFS"
9189 }
9190
9191 test_130a() {
9192         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
9193         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP" &&
9194                 return
9195
9196         trap cleanup_130 EXIT RETURN
9197
9198         local fm_file=$DIR/$tfile
9199         $SETSTRIPE -S 65536 -c 1 $fm_file || error "setstripe on $fm_file"
9200         dd if=/dev/zero of=$fm_file bs=65536 count=1 ||
9201                 error "dd failed for $fm_file"
9202
9203         # LU-1795: test filefrag/FIEMAP once, even if unsupported
9204         filefrag -ves $fm_file
9205         RC=$?
9206         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
9207                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
9208         [ $RC != 0 ] && error "filefrag $fm_file failed"
9209
9210         filefrag_op=$(filefrag -ve $fm_file |
9211                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
9212         lun=$($GETSTRIPE -i $fm_file)
9213
9214         start_blk=`echo $filefrag_op | cut -d: -f2 | cut -d. -f1`
9215         IFS=$'\n'
9216         tot_len=0
9217         for line in $filefrag_op
9218         do
9219                 frag_lun=`echo $line | cut -d: -f5`
9220                 ext_len=`echo $line | cut -d: -f4`
9221                 if (( $frag_lun != $lun )); then
9222                         cleanup_130
9223                         error "FIEMAP on 1-stripe file($fm_file) failed"
9224                         return
9225                 fi
9226                 (( tot_len += ext_len ))
9227         done
9228
9229         if (( lun != frag_lun || start_blk != 0 || tot_len != 64 )); then
9230                 cleanup_130
9231                 error "FIEMAP on 1-stripe file($fm_file) failed;"
9232                 return
9233         fi
9234
9235         cleanup_130
9236
9237         echo "FIEMAP on single striped file succeeded"
9238 }
9239 run_test 130a "FIEMAP (1-stripe file)"
9240
9241 test_130b() {
9242         [ "$OSTCOUNT" -lt "2" ] &&
9243                 skip_env "skipping FIEMAP on $OSTCOUNT-stripe file" && return
9244
9245         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
9246         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP" &&
9247                 return
9248
9249         trap cleanup_130 EXIT RETURN
9250
9251         local fm_file=$DIR/$tfile
9252         $SETSTRIPE -S 65536 -c $OSTCOUNT $fm_file ||
9253                         error "setstripe on $fm_file"
9254         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
9255                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
9256
9257         dd if=/dev/zero of=$fm_file bs=1M count=$OSTCOUNT ||
9258                 error "dd failed on $fm_file"
9259
9260         filefrag -ves $fm_file || error "filefrag $fm_file failed"
9261         filefrag_op=$(filefrag -ve $fm_file |
9262                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
9263
9264         last_lun=$(echo $filefrag_op | cut -d: -f5 |
9265                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9266
9267         IFS=$'\n'
9268         tot_len=0
9269         num_luns=1
9270         for line in $filefrag_op
9271         do
9272                 frag_lun=$(echo $line | cut -d: -f5 |
9273                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9274                 ext_len=$(echo $line | cut -d: -f4)
9275                 if (( $frag_lun != $last_lun )); then
9276                         if (( tot_len != 1024 )); then
9277                                 cleanup_130
9278                                 error "FIEMAP on $fm_file failed; returned " \
9279                                 "len $tot_len for OST $last_lun instead of 1024"
9280                                 return
9281                         else
9282                                 (( num_luns += 1 ))
9283                                 tot_len=0
9284                         fi
9285                 fi
9286                 (( tot_len += ext_len ))
9287                 last_lun=$frag_lun
9288         done
9289         if (( num_luns != $OSTCOUNT || tot_len != 1024 )); then
9290                 cleanup_130
9291                 error "FIEMAP on $fm_file failed; returned wrong number of " \
9292                         "luns or wrong len for OST $last_lun"
9293                 return
9294         fi
9295
9296         cleanup_130
9297
9298         echo "FIEMAP on $OSTCOUNT-stripe file succeeded"
9299 }
9300 run_test 130b "FIEMAP ($OSTCOUNT-stripe file)"
9301
9302 test_130c() {
9303         [ "$OSTCOUNT" -lt "2" ] &&
9304                 skip_env "skipping FIEMAP on 2-stripe file" && return
9305
9306         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
9307         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" &&
9308                 return
9309
9310         trap cleanup_130 EXIT RETURN
9311
9312         local fm_file=$DIR/$tfile
9313         $SETSTRIPE -S 65536 -c 2 $fm_file || error "setstripe on $fm_file"
9314         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
9315                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
9316
9317         dd if=/dev/zero of=$fm_file seek=1 bs=1M count=1 ||
9318                         error "dd failed on $fm_file"
9319
9320         filefrag -ves $fm_file || error "filefrag $fm_file failed"
9321         filefrag_op=$(filefrag -ve $fm_file |
9322                 sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
9323
9324         last_lun=$(echo $filefrag_op | cut -d: -f5 |
9325                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9326
9327         IFS=$'\n'
9328         tot_len=0
9329         num_luns=1
9330         for line in $filefrag_op
9331         do
9332                 frag_lun=$(echo $line | cut -d: -f5 |
9333                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9334                 ext_len=$(echo $line | cut -d: -f4)
9335                 if (( $frag_lun != $last_lun )); then
9336                         logical=`echo $line | cut -d: -f2 | cut -d. -f1`
9337                         if (( logical != 512 )); then
9338                                 cleanup_130
9339                                 error "FIEMAP on $fm_file failed; returned " \
9340                                 "logical start for lun $logical instead of 512"
9341                                 return
9342                         fi
9343                         if (( tot_len != 512 )); then
9344                                 cleanup_130
9345                                 error "FIEMAP on $fm_file failed; returned " \
9346                                 "len $tot_len for OST $last_lun instead of 1024"
9347                                 return
9348                         else
9349                                 (( num_luns += 1 ))
9350                                 tot_len=0
9351                         fi
9352                 fi
9353                 (( tot_len += ext_len ))
9354                 last_lun=$frag_lun
9355         done
9356         if (( num_luns != 2 || tot_len != 512 )); then
9357                 cleanup_130
9358                 error "FIEMAP on $fm_file failed; returned wrong number of " \
9359                         "luns or wrong len for OST $last_lun"
9360                 return
9361         fi
9362
9363         cleanup_130
9364
9365         echo "FIEMAP on 2-stripe file with hole succeeded"
9366 }
9367 run_test 130c "FIEMAP (2-stripe file with hole)"
9368
9369 test_130d() {
9370         [ "$OSTCOUNT" -lt "3" ] &&
9371                 skip_env "skipping FIEMAP on N-stripe file test" && return
9372
9373         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
9374         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" &&
9375                 return
9376
9377         trap cleanup_130 EXIT RETURN
9378
9379         local fm_file=$DIR/$tfile
9380         $SETSTRIPE -S 65536 -c $OSTCOUNT $fm_file ||
9381                         error "setstripe on $fm_file"
9382         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
9383                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
9384
9385         local actual_stripecnt=$($GETSTRIPE -c $fm_file)
9386         dd if=/dev/zero of=$fm_file bs=1M count=$actual_stripecnt ||
9387                 error "dd failed on $fm_file"
9388
9389         filefrag -ves $fm_file || error "filefrag $fm_file failed"
9390         filefrag_op=$(filefrag -ve $fm_file |
9391                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
9392
9393         last_lun=$(echo $filefrag_op | cut -d: -f5 |
9394                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9395
9396         IFS=$'\n'
9397         tot_len=0
9398         num_luns=1
9399         for line in $filefrag_op
9400         do
9401                 frag_lun=$(echo $line | cut -d: -f5 |
9402                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9403                 ext_len=$(echo $line | cut -d: -f4)
9404                 if (( $frag_lun != $last_lun )); then
9405                         if (( tot_len != 1024 )); then
9406                                 cleanup_130
9407                                 error "FIEMAP on $fm_file failed; returned " \
9408                                 "len $tot_len for OST $last_lun instead of 1024"
9409                                 return
9410                         else
9411                                 (( num_luns += 1 ))
9412                                 tot_len=0
9413                         fi
9414                 fi
9415                 (( tot_len += ext_len ))
9416                 last_lun=$frag_lun
9417         done
9418         if (( num_luns != actual_stripecnt || tot_len != 1024 )); then
9419                 cleanup_130
9420                 error "FIEMAP on $fm_file failed; returned wrong number of " \
9421                         "luns or wrong len for OST $last_lun"
9422                 return
9423         fi
9424
9425         cleanup_130
9426
9427         echo "FIEMAP on N-stripe file succeeded"
9428 }
9429 run_test 130d "FIEMAP (N-stripe file)"
9430
9431 test_130e() {
9432         [ "$OSTCOUNT" -lt "2" ] &&
9433                 skip_env "skipping continuation FIEMAP test" && return
9434
9435         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
9436         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" && return
9437
9438         trap cleanup_130 EXIT RETURN
9439
9440         local fm_file=$DIR/$tfile
9441         $SETSTRIPE -S 131072 -c 2 $fm_file || error "setstripe on $fm_file"
9442         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
9443                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
9444
9445         NUM_BLKS=512
9446         EXPECTED_LEN=$(( (NUM_BLKS / 2) * 64 ))
9447         for ((i = 0; i < $NUM_BLKS; i++))
9448         do
9449                 dd if=/dev/zero of=$fm_file count=1 bs=64k seek=$((2*$i)) conv=notrunc > /dev/null 2>&1
9450         done
9451
9452         filefrag -ves $fm_file || error "filefrag $fm_file failed"
9453         filefrag_op=$(filefrag -ve $fm_file |
9454                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
9455
9456         last_lun=$(echo $filefrag_op | cut -d: -f5 |
9457                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9458
9459         IFS=$'\n'
9460         tot_len=0
9461         num_luns=1
9462         for line in $filefrag_op
9463         do
9464                 frag_lun=$(echo $line | cut -d: -f5 |
9465                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9466                 ext_len=$(echo $line | cut -d: -f4)
9467                 if (( $frag_lun != $last_lun )); then
9468                         if (( tot_len != $EXPECTED_LEN )); then
9469                                 cleanup_130
9470                                 error "FIEMAP on $fm_file failed; returned " \
9471                                 "len $tot_len for OST $last_lun instead " \
9472                                 "of $EXPECTED_LEN"
9473                                 return
9474                         else
9475                                 (( num_luns += 1 ))
9476                                 tot_len=0
9477                         fi
9478                 fi
9479                 (( tot_len += ext_len ))
9480                 last_lun=$frag_lun
9481         done
9482         if (( num_luns != 2 || tot_len != $EXPECTED_LEN )); then
9483                 cleanup_130
9484                 error "FIEMAP on $fm_file failed; returned wrong number " \
9485                         "of luns or wrong len for OST $last_lun"
9486                 return
9487         fi
9488
9489         cleanup_130
9490
9491         echo "FIEMAP with continuation calls succeeded"
9492 }
9493 run_test 130e "FIEMAP (test continuation FIEMAP calls)"
9494
9495 # Test for writev/readv
9496 test_131a() {
9497         rwv -f $DIR/$tfile -w -n 3 524288 1048576 1572864 || \
9498         error "writev test failed"
9499         rwv -f $DIR/$tfile -r -v -n 2 1572864 1048576 || \
9500         error "readv failed"
9501         rm -f $DIR/$tfile
9502 }
9503 run_test 131a "test iov's crossing stripe boundary for writev/readv"
9504
9505 test_131b() {
9506         rwv -f $DIR/$tfile -w -a -n 3 524288 1048576 1572864 || \
9507         error "append writev test failed"
9508         rwv -f $DIR/$tfile -w -a -n 2 1572864 1048576 || \
9509         error "append writev test failed"
9510         rm -f $DIR/$tfile
9511 }
9512 run_test 131b "test append writev"
9513
9514 test_131c() {
9515         rwv -f $DIR/$tfile -w -d -n 1 1048576 || return 0
9516         error "NOT PASS"
9517 }
9518 run_test 131c "test read/write on file w/o objects"
9519
9520 test_131d() {
9521         rwv -f $DIR/$tfile -w -n 1 1572864
9522         NOB=`rwv -f $DIR/$tfile -r -n 3 524288 524288 1048576 | awk '/error/ {print $6}'`
9523         if [ "$NOB" != 1572864 ]; then
9524                 error "Short read filed: read $NOB bytes instead of 1572864"
9525         fi
9526         rm -f $DIR/$tfile
9527 }
9528 run_test 131d "test short read"
9529
9530 test_131e() {
9531         rwv -f $DIR/$tfile -w -s 1048576 -n 1 1048576
9532         rwv -f $DIR/$tfile -r -z -s 0 -n 1 524288 || \
9533         error "read hitting hole failed"
9534         rm -f $DIR/$tfile
9535 }
9536 run_test 131e "test read hitting hole"
9537
9538 check_stats() {
9539         local facet=$1
9540         local op=$2
9541         local want=${3:-0}
9542         local res
9543
9544         case $facet in
9545         mds*) res=$(do_facet $facet \
9546                    $LCTL get_param mdt.$FSNAME-MDT0000.md_stats | grep "$op")
9547                  ;;
9548         ost*) res=$(do_facet $facet \
9549                    $LCTL get_param obdfilter.$FSNAME-OST0000.stats | grep "$op")
9550                  ;;
9551         *) error "Wrong facet '$facet'" ;;
9552         esac
9553         echo $res
9554         [ "$res" ] || error "The counter for $op on $facet was not incremented"
9555         # if the argument $3 is zero, it means any stat increment is ok.
9556         if [[ $want -gt 0 ]]; then
9557                 local count=$(echo $res | awk '{ print $2 }')
9558                 [[ $count -ne $want ]] &&
9559                         error "The $op counter on $facet is $count, not $want"
9560         fi
9561 }
9562
9563 test_133a() {
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
9568         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
9569                 { skip "MDS doesn't support rename stats"; return; }
9570         local testdir=$DIR/${tdir}/stats_testdir
9571         mkdir -p $DIR/${tdir}
9572
9573         # clear stats.
9574         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
9575         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
9576
9577         # verify mdt stats first.
9578         mkdir ${testdir} || error "mkdir failed"
9579         check_stats $SINGLEMDS "mkdir" 1
9580         touch ${testdir}/${tfile} || error "touch failed"
9581         check_stats $SINGLEMDS "open" 1
9582         check_stats $SINGLEMDS "close" 1
9583         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.8.54) ] && {
9584                 mknod ${testdir}/${tfile}-pipe p || error "mknod failed"
9585                 check_stats $SINGLEMDS "mknod" 2
9586         }
9587         rm -f ${testdir}/${tfile}-pipe || error "pipe remove failed"
9588         check_stats $SINGLEMDS "unlink" 1
9589         rm -f ${testdir}/${tfile} || error "file remove failed"
9590         check_stats $SINGLEMDS "unlink" 2
9591
9592         # remove working dir and check mdt stats again.
9593         rmdir ${testdir} || error "rmdir failed"
9594         check_stats $SINGLEMDS "rmdir" 1
9595
9596         local testdir1=$DIR/${tdir}/stats_testdir1
9597         mkdir -p ${testdir}
9598         mkdir -p ${testdir1}
9599         touch ${testdir1}/test1
9600         mv ${testdir1}/test1 ${testdir} || error "file crossdir rename"
9601         check_stats $SINGLEMDS "crossdir_rename" 1
9602
9603         mv ${testdir}/test1 ${testdir}/test0 || error "file samedir rename"
9604         check_stats $SINGLEMDS "samedir_rename" 1
9605
9606         rm -rf $DIR/${tdir}
9607 }
9608 run_test 133a "Verifying MDT stats ========================================"
9609
9610 test_133b() {
9611         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9612         remote_ost_nodsh && skip "remote OST with nodsh" && return
9613         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9614         local testdir=$DIR/${tdir}/stats_testdir
9615         mkdir -p ${testdir} || error "mkdir failed"
9616         touch ${testdir}/${tfile} || error "touch failed"
9617         cancel_lru_locks mdc
9618
9619         # clear stats.
9620         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
9621         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
9622
9623         # extra mdt stats verification.
9624         chmod 444 ${testdir}/${tfile} || error "chmod failed"
9625         check_stats $SINGLEMDS "setattr" 1
9626         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
9627         if [ $(lustre_version_code $SINGLEMDS) -ne $(version_code 2.2.0) ]
9628         then            # LU-1740
9629                 ls -l ${testdir}/${tfile} > /dev/null|| error "ls failed"
9630                 check_stats $SINGLEMDS "getattr" 1
9631         fi
9632         $LFS df || error "lfs failed"
9633         check_stats $SINGLEMDS "statfs" 1
9634
9635         rm -rf $DIR/${tdir}
9636 }
9637 run_test 133b "Verifying extra MDT stats =================================="
9638
9639 test_133c() {
9640         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9641         remote_ost_nodsh && skip "remote OST with nodsh" && return
9642         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9643         local testdir=$DIR/${tdir}/stats_testdir
9644         test_mkdir -p ${testdir} || error "mkdir failed"
9645
9646         # verify obdfilter stats.
9647         $SETSTRIPE -c 1 -i 0 ${testdir}/${tfile}
9648         sync
9649         cancel_lru_locks osc
9650         wait_delete_completed
9651
9652         # clear stats.
9653         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
9654         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
9655
9656         dd if=/dev/zero of=${testdir}/${tfile} conv=notrunc bs=512k count=1 || error "dd failed"
9657         sync
9658         cancel_lru_locks osc
9659         check_stats ost1 "write" 1
9660
9661         dd if=${testdir}/${tfile} of=/dev/null bs=1k count=1 || error "dd failed"
9662         check_stats ost1 "read" 1
9663
9664         > ${testdir}/${tfile} || error "truncate failed"
9665         check_stats ost1 "punch" 1
9666
9667         rm -f ${testdir}/${tfile} || error "file remove failed"
9668         wait_delete_completed
9669         check_stats ost1 "destroy" 1
9670
9671         rm -rf $DIR/${tdir}
9672 }
9673 run_test 133c "Verifying OST stats ========================================"
9674
9675 order_2() {
9676         local value=$1
9677         local orig=$value
9678         local order=1
9679
9680         while [ $value -ge 2 ]; do
9681                 order=$((order*2))
9682                 value=$((value/2))
9683         done
9684
9685         if [ $orig -gt $order ]; then
9686                 order=$((order*2))
9687         fi
9688         echo $order
9689 }
9690
9691 size_in_KMGT() {
9692     local value=$1
9693     local size=('K' 'M' 'G' 'T');
9694     local i=0
9695     local size_string=$value
9696
9697     while [ $value -ge 1024 ]; do
9698         if [ $i -gt 3 ]; then
9699             #T is the biggest unit we get here, if that is bigger,
9700             #just return XXXT
9701             size_string=${value}T
9702             break
9703         fi
9704         value=$((value >> 10))
9705         if [ $value -lt 1024 ]; then
9706             size_string=${value}${size[$i]}
9707             break
9708         fi
9709         i=$((i + 1))
9710     done
9711
9712     echo $size_string
9713 }
9714
9715 get_rename_size() {
9716     local size=$1
9717     local context=${2:-.}
9718     local sample=$(do_facet $SINGLEMDS $LCTL get_param mdt.*.rename_stats |
9719                 grep -A1 $context |
9720                 awk '/ '${size}'/ {print $4}' | sed -e "s/,//g")
9721     echo $sample
9722 }
9723
9724 test_133d() {
9725         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9726         remote_ost_nodsh && skip "remote OST with nodsh" && return
9727         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9728         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
9729         { skip "MDS doesn't support rename stats"; return; }
9730
9731         local testdir1=$DIR/${tdir}/stats_testdir1
9732         local testdir2=$DIR/${tdir}/stats_testdir2
9733
9734         do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
9735
9736         mkdir -p ${testdir1} || error "mkdir failed"
9737         mkdir -p ${testdir2} || error "mkdir failed"
9738
9739         createmany -o $testdir1/test 512 || error "createmany failed"
9740
9741         # check samedir rename size
9742         mv ${testdir1}/test0 ${testdir1}/test_0
9743
9744         local testdir1_size=$(ls -l $DIR/${tdir} |
9745                 awk '/stats_testdir1/ {print $5}')
9746         local testdir2_size=$(ls -l $DIR/${tdir} |
9747                 awk '/stats_testdir2/ {print $5}')
9748
9749         testdir1_size=$(order_2 $testdir1_size)
9750         testdir2_size=$(order_2 $testdir2_size)
9751
9752         testdir1_size=$(size_in_KMGT $testdir1_size)
9753         testdir2_size=$(size_in_KMGT $testdir2_size)
9754
9755         echo "source rename dir size: ${testdir1_size}"
9756         echo "target rename dir size: ${testdir2_size}"
9757
9758         local cmd="do_facet $SINGLEMDS $LCTL get_param mdt.*.rename_stats"
9759         eval $cmd || error "$cmd failed"
9760         local samedir=$($cmd | grep 'same_dir')
9761         local same_sample=$(get_rename_size $testdir1_size)
9762         [ -z "$samedir" ] && error "samedir_rename_size count error"
9763         [[ $same_sample -eq 1 ]] ||
9764                 error "samedir_rename_size error $same_sample"
9765         echo "Check same dir rename stats success"
9766
9767         do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
9768
9769         # check crossdir rename size
9770         mv ${testdir1}/test_0 ${testdir2}/test_0
9771
9772         testdir1_size=$(ls -l $DIR/${tdir} |
9773                 awk '/stats_testdir1/ {print $5}')
9774         testdir2_size=$(ls -l $DIR/${tdir} |
9775                 awk '/stats_testdir2/ {print $5}')
9776
9777         testdir1_size=$(order_2 $testdir1_size)
9778         testdir2_size=$(order_2 $testdir2_size)
9779
9780         testdir1_size=$(size_in_KMGT $testdir1_size)
9781         testdir2_size=$(size_in_KMGT $testdir2_size)
9782
9783         echo "source rename dir size: ${testdir1_size}"
9784         echo "target rename dir size: ${testdir2_size}"
9785
9786         eval $cmd || error "$cmd failed"
9787         local crossdir=$($cmd | grep 'crossdir')
9788         local src_sample=$(get_rename_size $testdir1_size crossdir_src)
9789         local tgt_sample=$(get_rename_size $testdir2_size crossdir_tgt)
9790         [ -z "$crossdir" ] && error "crossdir_rename_size count error"
9791         [[ $src_sample -eq 1 ]] ||
9792                 error "crossdir_rename_size error $src_sample"
9793         [[ $tgt_sample -eq 1 ]] ||
9794                 error "crossdir_rename_size error $tgt_sample"
9795         echo "Check cross dir rename stats success"
9796         rm -rf $DIR/${tdir}
9797 }
9798 run_test 133d "Verifying rename_stats ========================================"
9799
9800 test_133e() {
9801         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9802         remote_ost_nodsh && skip "remote OST with nodsh" && return
9803         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9804         local testdir=$DIR/${tdir}/stats_testdir
9805         local ctr f0 f1 bs=32768 count=42 sum
9806
9807         mkdir -p ${testdir} || error "mkdir failed"
9808
9809         $SETSTRIPE -c 1 -i 0 ${testdir}/${tfile}
9810
9811         for ctr in {write,read}_bytes; do
9812                 sync
9813                 cancel_lru_locks osc
9814
9815                 do_facet ost1 $LCTL set_param -n \
9816                         "obdfilter.*.exports.clear=clear"
9817
9818                 if [ $ctr = write_bytes ]; then
9819                         f0=/dev/zero
9820                         f1=${testdir}/${tfile}
9821                 else
9822                         f0=${testdir}/${tfile}
9823                         f1=/dev/null
9824                 fi
9825
9826                 dd if=$f0 of=$f1 conv=notrunc bs=$bs count=$count || \
9827                         error "dd failed"
9828                 sync
9829                 cancel_lru_locks osc
9830
9831                 sum=$(do_facet ost1 $LCTL get_param \
9832                         "obdfilter.*.exports.*.stats" |
9833                         awk -v ctr=$ctr 'BEGIN { sum = 0 }
9834                                 $1 == ctr { sum += $7 }
9835                                 END { printf("%0.0f", sum) }')
9836
9837                 if ((sum != bs * count)); then
9838                         error "Bad $ctr sum, expected $((bs * count)), got $sum"
9839                 fi
9840         done
9841
9842         rm -rf $DIR/${tdir}
9843 }
9844 run_test 133e "Verifying OST {read,write}_bytes nid stats ================="
9845
9846 proc_regexp="/{proc,sys}/{fs,sys,kernel/debug}/{lustre,lnet}/"
9847
9848 test_133f() {
9849         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9850         remote_ost_nodsh && skip "remote OST with nodsh" && return
9851         # First without trusting modes.
9852         local proc_dirs=$(eval \ls -d $proc_regexp 2>/dev/null)
9853         echo "proc_dirs='$proc_dirs'"
9854         [ -n "$proc_dirs" ] || error "no proc_dirs on $HOSTNAME"
9855         find $proc_dirs -exec cat '{}' \; &> /dev/null
9856
9857         # Second verifying readability.
9858         $LCTL get_param -R '*' &> /dev/null || error "proc file read failed"
9859
9860         # eventually, this can also be replaced with "lctl get_param -R",
9861         # but not until that option is always available on the server
9862         local facet
9863         for facet in mds1 ost1; do
9864                 local facet_proc_dirs=$(do_facet $facet \
9865                                         \\\ls -d $proc_regexp 2>/dev/null)
9866                 echo "${facet}_proc_dirs='$facet_proc_dirs'"
9867                 [ -z "$facet_proc_dirs" ] && error "no proc_dirs on $facet"
9868                 do_facet $facet find $facet_proc_dirs \
9869                         ! -name req_history \
9870                         -exec cat '{}' \\\; &> /dev/null
9871
9872                 do_facet $facet find $facet_proc_dirs \
9873                         ! -name req_history \
9874                         -type f \
9875                         -exec cat '{}' \\\; &> /dev/null ||
9876                                 error "proc file read failed"
9877         done
9878 }
9879 run_test 133f "Check for LBUGs/Oopses/unreadable files in /proc"
9880
9881 test_133g() {
9882         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9883         remote_ost_nodsh && skip "remote OST with nodsh" && return
9884         # Second verifying writability.
9885         local proc_dirs=$(eval \ls -d $proc_regexp 2>/dev/null)
9886         echo "proc_dirs='$proc_dirs'"
9887         [ -n "$proc_dirs" ] || error "no proc_dirs on $HOSTNAME"
9888         find $proc_dirs \
9889                 -type f \
9890                 -not -name force_lbug \
9891                 -not -name changelog_mask \
9892                 -exec badarea_io '{}' \; &> /dev/null ||
9893                 error "find $proc_dirs failed"
9894
9895         local facet
9896         for facet in mds1 ost1; do
9897                 [ $(lustre_version_code $facet) -le $(version_code 2.5.54) ] &&
9898                         skip "Too old lustre on $facet" && continue
9899                 local facet_proc_dirs=$(do_facet $facet \
9900                                         \\\ls -d $proc_regexp 2> /dev/null)
9901                 echo "${facet}_proc_dirs='$facet_proc_dirs'"
9902                 [ -z "$facet_proc_dirs" ] && error "no proc_dirs on $facet"
9903                 do_facet $facet find $facet_proc_dirs \
9904                         -type f \
9905                         -not -name force_lbug \
9906                         -not -name changelog_mask \
9907                         -exec badarea_io '{}' \\\; &> /dev/null ||
9908                                 error "$facet find $facet_proc_dirs failed"
9909         done
9910
9911         # remount the FS in case writes/reads /proc break the FS
9912         cleanup || error "failed to unmount"
9913         setup || error "failed to setup"
9914         true
9915 }
9916 run_test 133g "Check for Oopses on bad io area writes/reads in /proc"
9917
9918 test_133h() {
9919         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9920         remote_ost_nodsh && skip "remote OST with nodsh" && return
9921         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.9.54) ]] &&
9922                 skip "Need MDS version at least 2.9.54" && return
9923
9924         local facet
9925         for facet in client mds1 ost1; do
9926                 local facet_proc_dirs=$(do_facet $facet \
9927                                         \\\ls -d $proc_regexp 2> /dev/null)
9928                 [ -z "$facet_proc_dirs" ] && error "no proc_dirs on $facet"
9929                 echo "${facet}_proc_dirs='$facet_proc_dirs'"
9930                 # Get the list of files that are missing the terminating newline
9931                 local missing=($(do_facet $facet \
9932                         find ${facet_proc_dirs} -type f \|              \
9933                                 while read F\; do                       \
9934                                         awk -v FS='\v' -v RS='\v\v'     \
9935                                         "'END { if(NR>0 &&              \
9936                                         \\\$NF !~ /.*\\\n\$/)           \
9937                                                 print FILENAME}'"       \
9938                                         '\$F'\;                         \
9939                                 done 2>/dev/null))
9940                 [ ${#missing[*]} -eq 0 ] ||
9941                         error "files do not end with newline: ${missing[*]}"
9942         done
9943 }
9944 run_test 133h "Proc files should end with newlines"
9945
9946 test_134a() {
9947         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9948         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.54) ]] &&
9949                 skip "Need MDS version at least 2.7.54" && return
9950
9951         mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
9952         cancel_lru_locks mdc
9953
9954         local nsdir="ldlm.namespaces.*-MDT0000-mdc-*"
9955         local unused=$($LCTL get_param -n $nsdir.lock_unused_count)
9956         [ $unused -eq 0 ] || error "$unused locks are not cleared"
9957
9958         local nr=1000
9959         createmany -o $DIR/$tdir/f $nr ||
9960                 error "failed to create $nr files in $DIR/$tdir"
9961         unused=$($LCTL get_param -n $nsdir.lock_unused_count)
9962
9963         #define OBD_FAIL_LDLM_WATERMARK_LOW     0x327
9964         do_facet mds1 $LCTL set_param fail_loc=0x327
9965         do_facet mds1 $LCTL set_param fail_val=500
9966         touch $DIR/$tdir/m
9967
9968         echo "sleep 10 seconds ..."
9969         sleep 10
9970         local lck_cnt=$($LCTL get_param -n $nsdir.lock_unused_count)
9971
9972         do_facet mds1 $LCTL set_param fail_loc=0
9973         do_facet mds1 $LCTL set_param fail_val=0
9974         [ $lck_cnt -lt $unused ] ||
9975                 error "No locks reclaimed, before:$unused, after:$lck_cnt"
9976
9977         rm $DIR/$tdir/m
9978         unlinkmany $DIR/$tdir/f $nr
9979 }
9980 run_test 134a "Server reclaims locks when reaching lock_reclaim_threshold"
9981
9982 test_134b() {
9983         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9984         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.54) ]] &&
9985                 skip "Need MDS version at least 2.7.54" && return
9986
9987         mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
9988         cancel_lru_locks mdc
9989
9990         local low_wm=$(do_facet mds1 $LCTL get_param -n \
9991                         ldlm.lock_reclaim_threshold_mb)
9992         # disable reclaim temporarily
9993         do_facet mds1 $LCTL set_param ldlm.lock_reclaim_threshold_mb=0
9994
9995         #define OBD_FAIL_LDLM_WATERMARK_HIGH     0x328
9996         do_facet mds1 $LCTL set_param fail_loc=0x328
9997         do_facet mds1 $LCTL set_param fail_val=500
9998
9999         $LCTL set_param debug=+trace
10000
10001         local nr=600
10002         createmany -o $DIR/$tdir/f $nr &
10003         local create_pid=$!
10004
10005         echo "Sleep $TIMEOUT seconds ..."
10006         sleep $TIMEOUT
10007         if ! ps -p $create_pid  > /dev/null 2>&1; then
10008                 do_facet mds1 $LCTL set_param fail_loc=0
10009                 do_facet mds1 $LCTL set_param fail_val=0
10010                 do_facet mds1 $LCTL set_param \
10011                         ldlm.lock_reclaim_threshold_mb=${low_wm}m
10012                 error "createmany finished incorrectly!"
10013         fi
10014         do_facet mds1 $LCTL set_param fail_loc=0
10015         do_facet mds1 $LCTL set_param fail_val=0
10016         do_facet mds1 $LCTL set_param ldlm.lock_reclaim_threshold_mb=${low_wm}m
10017         wait $create_pid || return 1
10018
10019         unlinkmany $DIR/$tdir/f $nr
10020 }
10021 run_test 134b "Server rejects lock request when reaching lock_limit_mb"
10022
10023 test_140() { #bug-17379
10024         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10025         test_mkdir -p $DIR/$tdir || error "Creating dir $DIR/$tdir"
10026         cd $DIR/$tdir || error "Changing to $DIR/$tdir"
10027         cp $(which stat) . || error "Copying stat to $DIR/$tdir"
10028
10029         # VFS limits max symlink depth to 5(4KSTACK) or 7(8KSTACK) or 8
10030         # For kernel > 3.5, bellow only tests consecutive symlink (MAX 40)
10031         local i=0
10032         while i=`expr $i + 1`; do
10033                 test_mkdir -p $i || error "Creating dir $i"
10034                 cd $i || error "Changing to $i"
10035                 ln -s ../stat stat || error "Creating stat symlink"
10036                 # Read the symlink until ELOOP present,
10037                 # not LBUGing the system is considered success,
10038                 # we didn't overrun the stack.
10039                 $OPENFILE -f O_RDONLY stat >/dev/null 2>&1; ret=$?
10040                 [ $ret -ne 0 ] && {
10041                         if [ $ret -eq 40 ]; then
10042                                 break  # -ELOOP
10043                         else
10044                                 error "Open stat symlink"
10045                                 return
10046                         fi
10047                 }
10048         done
10049         i=`expr $i - 1`
10050         echo "The symlink depth = $i"
10051         [ $i -eq 5 -o $i -eq 7 -o $i -eq 8 -o $i -eq 40 ] ||
10052                                         error "Invalid symlink depth"
10053
10054         # Test recursive symlink
10055         ln -s symlink_self symlink_self
10056         $OPENFILE -f O_RDONLY symlink_self >/dev/null 2>&1; ret=$?
10057         echo "open symlink_self returns $ret"
10058         [ $ret -eq 40 ] || error "recursive symlink doesn't return -ELOOP"
10059 }
10060 run_test 140 "Check reasonable stack depth (shouldn't LBUG) ===="
10061
10062 test_150() {
10063         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10064         local TF="$TMP/$tfile"
10065
10066         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
10067         cp $TF $DIR/$tfile
10068         cancel_lru_locks osc
10069         cmp $TF $DIR/$tfile || error "$TMP/$tfile $DIR/$tfile differ"
10070         remount_client $MOUNT
10071         df -P $MOUNT
10072         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (remount)"
10073
10074         $TRUNCATE $TF 6000
10075         $TRUNCATE $DIR/$tfile 6000
10076         cancel_lru_locks osc
10077         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (truncate1)"
10078
10079         echo "12345" >>$TF
10080         echo "12345" >>$DIR/$tfile
10081         cancel_lru_locks osc
10082         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append1)"
10083
10084         echo "12345" >>$TF
10085         echo "12345" >>$DIR/$tfile
10086         cancel_lru_locks osc
10087         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append2)"
10088
10089         rm -f $TF
10090         true
10091 }
10092 run_test 150 "truncate/append tests"
10093
10094 #LU-2902 roc_hit was not able to read all values from lproc
10095 function roc_hit_init() {
10096         local list=$(comma_list $(osts_nodes))
10097         local dir=$DIR/$tdir-check
10098         local file=$dir/file
10099         local BEFORE
10100         local AFTER
10101         local idx
10102
10103         test_mkdir -p $dir
10104         #use setstripe to do a write to every ost
10105         for i in $(seq 0 $((OSTCOUNT-1))); do
10106                 $SETSTRIPE -c 1 -i $i $dir || error "$SETSTRIPE $file failed"
10107                 dd if=/dev/urandom of=$file bs=4k count=4 2>&1 > /dev/null
10108                 idx=$(printf %04x $i)
10109                 BEFORE=$(get_osd_param $list *OST*$idx stats |
10110                         awk '$1 == "cache_access" {sum += $7}
10111                                 END { printf("%0.0f", sum) }')
10112
10113                 cancel_lru_locks osc
10114                 cat $file >/dev/null
10115
10116                 AFTER=$(get_osd_param $list *OST*$idx stats |
10117                         awk '$1 == "cache_access" {sum += $7}
10118                                 END { printf("%0.0f", sum) }')
10119
10120                 echo BEFORE:$BEFORE AFTER:$AFTER
10121                 if ! let "AFTER - BEFORE == 4"; then
10122                         rm -rf $dir
10123                         error "roc_hit is not safe to use"
10124                 fi
10125                 rm $file
10126         done
10127
10128         rm -rf $dir
10129 }
10130
10131 function roc_hit() {
10132         local list=$(comma_list $(osts_nodes))
10133         echo $(get_osd_param $list '' stats |
10134                 awk '$1 == "cache_hit" {sum += $7}
10135                         END { printf("%0.0f", sum) }')
10136 }
10137
10138 function set_cache() {
10139         local on=1
10140
10141         if [ "$2" == "off" ]; then
10142                 on=0;
10143         fi
10144         local list=$(comma_list $(osts_nodes))
10145         set_osd_param $list '' $1_cache_enable $on
10146
10147         cancel_lru_locks osc
10148 }
10149
10150 test_151() {
10151         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10152         remote_ost_nodsh && skip "remote OST with nodsh" && return
10153
10154         local CPAGES=3
10155         local list=$(comma_list $(osts_nodes))
10156
10157         # check whether obdfilter is cache capable at all
10158         if ! get_osd_param $list '' read_cache_enable >/dev/null; then
10159                 echo "not cache-capable obdfilter"
10160                 return 0
10161         fi
10162
10163         # check cache is enabled on all obdfilters
10164         if get_osd_param $list '' read_cache_enable | grep 0; then
10165                 echo "oss cache is disabled"
10166                 return 0
10167         fi
10168
10169         set_osd_param $list '' writethrough_cache_enable 1
10170
10171         # check write cache is enabled on all obdfilters
10172         if get_osd_param $list '' writethrough_cache_enable | grep 0; then
10173                 echo "oss write cache is NOT enabled"
10174                 return 0
10175         fi
10176
10177         roc_hit_init
10178
10179         #define OBD_FAIL_OBD_NO_LRU  0x609
10180         do_nodes $list $LCTL set_param fail_loc=0x609
10181
10182         # pages should be in the case right after write
10183         dd if=/dev/urandom of=$DIR/$tfile bs=4k count=$CPAGES ||
10184                 error "dd failed"
10185
10186         local BEFORE=$(roc_hit)
10187         cancel_lru_locks osc
10188         cat $DIR/$tfile >/dev/null
10189         local AFTER=$(roc_hit)
10190
10191         do_nodes $list $LCTL set_param fail_loc=0
10192
10193         if ! let "AFTER - BEFORE == CPAGES"; then
10194                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
10195         fi
10196
10197         # the following read invalidates the cache
10198         cancel_lru_locks osc
10199         set_osd_param $list '' read_cache_enable 0
10200         cat $DIR/$tfile >/dev/null
10201
10202         # now data shouldn't be found in the cache
10203         BEFORE=$(roc_hit)
10204         cancel_lru_locks osc
10205         cat $DIR/$tfile >/dev/null
10206         AFTER=$(roc_hit)
10207         if let "AFTER - BEFORE != 0"; then
10208                 error "IN CACHE: before: $BEFORE, after: $AFTER"
10209         fi
10210
10211         set_osd_param $list '' read_cache_enable 1
10212         rm -f $DIR/$tfile
10213 }
10214 run_test 151 "test cache on oss and controls ==============================="
10215
10216 test_152() {
10217         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10218         local TF="$TMP/$tfile"
10219
10220         # simulate ENOMEM during write
10221 #define OBD_FAIL_OST_NOMEM      0x226
10222         lctl set_param fail_loc=0x80000226
10223         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
10224         cp $TF $DIR/$tfile
10225         sync || error "sync failed"
10226         lctl set_param fail_loc=0
10227
10228         # discard client's cache
10229         cancel_lru_locks osc
10230
10231         # simulate ENOMEM during read
10232         lctl set_param fail_loc=0x80000226
10233         cmp $TF $DIR/$tfile || error "cmp failed"
10234         lctl set_param fail_loc=0
10235
10236         rm -f $TF
10237 }
10238 run_test 152 "test read/write with enomem ============================"
10239
10240 test_153() {
10241         $MULTIOP $DIR/$tfile Ow4096Ycu || error "multiop failed"
10242 }
10243 run_test 153 "test if fdatasync does not crash ======================="
10244
10245 dot_lustre_fid_permission_check() {
10246         local fid=$1
10247         local ffid=$MOUNT/.lustre/fid/$fid
10248         local test_dir=$2
10249
10250         echo "stat fid $fid"
10251         stat $ffid > /dev/null || error "stat $ffid failed."
10252         echo "touch fid $fid"
10253         touch $ffid || error "touch $ffid failed."
10254         echo "write to fid $fid"
10255         cat /etc/hosts > $ffid || error "write $ffid failed."
10256         echo "read fid $fid"
10257         diff /etc/hosts $ffid || error "read $ffid failed."
10258         echo "append write to fid $fid"
10259         cat /etc/hosts >> $ffid || error "append write $ffid failed."
10260         echo "rename fid $fid"
10261         mv $ffid $test_dir/$tfile.1 &&
10262                 error "rename $ffid to $tfile.1 should fail."
10263         touch $test_dir/$tfile.1
10264         mv $test_dir/$tfile.1 $ffid &&
10265                 error "rename $tfile.1 to $ffid should fail."
10266         rm -f $test_dir/$tfile.1
10267         echo "truncate fid $fid"
10268         $TRUNCATE $ffid 777 || error "truncate $ffid failed."
10269         if [ $MDSCOUNT -lt 2 ]; then #FIXME when cross-MDT hard link is working
10270                 echo "link fid $fid"
10271                 ln -f $ffid $test_dir/tfile.lnk || error "link $ffid failed."
10272         fi
10273         if [ -n $(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl) ]; then
10274                 echo "setfacl fid $fid"
10275                 setfacl -R -m u:bin:rwx $ffid || error "setfacl $ffid failed."
10276                 echo "getfacl fid $fid"
10277                 getfacl $ffid >/dev/null || error "getfacl $ffid failed."
10278         fi
10279         echo "unlink fid $fid"
10280         unlink $MOUNT/.lustre/fid/$fid && error "unlink $ffid should fail."
10281         echo "mknod fid $fid"
10282         mknod $ffid c 1 3 && error "mknod $ffid should fail."
10283
10284         fid=[0xf00000400:0x1:0x0]
10285         ffid=$MOUNT/.lustre/fid/$fid
10286
10287         echo "stat non-exist fid $fid"
10288         stat $ffid > /dev/null && error "stat non-exist $ffid should fail."
10289         echo "write to non-exist fid $fid"
10290         cat /etc/hosts > $ffid && error "write non-exist $ffid should fail."
10291         echo "link new fid $fid"
10292         ln $test_dir/$tfile $ffid && error "link $ffid should fail."
10293
10294         mkdir -p $test_dir/$tdir
10295         touch $test_dir/$tdir/$tfile
10296         fid=$($LFS path2fid $test_dir/$tdir)
10297         rc=$?
10298         [ $rc -ne 0 ] &&
10299                 error "error: could not get fid for $test_dir/$dir/$tfile."
10300
10301         ffid=$MOUNT/.lustre/fid/$fid
10302
10303         echo "ls $fid"
10304         ls $ffid > /dev/null || error "ls $ffid failed."
10305         echo "touch $fid/$tfile.1"
10306         touch $ffid/$tfile.1 || error "touch $ffid/$tfile.1 failed."
10307
10308         echo "touch $MOUNT/.lustre/fid/$tfile"
10309         touch $MOUNT/.lustre/fid/$tfile && \
10310                 error "touch $MOUNT/.lustre/fid/$tfile should fail."
10311
10312         echo "setxattr to $MOUNT/.lustre/fid"
10313         setfattr -n trusted.name1 -v value1 $MOUNT/.lustre/fid
10314
10315         echo "listxattr for $MOUNT/.lustre/fid"
10316         getfattr -d -m "^trusted" $MOUNT/.lustre/fid
10317
10318         echo "delxattr from $MOUNT/.lustre/fid"
10319         setfattr -x trusted.name1 $MOUNT/.lustre/fid
10320
10321         echo "touch invalid fid: $MOUNT/.lustre/fid/[0x200000400:0x2:0x3]"
10322         touch $MOUNT/.lustre/fid/[0x200000400:0x2:0x3] &&
10323                 error "touch invalid fid should fail."
10324
10325         echo "touch non-normal fid: $MOUNT/.lustre/fid/[0x1:0x2:0x0]"
10326         touch $MOUNT/.lustre/fid/[0x1:0x2:0x0] &&
10327                 error "touch non-normal fid should fail."
10328
10329         echo "rename $tdir to $MOUNT/.lustre/fid"
10330         mrename $test_dir/$tdir $MOUNT/.lustre/fid &&
10331                 error "rename to $MOUNT/.lustre/fid should fail."
10332
10333         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.51) ]
10334         then            # LU-3547
10335                 local old_obf_mode=$(stat --format="%a" $DIR/.lustre/fid)
10336                 local new_obf_mode=777
10337
10338                 echo "change mode of $DIR/.lustre/fid to $new_obf_mode"
10339                 chmod $new_obf_mode $DIR/.lustre/fid ||
10340                         error "chmod $new_obf_mode $DIR/.lustre/fid failed"
10341
10342                 local obf_mode=$(stat --format=%a $DIR/.lustre/fid)
10343                 [ $obf_mode -eq $new_obf_mode ] ||
10344                         error "stat $DIR/.lustre/fid returned wrong mode $obf_mode"
10345
10346                 echo "restore mode of $DIR/.lustre/fid to $old_obf_mode"
10347                 chmod $old_obf_mode $DIR/.lustre/fid ||
10348                         error "chmod $old_obf_mode $DIR/.lustre/fid failed"
10349         fi
10350
10351         $OPENFILE -f O_LOV_DELAY_CREATE:O_CREAT $test_dir/$tfile-2
10352         fid=$($LFS path2fid $test_dir/$tfile-2)
10353
10354         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.50) ]
10355         then # LU-5424
10356                 echo "cp /etc/passwd $MOUNT/.lustre/fid/$fid"
10357                 cp /etc/passwd $MOUNT/.lustre/fid/$fid ||
10358                         error "create lov data thru .lustre failed"
10359         fi
10360         echo "cp /etc/passwd $test_dir/$tfile-2"
10361         cp /etc/passwd $test_dir/$tfile-2 ||
10362                 error "copy to $test_dir/$tfile-2 failed."
10363         echo "diff /etc/passwd $MOUNT/.lustre/fid/$fid"
10364         diff /etc/passwd $MOUNT/.lustre/fid/$fid ||
10365                 error "diff /etc/passwd $MOUNT/.lustre/fid/$fid failed."
10366
10367         rm -rf $test_dir/tfile.lnk
10368         rm -rf $test_dir/$tfile-2
10369 }
10370
10371 test_154A() {
10372         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
10373                 skip "Need MDS version at least 2.4.1" && return
10374
10375         local tf=$DIR/$tfile
10376         touch $tf
10377
10378         local fid=$($LFS path2fid $tf)
10379         [ -z "$fid" ] && error "path2fid unable to get $tf FID"
10380
10381         # check that we get the same pathname back
10382         local found=$($LFS fid2path $MOUNT "$fid")
10383         [ -z "$found" ] && error "fid2path unable to get '$fid' path"
10384         [ "$found" == "$tf" ] ||
10385                 error "fid2path($fid=path2fid($tf)) = $found != $tf"
10386 }
10387 run_test 154A "lfs path2fid and fid2path basic checks"
10388
10389 test_154B() {
10390         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
10391                 skip "Need MDS version at least 2.4.1" && return
10392
10393         mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
10394         touch $DIR/$tdir/$tfile || error "touch $DIR/$tdir/$tfile failed"
10395         local linkea=$($LL_DECODE_LINKEA $DIR/$tdir/$tfile | grep 'pfid')
10396         [ -z "$linkea" ] && error "decode linkea $DIR/$tdir/$tfile failed"
10397
10398         local name=$(echo $linkea | awk '/pfid/ {print $5}' | sed -e "s/'//g")
10399         local PFID=$(echo $linkea | awk '/pfid/ {print $3}' | sed -e "s/,//g")
10400
10401         # check that we get the same pathname
10402         echo "PFID: $PFID, name: $name"
10403         local FOUND=$($LFS fid2path $MOUNT "$PFID")
10404         [ -z "$FOUND" ] && error "fid2path unable to get $PFID path"
10405         [ "$FOUND/$name" != "$DIR/$tdir/$tfile" ] &&
10406                 error "ll_decode_linkea has $FOUND/$name != $DIR/$tdir/$tfile"
10407
10408         rm -rf $DIR/$tdir || error "Can not delete directory $DIR/$tdir"
10409 }
10410 run_test 154B "verify the ll_decode_linkea tool"
10411
10412 test_154a() {
10413         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10414         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ]] ||
10415                 { skip "Need MDS version at least 2.2.51"; return 0; }
10416         [ -z "$(which setfacl)" ] && skip "must have setfacl tool" && return
10417         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
10418
10419         cp /etc/hosts $DIR/$tfile
10420
10421         fid=$($LFS path2fid $DIR/$tfile)
10422         rc=$?
10423         [ $rc -ne 0 ] && error "error: could not get fid for $DIR/$tfile."
10424
10425         dot_lustre_fid_permission_check "$fid" $DIR ||
10426                 error "dot lustre permission check $fid failed"
10427
10428         rm -rf $MOUNT/.lustre && error ".lustre is not allowed to be unlinked"
10429
10430         touch $MOUNT/.lustre/file &&
10431                 error "creation is not allowed under .lustre"
10432
10433         mkdir $MOUNT/.lustre/dir &&
10434                 error "mkdir is not allowed under .lustre"
10435
10436         rm -rf $DIR/$tfile
10437 }
10438 run_test 154a "Open-by-FID"
10439
10440 test_154b() {
10441         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10442         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ]] ||
10443                 { skip "Need MDS version at least 2.2.51"; return 0; }
10444         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
10445
10446         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
10447
10448         local remote_dir=$DIR/$tdir/remote_dir
10449         local MDTIDX=1
10450         local rc=0
10451
10452         mkdir -p $DIR/$tdir
10453         $LFS mkdir -i $MDTIDX $remote_dir ||
10454                 error "create remote directory failed"
10455
10456         cp /etc/hosts $remote_dir/$tfile
10457
10458         fid=$($LFS path2fid $remote_dir/$tfile)
10459         rc=$?
10460         [ $rc -ne 0 ] && error "error: could not get fid for $remote_dir/$tfile"
10461
10462         dot_lustre_fid_permission_check "$fid" $remote_dir ||
10463                 error "dot lustre permission check $fid failed"
10464         rm -rf $DIR/$tdir
10465 }
10466 run_test 154b "Open-by-FID for remote directory"
10467
10468 test_154c() {
10469         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
10470                 skip "Need MDS version at least 2.4.1" && return
10471
10472         touch $DIR/$tfile.1 $DIR/$tfile.2 $DIR/$tfile.3
10473         local FID1=$($LFS path2fid $DIR/$tfile.1)
10474         local FID2=$($LFS path2fid $DIR/$tfile.2)
10475         local FID3=$($LFS path2fid $DIR/$tfile.3)
10476
10477         local N=1
10478         $LFS path2fid $DIR/$tfile.[123] | while read PATHNAME FID; do
10479                 [ "$PATHNAME" = "$DIR/$tfile.$N:" ] ||
10480                         error "path2fid pathname $PATHNAME != $DIR/$tfile.$N:"
10481                 local want=FID$N
10482                 [ "$FID" = "${!want}" ] ||
10483                         error "path2fid $PATHNAME FID $FID != FID$N ${!want}"
10484                 N=$((N + 1))
10485         done
10486
10487         $LFS fid2path $MOUNT "$FID1" "$FID2" "$FID3" | while read PATHNAME;
10488         do
10489                 [ "$PATHNAME" = "$DIR/$tfile.$N" ] ||
10490                         error "fid2path pathname $PATHNAME != $DIR/$tfile.$N:"
10491                 N=$((N + 1))
10492         done
10493 }
10494 run_test 154c "lfs path2fid and fid2path multiple arguments"
10495
10496 test_154d() {
10497         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10498         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.53) ]] &&
10499                 skip "Need MDS version at least 2.5.53" && return
10500
10501         if remote_mds; then
10502                 nid=$($LCTL list_nids | sed  "s/\./\\\./g")
10503         else
10504                 nid="0@lo"
10505         fi
10506         local proc_ofile="mdt.*.exports.'$nid'.open_files"
10507         local fd
10508         local cmd
10509
10510         rm -f $DIR/$tfile
10511         touch $DIR/$tfile
10512
10513         local fid=$($LFS path2fid $DIR/$tfile)
10514         # Open the file
10515         fd=$(free_fd)
10516         cmd="exec $fd<$DIR/$tfile"
10517         eval $cmd
10518         local fid_list=$(do_facet $SINGLEMDS $LCTL get_param $proc_ofile)
10519         echo "$fid_list" | grep "$fid"
10520         rc=$?
10521
10522         cmd="exec $fd>/dev/null"
10523         eval $cmd
10524         if [ $rc -ne 0 ]; then
10525                 error "FID $fid not found in open files list $fid_list"
10526         fi
10527 }
10528 run_test 154d "Verify open file fid"
10529
10530 test_154e()
10531 {
10532         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.50) ]] &&
10533                 skip "Need MDS version at least 2.6.50" && return
10534
10535         if ls -a $MOUNT | grep -q '^\.lustre$'; then
10536                 error ".lustre returned by readdir"
10537         fi
10538 }
10539 run_test 154e ".lustre is not returned by readdir"
10540
10541 test_154f() {
10542         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
10543         # create parent directory on a single MDT to avoid cross-MDT hardlinks
10544         test_mkdir -p -c1 $DIR/$tdir/d
10545         # test dirs inherit from its stripe
10546         mkdir -p $DIR/$tdir/d/foo1 || error "mkdir error"
10547         mkdir -p $DIR/$tdir/d/foo2 || error "mkdir error"
10548         cp /etc/hosts $DIR/$tdir/d/foo1/$tfile
10549         ln $DIR/$tdir/d/foo1/$tfile $DIR/$tdir/d/foo2/link
10550         touch $DIR/f
10551
10552         # get fid of parents
10553         local FID0=$($LFS path2fid $DIR/$tdir/d)
10554         local FID1=$($LFS path2fid $DIR/$tdir/d/foo1)
10555         local FID2=$($LFS path2fid $DIR/$tdir/d/foo2)
10556         local FID3=$($LFS path2fid $DIR)
10557
10558         # check that path2fid --parents returns expected <parent_fid>/name
10559         # 1) test for a directory (single parent)
10560         local parent=$($LFS path2fid --parents $DIR/$tdir/d/foo1)
10561         [ "$parent" == "$FID0/foo1" ] ||
10562                 error "expected parent: $FID0/foo1, got: $parent"
10563
10564         # 2) test for a file with nlink > 1 (multiple parents)
10565         parent=$($LFS path2fid --parents $DIR/$tdir/d/foo1/$tfile)
10566         echo "$parent" | grep -F "$FID1/$tfile" ||
10567                 error "$FID1/$tfile not returned in parent list"
10568         echo "$parent" | grep -F "$FID2/link" ||
10569                 error "$FID2/link not returned in parent list"
10570
10571         # 3) get parent by fid
10572         local file_fid=$($LFS path2fid $DIR/$tdir/d/foo1/$tfile)
10573         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
10574         echo "$parent" | grep -F "$FID1/$tfile" ||
10575                 error "$FID1/$tfile not returned in parent list (by fid)"
10576         echo "$parent" | grep -F "$FID2/link" ||
10577                 error "$FID2/link not returned in parent list (by fid)"
10578
10579         # 4) test for entry in root directory
10580         parent=$($LFS path2fid --parents $DIR/f)
10581         echo "$parent" | grep -F "$FID3/f" ||
10582                 error "$FID3/f not returned in parent list"
10583
10584         # 5) test it on root directory
10585         [ -z "$($LFS path2fid --parents $MOUNT 2>/dev/null)" ] ||
10586                 error "$MOUNT should not have parents"
10587
10588         # enable xattr caching and check that linkea is correctly updated
10589         local save="$TMP/$TESTSUITE-$TESTNAME.parameters"
10590         save_lustre_params client "llite.*.xattr_cache" > $save
10591         lctl set_param llite.*.xattr_cache 1
10592
10593         # 6.1) linkea update on rename
10594         mv $DIR/$tdir/d/foo1/$tfile $DIR/$tdir/d/foo2/$tfile.moved
10595
10596         # get parents by fid
10597         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
10598         # foo1 should no longer be returned in parent list
10599         echo "$parent" | grep -F "$FID1" &&
10600                 error "$FID1 should no longer be in parent list"
10601         # the new path should appear
10602         echo "$parent" | grep -F "$FID2/$tfile.moved" ||
10603                 error "$FID2/$tfile.moved is not in parent list"
10604
10605         # 6.2) linkea update on unlink
10606         rm -f $DIR/$tdir/d/foo2/link
10607         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
10608         # foo2/link should no longer be returned in parent list
10609         echo "$parent" | grep -F "$FID2/link" &&
10610                 error "$FID2/link should no longer be in parent list"
10611         true
10612
10613         rm -f $DIR/f
10614         restore_lustre_params < $save
10615         rm -f $save
10616 }
10617 run_test 154f "get parent fids by reading link ea"
10618
10619 test_154g()
10620 {
10621         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.92) ]] ||
10622                 { skip "Need MDS version at least 2.6.92"; return 0; }
10623         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
10624
10625         mkdir -p $DIR/$tdir
10626         llapi_fid_test -d $DIR/$tdir
10627 }
10628 run_test 154g "various llapi FID tests"
10629
10630 test_155_small_load() {
10631     local temp=$TMP/$tfile
10632     local file=$DIR/$tfile
10633
10634     dd if=/dev/urandom of=$temp bs=6096 count=1 || \
10635         error "dd of=$temp bs=6096 count=1 failed"
10636     cp $temp $file
10637     cancel_lru_locks osc
10638     cmp $temp $file || error "$temp $file differ"
10639
10640     $TRUNCATE $temp 6000
10641     $TRUNCATE $file 6000
10642     cmp $temp $file || error "$temp $file differ (truncate1)"
10643
10644     echo "12345" >>$temp
10645     echo "12345" >>$file
10646     cmp $temp $file || error "$temp $file differ (append1)"
10647
10648     echo "12345" >>$temp
10649     echo "12345" >>$file
10650     cmp $temp $file || error "$temp $file differ (append2)"
10651
10652     rm -f $temp $file
10653     true
10654 }
10655
10656 test_155_big_load() {
10657     remote_ost_nodsh && skip "remote OST with nodsh" && return
10658     local temp=$TMP/$tfile
10659     local file=$DIR/$tfile
10660
10661     free_min_max
10662     local cache_size=$(do_facet ost$((MAXI+1)) \
10663         "awk '/cache/ {sum+=\\\$4} END {print sum}' /proc/cpuinfo")
10664     local large_file_size=$((cache_size * 2))
10665
10666     echo "OSS cache size: $cache_size KB"
10667     echo "Large file size: $large_file_size KB"
10668
10669     [ $MAXV -le $large_file_size ] && \
10670         skip_env "max available OST size needs > $large_file_size KB" && \
10671         return 0
10672
10673     $SETSTRIPE $file -c 1 -i $MAXI || error "$SETSTRIPE $file failed"
10674
10675     dd if=/dev/urandom of=$temp bs=$large_file_size count=1k || \
10676         error "dd of=$temp bs=$large_file_size count=1k failed"
10677     cp $temp $file
10678     ls -lh $temp $file
10679     cancel_lru_locks osc
10680     cmp $temp $file || error "$temp $file differ"
10681
10682     rm -f $temp $file
10683     true
10684 }
10685
10686 save_writethrough() {
10687         local facets=$(get_facets OST)
10688
10689         save_lustre_params $facets "obdfilter.*.writethrough_cache_enable" > $1
10690         save_lustre_params $facets "osd-*.*.writethrough_cache_enable" >> $1
10691 }
10692
10693 test_155a() {
10694         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10695         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10696         save_writethrough $p
10697
10698         set_cache read on
10699         set_cache writethrough on
10700         test_155_small_load
10701         restore_lustre_params < $p
10702         rm -f $p
10703 }
10704 run_test 155a "Verify small file correctness: read cache:on write_cache:on"
10705
10706 test_155b() {
10707         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10708         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10709         save_writethrough $p
10710
10711         set_cache read on
10712         set_cache writethrough off
10713         test_155_small_load
10714         restore_lustre_params < $p
10715         rm -f $p
10716 }
10717 run_test 155b "Verify small file correctness: read cache:on write_cache:off"
10718
10719 test_155c() {
10720         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10721         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10722         save_writethrough $p
10723
10724         set_cache read off
10725         set_cache writethrough on
10726         test_155_small_load
10727         restore_lustre_params < $p
10728         rm -f $p
10729 }
10730 run_test 155c "Verify small file correctness: read cache:off write_cache:on"
10731
10732 test_155d() {
10733         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10734         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10735         save_writethrough $p
10736
10737         set_cache read off
10738         set_cache writethrough off
10739         test_155_small_load
10740         restore_lustre_params < $p
10741         rm -f $p
10742 }
10743 run_test 155d "Verify small file correctness: read cache:off write_cache:off"
10744
10745 test_155e() {
10746         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10747         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10748         save_writethrough $p
10749
10750         set_cache read on
10751         set_cache writethrough on
10752         test_155_big_load
10753         restore_lustre_params < $p
10754         rm -f $p
10755 }
10756 run_test 155e "Verify big file correctness: read cache:on write_cache:on"
10757
10758 test_155f() {
10759         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10760         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10761         save_writethrough $p
10762
10763         set_cache read on
10764         set_cache writethrough off
10765         test_155_big_load
10766         restore_lustre_params < $p
10767         rm -f $p
10768 }
10769 run_test 155f "Verify big file correctness: read cache:on write_cache:off"
10770
10771 test_155g() {
10772         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10773         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10774         save_writethrough $p
10775
10776         set_cache read off
10777         set_cache writethrough on
10778         test_155_big_load
10779         restore_lustre_params < $p
10780         rm -f $p
10781 }
10782 run_test 155g "Verify big file correctness: read cache:off write_cache:on"
10783
10784 test_155h() {
10785         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10786         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10787         save_writethrough $p
10788
10789         set_cache read off
10790         set_cache writethrough off
10791         test_155_big_load
10792         restore_lustre_params < $p
10793         rm -f $p
10794 }
10795 run_test 155h "Verify big file correctness: read cache:off write_cache:off"
10796
10797 test_156() {
10798         remote_ost_nodsh && skip "remote OST with nodsh" && return
10799         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10800         local CPAGES=3
10801         local BEFORE
10802         local AFTER
10803         local file="$DIR/$tfile"
10804         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10805
10806         [ "$(facet_fstype ost1)" = "zfs" -a \
10807            $(lustre_version_code ost1 -lt $(version_code 2.6.93)) ] &&
10808                 skip "LU-1956/LU-2261: stats not implemented on OSD ZFS" &&
10809                 return
10810
10811         save_writethrough $p
10812         roc_hit_init
10813
10814         log "Turn on read and write cache"
10815         set_cache read on
10816         set_cache writethrough on
10817
10818         log "Write data and read it back."
10819         log "Read should be satisfied from the cache."
10820         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
10821         BEFORE=$(roc_hit)
10822         cancel_lru_locks osc
10823         cat $file >/dev/null
10824         AFTER=$(roc_hit)
10825         if ! let "AFTER - BEFORE == CPAGES"; then
10826                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
10827         else
10828                 log "cache hits:: before: $BEFORE, after: $AFTER"
10829         fi
10830
10831         log "Read again; it should be satisfied from the cache."
10832         BEFORE=$AFTER
10833         cancel_lru_locks osc
10834         cat $file >/dev/null
10835         AFTER=$(roc_hit)
10836         if ! let "AFTER - BEFORE == CPAGES"; then
10837                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
10838         else
10839                 log "cache hits:: before: $BEFORE, after: $AFTER"
10840         fi
10841
10842         log "Turn off the read cache and turn on the write cache"
10843         set_cache read off
10844         set_cache writethrough on
10845
10846         log "Read again; it should be satisfied from the cache."
10847         BEFORE=$(roc_hit)
10848         cancel_lru_locks osc
10849         cat $file >/dev/null
10850         AFTER=$(roc_hit)
10851         if ! let "AFTER - BEFORE == CPAGES"; then
10852                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
10853         else
10854                 log "cache hits:: before: $BEFORE, after: $AFTER"
10855         fi
10856
10857         log "Read again; it should not be satisfied from the cache."
10858         BEFORE=$AFTER
10859         cancel_lru_locks osc
10860         cat $file >/dev/null
10861         AFTER=$(roc_hit)
10862         if ! let "AFTER - BEFORE == 0"; then
10863                 error "IN CACHE: before: $BEFORE, after: $AFTER"
10864         else
10865                 log "cache hits:: before: $BEFORE, after: $AFTER"
10866         fi
10867
10868         log "Write data and read it back."
10869         log "Read should be satisfied from the cache."
10870         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
10871         BEFORE=$(roc_hit)
10872         cancel_lru_locks osc
10873         cat $file >/dev/null
10874         AFTER=$(roc_hit)
10875         if ! let "AFTER - BEFORE == CPAGES"; then
10876                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
10877         else
10878                 log "cache hits:: before: $BEFORE, after: $AFTER"
10879         fi
10880
10881         log "Read again; it should not be satisfied from the cache."
10882         BEFORE=$AFTER
10883         cancel_lru_locks osc
10884         cat $file >/dev/null
10885         AFTER=$(roc_hit)
10886         if ! let "AFTER - BEFORE == 0"; then
10887                 error "IN CACHE: before: $BEFORE, after: $AFTER"
10888         else
10889                 log "cache hits:: before: $BEFORE, after: $AFTER"
10890         fi
10891
10892         log "Turn off read and write cache"
10893         set_cache read off
10894         set_cache writethrough off
10895
10896         log "Write data and read it back"
10897         log "It should not be satisfied from the cache."
10898         rm -f $file
10899         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
10900         cancel_lru_locks osc
10901         BEFORE=$(roc_hit)
10902         cat $file >/dev/null
10903         AFTER=$(roc_hit)
10904         if ! let "AFTER - BEFORE == 0"; then
10905                 error_ignore bz20762 "IN CACHE: before: $BEFORE, after: $AFTER"
10906         else
10907                 log "cache hits:: before: $BEFORE, after: $AFTER"
10908         fi
10909
10910         log "Turn on the read cache and turn off the write cache"
10911         set_cache read on
10912         set_cache writethrough off
10913
10914         log "Write data and read it back"
10915         log "It should not be satisfied from the cache."
10916         rm -f $file
10917         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
10918         BEFORE=$(roc_hit)
10919         cancel_lru_locks osc
10920         cat $file >/dev/null
10921         AFTER=$(roc_hit)
10922         if ! let "AFTER - BEFORE == 0"; then
10923                 error_ignore bz20762 "IN CACHE: before: $BEFORE, after: $AFTER"
10924         else
10925                 log "cache hits:: before: $BEFORE, after: $AFTER"
10926         fi
10927
10928         log "Read again; it should be satisfied from the cache."
10929         BEFORE=$(roc_hit)
10930         cancel_lru_locks osc
10931         cat $file >/dev/null
10932         AFTER=$(roc_hit)
10933         if ! let "AFTER - BEFORE == CPAGES"; then
10934                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
10935         else
10936                 log "cache hits:: before: $BEFORE, after: $AFTER"
10937         fi
10938
10939         rm -f $file
10940         restore_lustre_params < $p
10941         rm -f $p
10942 }
10943 run_test 156 "Verification of tunables"
10944
10945 #Changelogs
10946 cleanup_changelog () {
10947         trap 0
10948         echo "Deregistering changelog client $CL_USER"
10949         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister $CL_USER
10950 }
10951
10952 err17935 () {
10953         if [[ $MDSCOUNT -gt 1 ]]; then
10954                 error_ignore bz17935 $*
10955         else
10956                 error $*
10957         fi
10958 }
10959
10960 changelog_chmask()
10961 {
10962         local CL_MASK_PARAM="mdd.$MDT0.changelog_mask"
10963
10964         MASK=$(do_facet $SINGLEMDS $LCTL get_param $CL_MASK_PARAM| grep -c "$1")
10965
10966         if [ $MASK -eq 1 ]; then
10967                 do_facet $SINGLEMDS $LCTL set_param $CL_MASK_PARAM="-$1"
10968         else
10969                 do_facet $SINGLEMDS $LCTL set_param $CL_MASK_PARAM="+$1"
10970         fi
10971 }
10972
10973 changelog_extract_field() {
10974         local mdt=$1
10975         local cltype=$2
10976         local file=$3
10977         local identifier=$4
10978
10979         $LFS changelog $mdt | gawk "/$cltype.*$file$/ {
10980                 print gensub(/^.* "$identifier'(\[[^\]]*\]).*$/,"\\1",1)}' |
10981                 tail -1
10982 }
10983
10984 test_160a() {
10985         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10986         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10987         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] ||
10988                 { skip "Need MDS version at least 2.2.0"; return; }
10989
10990         local CL_USERS="mdd.$MDT0.changelog_users"
10991         local GET_CL_USERS="do_facet $SINGLEMDS $LCTL get_param -n $CL_USERS"
10992         CL_USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
10993                 changelog_register -n)
10994         echo "Registered as changelog user $CL_USER"
10995         trap cleanup_changelog EXIT
10996         $GET_CL_USERS | grep -q $CL_USER ||
10997                 error "User $CL_USER not found in changelog_users"
10998
10999         # change something
11000         test_mkdir -p $DIR/$tdir/pics/2008/zachy
11001         touch $DIR/$tdir/pics/2008/zachy/timestamp
11002         cp /etc/hosts $DIR/$tdir/pics/2008/zachy/pic1.jpg
11003         mv $DIR/$tdir/pics/2008/zachy $DIR/$tdir/pics/zach
11004         ln $DIR/$tdir/pics/zach/pic1.jpg $DIR/$tdir/pics/2008/portland.jpg
11005         ln -s $DIR/$tdir/pics/2008/portland.jpg $DIR/$tdir/pics/desktop.jpg
11006         rm $DIR/$tdir/pics/desktop.jpg
11007
11008         $LFS changelog $MDT0 | tail -5
11009
11010         echo "verifying changelog mask"
11011         changelog_chmask "MKDIR"
11012         changelog_chmask "CLOSE"
11013
11014         test_mkdir -p $DIR/$tdir/pics/zach/sofia
11015         echo "zzzzzz" > $DIR/$tdir/pics/zach/file
11016
11017         changelog_chmask "MKDIR"
11018         changelog_chmask "CLOSE"
11019
11020         test_mkdir -p $DIR/$tdir/pics/2008/sofia
11021         echo "zzzzzz" > $DIR/$tdir/pics/zach/file
11022
11023         $LFS changelog $MDT0
11024         MKDIRS=$($LFS changelog $MDT0 | tail -5 | grep -c "MKDIR")
11025         CLOSES=$($LFS changelog $MDT0 | tail -5 | grep -c "CLOSE")
11026         [ $MKDIRS -eq 1 ] || err17935 "MKDIR changelog mask count $DIRS != 1"
11027         [ $CLOSES -eq 1 ] || err17935 "CLOSE changelog mask count $DIRS != 1"
11028
11029         # verify contents
11030         echo "verifying target fid"
11031         fidc=$(changelog_extract_field $MDT0 "CREAT" "timestamp" "t=")
11032         fidf=$($LFS path2fid $DIR/$tdir/pics/zach/timestamp)
11033         [ "$fidc" == "$fidf" ] ||
11034                 err17935 "fid in changelog $fidc != file fid $fidf"
11035         echo "verifying parent fid"
11036         fidc=$(changelog_extract_field $MDT0 "CREAT" "timestamp" "p=")
11037         fidf=$($LFS path2fid $DIR/$tdir/pics/zach)
11038         [ "$fidc" == "$fidf" ] ||
11039                 err17935 "pfid in changelog $fidc != dir fid $fidf"
11040
11041         USER_REC1=$($GET_CL_USERS | awk "\$1 == \"$CL_USER\" {print \$2}")
11042         $LFS changelog_clear $MDT0 $CL_USER $(($USER_REC1 + 5))
11043         USER_REC2=$($GET_CL_USERS | awk "\$1 == \"$CL_USER\" {print \$2}")
11044         echo "verifying user clear: $(( $USER_REC1 + 5 )) == $USER_REC2"
11045         [ $USER_REC2 == $(($USER_REC1 + 5)) ] ||
11046                 err17935 "user index expected $(($USER_REC1 + 5)) is $USER_REC2"
11047
11048         MIN_REC=$($GET_CL_USERS |
11049                 awk 'min == "" || $2 < min {min = $2}; END {print min}')
11050         FIRST_REC=$($LFS changelog $MDT0 | head -n1 | awk '{print $1}')
11051         echo "verifying min purge: $(( $MIN_REC + 1 )) == $FIRST_REC"
11052         [ $FIRST_REC == $(($MIN_REC + 1)) ] ||
11053                 err17935 "first index should be $(($MIN_REC + 1)) is $FIRST_REC"
11054
11055         # LU-3446 changelog index reset on MDT restart
11056         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
11057         CUR_REC1=$($GET_CL_USERS | head -n1 | cut -f3 -d' ')
11058         $LFS changelog_clear $MDT0 $CL_USER 0
11059         stop $SINGLEMDS || error "Fail to stop MDT."
11060         start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS || error "Fail to start MDT."
11061         CUR_REC2=$($GET_CL_USERS | head -n1 | cut -f3 -d' ')
11062         echo "verifying index survives MDT restart: $CUR_REC1 == $CUR_REC2"
11063         [ $CUR_REC1 == $CUR_REC2 ] ||
11064                 err17935 "current index should be $CUR_REC1 is $CUR_REC2"
11065
11066         echo "verifying user deregister"
11067         cleanup_changelog
11068         $GET_CL_USERS | grep -q $CL_USER &&
11069                 error "User $CL_USER still in changelog_users"
11070
11071         USERS=$(( $($GET_CL_USERS | wc -l) - 2 ))
11072         if [ $CL_USER -eq 0 ]; then
11073                 LAST_REC1=$($GET_CL_USERS | head -n1 | cut -f3 -d' ')
11074                 touch $DIR/$tdir/chloe
11075                 LAST_REC2=$($GET_CL_USERS | head -n1 | cut -f3 -d' ')
11076                 echo "verify changelogs are off: $LAST_REC1 == $LAST_REC2"
11077                 [ $LAST_REC1 == $LAST_REC2 ] || error "changelogs not off"
11078         else
11079                 echo "$CL_USER other changelog users; can't verify off"
11080         fi
11081 }
11082 run_test 160a "changelog sanity"
11083
11084 test_160b() { # LU-3587
11085         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11086         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11087         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] ||
11088                 { skip "Need MDS version at least 2.2.0"; return; }
11089
11090         local CL_USERS="mdd.$MDT0.changelog_users"
11091         local GET_CL_USERS="do_facet $SINGLEMDS $LCTL get_param -n $CL_USERS"
11092         CL_USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
11093                 changelog_register -n)
11094         echo "Registered as changelog user $CL_USER"
11095         trap cleanup_changelog EXIT
11096         $GET_CL_USERS | grep -q $CL_USER ||
11097                 error "User $CL_USER not found in changelog_users"
11098
11099         local LONGNAME1=$(str_repeat a 255)
11100         local LONGNAME2=$(str_repeat b 255)
11101
11102         cd $DIR
11103         echo "creating very long named file"
11104         touch $LONGNAME1 || error "create of $LONGNAME1 failed"
11105         echo "moving very long named file"
11106         mv $LONGNAME1 $LONGNAME2
11107
11108         $LFS changelog $MDT0 | grep RENME
11109         rm -f $LONGNAME2
11110         cleanup_changelog
11111 }
11112 run_test 160b "Verify that very long rename doesn't crash in changelog"
11113
11114 test_160c() {
11115         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11116
11117         local rc=0
11118         local server_version=$(lustre_version_code $SINGLEMDS)
11119
11120         [[ $server_version -gt $(version_code 2.5.57) ]] ||
11121                 [[ $server_version -gt $(version_code 2.5.1) &&
11122                    $server_version -lt $(version_code 2.5.50) ]] ||
11123                 { skip "Need MDS version at least 2.5.58 or 2.5.2+"; return; }
11124         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11125
11126         # Registration step
11127         CL_USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
11128                 changelog_register -n)
11129         trap cleanup_changelog EXIT
11130
11131         rm -rf $DIR/$tdir
11132         mkdir -p $DIR/$tdir
11133         $MCREATE $DIR/$tdir/foo_160c
11134         changelog_chmask "TRUNC"
11135         $TRUNCATE $DIR/$tdir/foo_160c 200
11136         changelog_chmask "TRUNC"
11137         $TRUNCATE $DIR/$tdir/foo_160c 199
11138         $LFS changelog $MDT0
11139         TRUNCS=$($LFS changelog $MDT0 | tail -5 | grep -c "TRUNC")
11140         [ $TRUNCS -eq 1 ] || err17935 "TRUNC changelog mask count $TRUNCS != 1"
11141         $LFS changelog_clear $MDT0 $CL_USER 0
11142
11143         # Deregistration step
11144         cleanup_changelog
11145 }
11146 run_test 160c "verify that changelog log catch the truncate event"
11147
11148 test_160d() {
11149         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11150         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
11151
11152         local server_version=$(lustre_version_code mds1)
11153         local CL_MASK_PARAM="mdd.$MDT0.changelog_mask"
11154
11155         [[ $server_version -ge $(version_code 2.7.60) ]] ||
11156                 { skip "Need MDS version at least 2.7.60+"; return; }
11157         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11158
11159         # Registration step
11160         CL_USER=$(do_facet mds1 $LCTL --device $MDT0 \
11161                 changelog_register -n)
11162
11163         trap cleanup_changelog EXIT
11164         mkdir -p $DIR/$tdir/migrate_dir
11165         $LFS changelog_clear $MDT0 $CL_USER 0
11166
11167         $LFS migrate -m 1 $DIR/$tdir/migrate_dir || error "migrate fails"
11168         $LFS changelog $MDT0
11169         MIGRATES=$($LFS changelog $MDT0 | tail -5 | grep -c "MIGRT")
11170         $LFS changelog_clear $MDT0 $CL_USER 0
11171         [ $MIGRATES -eq 1 ] ||
11172                 error "MIGRATE changelog mask count $MIGRATES != 1"
11173
11174         # Deregistration step
11175         cleanup_changelog
11176 }
11177 run_test 160d "verify that changelog log catch the migrate event"
11178
11179 test_160e() {
11180         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11181
11182         # Create a user
11183         CL_USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
11184                 changelog_register -n)
11185         echo "Registered as changelog user $CL_USER"
11186         trap cleanup_changelog EXIT
11187
11188         # Delete a future user (expect fail)
11189         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister cl77
11190         local rc=$?
11191
11192         if [ $rc -eq 0 ]; then
11193                 error "Deleted non-existant user cl77"
11194         elif [ $rc -ne 2 ]; then
11195                 error "changelog_deregister failed with $rc, " \
11196                         "expected 2 (ENOENT)"
11197         fi
11198
11199         # Clear to a bad index (1 billion should be safe)
11200         $LFS changelog_clear $MDT0 $CL_USER 1000000000
11201         rc=$?
11202
11203         if [ $rc -eq 0 ]; then
11204                 error "Successfully cleared to invalid CL index"
11205         elif [ $rc -ne 22 ]; then
11206                 error "changelog_clear failed with $rc, expected 22 (EINVAL)"
11207         fi
11208 }
11209 run_test 160e "changelog negative testing"
11210
11211 test_161a() {
11212         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11213         test_mkdir -p -c1 $DIR/$tdir
11214         cp /etc/hosts $DIR/$tdir/$tfile
11215         test_mkdir -c1 $DIR/$tdir/foo1
11216         test_mkdir -c1 $DIR/$tdir/foo2
11217         ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/sofia
11218         ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/zachary
11219         ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/luna
11220         ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/thor
11221         local FID=$($LFS path2fid $DIR/$tdir/$tfile | tr -d '[]')
11222         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
11223                 $LFS fid2path $DIR $FID
11224                 err17935 "bad link ea"
11225         fi
11226     # middle
11227     rm $DIR/$tdir/foo2/zachary
11228     # last
11229     rm $DIR/$tdir/foo2/thor
11230     # first
11231     rm $DIR/$tdir/$tfile
11232     # rename
11233     mv $DIR/$tdir/foo1/sofia $DIR/$tdir/foo2/maggie
11234     if [ "$($LFS fid2path $FSNAME --link 1 $FID)" != "$tdir/foo2/maggie" ]
11235         then
11236         $LFS fid2path $DIR $FID
11237         err17935 "bad link rename"
11238     fi
11239     rm $DIR/$tdir/foo2/maggie
11240
11241         # overflow the EA
11242         local longname=filename_avg_len_is_thirty_two_
11243         createmany -l$DIR/$tdir/foo1/luna $DIR/$tdir/foo2/$longname 1000 ||
11244                 error "failed to hardlink many files"
11245         links=$($LFS fid2path $DIR $FID | wc -l)
11246         echo -n "${links}/1000 links in link EA"
11247         [[ $links -gt 60 ]] ||
11248                 err17935 "expected at least 60 links in link EA"
11249         unlinkmany $DIR/$tdir/foo2/$longname 1000 ||
11250                 error "failed to unlink many hardlinks"
11251 }
11252 run_test 161a "link ea sanity"
11253
11254 test_161b() {
11255         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11256         [ $MDSCOUNT -lt 2 ] && skip "skipping remote directory test" && return
11257         local MDTIDX=1
11258         local remote_dir=$DIR/$tdir/remote_dir
11259
11260         mkdir -p $DIR/$tdir
11261         $LFS mkdir -i $MDTIDX $remote_dir ||
11262                 error "create remote directory failed"
11263
11264         cp /etc/hosts $remote_dir/$tfile
11265         mkdir -p $remote_dir/foo1
11266         mkdir -p $remote_dir/foo2
11267         ln $remote_dir/$tfile $remote_dir/foo1/sofia
11268         ln $remote_dir/$tfile $remote_dir/foo2/zachary
11269         ln $remote_dir/$tfile $remote_dir/foo1/luna
11270         ln $remote_dir/$tfile $remote_dir/foo2/thor
11271
11272         local FID=$($LFS path2fid $remote_dir/$tfile | tr -d '[' |
11273                      tr -d ']')
11274         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
11275                 $LFS fid2path $DIR $FID
11276                 err17935 "bad link ea"
11277         fi
11278         # middle
11279         rm $remote_dir/foo2/zachary
11280         # last
11281         rm $remote_dir/foo2/thor
11282         # first
11283         rm $remote_dir/$tfile
11284         # rename
11285         mv $remote_dir/foo1/sofia $remote_dir/foo2/maggie
11286         local link_path=$($LFS fid2path $FSNAME --link 1 $FID)
11287         if [ "$DIR/$link_path" != "$remote_dir/foo2/maggie" ]; then
11288                 $LFS fid2path $DIR $FID
11289                 err17935 "bad link rename"
11290         fi
11291         rm $remote_dir/foo2/maggie
11292
11293         # overflow the EA
11294         local longname=filename_avg_len_is_thirty_two_
11295         createmany -l$remote_dir/foo1/luna $remote_dir/foo2/$longname 1000 ||
11296                 error "failed to hardlink many files"
11297         links=$($LFS fid2path $DIR $FID | wc -l)
11298         echo -n "${links}/1000 links in link EA"
11299         [[ ${links} -gt 60 ]] ||
11300                 err17935 "expected at least 60 links in link EA"
11301         unlinkmany $remote_dir/foo2/$longname 1000 ||
11302         error "failed to unlink many hardlinks"
11303 }
11304 run_test 161b "link ea sanity under remote directory"
11305
11306 test_161c() {
11307         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11308         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11309         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.1.5) ]] &&
11310                 skip "Need MDS version at least 2.1.5" && return
11311
11312         # define CLF_RENAME_LAST 0x0001
11313         # rename overwrite a target having nlink = 1 (changelog flag 0x1)
11314         CL_USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
11315                 changelog_register -n)
11316
11317         trap cleanup_changelog EXIT
11318         rm -rf $DIR/$tdir
11319         mkdir -p $DIR/$tdir
11320         touch $DIR/$tdir/foo_161c
11321         touch $DIR/$tdir/bar_161c
11322         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/bar_161c
11323         $LFS changelog $MDT0 | grep RENME
11324         local flags=$($LFS changelog $MDT0 | grep RENME | tail -1 | \
11325                 cut -f5 -d' ')
11326         $LFS changelog_clear $MDT0 $CL_USER 0
11327         if [ x$flags != "x0x1" ]; then
11328                 error "flag $flags is not 0x1"
11329         fi
11330         echo "rename overwrite a target having nlink = 1," \
11331                 "changelog record has flags of $flags"
11332
11333         # rename overwrite a target having nlink > 1 (changelog flag 0x0)
11334         touch $DIR/$tdir/foo_161c
11335         touch $DIR/$tdir/bar_161c
11336         ln $DIR/$tdir/bar_161c $DIR/$tdir/foobar_161c
11337         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/bar_161c
11338         $LFS changelog $MDT0 | grep RENME
11339         flags=$($LFS changelog $MDT0 | grep RENME | tail -1 | cut -f5 -d' ')
11340         $LFS changelog_clear $MDT0 $CL_USER 0
11341         if [ x$flags != "x0x0" ]; then
11342                 error "flag $flags is not 0x0"
11343         fi
11344         echo "rename overwrite a target having nlink > 1," \
11345                 "changelog record has flags of $flags"
11346
11347         # rename doesn't overwrite a target (changelog flag 0x0)
11348         touch $DIR/$tdir/foo_161c
11349         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/foo2_161c
11350         $LFS changelog $MDT0 | grep RENME
11351         flags=$($LFS changelog $MDT0 | grep RENME | tail -1 | cut -f5 -d' ')
11352         $LFS changelog_clear $MDT0 $CL_USER 0
11353         if [ x$flags != "x0x0" ]; then
11354                 error "flag $flags is not 0x0"
11355         fi
11356         echo "rename doesn't overwrite a target," \
11357                 "changelog record has flags of $flags"
11358
11359         # define CLF_UNLINK_LAST 0x0001
11360         # unlink a file having nlink = 1 (changelog flag 0x1)
11361         rm -f $DIR/$tdir/foo2_161c
11362         $LFS changelog $MDT0 | grep UNLNK
11363         flags=$($LFS changelog $MDT0 | grep UNLNK | tail -1 | cut -f5 -d' ')
11364         $LFS changelog_clear $MDT0 $CL_USER 0
11365         if [ x$flags != "x0x1" ]; then
11366                 error "flag $flags is not 0x1"
11367         fi
11368         echo "unlink a file having nlink = 1," \
11369                 "changelog record has flags of $flags"
11370
11371         # unlink a file having nlink > 1 (changelog flag 0x0)
11372         ln -f $DIR/$tdir/bar_161c $DIR/$tdir/foobar_161c
11373         rm -f $DIR/$tdir/foobar_161c
11374         $LFS changelog $MDT0 | grep UNLNK
11375         flags=$($LFS changelog $MDT0 | grep UNLNK | tail -1 | cut -f5 -d' ')
11376         $LFS changelog_clear $MDT0 $CL_USER 0
11377         if [ x$flags != "x0x0" ]; then
11378                 error "flag $flags is not 0x0"
11379         fi
11380         echo "unlink a file having nlink > 1," \
11381                 "changelog record has flags of $flags"
11382         cleanup_changelog
11383 }
11384 run_test 161c "check CL_RENME[UNLINK] changelog record flags"
11385
11386 test_161d() {
11387         local user
11388         local pid
11389         local fid
11390
11391         # cleanup previous run
11392         rm -rf $DIR/$tdir/$tfile
11393
11394         user=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
11395                 changelog_register -n)
11396         [[ $? -eq 0 ]] || error "changelog_register failed"
11397
11398         # work in a standalone dir to avoid locking on $DIR/$MOUNT to
11399         # interfer with $MOUNT/.lustre/fid/ access
11400         mkdir $DIR/$tdir
11401         [[ $? -eq 0 ]] || error "mkdir failed"
11402
11403         #define OBD_FAIL_LLITE_CREATE_NODE_PAUSE 0x140c | OBD_FAIL_ONCE
11404         $LCTL set_param fail_loc=0x8000140c
11405         # 5s pause
11406         $LCTL set_param fail_val=5
11407
11408         # create file
11409         echo foofoo > $DIR/$tdir/$tfile &
11410         pid=$!
11411
11412         # wait for create to be delayed
11413         sleep 2
11414
11415         ps -p $pid
11416         [[ $? -eq 0 ]] || error "create should be blocked"
11417
11418         local tempfile=$(mktemp)
11419         fid=$(changelog_extract_field $MDT0 "CREAT" "$tfile" "t=")
11420         cat $MOUNT/.lustre/fid/$fid 2>/dev/null >$tempfile || error "cat failed"
11421         # some delay may occur during ChangeLog publishing and file read just
11422         # above, that could allow file write to happen finally
11423         [[ -s $tempfile ]] && echo "file should be empty"
11424
11425         $LCTL set_param fail_loc=0
11426
11427         wait $pid
11428         [[ $? -eq 0 ]] || error "create failed"
11429
11430         $LFS changelog_clear $MDT0 $user 0
11431         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister $user
11432 }
11433 run_test 161d "create with concurrent .lustre/fid access"
11434
11435 check_path() {
11436     local expected=$1
11437     shift
11438     local fid=$2
11439
11440     local path=$(${LFS} fid2path $*)
11441     # Remove the '//' indicating a remote directory
11442     path=$(echo $path | sed 's#//#/#g')
11443     RC=$?
11444
11445     if [ $RC -ne 0 ]; then
11446         err17935 "path looked up of $expected failed. Error $RC"
11447         return $RC
11448     elif [ "${path}" != "${expected}" ]; then
11449         err17935 "path looked up \"${path}\" instead of \"${expected}\""
11450         return 2
11451     fi
11452     echo "fid $fid resolves to path $path (expected $expected)"
11453 }
11454
11455 test_162a() { # was test_162
11456         # Make changes to filesystem
11457         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11458         test_mkdir -p -c1 $DIR/$tdir/d2
11459         touch $DIR/$tdir/d2/$tfile
11460         touch $DIR/$tdir/d2/x1
11461         touch $DIR/$tdir/d2/x2
11462         test_mkdir -p -c1 $DIR/$tdir/d2/a/b/c
11463         test_mkdir -p -c1 $DIR/$tdir/d2/p/q/r
11464         # regular file
11465         FID=$($LFS path2fid $DIR/$tdir/d2/$tfile | tr -d '[]')
11466         check_path "$tdir/d2/$tfile" $FSNAME $FID --link 0 ||
11467                 error "check path $tdir/d2/$tfile failed"
11468
11469         # softlink
11470         ln -s $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/slink
11471         FID=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink | tr -d '[]')
11472         check_path "$tdir/d2/p/q/r/slink" $FSNAME $FID --link 0 ||
11473                 error "check path $tdir/d2/p/q/r/slink failed"
11474
11475         # softlink to wrong file
11476         ln -s /this/is/garbage $DIR/$tdir/d2/p/q/r/slink.wrong
11477         FID=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink.wrong | tr -d '[]')
11478         check_path "$tdir/d2/p/q/r/slink.wrong" $FSNAME $FID --link 0 ||
11479                 error "check path $tdir/d2/p/q/r/slink.wrong failed"
11480
11481         # hardlink
11482         ln $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/hlink
11483         mv $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/a/b/c/new_file
11484         FID=$($LFS path2fid $DIR/$tdir/d2/a/b/c/new_file | tr -d '[]')
11485         # fid2path dir/fsname should both work
11486         check_path "$tdir/d2/a/b/c/new_file" $FSNAME $FID --link 1 ||
11487                 error "check path $tdir/d2/a/b/c/new_file failed"
11488         check_path "$DIR/$tdir/d2/p/q/r/hlink" $DIR $FID --link 0 ||
11489                 error "check path $DIR/$tdir/d2/p/q/r/hlink failed"
11490
11491         # hardlink count: check that there are 2 links
11492         # Doesnt work with CMD yet: 17935
11493         ${LFS} fid2path $DIR $FID | wc -l | grep -q 2 || \
11494                 err17935 "expected 2 links"
11495
11496         # hardlink indexing: remove the first link
11497         rm $DIR/$tdir/d2/p/q/r/hlink
11498         check_path "$tdir/d2/a/b/c/new_file" $FSNAME $FID --link 0 ||
11499                 error "check path $DIR/$tdir/d2/a/b/c/new_file failed"
11500
11501         return 0
11502 }
11503 run_test 162a "path lookup sanity"
11504
11505 test_162b() {
11506         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11507         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
11508
11509         mkdir $DIR/$tdir
11510         $LFS setdirstripe -i0 -c$MDSCOUNT -t all_char $DIR/$tdir/striped_dir ||
11511                                 error "create striped dir failed"
11512
11513         local FID=$($LFS getdirstripe $DIR/$tdir/striped_dir |
11514                                         tail -n 1 | awk '{print $2}')
11515         stat $MOUNT/.lustre/fid/$FID && error "sub_stripe can be accessed"
11516
11517         touch $DIR/$tdir/striped_dir/f{0..4} || error "touch f0..4 failed"
11518         mkdir $DIR/$tdir/striped_dir/d{0..4} || error "mkdir d0..4 failed"
11519
11520         # regular file
11521         for ((i=0;i<5;i++)); do
11522                 FID=$($LFS path2fid $DIR/$tdir/striped_dir/f$i | tr -d '[]') ||
11523                         error "get fid for f$i failed"
11524                 check_path "$tdir/striped_dir/f$i" $FSNAME $FID --link 0 ||
11525                         error "check path $tdir/striped_dir/f$i failed"
11526
11527                 FID=$($LFS path2fid $DIR/$tdir/striped_dir/d$i | tr -d '[]') ||
11528                         error "get fid for d$i failed"
11529                 check_path "$tdir/striped_dir/d$i" $FSNAME $FID --link 0 ||
11530                         error "check path $tdir/striped_dir/d$i failed"
11531         done
11532
11533         return 0
11534 }
11535 run_test 162b "striped directory path lookup sanity"
11536
11537 # LU-4239: Verify fid2path works with paths 100 or more directories deep
11538 test_162c() {
11539         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.51) ]] &&
11540                 skip "Need MDS version at least 2.7.51" && return
11541         test_mkdir $DIR/$tdir.local
11542         test_mkdir $DIR/$tdir.remote
11543         local lpath=$tdir.local
11544         local rpath=$tdir.remote
11545
11546         for ((i = 0; i <= 101; i++)); do
11547                 lpath="$lpath/$i"
11548                 mkdir $DIR/$lpath
11549                 FID=$($LFS path2fid $DIR/$lpath | tr -d '[]') ||
11550                         error "get fid for local directory $DIR/$lpath failed"
11551                 check_path "$DIR/$lpath" $MOUNT $FID --link 0 ||
11552                         error "check path for local directory $DIR/$lpath failed"
11553
11554                 rpath="$rpath/$i"
11555                 test_mkdir $DIR/$rpath
11556                 FID=$($LFS path2fid $DIR/$rpath | tr -d '[]') ||
11557                         error "get fid for remote directory $DIR/$rpath failed"
11558                 check_path "$DIR/$rpath" $MOUNT $FID --link 0 ||
11559                         error "check path for remote directory $DIR/$rpath failed"
11560         done
11561
11562         return 0
11563 }
11564 run_test 162c "fid2path works with paths 100 or more directories deep"
11565
11566 test_169() {
11567         # do directio so as not to populate the page cache
11568         log "creating a 10 Mb file"
11569         $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
11570         log "starting reads"
11571         dd if=$DIR/$tfile of=/dev/null bs=4096 &
11572         log "truncating the file"
11573         $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
11574         log "killing dd"
11575         kill %+ || true # reads might have finished
11576         echo "wait until dd is finished"
11577         wait
11578         log "removing the temporary file"
11579         rm -rf $DIR/$tfile || error "tmp file removal failed"
11580 }
11581 run_test 169 "parallel read and truncate should not deadlock"
11582
11583 test_170() {
11584         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11585         $LCTL clear     # bug 18514
11586         $LCTL debug_daemon start $TMP/${tfile}_log_good
11587         touch $DIR/$tfile
11588         $LCTL debug_daemon stop
11589         sed -e "s/^...../a/g" $TMP/${tfile}_log_good > $TMP/${tfile}_log_bad ||
11590                error "sed failed to read log_good"
11591
11592         $LCTL debug_daemon start $TMP/${tfile}_log_good
11593         rm -rf $DIR/$tfile
11594         $LCTL debug_daemon stop
11595
11596         $LCTL df $TMP/${tfile}_log_bad > $TMP/${tfile}_log_bad.out 2>&1 ||
11597                error "lctl df log_bad failed"
11598
11599         local bad_line=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
11600         local good_line1=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
11601
11602         $LCTL df $TMP/${tfile}_log_good > $TMP/${tfile}_log_good.out 2>&1
11603         local good_line2=$(tail -n 1 $TMP/${tfile}_log_good.out | awk '{print $5}')
11604
11605         [ "$bad_line" ] && [ "$good_line1" ] && [ "$good_line2" ] ||
11606                 error "bad_line good_line1 good_line2 are empty"
11607
11608         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
11609         cat $TMP/${tfile}_log_bad >> $TMP/${tfile}_logs_corrupt
11610         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
11611
11612         $LCTL df $TMP/${tfile}_logs_corrupt > $TMP/${tfile}_log_bad.out 2>&1
11613         local bad_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
11614         local good_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
11615
11616         [ "$bad_line_new" ] && [ "$good_line_new" ] ||
11617                 error "bad_line_new good_line_new are empty"
11618
11619         local expected_good=$((good_line1 + good_line2*2))
11620
11621         rm -f $TMP/${tfile}*
11622         # LU-231, short malformed line may not be counted into bad lines
11623         if [ $bad_line -ne $bad_line_new ] &&
11624                    [ $bad_line -ne $((bad_line_new - 1)) ]; then
11625                 error "expected $bad_line bad lines, but got $bad_line_new"
11626                 return 1
11627         fi
11628
11629         if [ $expected_good -ne $good_line_new ]; then
11630                 error "expected $expected_good good lines, but got $good_line_new"
11631                 return 2
11632         fi
11633         true
11634 }
11635 run_test 170 "test lctl df to handle corrupted log ====================="
11636
11637 test_171() { # bug20592
11638         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11639 #define OBD_FAIL_PTLRPC_DUMP_LOG         0x50e
11640         $LCTL set_param fail_loc=0x50e
11641         $LCTL set_param fail_val=3000
11642         multiop_bg_pause $DIR/$tfile O_s || true
11643         local MULTIPID=$!
11644         kill -USR1 $MULTIPID
11645         # cause log dump
11646         sleep 3
11647         wait $MULTIPID
11648         if dmesg | grep "recursive fault"; then
11649                 error "caught a recursive fault"
11650         fi
11651         $LCTL set_param fail_loc=0
11652         true
11653 }
11654 run_test 171 "test libcfs_debug_dumplog_thread stuck in do_exit() ======"
11655
11656 # it would be good to share it with obdfilter-survey/iokit-libecho code
11657 setup_obdecho_osc () {
11658         local rc=0
11659         local ost_nid=$1
11660         local obdfilter_name=$2
11661         echo "Creating new osc for $obdfilter_name on $ost_nid"
11662         # make sure we can find loopback nid
11663         $LCTL add_uuid $ost_nid $ost_nid >/dev/null 2>&1
11664
11665         [ $rc -eq 0 ] && { $LCTL attach osc ${obdfilter_name}_osc     \
11666                            ${obdfilter_name}_osc_UUID || rc=2; }
11667         [ $rc -eq 0 ] && { $LCTL --device ${obdfilter_name}_osc setup \
11668                            ${obdfilter_name}_UUID  $ost_nid || rc=3; }
11669         return $rc
11670 }
11671
11672 cleanup_obdecho_osc () {
11673         local obdfilter_name=$1
11674         $LCTL --device ${obdfilter_name}_osc cleanup >/dev/null
11675         $LCTL --device ${obdfilter_name}_osc detach  >/dev/null
11676         return 0
11677 }
11678
11679 obdecho_test() {
11680         local OBD=$1
11681         local node=$2
11682         local pages=${3:-64}
11683         local rc=0
11684         local id
11685
11686         local count=10
11687         local obd_size=$(get_obd_size $node $OBD)
11688         local page_size=$(get_page_size $node)
11689         if [[ -n "$obd_size" ]]; then
11690                 local new_count=$((obd_size / (pages * page_size / 1024)))
11691                 [[ $new_count -ge $count ]] || count=$new_count
11692         fi
11693
11694         do_facet $node "$LCTL attach echo_client ec ec_uuid" || rc=1
11695         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec setup $OBD" ||
11696                            rc=2; }
11697         if [ $rc -eq 0 ]; then
11698             id=$(do_facet $node "$LCTL --device ec create 1"  | awk '/object id/ {print $6}')
11699             [ ${PIPESTATUS[0]} -eq 0 -a -n "$id" ] || rc=3
11700         fi
11701         echo "New object id is $id"
11702         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec getattr $id" ||
11703                            rc=4; }
11704         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec "                 \
11705                            "test_brw $count w v $pages $id" || rc=4; }
11706         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec destroy $id 1" ||
11707                            rc=4; }
11708         [ $rc -eq 0 -o $rc -gt 2 ] && { do_facet $node "$LCTL --device ec "    \
11709                                         "cleanup" || rc=5; }
11710         [ $rc -eq 0 -o $rc -gt 1 ] && { do_facet $node "$LCTL --device ec "    \
11711                                         "detach" || rc=6; }
11712         [ $rc -ne 0 ] && echo "obecho_create_test failed: $rc"
11713         return $rc
11714 }
11715
11716 test_180a() {
11717         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11718         remote_ost_nodsh && skip "remote OST with nodsh" && return
11719         local rc=0
11720         local rmmod_local=0
11721
11722         if ! module_loaded obdecho; then
11723             load_module obdecho/obdecho
11724             rmmod_local=1
11725         fi
11726
11727         local osc=$($LCTL dl | grep -v mdt | awk '$3 == "osc" {print $4; exit}')
11728         local host=$(lctl get_param -n osc.$osc.import |
11729                              awk '/current_connection:/ {print $2}' )
11730         local target=$(lctl get_param -n osc.$osc.import |
11731                              awk '/target:/ {print $2}' )
11732         target=${target%_UUID}
11733
11734         [[ -n $target ]]  && { setup_obdecho_osc $host $target || rc=1; } || rc=1
11735         [ $rc -eq 0 ] && { obdecho_test ${target}_osc client || rc=2; }
11736         [[ -n $target ]] && cleanup_obdecho_osc $target
11737         [ $rmmod_local -eq 1 ] && rmmod obdecho
11738         return $rc
11739 }
11740 run_test 180a "test obdecho on osc"
11741
11742 test_180b() {
11743         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11744         remote_ost_nodsh && skip "remote OST with nodsh" && return
11745         local rc=0
11746         local rmmod_remote=0
11747
11748         do_rpc_nodes $(facet_active_host ost1) load_module obdecho/obdecho &&
11749                 rmmod_remote=true || error "failed to load module obdecho"
11750         target=$(do_facet ost1 $LCTL dl | awk '/obdfilter/ {print $4;exit}')
11751         [[ -n $target ]] && { obdecho_test $target ost1 || rc=1; }
11752         $rmmod_remote && do_facet ost1 "rmmod obdecho"
11753         return $rc
11754 }
11755 run_test 180b "test obdecho directly on obdfilter"
11756
11757 test_180c() { # LU-2598
11758         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11759         remote_ost_nodsh && skip "remote OST with nodsh" && return
11760         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.0) ]] &&
11761                 skip "Need MDS version at least 2.4.0" && return
11762
11763         local rc=0
11764         local rmmod_remote=false
11765         local pages=16384 # 64MB bulk I/O RPC size
11766         local target
11767
11768         do_rpc_nodes $(facet_active_host ost1) load_module obdecho/obdecho &&
11769                 rmmod_remote=true || error "failed to load module obdecho"
11770
11771         target=$(do_facet ost1 $LCTL dl | awk '/obdfilter/ { print $4 }' |
11772                 head -n1)
11773         if [ -n "$target" ]; then
11774                 obdecho_test "$target" ost1 "$pages" || rc=${PIPESTATUS[0]}
11775         else
11776                 echo "there is no obdfilter target on ost1"
11777                 rc=2
11778         fi
11779         $rmmod_remote && do_facet ost1 "rmmod obdecho" || true
11780         return $rc
11781 }
11782 run_test 180c "test huge bulk I/O size on obdfilter, don't LASSERT"
11783
11784 test_181() { # bug 22177
11785         test_mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
11786         # create enough files to index the directory
11787         createmany -o $DIR/$tdir/foobar 4000
11788         # print attributes for debug purpose
11789         lsattr -d .
11790         # open dir
11791         multiop_bg_pause $DIR/$tdir D_Sc || return 1
11792         MULTIPID=$!
11793         # remove the files & current working dir
11794         unlinkmany $DIR/$tdir/foobar 4000
11795         rmdir $DIR/$tdir
11796         kill -USR1 $MULTIPID
11797         wait $MULTIPID
11798         stat $DIR/$tdir && error "open-unlinked dir was not removed!"
11799         return 0
11800 }
11801 run_test 181 "Test open-unlinked dir ========================"
11802
11803 test_182() {
11804         local fcount=1000
11805         local tcount=10
11806
11807         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
11808
11809         $LCTL set_param mdc.*.rpc_stats=clear
11810
11811         for (( i = 0; i < $tcount; i++ )) ; do
11812                 mkdir $DIR/$tdir/$i
11813         done
11814
11815         for (( i = 0; i < $tcount; i++ )) ; do
11816                 createmany -o $DIR/$tdir/$i/f- $fcount &
11817         done
11818         wait
11819
11820         for (( i = 0; i < $tcount; i++ )) ; do
11821                 unlinkmany $DIR/$tdir/$i/f- $fcount &
11822         done
11823         wait
11824
11825         $LCTL get_param mdc.*.rpc_stats
11826
11827         rm -rf $DIR/$tdir
11828 }
11829 run_test 182 "Test parallel modify metadata operations ================"
11830
11831 test_183() { # LU-2275
11832         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11833         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.56) ]] &&
11834                 skip "Need MDS version at least 2.3.56" && return
11835
11836         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11837         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
11838         echo aaa > $DIR/$tdir/$tfile
11839
11840 #define OBD_FAIL_MDS_NEGATIVE_POSITIVE  0x148
11841         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x148
11842
11843         ls -l $DIR/$tdir && error "ls succeeded, should have failed"
11844         cat $DIR/$tdir/$tfile && error "cat succeeded, should have failed"
11845
11846         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
11847
11848         # Flush negative dentry cache
11849         touch $DIR/$tdir/$tfile
11850
11851         # We are not checking for any leaked references here, they'll
11852         # become evident next time we do cleanup with module unload.
11853         rm -rf $DIR/$tdir
11854 }
11855 run_test 183 "No crash or request leak in case of strange dispositions ========"
11856
11857 # test suite 184 is for LU-2016, LU-2017
11858 test_184a() {
11859         check_swap_layouts_support && return 0
11860
11861         dir0=$DIR/$tdir/$testnum
11862         test_mkdir -p -c1 $dir0 || error "creating dir $dir0"
11863         ref1=/etc/passwd
11864         ref2=/etc/group
11865         file1=$dir0/f1
11866         file2=$dir0/f2
11867         $SETSTRIPE -c1 $file1
11868         cp $ref1 $file1
11869         $SETSTRIPE -c2 $file2
11870         cp $ref2 $file2
11871         gen1=$($GETSTRIPE -g $file1)
11872         gen2=$($GETSTRIPE -g $file2)
11873
11874         $LFS swap_layouts $file1 $file2 || error "swap of file layout failed"
11875         gen=$($GETSTRIPE -g $file1)
11876         [[ $gen1 != $gen ]] ||
11877                 "Layout generation on $file1 does not change"
11878         gen=$($GETSTRIPE -g $file2)
11879         [[ $gen2 != $gen ]] ||
11880                 "Layout generation on $file2 does not change"
11881
11882         cmp $ref1 $file2 || error "content compare failed ($ref1 != $file2)"
11883         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
11884 }
11885 run_test 184a "Basic layout swap"
11886
11887 test_184b() {
11888         check_swap_layouts_support && return 0
11889
11890         dir0=$DIR/$tdir/$testnum
11891         mkdir -p $dir0 || error "creating dir $dir0"
11892         file1=$dir0/f1
11893         file2=$dir0/f2
11894         file3=$dir0/f3
11895         dir1=$dir0/d1
11896         dir2=$dir0/d2
11897         mkdir $dir1 $dir2
11898         $SETSTRIPE -c1 $file1
11899         $SETSTRIPE -c2 $file2
11900         $SETSTRIPE -c1 $file3
11901         chown $RUNAS_ID $file3
11902         gen1=$($GETSTRIPE -g $file1)
11903         gen2=$($GETSTRIPE -g $file2)
11904
11905         $LFS swap_layouts $dir1 $dir2 &&
11906                 error "swap of directories layouts should fail"
11907         $LFS swap_layouts $dir1 $file1 &&
11908                 error "swap of directory and file layouts should fail"
11909         $RUNAS $LFS swap_layouts $file1 $file2 &&
11910                 error "swap of file we cannot write should fail"
11911         $LFS swap_layouts $file1 $file3 &&
11912                 error "swap of file with different owner should fail"
11913         /bin/true # to clear error code
11914 }
11915 run_test 184b "Forbidden layout swap (will generate errors)"
11916
11917 test_184c() {
11918         local cmpn_arg=$(cmp -n 2>&1 | grep "invalid option")
11919         [ -n "$cmpn_arg" ] && skip_env "cmp does not support -n" && return
11920         check_swap_layouts_support && return 0
11921
11922         local dir0=$DIR/$tdir/$testnum
11923         mkdir -p $dir0 || error "creating dir $dir0"
11924
11925         local ref1=$dir0/ref1
11926         local ref2=$dir0/ref2
11927         local file1=$dir0/file1
11928         local file2=$dir0/file2
11929         # create a file large enough for the concurrent test
11930         dd if=/dev/urandom of=$ref1 bs=1M count=$((RANDOM % 50 + 20))
11931         dd if=/dev/urandom of=$ref2 bs=1M count=$((RANDOM % 50 + 20))
11932         echo "ref file size: ref1($(stat -c %s $ref1))," \
11933              "ref2($(stat -c %s $ref2))"
11934
11935         cp $ref2 $file2
11936         dd if=$ref1 of=$file1 bs=16k &
11937         local DD_PID=$!
11938
11939         # Make sure dd starts to copy file
11940         while [ ! -f $file1 ]; do sleep 0.1; done
11941
11942         $LFS swap_layouts $file1 $file2
11943         local rc=$?
11944         wait $DD_PID
11945         [[ $? == 0 ]] || error "concurrent write on $file1 failed"
11946         [[ $rc == 0 ]] || error "swap of $file1 and $file2 failed"
11947
11948         # how many bytes copied before swapping layout
11949         local copied=$(stat -c %s $file2)
11950         local remaining=$(stat -c %s $ref1)
11951         remaining=$((remaining - copied))
11952         echo "Copied $copied bytes before swapping layout..."
11953
11954         cmp -n $copied $file1 $ref2 | grep differ &&
11955                 error "Content mismatch [0, $copied) of ref2 and file1"
11956         cmp -n $copied $file2 $ref1 ||
11957                 error "Content mismatch [0, $copied) of ref1 and file2"
11958         cmp -i $copied:$copied -n $remaining $file1 $ref1 ||
11959                 error "Content mismatch [$copied, EOF) of ref1 and file1"
11960
11961         # clean up
11962         rm -f $ref1 $ref2 $file1 $file2
11963 }
11964 run_test 184c "Concurrent write and layout swap"
11965
11966 test_184d() {
11967         check_swap_layouts_support && return 0
11968         [ -z "$(which getfattr 2>/dev/null)" ] &&
11969                 skip "no getfattr command" && return 0
11970
11971         local file1=$DIR/$tdir/$tfile-1
11972         local file2=$DIR/$tdir/$tfile-2
11973         local file3=$DIR/$tdir/$tfile-3
11974         local lovea1
11975         local lovea2
11976
11977         mkdir -p $DIR/$tdir
11978         touch $file1 || error "create $file1 failed"
11979         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file2 ||
11980                 error "create $file2 failed"
11981         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file3 ||
11982                 error "create $file3 failed"
11983         lovea1=$(get_layout_param $file1)
11984
11985         $LFS swap_layouts $file2 $file3 ||
11986                 error "swap $file2 $file3 layouts failed"
11987         $LFS swap_layouts $file1 $file2 ||
11988                 error "swap $file1 $file2 layouts failed"
11989
11990         lovea2=$(get_layout_param $file2)
11991         echo "$lovea1"
11992         echo "$lovea2"
11993         [ "$lovea1" == "$lovea2" ] || error "lovea $lovea1 != $lovea2"
11994
11995         lovea1=$(getfattr -n trusted.lov $file1 | grep ^trusted)
11996         [[ -z "$lovea1" ]] || error "$file1 shouldn't have lovea"
11997 }
11998 run_test 184d "allow stripeless layouts swap"
11999
12000 test_184e() {
12001         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.94) ]] ||
12002                 { skip "Need MDS version at least 2.6.94"; return 0; }
12003         check_swap_layouts_support && return 0
12004         [ -z "$(which getfattr 2>/dev/null)" ] &&
12005                 skip "no getfattr command" && return 0
12006
12007         local file1=$DIR/$tdir/$tfile-1
12008         local file2=$DIR/$tdir/$tfile-2
12009         local file3=$DIR/$tdir/$tfile-3
12010         local lovea
12011
12012         mkdir -p $DIR/$tdir
12013         touch $file1 || error "create $file1 failed"
12014         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file2 ||
12015                 error "create $file2 failed"
12016         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file3 ||
12017                 error "create $file3 failed"
12018
12019         $LFS swap_layouts $file1 $file2 ||
12020                 error "swap $file1 $file2 layouts failed"
12021
12022         lovea=$(getfattr -n trusted.lov $file1 | grep ^trusted)
12023         [[ -z "$lovea" ]] || error "$file1 shouldn't have lovea"
12024
12025         echo 123 > $file1 || error "Should be able to write into $file1"
12026
12027         $LFS swap_layouts $file1 $file3 ||
12028                 error "swap $file1 $file3 layouts failed"
12029
12030         echo 123 > $file1 || error "Should be able to write into $file1"
12031
12032         rm -rf $file1 $file2 $file3
12033 }
12034 run_test 184e "Recreate layout after stripeless layout swaps"
12035
12036 test_185() { # LU-2441
12037         # LU-3553 - no volatile file support in old servers
12038         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.60) ]] ||
12039                 { skip "Need MDS version at least 2.3.60"; return 0; }
12040
12041         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
12042         touch $DIR/$tdir/spoo
12043         local mtime1=$(stat -c "%Y" $DIR/$tdir)
12044         local fid=$($MULTIOP $DIR/$tdir VFw4096c) ||
12045                 error "cannot create/write a volatile file"
12046         [ "$FILESET" == "" ] &&
12047         $CHECKSTAT -t file $MOUNT/.lustre/fid/$fid 2>/dev/null &&
12048                 error "FID is still valid after close"
12049
12050         multiop_bg_pause $DIR/$tdir vVw4096_c
12051         local multi_pid=$!
12052
12053         local OLD_IFS=$IFS
12054         IFS=":"
12055         local fidv=($fid)
12056         IFS=$OLD_IFS
12057         # assume that the next FID for this client is sequential, since stdout
12058         # is unfortunately eaten by multiop_bg_pause
12059         local n=$((${fidv[1]} + 1))
12060         local next_fid="${fidv[0]}:$(printf "0x%x" $n):${fidv[2]}"
12061         if [ "$FILESET" == "" ]; then
12062                 $CHECKSTAT -t file $MOUNT/.lustre/fid/$next_fid ||
12063                         error "FID is missing before close"
12064         fi
12065         kill -USR1 $multi_pid
12066         # 1 second delay, so if mtime change we will see it
12067         sleep 1
12068         local mtime2=$(stat -c "%Y" $DIR/$tdir)
12069         [[ $mtime1 == $mtime2 ]] || error "mtime has changed"
12070 }
12071 run_test 185 "Volatile file support"
12072
12073 test_187a() {
12074         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12075         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.0) ] &&
12076                 skip "Need MDS version at least 2.3.0" && return
12077
12078         local dir0=$DIR/$tdir/$testnum
12079         mkdir -p $dir0 || error "creating dir $dir0"
12080
12081         local file=$dir0/file1
12082         dd if=/dev/urandom of=$file count=10 bs=1M conv=fsync
12083         local dv1=$($LFS data_version $file)
12084         dd if=/dev/urandom of=$file seek=10 count=1 bs=1M conv=fsync
12085         local dv2=$($LFS data_version $file)
12086         [[ $dv1 != $dv2 ]] ||
12087                 error "data version did not change on write $dv1 == $dv2"
12088
12089         # clean up
12090         rm -f $file1
12091 }
12092 run_test 187a "Test data version change"
12093
12094 test_187b() {
12095         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12096         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.0) ] &&
12097                 skip "Need MDS version at least 2.3.0" && return
12098
12099         local dir0=$DIR/$tdir/$testnum
12100         mkdir -p $dir0 || error "creating dir $dir0"
12101
12102         declare -a DV=$($MULTIOP $dir0 Vw1000xYw1000xY | cut -f3 -d" ")
12103         [[ ${DV[0]} != ${DV[1]} ]] ||
12104                 error "data version did not change on write"\
12105                       " ${DV[0]} == ${DV[1]}"
12106
12107         # clean up
12108         rm -f $file1
12109 }
12110 run_test 187b "Test data version change on volatile file"
12111
12112 test_200() {
12113         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12114         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
12115         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
12116
12117         local POOL=${POOL:-cea1}
12118         local POOL_ROOT=${POOL_ROOT:-$DIR/d200.pools}
12119         local POOL_DIR_NAME=${POOL_DIR_NAME:-dir_tst}
12120         # Pool OST targets
12121         local first_ost=0
12122         local last_ost=$(($OSTCOUNT - 1))
12123         local ost_step=2
12124         local ost_list=$(seq $first_ost $ost_step $last_ost)
12125         local ost_range="$first_ost $last_ost $ost_step"
12126         local test_path=$POOL_ROOT/$POOL_DIR_NAME
12127         local file_dir=$POOL_ROOT/file_tst
12128         local subdir=$test_path/subdir
12129
12130         local rc=0
12131         while : ; do
12132                 # former test_200a test_200b
12133                 pool_add $POOL                          || { rc=$? ; break; }
12134                 pool_add_targets  $POOL $ost_range      || { rc=$? ; break; }
12135                 # former test_200c test_200d
12136                 mkdir -p $test_path
12137                 pool_set_dir      $POOL $test_path      || { rc=$? ; break; }
12138                 pool_check_dir    $POOL $test_path      || { rc=$? ; break; }
12139                 mkdir -p $subdir
12140                 pool_check_dir    $POOL $subdir         || { rc=$? ; break; }
12141                 pool_dir_rel_path $POOL $POOL_DIR_NAME $POOL_ROOT \
12142                                                         || { rc=$? ; break; }
12143                 # former test_200e test_200f
12144                 local files=$((OSTCOUNT*3))
12145                 pool_alloc_files  $POOL $test_path $files "$ost_list" \
12146                                                         || { rc=$? ; break; }
12147                 pool_create_files $POOL $file_dir $files "$ost_list" \
12148                                                         || { rc=$? ; break; }
12149                 # former test_200g test_200h
12150                 pool_lfs_df $POOL                       || { rc=$? ; break; }
12151                 pool_file_rel_path $POOL $test_path     || { rc=$? ; break; }
12152
12153                 # former test_201a test_201b test_201c
12154                 pool_remove_first_target $POOL          || { rc=$? ; break; }
12155
12156                 local f=$test_path/$tfile
12157                 pool_remove_all_targets $POOL $f        || { rc=$? ; break; }
12158                 pool_remove $POOL $f                    || { rc=$? ; break; }
12159                 break
12160         done
12161
12162         destroy_test_pools
12163         return $rc
12164 }
12165 run_test 200 "OST pools"
12166
12167 # usage: default_attr <count | size | offset>
12168 default_attr() {
12169         $LCTL get_param -n lov.$FSNAME-clilov-\*.stripe${1}
12170 }
12171
12172 # usage: check_default_stripe_attr
12173 check_default_stripe_attr() {
12174         ACTUAL=$($GETSTRIPE $* $DIR/$tdir)
12175         case $1 in
12176         --stripe-count|-c)
12177                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr count);;
12178         --stripe-size|-S)
12179                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr size);;
12180         --stripe-index|-i)
12181                 EXPECTED=-1;;
12182         *)
12183                 error "unknown getstripe attr '$1'"
12184         esac
12185
12186         [ $ACTUAL != $EXPECTED ] &&
12187                 error "$DIR/$tdir has $1 '$ACTUAL', not '$EXPECTED'"
12188 }
12189
12190 test_204a() {
12191         test_mkdir -p $DIR/$tdir
12192         $SETSTRIPE --stripe-count 0 --stripe-size 0 --stripe-index -1 $DIR/$tdir
12193
12194         check_default_stripe_attr --stripe-count
12195         check_default_stripe_attr --stripe-size
12196         check_default_stripe_attr --stripe-index
12197
12198         return 0
12199 }
12200 run_test 204a "Print default stripe attributes ================="
12201
12202 test_204b() {
12203         test_mkdir -p $DIR/$tdir
12204         $SETSTRIPE --stripe-count 1 $DIR/$tdir
12205
12206         check_default_stripe_attr --stripe-size
12207         check_default_stripe_attr --stripe-index
12208
12209         return 0
12210 }
12211 run_test 204b "Print default stripe size and offset  ==========="
12212
12213 test_204c() {
12214         test_mkdir -p $DIR/$tdir
12215         $SETSTRIPE --stripe-size 65536 $DIR/$tdir
12216
12217         check_default_stripe_attr --stripe-count
12218         check_default_stripe_attr --stripe-index
12219
12220         return 0
12221 }
12222 run_test 204c "Print default stripe count and offset ==========="
12223
12224 test_204d() {
12225         test_mkdir -p $DIR/$tdir
12226         $SETSTRIPE --stripe-index 0 $DIR/$tdir
12227
12228         check_default_stripe_attr --stripe-count
12229         check_default_stripe_attr --stripe-size
12230
12231         return 0
12232 }
12233 run_test 204d "Print default stripe count and size ============="
12234
12235 test_204e() {
12236         test_mkdir -p $DIR/$tdir
12237         $SETSTRIPE -d $DIR/$tdir
12238
12239         check_default_stripe_attr --stripe-count --raw
12240         check_default_stripe_attr --stripe-size --raw
12241         check_default_stripe_attr --stripe-index --raw
12242
12243         return 0
12244 }
12245 run_test 204e "Print raw stripe attributes ================="
12246
12247 test_204f() {
12248         test_mkdir -p $DIR/$tdir
12249         $SETSTRIPE --stripe-count 1 $DIR/$tdir
12250
12251         check_default_stripe_attr --stripe-size --raw
12252         check_default_stripe_attr --stripe-index --raw
12253
12254         return 0
12255 }
12256 run_test 204f "Print raw stripe size and offset  ==========="
12257
12258 test_204g() {
12259         test_mkdir -p $DIR/$tdir
12260         $SETSTRIPE --stripe-size 65536 $DIR/$tdir
12261
12262         check_default_stripe_attr --stripe-count --raw
12263         check_default_stripe_attr --stripe-index --raw
12264
12265         return 0
12266 }
12267 run_test 204g "Print raw stripe count and offset ==========="
12268
12269 test_204h() {
12270         test_mkdir -p $DIR/$tdir
12271         $SETSTRIPE --stripe-index 0 $DIR/$tdir
12272
12273         check_default_stripe_attr --stripe-count --raw
12274         check_default_stripe_attr --stripe-size --raw
12275
12276         return 0
12277 }
12278 run_test 204h "Print raw stripe count and size ============="
12279
12280 # Figure out which job scheduler is being used, if any,
12281 # or use a fake one
12282 if [ -n "$SLURM_JOB_ID" ]; then # SLURM
12283         JOBENV=SLURM_JOB_ID
12284 elif [ -n "$LSB_JOBID" ]; then # Load Sharing Facility
12285         JOBENV=LSB_JOBID
12286 elif [ -n "$PBS_JOBID" ]; then # PBS/Maui/Moab
12287         JOBENV=PBS_JOBID
12288 elif [ -n "$LOADL_STEPID" ]; then # LoadLeveller
12289         JOBENV=LOADL_STEP_ID
12290 elif [ -n "$JOB_ID" ]; then # Sun Grid Engine
12291         JOBENV=JOB_ID
12292 else
12293         $LCTL list_param jobid_name > /dev/null 2>&1
12294         if [ $? -eq 0 ]; then
12295                 JOBENV=nodelocal
12296         else
12297                 JOBENV=FAKE_JOBID
12298         fi
12299 fi
12300
12301 verify_jobstats() {
12302         local cmd=($1)
12303         shift
12304         local facets="$@"
12305
12306 # we don't really need to clear the stats for this test to work, since each
12307 # command has a unique jobid, but it makes debugging easier if needed.
12308 #       for facet in $facets; do
12309 #               local dev=$(convert_facet2label $facet)
12310 #               # clear old jobstats
12311 #               do_facet $facet lctl set_param *.$dev.job_stats="clear"
12312 #       done
12313
12314         # use a new JobID for each test, or we might see an old one
12315         [ "$JOBENV" = "FAKE_JOBID" ] &&
12316                 FAKE_JOBID=id.$testnum.$(basename ${cmd[0]}).$RANDOM
12317
12318         JOBVAL=${!JOBENV}
12319
12320         [ "$JOBENV" = "nodelocal" ] && {
12321                 FAKE_JOBID=id.$testnum.$(basename ${cmd[0]}).$RANDOM
12322                 $LCTL set_param jobid_name=$FAKE_JOBID
12323                 JOBVAL=$FAKE_JOBID
12324         }
12325
12326         log "Test: ${cmd[*]}"
12327         log "Using JobID environment variable $JOBENV=$JOBVAL"
12328
12329         if [ $JOBENV = "FAKE_JOBID" ]; then
12330                 FAKE_JOBID=$JOBVAL ${cmd[*]}
12331         else
12332                 ${cmd[*]}
12333         fi
12334
12335         # all files are created on OST0000
12336         for facet in $facets; do
12337                 local stats="*.$(convert_facet2label $facet).job_stats"
12338                 if [ $(do_facet $facet lctl get_param $stats |
12339                        grep -c $JOBVAL) -ne 1 ]; then
12340                         do_facet $facet lctl get_param $stats
12341                         error "No jobstats for $JOBVAL found on $facet::$stats"
12342                 fi
12343         done
12344 }
12345
12346 jobstats_set() {
12347         trap 0
12348         NEW_JOBENV=${1:-$OLD_JOBENV}
12349         do_facet mgs $LCTL conf_param $FSNAME.sys.jobid_var=$NEW_JOBENV
12350         wait_update $HOSTNAME "$LCTL get_param -n jobid_var" $NEW_JOBENV
12351 }
12352
12353 cleanup_205() {
12354         trap 0
12355         do_facet $SINGLEMDS \
12356                 $LCTL set_param mdt.*.job_cleanup_interval=$OLD_INTERVAL
12357         [ $OLD_JOBENV != $JOBENV ] && jobstats_set $OLD_JOBENV
12358         cleanup_changelog
12359 }
12360
12361 test_205() { # Job stats
12362         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.7.1) ]] ||
12363                 { skip "Need MDS version with at least 2.7.1"; return 0; }
12364
12365         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12366         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
12367         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12368         remote_ost_nodsh && skip "remote OST with nodsh" && return
12369
12370         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep jobstats)" ] &&
12371                 skip "Server doesn't support jobstats" && return 0
12372         [[ $JOBID_VAR = disable ]] && skip "jobstats is disabled" && return
12373
12374         OLD_JOBENV=$($LCTL get_param -n jobid_var)
12375         if [ $OLD_JOBENV != $JOBENV ]; then
12376                 jobstats_set $JOBENV
12377                 trap cleanup_205 EXIT
12378         fi
12379
12380         CL_USER=$(do_facet $SINGLEMDS lctl --device $MDT0 changelog_register -n)
12381         echo "Registered as changelog user $CL_USER"
12382
12383         OLD_INTERVAL=$(do_facet $SINGLEMDS \
12384                        lctl get_param -n mdt.*.job_cleanup_interval)
12385         local interval_new=5
12386         do_facet $SINGLEMDS \
12387                 $LCTL set_param mdt.*.job_cleanup_interval=$interval_new
12388         local start=$SECONDS
12389
12390         local cmd
12391         # mkdir
12392         cmd="mkdir $DIR/$tdir"
12393         verify_jobstats "$cmd" "$SINGLEMDS"
12394         # rmdir
12395         cmd="rmdir $DIR/$tdir"
12396         verify_jobstats "$cmd" "$SINGLEMDS"
12397         # mkdir on secondary MDT
12398         if [ $MDSCOUNT -gt 1 ]; then
12399                 cmd="lfs mkdir -i 1 $DIR/$tdir.remote"
12400                 verify_jobstats "$cmd" "mds2"
12401         fi
12402         # mknod
12403         cmd="mknod $DIR/$tfile c 1 3"
12404         verify_jobstats "$cmd" "$SINGLEMDS"
12405         # unlink
12406         cmd="rm -f $DIR/$tfile"
12407         verify_jobstats "$cmd" "$SINGLEMDS"
12408         # create all files on OST0000 so verify_jobstats can find OST stats
12409         # open & close
12410         cmd="$SETSTRIPE -i 0 -c 1 $DIR/$tfile"
12411         verify_jobstats "$cmd" "$SINGLEMDS"
12412         # setattr
12413         cmd="touch $DIR/$tfile"
12414         verify_jobstats "$cmd" "$SINGLEMDS ost1"
12415         # write
12416         cmd="dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 oflag=sync"
12417         verify_jobstats "$cmd" "ost1"
12418         # read
12419         cancel_lru_locks osc
12420         cmd="dd if=$DIR/$tfile of=/dev/null bs=1M count=1 iflag=direct"
12421         verify_jobstats "$cmd" "ost1"
12422         # truncate
12423         cmd="$TRUNCATE $DIR/$tfile 0"
12424         verify_jobstats "$cmd" "$SINGLEMDS ost1"
12425         # rename
12426         cmd="mv -f $DIR/$tfile $DIR/$tdir.rename"
12427         verify_jobstats "$cmd" "$SINGLEMDS"
12428         # jobstats expiry - sleep until old stats should be expired
12429         local left=$((interval_new + 5 - (SECONDS - start)))
12430         [ $left -ge 0 ] && wait_update_facet $SINGLEMDS \
12431                 "lctl get_param *.*.job_stats | grep -c 'job_id.*mkdir'" \
12432                         "0" $left
12433         cmd="mkdir $DIR/$tdir.expire"
12434         verify_jobstats "$cmd" "$SINGLEMDS"
12435         [ $(do_facet $SINGLEMDS lctl get_param *.*.job_stats |
12436             grep -c "job_id.*mkdir") -gt 1 ] && error "old jobstats not expired"
12437
12438         # Ensure that jobid are present in changelog (if supported by MDS)
12439         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.52) ]
12440         then
12441                 $LFS changelog $MDT0 | tail -9
12442                 jobids=$($LFS changelog $MDT0 | tail -9 | grep -c "j=")
12443                 [ $jobids -eq 9 ] ||
12444                         error "Wrong changelog jobid count $jobids != 9"
12445
12446                 # LU-5862
12447                 JOBENV="disable"
12448                 jobstats_set $JOBENV
12449                 touch $DIR/$tfile
12450                 $LFS changelog $MDT0 | tail -1
12451                 jobids=$($LFS changelog $MDT0 | tail -1 | grep -c "j=")
12452                 [ $jobids -eq 0 ] ||
12453                         error "Unexpected jobids when jobid_var=$JOBENV"
12454         fi
12455
12456         cleanup_205
12457 }
12458 run_test 205 "Verify job stats"
12459
12460 # LU-1480, LU-1773 and LU-1657
12461 test_206() {
12462         mkdir -p $DIR/$tdir
12463         $SETSTRIPE -c -1 $DIR/$tdir
12464 #define OBD_FAIL_LOV_INIT 0x1403
12465         $LCTL set_param fail_loc=0xa0001403
12466         $LCTL set_param fail_val=1
12467         touch $DIR/$tdir/$tfile || true
12468 }
12469 run_test 206 "fail lov_init_raid0() doesn't lbug"
12470
12471 test_207a() {
12472         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
12473         local fsz=`stat -c %s $DIR/$tfile`
12474         cancel_lru_locks mdc
12475
12476         # do not return layout in getattr intent
12477 #define OBD_FAIL_MDS_NO_LL_GETATTR 0x170
12478         $LCTL set_param fail_loc=0x170
12479         local sz=`stat -c %s $DIR/$tfile`
12480
12481         [ $fsz -eq $sz ] || error "file size expected $fsz, actual $sz"
12482
12483         rm -rf $DIR/$tfile
12484 }
12485 run_test 207a "can refresh layout at glimpse"
12486
12487 test_207b() {
12488         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
12489         local cksum=`md5sum $DIR/$tfile`
12490         local fsz=`stat -c %s $DIR/$tfile`
12491         cancel_lru_locks mdc
12492         cancel_lru_locks osc
12493
12494         # do not return layout in getattr intent
12495 #define OBD_FAIL_MDS_NO_LL_OPEN 0x171
12496         $LCTL set_param fail_loc=0x171
12497
12498         # it will refresh layout after the file is opened but before read issues
12499         echo checksum is "$cksum"
12500         echo "$cksum" |md5sum -c --quiet || error "file differs"
12501
12502         rm -rf $DIR/$tfile
12503 }
12504 run_test 207b "can refresh layout at open"
12505
12506 test_208() {
12507         # FIXME: in this test suite, only RD lease is used. This is okay
12508         # for now as only exclusive open is supported. After generic lease
12509         # is done, this test suite should be revised. - Jinshan
12510
12511         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12512         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.4.52) ]] ||
12513                 { skip "Need MDS version at least 2.4.52"; return 0; }
12514
12515         echo "==== test 1: verify get lease work"
12516         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:eRE+eU || error "get lease error"
12517
12518         echo "==== test 2: verify lease can be broken by upcoming open"
12519         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E-eUc &
12520         local PID=$!
12521         sleep 1
12522
12523         $MULTIOP $DIR/$tfile oO_RDONLY:c
12524         kill -USR1 $PID && wait $PID || error "break lease error"
12525
12526         echo "==== test 3: verify lease can't be granted if an open already exists"
12527         $MULTIOP $DIR/$tfile oO_RDONLY:_c &
12528         local PID=$!
12529         sleep 1
12530
12531         $MULTIOP $DIR/$tfile oO_RDONLY:eReUc && error "apply lease should fail"
12532         kill -USR1 $PID && wait $PID || error "open file error"
12533
12534         echo "==== test 4: lease can sustain over recovery"
12535         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E+eUc &
12536         PID=$!
12537         sleep 1
12538
12539         fail mds1
12540
12541         kill -USR1 $PID && wait $PID || error "lease broken over recovery"
12542
12543         echo "==== test 5: lease broken can't be regained by replay"
12544         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E-eUc &
12545         PID=$!
12546         sleep 1
12547
12548         # open file to break lease and then recovery
12549         $MULTIOP $DIR/$tfile oO_RDWR:c || error "open file error"
12550         fail mds1
12551
12552         kill -USR1 $PID && wait $PID || error "lease not broken over recovery"
12553
12554         rm -f $DIR/$tfile
12555 }
12556 run_test 208 "Exclusive open"
12557
12558 test_209() {
12559         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep disp_stripe)" ] &&
12560                 skip_env "must have disp_stripe" && return
12561
12562         touch $DIR/$tfile
12563         sync; sleep 5; sync;
12564
12565         echo 3 > /proc/sys/vm/drop_caches
12566         req_before=$(awk '/ptlrpc_cache / { print $2 }' /proc/slabinfo)
12567
12568         # open/close 500 times
12569         for i in $(seq 500); do
12570                 cat $DIR/$tfile
12571         done
12572
12573         echo 3 > /proc/sys/vm/drop_caches
12574         req_after=$(awk '/ptlrpc_cache / { print $2 }' /proc/slabinfo)
12575
12576         echo "before: $req_before, after: $req_after"
12577         [ $((req_after - req_before)) -ge 300 ] &&
12578                 error "open/close requests are not freed"
12579         return 0
12580 }
12581 run_test 209 "read-only open/close requests should be freed promptly"
12582
12583 test_212() {
12584         size=`date +%s`
12585         size=$((size % 8192 + 1))
12586         dd if=/dev/urandom of=$DIR/f212 bs=1k count=$size
12587         sendfile $DIR/f212 $DIR/f212.xyz || error "sendfile wrong"
12588         rm -f $DIR/f212 $DIR/f212.xyz
12589 }
12590 run_test 212 "Sendfile test ============================================"
12591
12592 test_213() {
12593         dd if=/dev/zero of=$DIR/$tfile bs=4k count=4
12594         cancel_lru_locks osc
12595         lctl set_param fail_loc=0x8000040f
12596         # generate a read lock
12597         cat $DIR/$tfile > /dev/null
12598         # write to the file, it will try to cancel the above read lock.
12599         cat /etc/hosts >> $DIR/$tfile
12600 }
12601 run_test 213 "OSC lock completion and cancel race don't crash - bug 18829"
12602
12603 test_214() { # for bug 20133
12604         mkdir -p $DIR/$tdir/d214c || error "mkdir $DIR/$tdir/d214c failed"
12605         for (( i=0; i < 340; i++ )) ; do
12606                 touch $DIR/$tdir/d214c/a$i
12607         done
12608
12609         ls -l $DIR/$tdir || error "ls -l $DIR/d214p failed"
12610         mv $DIR/$tdir/d214c $DIR/ || error "mv $DIR/d214p/d214c $DIR/ failed"
12611         ls $DIR/d214c || error "ls $DIR/d214c failed"
12612         rm -rf $DIR/$tdir || error "rm -rf $DIR/d214* failed"
12613         rm -rf $DIR/d214* || error "rm -rf $DIR/d214* failed"
12614 }
12615 run_test 214 "hash-indexed directory test - bug 20133"
12616
12617 # having "abc" as 1st arg, creates $TMP/lnet_abc.out and $TMP/lnet_abc.sys
12618 create_lnet_proc_files() {
12619         lctl get_param -n $1 >$TMP/lnet_$1.out || error "cannot read lnet.$1"
12620         sysctl lnet.$1 >$TMP/lnet_$1.sys_tmp || error "cannot read lnet.$1"
12621
12622         sed "s/^lnet.$1\ =\ //g" "$TMP/lnet_$1.sys_tmp" >$TMP/lnet_$1.sys
12623         rm -f "$TMP/lnet_$1.sys_tmp"
12624 }
12625
12626 # counterpart of create_lnet_proc_files
12627 remove_lnet_proc_files() {
12628         rm -f $TMP/lnet_$1.out $TMP/lnet_$1.sys
12629 }
12630
12631 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
12632 # 3rd arg as regexp for body
12633 check_lnet_proc_stats() {
12634         local l=$(cat "$TMP/lnet_$1" |wc -l)
12635         [ $l = 1 ] || (cat "$TMP/lnet_$1" && error "$2 is not of 1 line: $l")
12636
12637         grep -E "$3" "$TMP/lnet_$1" || (cat "$TMP/lnet_$1" && error "$2 misformatted")
12638 }
12639
12640 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
12641 # 3rd arg as regexp for body, 4th arg as regexp for 1st line, 5th arg is
12642 # optional and can be regexp for 2nd line (lnet.routes case)
12643 check_lnet_proc_entry() {
12644         local blp=2          # blp stands for 'position of 1st line of body'
12645         [ -z "$5" ] || blp=3 # lnet.routes case
12646
12647         local l=$(cat "$TMP/lnet_$1" |wc -l)
12648         # subtracting one from $blp because the body can be empty
12649         [ "$l" -ge "$(($blp - 1))" ] || (cat "$TMP/lnet_$1" && error "$2 is too short: $l")
12650
12651         sed -n '1 p' "$TMP/lnet_$1" |grep -E "$4" >/dev/null ||
12652                 (cat "$TMP/lnet_$1" && error "1st line of $2 misformatted")
12653
12654         [ "$5" = "" ] || sed -n '2 p' "$TMP/lnet_$1" |grep -E "$5" >/dev/null ||
12655                 (cat "$TMP/lnet_$1" && error "2nd line of $2 misformatted")
12656
12657         # bail out if any unexpected line happened
12658         sed -n "$blp p" "$TMP/lnet_$1" | grep -Ev "$3"
12659         [ "$?" != 0 ] || error "$2 misformatted"
12660 }
12661
12662 test_215() { # for bugs 18102, 21079, 21517
12663         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12664         local N='(0|[1-9][0-9]*)'       # non-negative numeric
12665         local P='[1-9][0-9]*'           # positive numeric
12666         local I='(0|-?[1-9][0-9]*|NA)'  # any numeric (0 | >0 | <0) or NA if no value
12667         local NET='[a-z][a-z0-9]*'      # LNET net like o2ib2
12668         local ADDR='[0-9.]+'            # LNET addr like 10.0.0.1
12669         local NID="$ADDR@$NET"          # LNET nid like 10.0.0.1@o2ib2
12670
12671         local L1 # regexp for 1st line
12672         local L2 # regexp for 2nd line (optional)
12673         local BR # regexp for the rest (body)
12674
12675         # lnet.stats should look as 11 space-separated non-negative numerics
12676         BR="^$N $N $N $N $N $N $N $N $N $N $N$"
12677         create_lnet_proc_files "stats"
12678         check_lnet_proc_stats "stats.sys" "lnet.stats" "$BR"
12679         remove_lnet_proc_files "stats"
12680
12681         # lnet.routes should look like this:
12682         # Routing disabled/enabled
12683         # net hops priority state router
12684         # where net is a string like tcp0, hops > 0, priority >= 0,
12685         # state is up/down,
12686         # router is a string like 192.168.1.1@tcp2
12687         L1="^Routing (disabled|enabled)$"
12688         L2="^net +hops +priority +state +router$"
12689         BR="^$NET +$N +(0|1) +(up|down) +$NID$"
12690         create_lnet_proc_files "routes"
12691         check_lnet_proc_entry "routes.sys" "lnet.routes" "$BR" "$L1" "$L2"
12692         remove_lnet_proc_files "routes"
12693
12694         # lnet.routers should look like this:
12695         # ref rtr_ref alive_cnt state last_ping ping_sent deadline down_ni router
12696         # where ref > 0, rtr_ref > 0, alive_cnt >= 0, state is up/down,
12697         # last_ping >= 0, ping_sent is boolean (0/1), deadline and down_ni are
12698         # numeric (0 or >0 or <0), router is a string like 192.168.1.1@tcp2
12699         L1="^ref +rtr_ref +alive_cnt +state +last_ping +ping_sent +deadline +down_ni +router$"
12700         BR="^$P +$P +$N +(up|down) +$N +(0|1) +$I +$I +$NID$"
12701         create_lnet_proc_files "routers"
12702         check_lnet_proc_entry "routers.sys" "lnet.routers" "$BR" "$L1"
12703         remove_lnet_proc_files "routers"
12704
12705         # lnet.peers should look like this:
12706         # nid refs state last max rtr min tx min queue
12707         # where nid is a string like 192.168.1.1@tcp2, refs > 0,
12708         # state is up/down/NA, max >= 0. last, rtr, min, tx, min are
12709         # numeric (0 or >0 or <0), queue >= 0.
12710         L1="^nid +refs +state +last +max +rtr +min +tx +min +queue$"
12711         BR="^$NID +$P +(up|down|NA) +$I +$N +$I +$I +$I +$I +$N$"
12712         create_lnet_proc_files "peers"
12713         check_lnet_proc_entry "peers.sys" "lnet.peers" "$BR" "$L1"
12714         remove_lnet_proc_files "peers"
12715
12716         # lnet.buffers  should look like this:
12717         # pages count credits min
12718         # where pages >=0, count >=0, credits and min are numeric (0 or >0 or <0)
12719         L1="^pages +count +credits +min$"
12720         BR="^ +$N +$N +$I +$I$"
12721         create_lnet_proc_files "buffers"
12722         check_lnet_proc_entry "buffers.sys" "lnet.buffers" "$BR" "$L1"
12723         remove_lnet_proc_files "buffers"
12724
12725         # lnet.nis should look like this:
12726         # nid status alive refs peer rtr max tx min
12727         # where nid is a string like 192.168.1.1@tcp2, status is up/down,
12728         # alive is numeric (0 or >0 or <0), refs >= 0, peer >= 0,
12729         # rtr >= 0, max >=0, tx and min are numeric (0 or >0 or <0).
12730         L1="^nid +status +alive +refs +peer +rtr +max +tx +min$"
12731         BR="^$NID +(up|down) +$I +$N +$N +$N +$N +$I +$I$"
12732         create_lnet_proc_files "nis"
12733         check_lnet_proc_entry "nis.sys" "lnet.nis" "$BR" "$L1"
12734         remove_lnet_proc_files "nis"
12735
12736         # can we successfully write to lnet.stats?
12737         lctl set_param -n stats=0 || error "cannot write to lnet.stats"
12738         sysctl -w lnet.stats=0 || error "cannot write to lnet.stats"
12739 }
12740 run_test 215 "lnet exists and has proper content - bugs 18102, 21079, 21517"
12741
12742 test_216() { # bug 20317
12743         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12744         remote_ost_nodsh && skip "remote OST with nodsh" && return
12745
12746         local node
12747         local facets=$(get_facets OST)
12748         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
12749
12750         save_lustre_params client "osc.*.contention_seconds" > $p
12751         save_lustre_params $facets \
12752                 "ldlm.namespaces.filter-*.max_nolock_bytes" >> $p
12753         save_lustre_params $facets \
12754                 "ldlm.namespaces.filter-*.contended_locks" >> $p
12755         save_lustre_params $facets \
12756                 "ldlm.namespaces.filter-*.contention_seconds" >> $p
12757         clear_stats osc.*.osc_stats
12758
12759         # agressive lockless i/o settings
12760         do_nodes $(comma_list $(osts_nodes)) \
12761                 "lctl set_param -n ldlm.namespaces.*.max_nolock_bytes=2000000 \
12762                         ldlm.namespaces.filter-*.contended_locks=0 \
12763                         ldlm.namespaces.filter-*.contention_seconds=60"
12764         lctl set_param -n osc.*.contention_seconds=60
12765
12766         $DIRECTIO write $DIR/$tfile 0 10 4096
12767         $CHECKSTAT -s 40960 $DIR/$tfile
12768
12769         # disable lockless i/o
12770         do_nodes $(comma_list $(osts_nodes)) \
12771                 "lctl set_param -n ldlm.namespaces.filter-*.max_nolock_bytes=0 \
12772                         ldlm.namespaces.filter-*.contended_locks=32 \
12773                         ldlm.namespaces.filter-*.contention_seconds=0"
12774         lctl set_param -n osc.*.contention_seconds=0
12775         clear_stats osc.*.osc_stats
12776
12777         dd if=/dev/zero of=$DIR/$tfile count=0
12778         $CHECKSTAT -s 0 $DIR/$tfile
12779
12780         restore_lustre_params <$p
12781         rm -f $p
12782         rm $DIR/$tfile
12783 }
12784 run_test 216 "check lockless direct write updates file size and kms correctly"
12785
12786 test_217() { # bug 22430
12787         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12788         local node
12789         local nid
12790
12791         for node in $(nodes_list); do
12792                 nid=$(host_nids_address $node $NETTYPE)
12793                 if [[ $nid = *-* ]] ; then
12794                         echo "lctl ping $nid@$NETTYPE"
12795                         lctl ping $nid@$NETTYPE
12796                 else
12797                         echo "skipping $node (no hyphen detected)"
12798                 fi
12799         done
12800 }
12801 run_test 217 "check lctl ping for hostnames with hiphen ('-')"
12802
12803 test_218() {
12804        # do directio so as not to populate the page cache
12805        log "creating a 10 Mb file"
12806        $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
12807        log "starting reads"
12808        dd if=$DIR/$tfile of=/dev/null bs=4096 &
12809        log "truncating the file"
12810        $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
12811        log "killing dd"
12812        kill %+ || true # reads might have finished
12813        echo "wait until dd is finished"
12814        wait
12815        log "removing the temporary file"
12816        rm -rf $DIR/$tfile || error "tmp file removal failed"
12817 }
12818 run_test 218 "parallel read and truncate should not deadlock ======================="
12819
12820 test_219() {
12821         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12822         # write one partial page
12823         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1
12824         # set no grant so vvp_io_commit_write will do sync write
12825         $LCTL set_param fail_loc=0x411
12826         # write a full page at the end of file
12827         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=1 conv=notrunc
12828
12829         $LCTL set_param fail_loc=0
12830         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=3
12831         $LCTL set_param fail_loc=0x411
12832         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1 seek=2 conv=notrunc
12833
12834         # LU-4201
12835         dd if=/dev/zero of=$DIR/$tfile-2 bs=1024 count=1
12836         $CHECKSTAT -s 1024 $DIR/$tfile-2 || error "checkstat wrong size"
12837 }
12838 run_test 219 "LU-394: Write partial won't cause uncontiguous pages vec at LND"
12839
12840 test_220() { #LU-325
12841         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12842         remote_ost_nodsh && skip "remote OST with nodsh" && return
12843         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12844         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
12845         local OSTIDX=0
12846
12847         # create on MDT0000 so the last_id and next_id are correct
12848         mkdir $DIR/$tdir
12849         local OST=$($LFS df $DIR | awk '/OST:'$OSTIDX'/ { print $1 }')
12850         OST=${OST%_UUID}
12851
12852         # on the mdt's osc
12853         local mdtosc_proc1=$(get_mdtosc_proc_path $SINGLEMDS $OST)
12854         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
12855                         osc.$mdtosc_proc1.prealloc_last_id)
12856         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
12857                         osc.$mdtosc_proc1.prealloc_next_id)
12858
12859         $LFS df -i
12860
12861         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=-1
12862         #define OBD_FAIL_OST_ENOINO              0x229
12863         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0x229
12864         create_pool $FSNAME.$TESTNAME || return 1
12865         do_facet mgs $LCTL pool_add $FSNAME.$TESTNAME $OST || return 2
12866
12867         $SETSTRIPE $DIR/$tdir -i $OSTIDX -c 1 -p $FSNAME.$TESTNAME
12868
12869         MDSOBJS=$((last_id - next_id))
12870         echo "preallocated objects on MDS is $MDSOBJS" "($last_id - $next_id)"
12871
12872         blocks=$($LFS df $MOUNT | awk '($1 == '$OSTIDX') { print $4 }')
12873         echo "OST still has $count kbytes free"
12874
12875         echo "create $MDSOBJS files @next_id..."
12876         createmany -o $DIR/$tdir/f $MDSOBJS || return 3
12877
12878         local last_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
12879                         osc.$mdtosc_proc1.prealloc_last_id)
12880         local next_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
12881                         osc.$mdtosc_proc1.prealloc_next_id)
12882
12883         echo "after creation, last_id=$last_id2, next_id=$next_id2"
12884         $LFS df -i
12885
12886         echo "cleanup..."
12887
12888         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=0
12889         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0
12890
12891         do_facet mgs $LCTL pool_remove $FSNAME.$TESTNAME $OST || return 4
12892         do_facet mgs $LCTL pool_destroy $FSNAME.$TESTNAME || return 5
12893         echo "unlink $MDSOBJS files @$next_id..."
12894         unlinkmany $DIR/$tdir/f $MDSOBJS || return 6
12895 }
12896 run_test 220 "preallocated MDS objects still used if ENOSPC from OST"
12897
12898 test_221() {
12899         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12900         dd if=`which date` of=$MOUNT/date oflag=sync
12901         chmod +x $MOUNT/date
12902
12903         #define OBD_FAIL_LLITE_FAULT_TRUNC_RACE  0x1401
12904         $LCTL set_param fail_loc=0x80001401
12905
12906         $MOUNT/date > /dev/null
12907         rm -f $MOUNT/date
12908 }
12909 run_test 221 "make sure fault and truncate race to not cause OOM"
12910
12911 test_222a () {
12912         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12913        rm -rf $DIR/$tdir
12914        test_mkdir -p $DIR/$tdir
12915        $SETSTRIPE -c 1 -i 0 $DIR/$tdir
12916        createmany -o $DIR/$tdir/$tfile 10
12917        cancel_lru_locks mdc
12918        cancel_lru_locks osc
12919        #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
12920        $LCTL set_param fail_loc=0x31a
12921        ls -l $DIR/$tdir > /dev/null || error "AGL for ls failed"
12922        $LCTL set_param fail_loc=0
12923        rm -r $DIR/$tdir
12924 }
12925 run_test 222a "AGL for ls should not trigger CLIO lock failure ================"
12926
12927 test_222b () {
12928         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12929         rm -rf $DIR/$tdir
12930         test_mkdir -p $DIR/$tdir
12931         $SETSTRIPE -c 1 -i 0 $DIR/$tdir
12932         createmany -o $DIR/$tdir/$tfile 10
12933         cancel_lru_locks mdc
12934         cancel_lru_locks osc
12935         #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
12936         $LCTL set_param fail_loc=0x31a
12937         rm -r $DIR/$tdir || error "AGL for rmdir failed"
12938         $LCTL set_param fail_loc=0
12939 }
12940 run_test 222b "AGL for rmdir should not trigger CLIO lock failure ============="
12941
12942 test_223 () {
12943         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12944        rm -rf $DIR/$tdir
12945        test_mkdir -p $DIR/$tdir
12946        $SETSTRIPE -c 1 -i 0 $DIR/$tdir
12947        createmany -o $DIR/$tdir/$tfile 10
12948        cancel_lru_locks mdc
12949        cancel_lru_locks osc
12950        #define OBD_FAIL_LDLM_AGL_NOLOCK          0x31b
12951        $LCTL set_param fail_loc=0x31b
12952        ls -l $DIR/$tdir > /dev/null || error "reenqueue failed"
12953        $LCTL set_param fail_loc=0
12954        rm -r $DIR/$tdir
12955 }
12956 run_test 223 "osc reenqueue if without AGL lock granted ======================="
12957
12958 test_224a() { # LU-1039, MRP-303
12959         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12960         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB   0x508
12961         $LCTL set_param fail_loc=0x508
12962         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 conv=fsync
12963         $LCTL set_param fail_loc=0
12964         df $DIR
12965 }
12966 run_test 224a "Don't panic on bulk IO failure"
12967
12968 test_224b() { # LU-1039, MRP-303
12969         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12970         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
12971         cancel_lru_locks osc
12972         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB2   0x515
12973         $LCTL set_param fail_loc=0x515
12974         dd of=/dev/null if=$DIR/$tfile bs=4096 count=1
12975         $LCTL set_param fail_loc=0
12976         df $DIR
12977 }
12978 run_test 224b "Don't panic on bulk IO failure"
12979
12980 test_224c() { # LU-6441
12981         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12982         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12983
12984         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
12985         save_writethrough $p
12986         set_cache writethrough on
12987
12988         local pages_per_rpc=$($LCTL get_param \
12989                                 osc.*.max_pages_per_rpc)
12990         local at_max=$($LCTL get_param -n at_max)
12991         local timeout=$($LCTL get_param -n timeout)
12992         local test_at="$LCTL get_param -n at_max"
12993         local param_at="$FSNAME.sys.at_max"
12994         local test_timeout="$LCTL get_param -n timeout"
12995         local param_timeout="$FSNAME.sys.timeout"
12996
12997         $LCTL set_param -n osc.*.max_pages_per_rpc=1024
12998
12999         set_conf_param_and_check client "$test_at" "$param_at" 0 ||
13000                 error "conf_param at_max=0 failed"
13001         set_conf_param_and_check client "$test_timeout" "$param_timeout" 5 ||
13002                 error "conf_param timeout=5 failed"
13003
13004         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB3   0x520
13005         do_facet ost1 $LCTL set_param fail_loc=0x520
13006         $LFS setstripe -c 1 -i 0 $DIR/$tfile
13007         dd if=/dev/zero of=$DIR/$tfile bs=8MB count=1
13008         sync
13009         do_facet ost1 $LCTL set_param fail_loc=0
13010
13011         set_conf_param_and_check client "$test_at" "$param_at" $at_max ||
13012                 error "conf_param at_max=$at_max failed"
13013         set_conf_param_and_check client "$test_timeout" "$param_timeout" \
13014                 $timeout || error "conf_param timeout=$timeout failed"
13015
13016         $LCTL set_param -n $pages_per_rpc
13017         restore_lustre_params < $p
13018         rm -f $p
13019 }
13020 run_test 224c "Don't hang if one of md lost during large bulk RPC"
13021
13022 MDSSURVEY=${MDSSURVEY:-$(which mds-survey 2>/dev/null || true)}
13023 test_225a () {
13024         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13025         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13026         if [ -z ${MDSSURVEY} ]; then
13027               skip_env "mds-survey not found" && return
13028         fi
13029
13030         [ $MDSCOUNT -ge 2 ] &&
13031                 skip "skipping now for more than one MDT" && return
13032
13033        [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ] ||
13034             { skip "Need MDS version at least 2.2.51"; return; }
13035
13036        local mds=$(facet_host $SINGLEMDS)
13037        local target=$(do_nodes $mds 'lctl dl' | \
13038                       awk "{if (\$2 == \"UP\" && \$3 == \"mdt\") {print \$4}}")
13039
13040        local cmd1="file_count=1000 thrhi=4"
13041        local cmd2="dir_count=2 layer=mdd stripe_count=0"
13042        local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
13043        local cmd="$cmd1 $cmd2 $cmd3"
13044
13045        rm -f ${TMP}/mds_survey*
13046        echo + $cmd
13047        eval $cmd || error "mds-survey with zero-stripe failed"
13048        cat ${TMP}/mds_survey*
13049        rm -f ${TMP}/mds_survey*
13050 }
13051 run_test 225a "Metadata survey sanity with zero-stripe"
13052
13053 test_225b () {
13054         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13055         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13056         if [ -z ${MDSSURVEY} ]; then
13057               skip_env "mds-survey not found" && return
13058         fi
13059         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ] ||
13060             { skip "Need MDS version at least 2.2.51"; return; }
13061
13062         if [ $($LCTL dl | grep -c osc) -eq 0 ]; then
13063               skip_env "Need to mount OST to test" && return
13064         fi
13065
13066         [ $MDSCOUNT -ge 2 ] &&
13067                 skip "skipping now for more than one MDT" && return
13068        local mds=$(facet_host $SINGLEMDS)
13069        local target=$(do_nodes $mds 'lctl dl' | \
13070                       awk "{if (\$2 == \"UP\" && \$3 == \"mdt\") {print \$4}}")
13071
13072        local cmd1="file_count=1000 thrhi=4"
13073        local cmd2="dir_count=2 layer=mdd stripe_count=1"
13074        local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
13075        local cmd="$cmd1 $cmd2 $cmd3"
13076
13077        rm -f ${TMP}/mds_survey*
13078        echo + $cmd
13079        eval $cmd || error "mds-survey with stripe_count failed"
13080        cat ${TMP}/mds_survey*
13081        rm -f ${TMP}/mds_survey*
13082 }
13083 run_test 225b "Metadata survey sanity with stripe_count = 1"
13084
13085 mcreate_path2fid () {
13086         local mode=$1
13087         local major=$2
13088         local minor=$3
13089         local name=$4
13090         local desc=$5
13091         local path=$DIR/$tdir/$name
13092         local fid
13093         local rc
13094         local fid_path
13095
13096         $MCREATE --mode=$1 --major=$2 --minor=$3 $path ||
13097                 error "cannot create $desc"
13098
13099         fid=$($LFS path2fid $path | tr -d '[' | tr -d ']')
13100         rc=$?
13101         [ $rc -ne 0 ] && error "cannot get fid of a $desc"
13102
13103         fid_path=$($LFS fid2path $MOUNT $fid)
13104         rc=$?
13105         [ $rc -ne 0 ] && error "cannot get path of $desc by $DIR $path $fid"
13106
13107         [ "$path" == "$fid_path" ] ||
13108                 error "fid2path returned $fid_path, expected $path"
13109
13110         echo "pass with $path and $fid"
13111 }
13112
13113 test_226a () {
13114         rm -rf $DIR/$tdir
13115         mkdir -p $DIR/$tdir
13116
13117         mcreate_path2fid 0010666 0 0 fifo "FIFO"
13118         mcreate_path2fid 0020666 1 3 null "character special file (null)"
13119         mcreate_path2fid 0020666 1 255 none "character special file (no device)"
13120         mcreate_path2fid 0040666 0 0 dir "directory"
13121         mcreate_path2fid 0060666 7 0 loop0 "block special file (loop)"
13122         mcreate_path2fid 0100666 0 0 file "regular file"
13123         mcreate_path2fid 0120666 0 0 link "symbolic link"
13124         mcreate_path2fid 0140666 0 0 sock "socket"
13125 }
13126 run_test 226a "call path2fid and fid2path on files of all type"
13127
13128 test_226b () {
13129         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13130         rm -rf $DIR/$tdir
13131         local MDTIDX=1
13132
13133         mkdir -p $DIR/$tdir
13134         $LFS setdirstripe -i $MDTIDX $DIR/$tdir/remote_dir ||
13135                 error "create remote directory failed"
13136         mcreate_path2fid 0010666 0 0 "remote_dir/fifo" "FIFO"
13137         mcreate_path2fid 0020666 1 3 "remote_dir/null" \
13138                                 "character special file (null)"
13139         mcreate_path2fid 0020666 1 255 "remote_dir/none" \
13140                                 "character special file (no device)"
13141         mcreate_path2fid 0040666 0 0 "remote_dir/dir" "directory"
13142         mcreate_path2fid 0060666 7 0 "remote_dir/loop0" \
13143                                 "block special file (loop)"
13144         mcreate_path2fid 0100666 0 0 "remote_dir/file" "regular file"
13145         mcreate_path2fid 0120666 0 0 "remote_dir/link" "symbolic link"
13146         mcreate_path2fid 0140666 0 0 "remote_dir/sock" "socket"
13147 }
13148 run_test 226b "call path2fid and fid2path on files of all type under remote dir"
13149
13150 # LU-1299 Executing or running ldd on a truncated executable does not
13151 # cause an out-of-memory condition.
13152 test_227() {
13153         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13154         [ -z "$(which ldd)" ] && skip "should have ldd tool" && return
13155         dd if=$(which date) of=$MOUNT/date bs=1k count=1
13156         chmod +x $MOUNT/date
13157
13158         $MOUNT/date > /dev/null
13159         ldd $MOUNT/date > /dev/null
13160         rm -f $MOUNT/date
13161 }
13162 run_test 227 "running truncated executable does not cause OOM"
13163
13164 # LU-1512 try to reuse idle OI blocks
13165 test_228a() {
13166         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13167         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13168         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
13169                 skip "non-ldiskfs backend" && return
13170
13171         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
13172         local myDIR=$DIR/$tdir
13173
13174         mkdir -p $myDIR
13175         #define OBD_FAIL_SEQ_EXHAUST             0x1002
13176         $LCTL set_param fail_loc=0x80001002
13177         createmany -o $myDIR/t- 10000
13178         $LCTL set_param fail_loc=0
13179         # The guard is current the largest FID holder
13180         touch $myDIR/guard
13181         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
13182                     tr -d '[')
13183         local IDX=$(($SEQ % 64))
13184
13185         do_facet $SINGLEMDS sync
13186         # Make sure journal flushed.
13187         sleep 6
13188         local blk1=$(do_facet $SINGLEMDS \
13189                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
13190                      grep Blockcount | awk '{print $4}')
13191
13192         # Remove old files, some OI blocks will become idle.
13193         unlinkmany $myDIR/t- 10000
13194         # Create new files, idle OI blocks should be reused.
13195         createmany -o $myDIR/t- 2000
13196         do_facet $SINGLEMDS sync
13197         # Make sure journal flushed.
13198         sleep 6
13199         local blk2=$(do_facet $SINGLEMDS \
13200                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
13201                      grep Blockcount | awk '{print $4}')
13202
13203         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
13204 }
13205 run_test 228a "try to reuse idle OI blocks"
13206
13207 test_228b() {
13208         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13209         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13210         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
13211                 skip "non-ldiskfs backend" && return
13212
13213         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
13214         local myDIR=$DIR/$tdir
13215
13216         mkdir -p $myDIR
13217         #define OBD_FAIL_SEQ_EXHAUST             0x1002
13218         $LCTL set_param fail_loc=0x80001002
13219         createmany -o $myDIR/t- 10000
13220         $LCTL set_param fail_loc=0
13221         # The guard is current the largest FID holder
13222         touch $myDIR/guard
13223         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
13224                     tr -d '[')
13225         local IDX=$(($SEQ % 64))
13226
13227         do_facet $SINGLEMDS sync
13228         # Make sure journal flushed.
13229         sleep 6
13230         local blk1=$(do_facet $SINGLEMDS \
13231                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
13232                      grep Blockcount | awk '{print $4}')
13233
13234         # Remove old files, some OI blocks will become idle.
13235         unlinkmany $myDIR/t- 10000
13236
13237         # stop the MDT
13238         stop $SINGLEMDS || error "Fail to stop MDT."
13239         # remount the MDT
13240         start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS || error "Fail to start MDT."
13241
13242         df $MOUNT || error "Fail to df."
13243         # Create new files, idle OI blocks should be reused.
13244         createmany -o $myDIR/t- 2000
13245         do_facet $SINGLEMDS sync
13246         # Make sure journal flushed.
13247         sleep 6
13248         local blk2=$(do_facet $SINGLEMDS \
13249                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
13250                      grep Blockcount | awk '{print $4}')
13251
13252         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
13253 }
13254 run_test 228b "idle OI blocks can be reused after MDT restart"
13255
13256 #LU-1881
13257 test_228c() {
13258         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13259         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13260         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
13261                 skip "non-ldiskfs backend" && return
13262
13263         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
13264         local myDIR=$DIR/$tdir
13265
13266         mkdir -p $myDIR
13267         #define OBD_FAIL_SEQ_EXHAUST             0x1002
13268         $LCTL set_param fail_loc=0x80001002
13269         # 20000 files can guarantee there are index nodes in the OI file
13270         createmany -o $myDIR/t- 20000
13271         $LCTL set_param fail_loc=0
13272         # The guard is current the largest FID holder
13273         touch $myDIR/guard
13274         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
13275                     tr -d '[')
13276         local IDX=$(($SEQ % 64))
13277
13278         do_facet $SINGLEMDS sync
13279         # Make sure journal flushed.
13280         sleep 6
13281         local blk1=$(do_facet $SINGLEMDS \
13282                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
13283                      grep Blockcount | awk '{print $4}')
13284
13285         # Remove old files, some OI blocks will become idle.
13286         unlinkmany $myDIR/t- 20000
13287         rm -f $myDIR/guard
13288         # The OI file should become empty now
13289
13290         # Create new files, idle OI blocks should be reused.
13291         createmany -o $myDIR/t- 2000
13292         do_facet $SINGLEMDS sync
13293         # Make sure journal flushed.
13294         sleep 6
13295         local blk2=$(do_facet $SINGLEMDS \
13296                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
13297                      grep Blockcount | awk '{print $4}')
13298
13299         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
13300 }
13301 run_test 228c "NOT shrink the last entry in OI index node to recycle idle leaf"
13302
13303 test_229() { # LU-2482, LU-3448
13304         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.53) ] &&
13305                 skip "No HSM $(lustre_build_version $SINGLEMDS) MDS < 2.4.53" &&
13306                 return
13307         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13308         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
13309
13310         rm -f $DIR/$tfile
13311
13312         # Create a file with a released layout and stripe count 2.
13313         $MULTIOP $DIR/$tfile H2c ||
13314                 error "failed to create file with released layout"
13315
13316         $GETSTRIPE -v $DIR/$tfile
13317
13318         local pattern=$($GETSTRIPE -L $DIR/$tfile)
13319         [ X"$pattern" = X"80000001" ] || error "pattern error ($pattern)"
13320
13321         local stripe_count=$($GETSTRIPE -c $DIR/$tfile) || error "getstripe"
13322         [ $stripe_count -eq 2 ] || error "stripe count not 2 ($stripe_count)"
13323         stat $DIR/$tfile || error "failed to stat released file"
13324
13325         chown $RUNAS_ID $DIR/$tfile ||
13326                 error "chown $RUNAS_ID $DIR/$tfile failed"
13327
13328         chgrp $RUNAS_ID $DIR/$tfile ||
13329                 error "chgrp $RUNAS_ID $DIR/$tfile failed"
13330
13331         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
13332         rm $DIR/$tfile || error "failed to remove released file"
13333 }
13334 run_test 229 "getstripe/stat/rm/attr changes work on released files"
13335
13336 test_230a() {
13337         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13338         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13339         local MDTIDX=1
13340
13341         test_mkdir $DIR/$tdir
13342         test_mkdir -i0 -c1 $DIR/$tdir/test_230_local
13343         local mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230_local)
13344         [ $mdt_idx -ne 0 ] &&
13345                 error "create local directory on wrong MDT $mdt_idx"
13346
13347         $LFS mkdir -i $MDTIDX $DIR/$tdir/test_230 ||
13348                         error "create remote directory failed"
13349         local mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230)
13350         [ $mdt_idx -ne $MDTIDX ] &&
13351                 error "create remote directory on wrong MDT $mdt_idx"
13352
13353         createmany -o $DIR/$tdir/test_230/t- 10 ||
13354                 error "create files on remote directory failed"
13355         mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230/t-0)
13356         [ $mdt_idx -ne $MDTIDX ] && error "create files on wrong MDT $mdt_idx"
13357         rm -r $DIR/$tdir || error "unlink remote directory failed"
13358 }
13359 run_test 230a "Create remote directory and files under the remote directory"
13360
13361 test_230b() {
13362         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13363         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13364         local MDTIDX=1
13365         local mdt_index
13366         local i
13367         local file
13368         local pid
13369         local stripe_count
13370         local migrate_dir=$DIR/$tdir/migrate_dir
13371         local other_dir=$DIR/$tdir/other_dir
13372
13373         test_mkdir $DIR/$tdir
13374         test_mkdir -i0 -c1 $migrate_dir
13375         test_mkdir -i0 -c1 $other_dir
13376         for ((i=0; i<10; i++)); do
13377                 mkdir -p $migrate_dir/dir_${i}
13378                 createmany -o $migrate_dir/dir_${i}/f 10 ||
13379                         error "create files under remote dir failed $i"
13380         done
13381
13382         cp /etc/passwd $migrate_dir/$tfile
13383         cp /etc/passwd $other_dir/$tfile
13384         chattr +SAD $migrate_dir
13385         chattr +SAD $migrate_dir/$tfile
13386
13387         local old_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
13388         local old_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
13389         local old_dir_mode=$(stat -c%f $migrate_dir)
13390         local old_file_mode=$(stat -c%f $migrate_dir/$tfile)
13391
13392         mkdir -p $migrate_dir/dir_default_stripe2
13393         $SETSTRIPE -c 2 $migrate_dir/dir_default_stripe2
13394         $SETSTRIPE -c 2 $migrate_dir/${tfile}_stripe2
13395
13396         mkdir -p $other_dir
13397         ln $migrate_dir/$tfile $other_dir/luna
13398         ln $migrate_dir/$tfile $migrate_dir/sofia
13399         ln $other_dir/$tfile $migrate_dir/david
13400         ln -s $migrate_dir/$tfile $other_dir/zachary
13401         ln -s $migrate_dir/$tfile $migrate_dir/${tfile}_ln
13402         ln -s $other_dir/$tfile $migrate_dir/${tfile}_ln_other
13403
13404         $LFS migrate -m $MDTIDX $migrate_dir ||
13405                 error "fails on migrating remote dir to MDT1"
13406
13407         echo "migratate to MDT1, then checking.."
13408         for ((i = 0; i < 10; i++)); do
13409                 for file in $(find $migrate_dir/dir_${i}); do
13410                         mdt_index=$($LFS getstripe -M $file)
13411                         [ $mdt_index == $MDTIDX ] ||
13412                                 error "$file is not on MDT${MDTIDX}"
13413                 done
13414         done
13415
13416         # the multiple link file should still in MDT0
13417         mdt_index=$($LFS getstripe -M $migrate_dir/$tfile)
13418         [ $mdt_index == 0 ] ||
13419                 error "$file is not on MDT${MDTIDX}"
13420
13421         local new_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
13422         [ "$old_dir_flag" = "$new_dir_flag" ] ||
13423                 error " expect $old_dir_flag get $new_dir_flag"
13424
13425         local new_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
13426         [ "$old_file_flag" = "$new_file_flag" ] ||
13427                 error " expect $old_file_flag get $new_file_flag"
13428
13429         local new_dir_mode=$(stat -c%f $migrate_dir)
13430         [ "$old_dir_mode" = "$new_dir_mode" ] ||
13431                 error "expect mode $old_dir_mode get $new_dir_mode"
13432
13433         local new_file_mode=$(stat -c%f $migrate_dir/$tfile)
13434         [ "$old_file_mode" = "$new_file_mode" ] ||
13435                 error "expect mode $old_file_mode get $new_file_mode"
13436
13437         diff /etc/passwd $migrate_dir/$tfile ||
13438                 error "$tfile different after migration"
13439
13440         diff /etc/passwd $other_dir/luna ||
13441                 error "luna different after migration"
13442
13443         diff /etc/passwd $migrate_dir/sofia ||
13444                 error "sofia different after migration"
13445
13446         diff /etc/passwd $migrate_dir/david ||
13447                 error "david different after migration"
13448
13449         diff /etc/passwd $other_dir/zachary ||
13450                 error "zachary different after migration"
13451
13452         diff /etc/passwd $migrate_dir/${tfile}_ln ||
13453                 error "${tfile}_ln different after migration"
13454
13455         diff /etc/passwd $migrate_dir/${tfile}_ln_other ||
13456                 error "${tfile}_ln_other different after migration"
13457
13458         stripe_count=$($LFS getstripe -c $migrate_dir/dir_default_stripe2)
13459         [ $stripe_count = 2 ] ||
13460                 error "dir strpe_count $d != 2 after migration."
13461
13462         stripe_count=$($LFS getstripe -c $migrate_dir/${tfile}_stripe2)
13463         [ $stripe_count = 2 ] ||
13464                 error "file strpe_count $d != 2 after migration."
13465
13466         #migrate back to MDT0
13467         MDTIDX=0
13468
13469         $LFS migrate -m $MDTIDX $migrate_dir ||
13470                 error "fails on migrating remote dir to MDT0"
13471
13472         echo "migrate back to MDT0, checking.."
13473         for file in $(find $migrate_dir); do
13474                 mdt_index=$($LFS getstripe -M $file)
13475                 [ $mdt_index == $MDTIDX ] ||
13476                         error "$file is not on MDT${MDTIDX}"
13477         done
13478
13479         local new_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
13480         [ "$old_dir_flag" = "$new_dir_flag" ] ||
13481                 error " expect $old_dir_flag get $new_dir_flag"
13482
13483         local new_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
13484         [ "$old_file_flag" = "$new_file_flag" ] ||
13485                 error " expect $old_file_flag get $new_file_flag"
13486
13487         local new_dir_mode=$(stat -c%f $migrate_dir)
13488         [ "$old_dir_mode" = "$new_dir_mode" ] ||
13489                 error "expect mode $old_dir_mode get $new_dir_mode"
13490
13491         local new_file_mode=$(stat -c%f $migrate_dir/$tfile)
13492         [ "$old_file_mode" = "$new_file_mode" ] ||
13493                 error "expect mode $old_file_mode get $new_file_mode"
13494
13495         diff /etc/passwd ${migrate_dir}/$tfile ||
13496                 error "$tfile different after migration"
13497
13498         diff /etc/passwd ${other_dir}/luna ||
13499                 error "luna different after migration"
13500
13501         diff /etc/passwd ${migrate_dir}/sofia ||
13502                 error "sofia different after migration"
13503
13504         diff /etc/passwd ${other_dir}/zachary ||
13505                 error "zachary different after migration"
13506
13507         diff /etc/passwd $migrate_dir/${tfile}_ln ||
13508                 error "${tfile}_ln different after migration"
13509
13510         diff /etc/passwd $migrate_dir/${tfile}_ln_other ||
13511                 error "${tfile}_ln_other different after migration"
13512
13513         stripe_count=$($LFS getstripe -c ${migrate_dir}/dir_default_stripe2)
13514         [ $stripe_count = 2 ] ||
13515                 error "dir strpe_count $d != 2 after migration."
13516
13517         stripe_count=$($LFS getstripe -c ${migrate_dir}/${tfile}_stripe2)
13518         [ $stripe_count = 2 ] ||
13519                 error "file strpe_count $d != 2 after migration."
13520
13521         rm -rf $DIR/$tdir || error "rm dir failed after migration"
13522 }
13523 run_test 230b "migrate directory"
13524
13525 test_230c() {
13526         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13527         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13528         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13529         local MDTIDX=1
13530         local mdt_index
13531         local file
13532         local migrate_dir=$DIR/$tdir/migrate_dir
13533
13534         #If migrating directory fails in the middle, all entries of
13535         #the directory is still accessiable.
13536         test_mkdir $DIR/$tdir
13537         test_mkdir -i0 -c1 $migrate_dir
13538         stat $migrate_dir
13539         createmany -o $migrate_dir/f 10 ||
13540                 error "create files under ${migrate_dir} failed"
13541
13542         #failed after migrating 5 entries
13543         #OBD_FAIL_MIGRATE_ENTRIES       0x1801
13544         do_facet mds1 lctl set_param fail_loc=0x20001801
13545         do_facet mds1 lctl  set_param fail_val=5
13546         local t=$(ls $migrate_dir | wc -l)
13547         $LFS migrate --mdt-index $MDTIDX $migrate_dir &&
13548                 error "migrate should fail after 5 entries"
13549
13550         mkdir $migrate_dir/dir &&
13551                 error "mkdir succeeds under migrating directory"
13552         touch $migrate_dir/file &&
13553                 error "touch file succeeds under migrating directory"
13554
13555         local u=$(ls $migrate_dir | wc -l)
13556         [ "$u" == "$t" ] || error "$u != $t during migration"
13557
13558         for file in $(find $migrate_dir); do
13559                 stat $file || error "stat $file failed"
13560         done
13561
13562         do_facet mds1 lctl set_param fail_loc=0
13563         do_facet mds1 lctl set_param fail_val=0
13564
13565         $LFS migrate -m $MDTIDX $migrate_dir ||
13566                 error "migrate open files should failed with open files"
13567
13568         echo "Finish migration, then checking.."
13569         for file in $(find $migrate_dir); do
13570                 mdt_index=$($LFS getstripe -M $file)
13571                 [ $mdt_index == $MDTIDX ] ||
13572                         error "$file is not on MDT${MDTIDX}"
13573         done
13574
13575         rm -rf $DIR/$tdir || error "rm dir failed after migration"
13576 }
13577 run_test 230c "check directory accessiblity if migration is failed"
13578
13579 test_230d() {
13580         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13581         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13582         local MDTIDX=1
13583         local mdt_index
13584         local migrate_dir=$DIR/$tdir/migrate_dir
13585         local i
13586         local j
13587
13588         test_mkdir $DIR/$tdir
13589         test_mkdir -i0 -c1 $migrate_dir
13590
13591         for ((i=0; i<100; i++)); do
13592                 test_mkdir -i0 -c1 $migrate_dir/dir_${i}
13593                 createmany -o $migrate_dir/dir_${i}/f 100 ||
13594                         error "create files under remote dir failed $i"
13595         done
13596
13597         $LFS migrate -m $MDTIDX $migrate_dir ||
13598                 error "migrate remote dir error"
13599
13600         echo "Finish migration, then checking.."
13601         for file in $(find $migrate_dir); do
13602                 mdt_index=$($LFS getstripe -M $file)
13603                 [ $mdt_index == $MDTIDX ] ||
13604                         error "$file is not on MDT${MDTIDX}"
13605         done
13606
13607         rm -rf $DIR/$tdir || error "rm dir failed after migration"
13608 }
13609 run_test 230d "check migrate big directory"
13610
13611 test_230e() {
13612         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13613         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13614         local i
13615         local j
13616         local a_fid
13617         local b_fid
13618
13619         mkdir -p $DIR/$tdir
13620         mkdir $DIR/$tdir/migrate_dir
13621         mkdir $DIR/$tdir/other_dir
13622         touch $DIR/$tdir/migrate_dir/a
13623         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/b
13624         ls $DIR/$tdir/other_dir
13625
13626         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
13627                 error "migrate dir fails"
13628
13629         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir)
13630         [ $mdt_index == 1 ] || error "migrate_dir is not on MDT1"
13631
13632         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
13633         [ $mdt_index == 0 ] || error "a is not on MDT0"
13634
13635         $LFS migrate -m 1 $DIR/$tdir/other_dir ||
13636                 error "migrate dir fails"
13637
13638         mdt_index=$($LFS getstripe -M $DIR/$tdir/other_dir)
13639         [ $mdt_index == 1 ] || error "other_dir is not on MDT1"
13640
13641         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
13642         [ $mdt_index == 1 ] || error "a is not on MDT1"
13643
13644         mdt_index=$($LFS getstripe -M $DIR/$tdir/other_dir/b)
13645         [ $mdt_index == 1 ] || error "b is not on MDT1"
13646
13647         a_fid=$($LFS path2fid $DIR/$tdir/migrate_dir/a)
13648         b_fid=$($LFS path2fid $DIR/$tdir/other_dir/b)
13649
13650         [ "$a_fid" = "$b_fid" ] || error "different fid after migration"
13651
13652         rm -rf $DIR/$tdir || error "rm dir failed after migration"
13653 }
13654 run_test 230e "migrate mulitple local link files"
13655
13656 test_230f() {
13657         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13658         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13659         local a_fid
13660         local ln_fid
13661
13662         mkdir -p $DIR/$tdir
13663         mkdir $DIR/$tdir/migrate_dir
13664         $LFS mkdir -i1 $DIR/$tdir/other_dir
13665         touch $DIR/$tdir/migrate_dir/a
13666         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/ln1
13667         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/ln2
13668         ls $DIR/$tdir/other_dir
13669
13670         # a should be migrated to MDT1, since no other links on MDT0
13671         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
13672                 error "#1 migrate dir fails"
13673         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir)
13674         [ $mdt_index == 1 ] || error "migrate_dir is not on MDT1"
13675         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
13676         [ $mdt_index == 1 ] || error "a is not on MDT1"
13677
13678         # a should stay on MDT1, because it is a mulitple link file
13679         $LFS migrate -m 0 $DIR/$tdir/migrate_dir ||
13680                 error "#2 migrate dir fails"
13681         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
13682         [ $mdt_index == 1 ] || error "a is not on MDT1"
13683
13684         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
13685                 error "#3 migrate dir fails"
13686
13687         a_fid=$($LFS path2fid $DIR/$tdir/migrate_dir/a)
13688         ln_fid=$($LFS path2fid $DIR/$tdir/other_dir/ln1)
13689         [ "$a_fid" = "$ln_fid" ] || error "different fid after migrate to MDT1"
13690
13691         rm -rf $DIR/$tdir/other_dir/ln1 || error "unlink ln1 fails"
13692         rm -rf $DIR/$tdir/other_dir/ln2 || error "unlink ln2 fails"
13693
13694         # a should be migrated to MDT0, since no other links on MDT1
13695         $LFS migrate -m 0 $DIR/$tdir/migrate_dir ||
13696                 error "#4 migrate dir fails"
13697         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
13698         [ $mdt_index == 0 ] || error "a is not on MDT0"
13699
13700         rm -rf $DIR/$tdir || error "rm dir failed after migration"
13701 }
13702 run_test 230f "migrate mulitple remote link files"
13703
13704 test_230g() {
13705         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13706         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13707
13708         mkdir -p $DIR/$tdir/migrate_dir
13709
13710         $LFS migrate -m 1000 $DIR/$tdir/migrate_dir &&
13711                 error "migrating dir to non-exist MDT succeeds"
13712         true
13713 }
13714 run_test 230g "migrate dir to non-exist MDT"
13715
13716 test_230h() {
13717         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13718         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13719         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.64) ] &&
13720                 skip "Need MDS version at least 2.7.64" && return
13721         local mdt_index
13722
13723         mkdir -p $DIR/$tdir/migrate_dir
13724
13725         $LFS migrate -m1 $DIR &&
13726                 error "migrating mountpoint1 should fail"
13727
13728         $LFS migrate -m1 $DIR/$tdir/.. &&
13729                 error "migrating mountpoint2 should fail"
13730
13731         $LFS migrate -m1 $DIR/$tdir/migrate_dir/.. ||
13732                 error "migrating $tdir fail"
13733
13734         mdt_index=$($LFS getstripe -M $DIR/$tdir)
13735         [ $mdt_index == 1 ] || error "$mdt_index != 1 after migration"
13736
13737         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir)
13738         [ $mdt_index == 1 ] || error "$mdt_index != 1 after migration"
13739
13740 }
13741 run_test 230h "migrate .. and root"
13742
13743 test_230i() {
13744         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13745         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13746
13747         mkdir -p $DIR/$tdir/migrate_dir
13748
13749         $LFS migrate -m 1 $DIR/$tdir/migrate_dir/ ||
13750                 error "migration fails with a tailing slash"
13751
13752         $LFS migrate -m 0 $DIR/$tdir/migrate_dir// ||
13753                 error "migration fails with two tailing slashes"
13754 }
13755 run_test 230i "lfs migrate -m tolerates trailing slashes"
13756
13757 test_231a()
13758 {
13759         # For simplicity this test assumes that max_pages_per_rpc
13760         # is the same across all OSCs
13761         local max_pages=$($LCTL get_param -n osc.*.max_pages_per_rpc | head -n1)
13762         local bulk_size=$((max_pages * 4096))
13763
13764         mkdir -p $DIR/$tdir
13765
13766         # clear the OSC stats
13767         $LCTL set_param osc.*.stats=0 &>/dev/null
13768         stop_writeback
13769
13770         # Client writes $bulk_size - there must be 1 rpc for $max_pages.
13771         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=$bulk_size count=1 \
13772                 oflag=direct &>/dev/null || error "dd failed"
13773
13774         sync; sleep 1; sync # just to be safe
13775         local nrpcs=$($LCTL get_param osc.*.stats |awk '/ost_write/ {print $2}')
13776         if [ x$nrpcs != "x1" ]; then
13777                 $LCTL get_param osc.*.stats
13778                 error "found $nrpcs ost_write RPCs, not 1 as expected"
13779         fi
13780
13781         start_writeback
13782         # Drop the OSC cache, otherwise we will read from it
13783         cancel_lru_locks osc
13784
13785         # clear the OSC stats
13786         $LCTL set_param osc.*.stats=0 &>/dev/null
13787
13788         # Client reads $bulk_size.
13789         dd if=$DIR/$tdir/$tfile of=/dev/null bs=$bulk_size count=1 \
13790                 iflag=direct &>/dev/null || error "dd failed"
13791
13792         nrpcs=$($LCTL get_param osc.*.stats | awk '/ost_read/ { print $2 }')
13793         if [ x$nrpcs != "x1" ]; then
13794                 $LCTL get_param osc.*.stats
13795                 error "found $nrpcs ost_read RPCs, not 1 as expected"
13796         fi
13797 }
13798 run_test 231a "checking that reading/writing of BRW RPC size results in one RPC"
13799
13800 test_231b() {
13801         mkdir -p $DIR/$tdir
13802         local i
13803         for i in {0..1023}; do
13804                 dd if=/dev/zero of=$DIR/$tdir/$tfile conv=notrunc \
13805                         seek=$((2 * i)) bs=4096 count=1 &>/dev/null ||
13806                         error "dd of=$DIR/$tdir/$tfile seek=$((2 * i)) failed"
13807         done
13808         sync
13809 }
13810 run_test 231b "must not assert on fully utilized OST request buffer"
13811
13812 test_232() {
13813         mkdir -p $DIR/$tdir
13814         #define OBD_FAIL_LDLM_OST_LVB            0x31c
13815         $LCTL set_param fail_loc=0x31c
13816
13817         # ignore dd failure
13818         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=1 || true
13819
13820         $LCTL set_param fail_loc=0
13821         umount_client $MOUNT || error "umount failed"
13822         mount_client $MOUNT || error "mount failed"
13823 }
13824 run_test 232 "failed lock should not block umount"
13825
13826 test_233a() {
13827         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.64) ] ||
13828         { skip "Need MDS version at least 2.3.64"; return; }
13829         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
13830
13831         local fid=$($LFS path2fid $MOUNT)
13832         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
13833                 error "cannot access $MOUNT using its FID '$fid'"
13834 }
13835 run_test 233a "checking that OBF of the FS root succeeds"
13836
13837 test_233b() {
13838         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.5.90) ] ||
13839         { skip "Need MDS version at least 2.5.90"; return; }
13840         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
13841
13842         local fid=$($LFS path2fid $MOUNT/.lustre)
13843         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
13844                 error "cannot access $MOUNT/.lustre using its FID '$fid'"
13845
13846         fid=$($LFS path2fid $MOUNT/.lustre/fid)
13847         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
13848                 error "cannot access $MOUNT/.lustre/fid using its FID '$fid'"
13849 }
13850 run_test 233b "checking that OBF of the FS .lustre succeeds"
13851
13852 test_234() {
13853         local p="$TMP/sanityN-$TESTNAME.parameters"
13854         save_lustre_params client "llite.*.xattr_cache" > $p
13855         lctl set_param llite.*.xattr_cache 1 ||
13856                 { skip "xattr cache is not supported"; return 0; }
13857
13858         mkdir -p $DIR/$tdir || error "mkdir failed"
13859         touch $DIR/$tdir/$tfile || error "touch failed"
13860         # OBD_FAIL_LLITE_XATTR_ENOMEM
13861         $LCTL set_param fail_loc=0x1405
13862         # output of the form: attr 2 4 44 3 fc13 x86_64
13863         V=($(IFS=".-" rpm -q attr))
13864         if [[ ${V[1]} > 2 || ${V[2]} > 4 || ${V[3]} > 44 ||
13865               ${V[1]} = 2 && ${V[2]} = 4 && ${V[3]} = 44 && ${V[4]} > 6 ]]; then
13866                 # attr pre-2.4.44-7 had a bug with rc
13867                 # LU-3703 - SLES 11 and FC13 clients have older attr
13868                 getfattr -n user.attr $DIR/$tdir/$tfile &&
13869                         error "getfattr should have failed with ENOMEM"
13870         else
13871                 skip "LU-3703: attr version $(getfattr --version) too old"
13872         fi
13873         $LCTL set_param fail_loc=0x0
13874         rm -rf $DIR/$tdir
13875
13876         restore_lustre_params < $p
13877         rm -f $p
13878 }
13879 run_test 234 "xattr cache should not crash on ENOMEM"
13880
13881 test_235() {
13882         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.52) ] &&
13883                 skip "Need MDS version at least 2.4.52" && return
13884         flock_deadlock $DIR/$tfile
13885         local RC=$?
13886         case $RC in
13887                 0)
13888                 ;;
13889                 124) error "process hangs on a deadlock"
13890                 ;;
13891                 *) error "error executing flock_deadlock $DIR/$tfile"
13892                 ;;
13893         esac
13894 }
13895 run_test 235 "LU-1715: flock deadlock detection does not work properly"
13896
13897 #LU-2935
13898 test_236() {
13899         check_swap_layouts_support && return 0
13900         test_mkdir -p -c1 $DIR/$tdir || error "mkdir $tdir failed"
13901
13902         local ref1=/etc/passwd
13903         local ref2=/etc/group
13904         local file1=$DIR/$tdir/f1
13905         local file2=$DIR/$tdir/f2
13906
13907         $SETSTRIPE -c 1 $file1 || error "cannot setstripe on '$file1': rc = $?"
13908         cp $ref1 $file1 || error "cp $ref1 $file1 failed: rc = $?"
13909         $SETSTRIPE -c 2 $file2 || error "cannot setstripe on '$file2': rc = $?"
13910         cp $ref2 $file2 || error "cp $ref2 $file2 failed: rc = $?"
13911         local fd=$(free_fd)
13912         local cmd="exec $fd<>$file2"
13913         eval $cmd
13914         rm $file2
13915         $LFS swap_layouts $file1 /proc/self/fd/${fd} ||
13916                 error "cannot swap layouts of '$file1' and /proc/self/fd/${fd}"
13917         cmd="exec $fd>&-"
13918         eval $cmd
13919         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
13920
13921         #cleanup
13922         rm -rf $DIR/$tdir
13923 }
13924 run_test 236 "Layout swap on open unlinked file"
13925
13926 # test to verify file handle related system calls
13927 # (name_to_handle_at/open_by_handle_at)
13928 # The new system calls are supported in glibc >= 2.14.
13929
13930 test_237() {
13931         echo "Test file_handle syscalls" > $DIR/$tfile ||
13932                 error "write failed"
13933         check_fhandle_syscalls $DIR/$tfile ||
13934                 error "check_fhandle_syscalls failed"
13935 }
13936 run_test 237 "Verify name_to_handle_at/open_by_handle_at syscalls"
13937
13938 # LU-4659 linkea consistency
13939 test_238() {
13940         local server_version=$(lustre_version_code $SINGLEMDS)
13941
13942         [[ $server_version -gt $(version_code 2.5.57) ]] ||
13943                 [[ $server_version -gt $(version_code 2.5.1) &&
13944                    $server_version -lt $(version_code 2.5.50) ]] ||
13945                 { skip "Need MDS version at least 2.5.58 or 2.5.2+"; return; }
13946
13947         touch $DIR/$tfile
13948         ln $DIR/$tfile $DIR/$tfile.lnk
13949         touch $DIR/$tfile.new
13950         mv $DIR/$tfile.new $DIR/$tfile
13951         local fid1=$($LFS path2fid $DIR/$tfile)
13952         local fid2=$($LFS path2fid $DIR/$tfile.lnk)
13953         local path1=$($LFS fid2path $FSNAME "$fid1")
13954         [ $tfile == $path1 ] || error "linkea inconsistent: $tfile $fid1 $path1"
13955         local path2=$($LFS fid2path $FSNAME "$fid2")
13956         [ $tfile.lnk == $path2 ] ||
13957                 error "linkea inconsistent: $tfile.lnk $fid2 $path2!"
13958         rm -f $DIR/$tfile*
13959 }
13960 run_test 238 "Verify linkea consistency"
13961
13962 test_239() {
13963         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.60) ] &&
13964                 skip "Need MDS version at least 2.5.60" && return
13965         local list=$(comma_list $(mdts_nodes))
13966
13967         mkdir -p $DIR/$tdir
13968         createmany -o $DIR/$tdir/f- 5000
13969         unlinkmany $DIR/$tdir/f- 5000
13970         do_nodes $list "lctl set_param -n osp*.*.sync_changes 1"
13971         changes=$(do_nodes $list "lctl get_param -n osc.*MDT*.sync_changes \
13972                         osc.*MDT*.sync_in_flight" | calc_sum)
13973         [ "$changes" -eq 0 ] || error "$changes not synced"
13974 }
13975 run_test 239 "osp_sync test"
13976
13977 test_239a() { #LU-5297
13978         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13979         touch $DIR/$tfile
13980         #define OBD_FAIL_OSP_CHECK_INVALID_REC     0x2100
13981         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2100
13982         chgrp $RUNAS_GID $DIR/$tfile
13983         wait_delete_completed
13984 }
13985 run_test 239a "process invalid osp sync record correctly"
13986
13987 test_239b() { #LU-5297
13988         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13989         touch $DIR/$tfile1
13990         #define OBD_FAIL_OSP_CHECK_ENOMEM     0x2101
13991         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2101
13992         chgrp $RUNAS_GID $DIR/$tfile1
13993         wait_delete_completed
13994         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
13995         touch $DIR/$tfile2
13996         chgrp $RUNAS_GID $DIR/$tfile2
13997         wait_delete_completed
13998 }
13999 run_test 239b "process osp sync record with ENOMEM error correctly"
14000
14001 test_240() {
14002         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14003         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14004
14005         mkdir -p $DIR/$tdir
14006
14007         $LFS mkdir -i 0 $DIR/$tdir/d0 ||
14008                 error "failed to mkdir $DIR/$tdir/d0 on MDT0"
14009         $LFS mkdir -i 1 $DIR/$tdir/d0/d1 ||
14010                 error "failed to mkdir $DIR/$tdir/d0/d1 on MDT1"
14011
14012         umount_client $MOUNT || error "umount failed"
14013         #define OBD_FAIL_TGT_DELAY_CONDITIONAL   0x713
14014         do_facet mds2 lctl set_param fail_loc=0x713 fail_val=1
14015         mount_client $MOUNT || error "failed to mount client"
14016
14017         echo "stat $DIR/$tdir/d0/d1, should not fail/ASSERT"
14018         stat $DIR/$tdir/d0/d1 || error "fail to stat $DIR/$tdir/d0/d1"
14019 }
14020 run_test 240 "race between ldlm enqueue and the connection RPC (no ASSERT)"
14021
14022 test_241_bio() {
14023         for LOOP in $(seq $1); do
14024                 dd if=$DIR/$tfile of=/dev/null bs=40960 count=1 2>/dev/null
14025                 cancel_lru_locks osc || true
14026         done
14027 }
14028
14029 test_241_dio() {
14030         for LOOP in $(seq $1); do
14031                 dd if=$DIR/$tfile of=/dev/null bs=40960 count=1 \
14032                                                 iflag=direct 2>/dev/null
14033         done
14034 }
14035
14036 test_241a() { # was test_241
14037         dd if=/dev/zero of=$DIR/$tfile count=1 bs=40960
14038         ls -la $DIR/$tfile
14039         cancel_lru_locks osc
14040         test_241_bio 1000 &
14041         PID=$!
14042         test_241_dio 1000
14043         wait $PID
14044 }
14045 run_test 241a "bio vs dio"
14046
14047 test_241b() {
14048         dd if=/dev/zero of=$DIR/$tfile count=1 bs=40960
14049         ls -la $DIR/$tfile
14050         test_241_dio 1000 &
14051         PID=$!
14052         test_241_dio 1000
14053         wait $PID
14054 }
14055 run_test 241b "dio vs dio"
14056
14057 test_242() {
14058         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14059         mkdir -p $DIR/$tdir
14060         touch $DIR/$tdir/$tfile
14061
14062         #define OBD_FAIL_MDS_READPAGE_PACK      0x105
14063         do_facet mds1 lctl set_param fail_loc=0x105
14064         /bin/ls $DIR/$tdir && error "ls $DIR/$tdir should fail"
14065
14066         do_facet mds1 lctl set_param fail_loc=0
14067         /bin/ls $DIR/$tdir || error "ls $DIR/$tdir failed"
14068 }
14069 run_test 242 "mdt_readpage failure should not cause directory unreadable"
14070
14071 test_243()
14072 {
14073         test_mkdir -p $DIR/$tdir
14074         group_lock_test -d $DIR/$tdir || error "A group lock test failed"
14075 }
14076 run_test 243 "various group lock tests"
14077
14078 test_244()
14079 {
14080         test_mkdir -p $DIR/$tdir
14081         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=35
14082         sendfile_grouplock $DIR/$tdir/$tfile || \
14083                 error "sendfile+grouplock failed"
14084         rm -rf $DIR/$tdir
14085 }
14086 run_test 244 "sendfile with group lock tests"
14087
14088 test_245() {
14089         local flagname="multi_mod_rpcs"
14090         local connect_data_name="max_mod_rpcs"
14091         local out
14092
14093         # check if multiple modify RPCs flag is set
14094         out=$($LCTL get_param mdc.$FSNAME-MDT0000-*.import |
14095                 grep "connect_flags:")
14096         echo "$out"
14097
14098         echo "$out" | grep -qw $flagname
14099         if [ $? -ne 0 ]; then
14100                 echo "connect flag $flagname is not set"
14101                 return
14102         fi
14103
14104         # check if multiple modify RPCs data is set
14105         out=$($LCTL get_param mdc.$FSNAME-MDT0000-*.import)
14106         echo "$out"
14107
14108         echo "$out" | grep -qw $connect_data_name ||
14109                 error "import should have connect data $connect_data_name"
14110 }
14111 run_test 245 "check mdc connection flag/data: multiple modify RPCs"
14112
14113 test_246() { # LU-7371
14114         remote_ost_nodsh && skip "remote OST with nodsh" && return
14115         [ $(lustre_version_code ost1) -lt $(version_code 2.7.62) ] &&
14116                 skip "Need OST version >= 2.7.62" && return 0
14117         do_facet ost1 $LCTL set_param fail_val=4095
14118 #define OBD_FAIL_OST_READ_SIZE          0x234
14119         do_facet ost1 $LCTL set_param fail_loc=0x234
14120         $LFS setstripe $DIR/$tfile -i 0 -c 1
14121         dd if=/dev/zero of=$DIR/$tfile bs=4095 count=1 > /dev/null 2>&1
14122         cancel_lru_locks $FSNAME-OST0000
14123         dd if=$DIR/$tfile of=/dev/null bs=1048576 || error "Read failed"
14124 }
14125 run_test 246 "Read file of size 4095 should return right length"
14126
14127 test_247a() {
14128         lctl get_param -n mdc.$FSNAME-MDT0000*.import |
14129                 grep -q subtree ||
14130                 { skip "Fileset feature is not supported"; return; }
14131
14132         local submount=${MOUNT}_$tdir
14133
14134         mkdir $MOUNT/$tdir
14135         mkdir -p $submount || error "mkdir $submount failed"
14136         FILESET="$FILESET/$tdir" mount_client $submount ||
14137                 error "mount $submount failed"
14138         echo foo > $submount/$tfile || error "write $submount/$tfile failed"
14139         [ $(cat $MOUNT/$tdir/$tfile) = "foo" ] ||
14140                 error "read $MOUNT/$tdir/$tfile failed"
14141         umount_client $submount || error "umount $submount failed"
14142         rmdir $submount
14143 }
14144 run_test 247a "mount subdir as fileset"
14145
14146 test_247b() {
14147         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
14148                 { skip "Fileset feature is not supported"; return; }
14149
14150         local submount=${MOUNT}_$tdir
14151
14152         rm -rf $MOUNT/$tdir
14153         mkdir -p $submount || error "mkdir $submount failed"
14154         SKIP_FILESET=1
14155         FILESET="$FILESET/$tdir" mount_client $submount &&
14156                 error "mount $submount should fail"
14157         rmdir $submount
14158 }
14159 run_test 247b "mount subdir that dose not exist"
14160
14161 test_247c() {
14162         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
14163                 { skip "Fileset feature is not supported"; return; }
14164
14165         local submount=${MOUNT}_$tdir
14166
14167         mkdir -p $MOUNT/$tdir/dir1
14168         mkdir -p $submount || error "mkdir $submount failed"
14169         FILESET="$FILESET/$tdir" mount_client $submount ||
14170                 error "mount $submount failed"
14171         local fid=$($LFS path2fid $MOUNT/)
14172         $LFS fid2path $submount $fid && error "fid2path should fail"
14173         umount_client $submount || error "umount $submount failed"
14174         rmdir $submount
14175 }
14176 run_test 247c "running fid2path outside root"
14177
14178 test_247d() {
14179         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
14180                 { skip "Fileset feature is not supported"; return; }
14181
14182         local submount=${MOUNT}_$tdir
14183
14184         mkdir -p $MOUNT/$tdir/dir1
14185         mkdir -p $submount || error "mkdir $submount failed"
14186         FILESET="$FILESET/$tdir" mount_client $submount ||
14187                 error "mount $submount failed"
14188         local fid=$($LFS path2fid $submount/dir1)
14189         $LFS fid2path $submount $fid || error "fid2path should succeed"
14190         umount_client $submount || error "umount $submount failed"
14191         rmdir $submount
14192 }
14193 run_test 247d "running fid2path inside root"
14194
14195 # LU-8037
14196 test_247e() {
14197         lctl get_param -n mdc.$FSNAME-MDT0000*.import |
14198                 grep -q subtree ||
14199                 { skip "Fileset feature is not supported"; return; }
14200
14201         local submount=${MOUNT}_$tdir
14202
14203         mkdir $MOUNT/$tdir
14204         mkdir -p $submount || error "mkdir $submount failed"
14205         FILESET="$FILESET/.." mount_client $submount &&
14206                 error "mount $submount should fail"
14207         rmdir $submount
14208 }
14209 run_test 247e "mount .. as fileset"
14210
14211 test_248() {
14212         local fast_read_sav=$($LCTL get_param -n llite.*.fast_read 2>/dev/null)
14213         [ -z "$fast_read_sav" ] && skip "no fast read support" && return
14214
14215         # create a large file for fast read verification
14216         dd if=/dev/zero of=$DIR/$tfile bs=1M count=128 > /dev/null 2>&1
14217
14218         # make sure the file is created correctly
14219         $CHECKSTAT -s $((128*1024*1024)) $DIR/$tfile ||
14220                 { rm -f $DIR/$tfile; skip "file creation error" && return; }
14221
14222         echo "Test 1: verify that fast read is 4 times faster on cache read"
14223
14224         # small read with fast read enabled
14225         $LCTL set_param -n llite.*.fast_read=1
14226         local t_fast=$(dd if=$DIR/$tfile of=/dev/null bs=4k 2>&1 |
14227                 awk '/copied/ { print $6 }')
14228
14229         # small read with fast read disabled
14230         $LCTL set_param -n llite.*.fast_read=0
14231         local t_slow=$(dd if=$DIR/$tfile of=/dev/null bs=4k 2>&1 |
14232                 awk '/copied/ { print $6 }')
14233
14234         # verify that fast read is 4 times faster for cache read
14235         [ $(bc <<< "4 * $t_fast < $t_slow") -eq 1 ] ||
14236                 error_not_in_vm "fast read was not 4 times faster: " \
14237                            "$t_fast vs $t_slow"
14238
14239         echo "Test 2: verify the performance between big and small read"
14240         $LCTL set_param -n llite.*.fast_read=1
14241
14242         # 1k non-cache read
14243         cancel_lru_locks osc
14244         local t_1k=$(dd if=$DIR/$tfile of=/dev/null bs=1k 2>&1 |
14245                 awk '/copied/ { print $6 }')
14246
14247         # 1M non-cache read
14248         cancel_lru_locks osc
14249         local t_1m=$(dd if=$DIR/$tfile of=/dev/null bs=1k 2>&1 |
14250                 awk '/copied/ { print $6 }')
14251
14252         # verify that big IO is not 4 times faster than small IO
14253         [ $(bc <<< "4 * $t_1k >= $t_1m") -eq 1 ] ||
14254                 error_not_in_vm "bigger IO is way too fast: $t_1k vs $t_1m"
14255
14256         $LCTL set_param -n llite.*.fast_read=$fast_read_sav
14257         rm -f $DIR/$tfile
14258 }
14259 run_test 248 "fast read verification"
14260
14261 test_249() { # LU-7890
14262         rm -f $DIR/$tfile
14263         $SETSTRIPE -c 1 $DIR/$tfile
14264
14265         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.53) ] &&
14266         skip "Need at least version 2.8.54"
14267
14268         # Offset 2T == 4k * 512M
14269         dd if=/dev/zero of=$DIR/$tfile bs=4k count=1 seek=512M ||
14270                 error "dd to 2T offset failed"
14271 }
14272 run_test 249 "Write above 2T file size"
14273
14274 test_250() {
14275         [ "$(facet_fstype ost$(($($GETSTRIPE -i $DIR/$tfile) + 1)))" = "zfs" ] \
14276          && skip "no 16TB file size limit on ZFS" && return
14277
14278         $SETSTRIPE -c 1 $DIR/$tfile
14279         # ldiskfs extent file size limit is (16TB - 4KB - 1) bytes
14280         local size=$((16 * 1024 * 1024 * 1024 * 1024 - 4096 - 1))
14281         $TRUNCATE $DIR/$tfile $size || error "truncate $tfile to $size failed"
14282         dd if=/dev/zero of=$DIR/$tfile bs=10 count=1 oflag=append \
14283                 conv=notrunc,fsync && error "append succeeded"
14284         return 0
14285 }
14286 run_test 250 "Write above 16T limit"
14287
14288 test_251() {
14289         $SETSTRIPE -c -1 -S 1048576 $DIR/$tfile
14290
14291         #define OBD_FAIL_LLITE_LOST_LAYOUT 0x1407
14292         #Skip once - writing the first stripe will succeed
14293         $LCTL set_param fail_loc=0xa0001407 fail_val=1
14294         $MULTIOP $DIR/$tfile o:O_RDWR:w2097152c 2>&1 | grep -q "short write" &&
14295                 error "short write happened"
14296
14297         $LCTL set_param fail_loc=0xa0001407 fail_val=1
14298         $MULTIOP $DIR/$tfile or2097152c 2>&1 | grep -q "short read" &&
14299                 error "short read happened"
14300
14301         rm -f $DIR/$tfile
14302 }
14303 run_test 251 "Handling short read and write correctly"
14304
14305 test_252() {
14306         local tgt
14307         local dev
14308         local out
14309         local uuid
14310         local num
14311         local gen
14312
14313         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14314         remote_ost_nodsh && skip "remote OST with nodsh" && return
14315         if [ "$(facet_fstype ost1)" != "ldiskfs" -o \
14316              "$(facet_fstype mds1)" != "ldiskfs" ]; then
14317                 skip "can only run lr_reader on ldiskfs target"
14318                 return
14319         fi
14320
14321         # check lr_reader on OST0000
14322         tgt=ost1
14323         dev=$(facet_device $tgt)
14324         out=$(do_facet $tgt $LR_READER $dev)
14325         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
14326         echo "$out"
14327         uuid=$(echo "$out" | grep -i uuid | awk '{ print $2 }')
14328         [ "$uuid" == "$(ostuuid_from_index 0)" ] ||
14329                 error "Invalid uuid returned by $LR_READER on target $tgt"
14330         echo -e "uuid returned by $LR_READER is '$uuid'\n"
14331
14332         # check lr_reader -c on MDT0000
14333         tgt=mds1
14334         dev=$(facet_device $tgt)
14335         if ! do_facet $tgt $LR_READER -h | grep -q OPTIONS; then
14336                 echo "$LR_READER does not support additional options"
14337                 return 0
14338         fi
14339         out=$(do_facet $tgt $LR_READER -c $dev)
14340         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
14341         echo "$out"
14342         num=$(echo "$out" | grep -c "mdtlov")
14343         [ "$num" -eq $((MDSCOUNT - 1)) ] ||
14344                 error "Invalid number of mdtlov clients returned by $LR_READER"
14345         echo -e "Number of mdtlov clients returned by $LR_READER is '$num'\n"
14346
14347         # check lr_reader -cr on MDT0000
14348         out=$(do_facet $tgt $LR_READER -cr $dev)
14349         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
14350         echo "$out"
14351         echo "$out" | grep -q "^reply_data:$" ||
14352                 error "$LR_READER should have returned 'reply_data' section"
14353         num=$(echo "$out" | grep -c "client_generation")
14354         echo -e "Number of reply data returned by $LR_READER is '$num'\n"
14355 }
14356 run_test 252 "check lr_reader tool"
14357
14358 test_253_fill_ost() {
14359         local size_mb #how many MB should we write to pass watermark
14360         local lwm=$3  #low watermark
14361         local free_10mb #10% of free space
14362
14363         free_kb=$($LFS df $MOUNT | grep $1 | awk '{ print $4 }')
14364         size_mb=$((free_kb / 1024 - lwm))
14365         free_10mb=$((free_kb / 10240))
14366         #If 10% of free space cross low watermark use it
14367         if (( free_10mb > size_mb )); then
14368                 size_mb=$free_10mb
14369         else
14370                 #At least we need to store 1.1 of difference between
14371                 #free space and low watermark
14372                 size_mb=$((size_mb + size_mb / 10))
14373         fi
14374         if (( lwm <= $((free_kb / 1024)) )) || [ ! -f $DIR/$tdir/1 ]; then
14375                 dd if=/dev/zero of=$DIR/$tdir/1 bs=1M count=$size_mb \
14376                          oflag=append conv=notrunc
14377         fi
14378
14379         sleep_maxage
14380
14381         free_kb=$($LFS df $MOUNT | grep $1 | awk '{ print $4 }')
14382         echo "OST still has $((free_kb / 1024)) mbytes free"
14383 }
14384
14385 test_253() {
14386         local ostidx=0
14387         local rc=0
14388
14389         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14390         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14391         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
14392
14393         local ost_name=$($LFS osts |
14394                 sed -n 's/^'$ostidx': \(.*\)_UUID .*/\1/p')
14395         # on the mdt's osc
14396         local mdtosc_proc1=$(get_mdtosc_proc_path $SINGLEMDS $ost_name)
14397         do_facet $SINGLEMDS $LCTL get_param -n \
14398                 osp.$mdtosc_proc1.reserved_mb_high ||
14399                 { skip  "remote MDS does not support reserved_mb_high" &&
14400                   return; }
14401
14402         rm -rf $DIR/$tdir
14403         wait_mds_ost_sync
14404         wait_delete_completed
14405         mkdir $DIR/$tdir
14406
14407         local last_wm_h=$(do_facet $SINGLEMDS $LCTL get_param -n \
14408                         osp.$mdtosc_proc1.reserved_mb_high)
14409         local last_wm_l=$(do_facet $SINGLEMDS $LCTL get_param -n \
14410                         osp.$mdtosc_proc1.reserved_mb_low)
14411         echo "prev high watermark $last_wm_h, prev low watermark $last_wm_l"
14412
14413         create_pool $FSNAME.$TESTNAME || error "Pool creation failed"
14414         do_facet mgs $LCTL pool_add $FSNAME.$TESTNAME $ost_name ||
14415                 error "Adding $ost_name to pool failed"
14416
14417         # Wait for client to see a OST at pool
14418         wait_update $HOSTNAME "$LCTL get_param -n
14419                 lov.$FSNAME-*.pools.$TESTNAME | sort -u |
14420                 grep $ost_name" "$ost_name""_UUID" $((TIMEOUT/2)) ||
14421                 error "Client can not see the pool"
14422         $SETSTRIPE $DIR/$tdir -i $ostidx -c 1 -p $FSNAME.$TESTNAME ||
14423                 error "Setstripe failed"
14424
14425         dd if=/dev/zero of=$DIR/$tdir/0 bs=1M count=10
14426         local blocks=$($LFS df $MOUNT | grep $ost_name | awk '{ print $4 }')
14427         echo "OST still has $((blocks/1024)) mbytes free"
14428
14429         local new_lwm=$((blocks/1024-10))
14430         do_facet $SINGLEMDS $LCTL set_param \
14431                         osp.$mdtosc_proc1.reserved_mb_high=$((new_lwm+5))
14432         do_facet $SINGLEMDS $LCTL set_param \
14433                         osp.$mdtosc_proc1.reserved_mb_low=$new_lwm
14434
14435         test_253_fill_ost $ost_name $mdtosc_proc1 $new_lwm
14436
14437         #First enospc could execute orphan deletion so repeat.
14438         test_253_fill_ost $ost_name $mdtosc_proc1 $new_lwm
14439
14440         local oa_status=$(do_facet $SINGLEMDS $LCTL get_param -n \
14441                         osp.$mdtosc_proc1.prealloc_status)
14442         echo "prealloc_status $oa_status"
14443
14444         dd if=/dev/zero of=$DIR/$tdir/2 bs=1M count=1 &&
14445                 error "File creation should fail"
14446         #object allocation was stopped, but we still able to append files
14447         dd if=/dev/zero of=$DIR/$tdir/1 bs=1M seek=6 count=5 oflag=append ||
14448                 error "Append failed"
14449         rm -f $DIR/$tdir/1 $DIR/$tdir/0 $DIR/$tdir/r*
14450
14451         wait_delete_completed
14452
14453         sleep_maxage
14454
14455         for i in $(seq 10 12); do
14456                 dd if=/dev/zero of=$DIR/$tdir/$i bs=1M count=1 2>/dev/null ||
14457                         error "File creation failed after rm";
14458         done
14459
14460         oa_status=$(do_facet $SINGLEMDS $LCTL get_param -n \
14461                         osp.$mdtosc_proc1.prealloc_status)
14462         echo "prealloc_status $oa_status"
14463
14464         if (( oa_status != 0 )); then
14465                 error "Object allocation still disable after rm"
14466         fi
14467         do_facet $SINGLEMDS $LCTL set_param \
14468                         osp.$mdtosc_proc1.reserved_mb_high=$last_wm_h
14469         do_facet $SINGLEMDS $LCTL set_param \
14470                         osp.$mdtosc_proc1.reserved_mb_low=$last_wm_l
14471
14472
14473         do_facet mgs $LCTL pool_remove $FSNAME.$TESTNAME $ost_name ||
14474                 error "Remove $ost_name from pool failed"
14475         do_facet mgs $LCTL pool_destroy $FSNAME.$TESTNAME ||
14476                 error "Pool destroy fialed"
14477 }
14478 run_test 253 "Check object allocation limit"
14479
14480 test_254() {
14481         local cl_user
14482
14483         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14484         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14485         do_facet mds1 $LCTL get_param -n mdd.$MDT0.changelog_size ||
14486                 { skip "MDS does not support changelog_size" && return; }
14487
14488         cl_user=$(do_facet mds1 $LCTL --device $MDT0 changelog_register -n)
14489         echo "Registered as changelog user $cl_user"
14490
14491         $LFS changelog_clear $MDT0 $cl_user 0
14492
14493         local size1=$(do_facet mds1 \
14494                       $LCTL get_param -n mdd.$MDT0.changelog_size)
14495         echo "Changelog size $size1"
14496
14497         rm -rf $DIR/$tdir
14498         $LFS mkdir -i 0 $DIR/$tdir
14499         # change something
14500         mkdir -p $DIR/$tdir/pics/2008/zachy
14501         touch $DIR/$tdir/pics/2008/zachy/timestamp
14502         cp /etc/hosts $DIR/$tdir/pics/2008/zachy/pic1.jpg
14503         mv $DIR/$tdir/pics/2008/zachy $DIR/$tdir/pics/zach
14504         ln $DIR/$tdir/pics/zach/pic1.jpg $DIR/$tdir/pics/2008/portland.jpg
14505         ln -s $DIR/$tdir/pics/2008/portland.jpg $DIR/$tdir/pics/desktop.jpg
14506         rm $DIR/$tdir/pics/desktop.jpg
14507
14508         local size2=$(do_facet mds1 \
14509                       $LCTL get_param -n mdd.$MDT0.changelog_size)
14510         echo "Changelog size after work $size2"
14511
14512         do_facet mds1 $LCTL --device $MDT0 changelog_deregister $cl_user
14513
14514         if (( size2 <= size1 )); then
14515                 error "Changelog size after work should be greater than original"
14516         fi
14517         return 0
14518 }
14519 run_test 254 "Check changelog size"
14520
14521 ladvise_no_type()
14522 {
14523         local type=$1
14524         local file=$2
14525
14526         lfs ladvise -a invalid $file 2>&1 | grep "Valid types" |
14527                 awk -F: '{print $2}' | grep $type > /dev/null
14528         if [ $? -ne 0 ]; then
14529                 return 0
14530         fi
14531         return 1
14532 }
14533
14534 ladvise_no_ioctl()
14535 {
14536         local file=$1
14537
14538         lfs ladvise -a willread $file > /dev/null 2>&1
14539         if [ $? -eq 0 ]; then
14540                 return 1
14541         fi
14542
14543         lfs ladvise -a willread $file 2>&1 |
14544                 grep "Inappropriate ioctl for device" > /dev/null
14545         if [ $? -eq 0 ]; then
14546                 return 0
14547         fi
14548         return 1
14549 }
14550
14551 percent() {
14552         bc <<<"scale=2; ($1 - $2) * 100 / $2"
14553 }
14554
14555 # run a random read IO workload
14556 # usage: random_read_iops <filename> <filesize> <iosize>
14557 random_read_iops() {
14558         local file=$1
14559         local fsize=$2
14560         local iosize=${3:-4096}
14561
14562         $READS -f $file -s $fsize -b $iosize -n $((fsize / iosize)) -t 60 |
14563                 sed -e '/^$/d' -e 's#.*s, ##' -e 's#MB/s##'
14564 }
14565
14566 drop_file_oss_cache() {
14567         local file="$1"
14568         local nodes="$2"
14569
14570         $LFS ladvise -a dontneed $file 2>/dev/null ||
14571                 do_nodes $nodes "echo 3 > /proc/sys/vm/drop_caches"
14572 }
14573
14574 ladvise_willread_performance()
14575 {
14576         local repeat=10
14577         local average_origin=0
14578         local average_cache=0
14579         local average_ladvise=0
14580
14581         for ((i = 1; i <= $repeat; i++)); do
14582                 echo "Iter $i/$repeat: reading without willread hint"
14583                 cancel_lru_locks osc
14584                 drop_file_oss_cache $DIR/$tfile $(comma_list $(osts_nodes))
14585                 local speed_origin=$(random_read_iops $DIR/$tfile $size)
14586                 echo "Iter $i/$repeat: uncached speed: $speed_origin"
14587                 average_origin=$(bc <<<"$average_origin + $speed_origin")
14588
14589                 cancel_lru_locks osc
14590                 local speed_cache=$(random_read_iops $DIR/$tfile $size)
14591                 echo "Iter $i/$repeat: OSS cache speed: $speed_cache"
14592                 average_cache=$(bc <<<"$average_cache + $speed_cache")
14593
14594                 cancel_lru_locks osc
14595                 drop_file_oss_cache $DIR/$tfile $(comma_list $(osts_nodes))
14596                 $LFS ladvise -a willread $DIR/$tfile || error "ladvise failed"
14597                 local speed_ladvise=$(random_read_iops $DIR/$tfile $size)
14598                 echo "Iter $i/$repeat: ladvise speed: $speed_ladvise"
14599                 average_ladvise=$(bc <<<"$average_ladvise + $speed_ladvise")
14600         done
14601         average_origin=$(bc <<<"scale=2; $average_origin / $repeat")
14602         average_cache=$(bc <<<"scale=2; $average_cache / $repeat")
14603         average_ladvise=$(bc <<<"scale=2; $average_ladvise / $repeat")
14604
14605         speedup_cache=$(percent $average_cache $average_origin)
14606         speedup_ladvise=$(percent $average_ladvise $average_origin)
14607
14608         echo "Average uncached read: $average_origin"
14609         echo "Average speedup with OSS cached read: " \
14610                 "$average_cache = +$speedup_cache%"
14611         echo "Average speedup with ladvise willread: " \
14612                 "$average_ladvise = +$speedup_ladvise%"
14613
14614         local lowest_speedup=20
14615         if [ ${average_cache%.*} -lt $lowest_speedup ]; then
14616                 echo "Speedup with OSS cached read less than $lowest_speedup%, "
14617                         "got $average_cache%. Skipping ladvise willread check."
14618                 return 0
14619         fi
14620
14621         # the test won't work on ZFS until it supports 'ladvise dontneed', but
14622         # it is still good to run until then to exercise 'ladvise willread'
14623         ! $LFS ladvise -a dontneed $DIR/$tfile &&
14624                 [ "$(facet_fstype ost1)" = "zfs" ] &&
14625                 echo "osd-zfs does not support dontneed or drop_caches" &&
14626                 return 0
14627
14628         lowest_speedup=$(bc <<<"scale=2; $average_cache / 2")
14629         [ ${average_ladvise%.*} -gt $lowest_speedup ] ||
14630                 error_not_in_vm "Speedup with willread is less than " \
14631                         "$lowest_speedup%, got $average_ladvise%"
14632 }
14633
14634 test_255a() {
14635         [ $(lustre_version_code ost1) -lt $(version_code 2.8.54) ] &&
14636                 skip "lustre < 2.8.54 does not support ladvise " && return
14637         remote_ost_nodsh && skip "remote OST with nodsh" && return
14638
14639         lfs setstripe -c -1 -i 0 $DIR/$tfile || error "$tfile failed"
14640
14641         ladvise_no_type willread $DIR/$tfile &&
14642                 skip "willread ladvise is not supported" && return
14643
14644         ladvise_no_ioctl $DIR/$tfile &&
14645                 skip "ladvise ioctl is not supported" && return
14646
14647         local size_mb=100
14648         local size=$((size_mb * 1048576))
14649         dd if=/dev/zero of=$DIR/$tfile bs=1048576 count=$size_mb ||
14650                 error "dd to $DIR/$tfile failed"
14651
14652         lfs ladvise -a willread $DIR/$tfile ||
14653                 error "Ladvise failed with no range argument"
14654
14655         lfs ladvise -a willread -s 0 $DIR/$tfile ||
14656                 error "Ladvise failed with no -l or -e argument"
14657
14658         lfs ladvise -a willread -e 1 $DIR/$tfile ||
14659                 error "Ladvise failed with only -e argument"
14660
14661         lfs ladvise -a willread -l 1 $DIR/$tfile ||
14662                 error "Ladvise failed with only -l argument"
14663
14664         lfs ladvise -a willread -s 2 -e 1 $DIR/$tfile &&
14665                 error "End offset should not be smaller than start offset"
14666
14667         lfs ladvise -a willread -s 2 -e 2 $DIR/$tfile &&
14668                 error "End offset should not be equal to start offset"
14669
14670         lfs ladvise -a willread -s $size -l 1 $DIR/$tfile ||
14671                 error "Ladvise failed with overflowing -s argument"
14672
14673         lfs ladvise -a willread -s 1 -e $((size + 1)) $DIR/$tfile ||
14674                 error "Ladvise failed with overflowing -e argument"
14675
14676         lfs ladvise -a willread -s 1 -l $size $DIR/$tfile ||
14677                 error "Ladvise failed with overflowing -l argument"
14678
14679         lfs ladvise -a willread -l 1 -e 2 $DIR/$tfile &&
14680                 error "Ladvise succeeded with conflicting -l and -e arguments"
14681
14682         echo "Synchronous ladvise should wait"
14683         local delay=4
14684 #define OBD_FAIL_OST_LADVISE_PAUSE       0x237
14685         do_nodes $(comma_list $(osts_nodes)) \
14686                 $LCTL set_param fail_val=$delay fail_loc=0x237
14687
14688         local start_ts=$SECONDS
14689         lfs ladvise -a willread $DIR/$tfile ||
14690                 error "Ladvise failed with no range argument"
14691         local end_ts=$SECONDS
14692         local inteval_ts=$((end_ts - start_ts))
14693
14694         if [ $inteval_ts -lt $(($delay - 1)) ]; then
14695                 error "Synchronous advice didn't wait reply"
14696         fi
14697
14698         echo "Asynchronous ladvise shouldn't wait"
14699         local start_ts=$SECONDS
14700         lfs ladvise -a willread -b $DIR/$tfile ||
14701                 error "Ladvise failed with no range argument"
14702         local end_ts=$SECONDS
14703         local inteval_ts=$((end_ts - start_ts))
14704
14705         if [ $inteval_ts -gt $(($delay / 2)) ]; then
14706                 error "Asynchronous advice blocked"
14707         fi
14708
14709         do_nodes $(comma_list $(osts_nodes)) $LCTL set_param fail_loc=0
14710         ladvise_willread_performance
14711 }
14712 run_test 255a "check 'lfs ladvise -a willread'"
14713
14714 facet_meminfo() {
14715         local facet=$1
14716         local info=$2
14717
14718         do_facet $facet "cat /proc/meminfo | grep ^${info}:" | awk '{print $2}'
14719 }
14720
14721 test_255b() {
14722         remote_ost_nodsh && skip "remote OST with nodsh" && return
14723
14724         lfs setstripe -c 1 -i 0 $DIR/$tfile
14725
14726         ladvise_no_type dontneed $DIR/$tfile &&
14727                 skip "dontneed ladvise is not supported" && return
14728
14729         ladvise_no_ioctl $DIR/$tfile &&
14730                 skip "ladvise ioctl is not supported" && return
14731
14732         [ $(lustre_version_code ost1) -lt $(version_code 2.8.54) ] &&
14733                 skip "lustre < 2.8.54 does not support ladvise" && return
14734
14735         ! $LFS ladvise -a dontneed $DIR/$tfile &&
14736                 [ "$(facet_fstype ost1)" = "zfs" ] &&
14737                 skip "zfs-osd does not support 'ladvise dontneed'" && return
14738
14739         local size_mb=100
14740         local size=$((size_mb * 1048576))
14741         # In order to prevent disturbance of other processes, only check 3/4
14742         # of the memory usage
14743         local kibibytes=$((size_mb * 1024 * 3 / 4))
14744
14745         dd if=/dev/zero of=$DIR/$tfile bs=1048576 count=$size_mb ||
14746                 error "dd to $DIR/$tfile failed"
14747
14748         local total=$(facet_meminfo ost1 MemTotal)
14749         echo "Total memory: $total KiB"
14750
14751         do_facet ost1 "sync && echo 3 > /proc/sys/vm/drop_caches"
14752         local before_read=$(facet_meminfo ost1 Cached)
14753         echo "Cache used before read: $before_read KiB"
14754
14755         lfs ladvise -a willread $DIR/$tfile ||
14756                 error "Ladvise willread failed"
14757         local after_read=$(facet_meminfo ost1 Cached)
14758         echo "Cache used after read: $after_read KiB"
14759
14760         lfs ladvise -a dontneed $DIR/$tfile ||
14761                 error "Ladvise dontneed again failed"
14762         local no_read=$(facet_meminfo ost1 Cached)
14763         echo "Cache used after dontneed ladvise: $no_read KiB"
14764
14765         if [ $total -lt $((before_read + kibibytes)) ]; then
14766                 echo "Memory is too small, abort checking"
14767                 return 0
14768         fi
14769
14770         if [ $((before_read + kibibytes)) -gt $after_read ]; then
14771                 error "Ladvise willread should use more memory" \
14772                         "than $kibibytes KiB"
14773         fi
14774
14775         if [ $((no_read + kibibytes)) -gt $after_read ]; then
14776                 error "Ladvise dontneed should release more memory" \
14777                         "than $kibibytes KiB"
14778         fi
14779 }
14780 run_test 255b "check 'lfs ladvise -a dontneed'"
14781
14782 test_256() {
14783         local cl_user
14784         local cat_sl
14785         local mdt_dev
14786
14787         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14788         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14789         [ "$(facet_fstype mds1)" != "ldiskfs" ] &&
14790                 skip "non-ldiskfs backend" && return
14791
14792         mdt_dev=$(mdsdevname 1)
14793         echo $mdt_dev
14794         cl_user=$(do_facet mds1 \
14795         "$LCTL get_param -n mdd.$MDT0.changelog_users | grep cl")
14796         if [[ -n $cl_user ]]; then
14797                 skip "active changelog user"
14798                 return
14799         fi
14800
14801         cl_user=$(do_facet mds1 $LCTL --device $MDT0 changelog_register -n)
14802         echo "Registered as changelog user $cl_user"
14803
14804         rm -rf $DIR/$tdir
14805         mkdir -p $DIR/$tdir
14806
14807         $LFS changelog_clear $MDT0 $cl_user 0
14808
14809         # change something
14810         touch $DIR/$tdir/{1..10}
14811
14812         # stop the MDT
14813         stop mds1 || error "Fail to stop MDT."
14814
14815         # remount the MDT
14816         start mds1 $mdt_dev $MDS_MOUNT_OPTS || error "Fail to start MDT."
14817
14818         #after mount new plainllog is used
14819         touch $DIR/$tdir/{11..19}
14820         cat_sl=$(do_facet mds1 \
14821         "$DEBUGFS -R \\\"dump changelog_catalog cat.dmp\\\" $mdt_dev; \
14822          llog_reader cat.dmp | grep \\\"type=1064553b\\\" | wc -l")
14823
14824         if (( cat_sl != 2 )); then
14825                 do_facet mds1 $LCTL --device $MDT0 changelog_deregister $cl_user
14826                 error "Changelog catalog has wrong number of slots $cat_sl"
14827         fi
14828
14829         $LFS changelog_clear $MDT0 $cl_user 0
14830
14831         cat_sl=$(do_facet mds1 \
14832         "$DEBUGFS -R \\\"dump changelog_catalog cat.dmp\\\" $mdt_dev; \
14833          llog_reader cat.dmp | grep \\\"type=1064553b\\\" | wc -l")
14834
14835         do_facet mds1 $LCTL --device $MDT0 changelog_deregister $cl_user
14836
14837         if (( cat_sl == 2 )); then
14838                 error "Empty plain llog was not deleted from changelog catalog"
14839         fi
14840         if (( cat_sl != 1 )); then
14841                 error "Active plain llog shouldn\`t be deleted from catalog"
14842         fi
14843 }
14844 run_test 256 "Check llog delete for empty and not full state"
14845
14846 test_257() {
14847         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14848         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.55) ]] &&
14849                 skip "Need MDS version at least 2.8.55" && return
14850
14851         test_mkdir -p $DIR/$tdir
14852
14853         setfattr -n trusted.name1 -v value1 $DIR/$tdir ||
14854                 error "setfattr -n trusted.name1=value1 $DIR/$tdir failed"
14855         stat $DIR/$tdir
14856
14857 #define OBD_FAIL_MDS_XATTR_REP                  0x161
14858         local mdtidx=$($LFS getstripe -M $DIR/$tdir)
14859         local facet=mds$((mdtidx + 1))
14860         set_nodes_failloc $(facet_active_host $facet) 0x80000161
14861         getfattr -n trusted.name1 $DIR/$tdir 2> /dev/null
14862
14863         stop $facet || error "stop MDS failed"
14864         start $facet $(mdsdevname $((mdtidx + 1))) $MDS_MOUNT_OPTS ||
14865                 error "start MDS fail"
14866 }
14867 run_test 257 "xattr locks are not lost"
14868
14869 test_260() {
14870 #define OBD_FAIL_MDC_CLOSE               0x806
14871         $LCTL set_param fail_loc=0x80000806
14872         touch $DIR/$tfile
14873
14874 }
14875 run_test 260 "Check mdc_close fail"
14876
14877 cleanup_test_300() {
14878         trap 0
14879         umask $SAVE_UMASK
14880 }
14881 test_striped_dir() {
14882         local mdt_index=$1
14883         local stripe_count
14884         local stripe_index
14885
14886         mkdir -p $DIR/$tdir
14887
14888         SAVE_UMASK=$(umask)
14889         trap cleanup_test_300 RETURN EXIT
14890
14891         $LFS setdirstripe -i $mdt_index -c 2 -t all_char -m 755 \
14892                                                 $DIR/$tdir/striped_dir ||
14893                 error "set striped dir error"
14894
14895         local mode=$(stat -c%a $DIR/$tdir/striped_dir)
14896         [ "$mode" = "755" ] || error "expect 755 got $mode"
14897
14898         $LFS getdirstripe $DIR/$tdir/striped_dir > /dev/null 2>&1 ||
14899                 error "getdirstripe failed"
14900         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir)
14901         if [ "$stripe_count" != "2" ]; then
14902                 error "1:stripe_count is $stripe_count, expect 2"
14903         fi
14904         stripe_count=$($LFS getdirstripe -T $DIR/$tdir/striped_dir)
14905         if [ "$stripe_count" != "2" ]; then
14906                 error "2:stripe_count is $stripe_count, expect 2"
14907         fi
14908
14909         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir)
14910         if [ "$stripe_index" != "$mdt_index" ]; then
14911                 error "stripe_index is $stripe_index, expect $mdt_index"
14912         fi
14913
14914         [ $(stat -c%h $DIR/$tdir/striped_dir) == '2' ] ||
14915                 error "nlink error after create striped dir"
14916
14917         mkdir $DIR/$tdir/striped_dir/a
14918         mkdir $DIR/$tdir/striped_dir/b
14919
14920         stat $DIR/$tdir/striped_dir/a ||
14921                 error "create dir under striped dir failed"
14922         stat $DIR/$tdir/striped_dir/b ||
14923                 error "create dir under striped dir failed"
14924
14925         [ $(stat -c%h $DIR/$tdir/striped_dir) == '4' ] ||
14926                 error "nlink error after mkdir"
14927
14928         rmdir $DIR/$tdir/striped_dir/a
14929         [ $(stat -c%h $DIR/$tdir/striped_dir) == '3' ] ||
14930                 error "nlink error after rmdir"
14931
14932         rmdir $DIR/$tdir/striped_dir/b
14933         [ $(stat -c%h $DIR/$tdir/striped_dir) == '2' ] ||
14934                 error "nlink error after rmdir"
14935
14936         chattr +i $DIR/$tdir/striped_dir
14937         createmany -o $DIR/$tdir/striped_dir/f 10 &&
14938                 error "immutable flags not working under striped dir!"
14939         chattr -i $DIR/$tdir/striped_dir
14940
14941         rmdir $DIR/$tdir/striped_dir ||
14942                 error "rmdir striped dir error"
14943
14944         cleanup_test_300
14945
14946         true
14947 }
14948
14949 test_300a() {
14950         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
14951                 skip "skipped for lustre < 2.7.0" && return
14952         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14953         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14954
14955         test_striped_dir 0 || error "failed on striped dir on MDT0"
14956         test_striped_dir 1 || error "failed on striped dir on MDT0"
14957 }
14958 run_test 300a "basic striped dir sanity test"
14959
14960 test_300b() {
14961         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
14962                 skip "skipped for lustre < 2.7.0" && return
14963         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14964         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14965         local i
14966         local mtime1
14967         local mtime2
14968         local mtime3
14969
14970         test_mkdir $DIR/$tdir || error "mkdir fail"
14971         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir ||
14972                 error "set striped dir error"
14973         for ((i=0; i<10; i++)); do
14974                 mtime1=$(stat -c %Y $DIR/$tdir/striped_dir)
14975                 sleep 1
14976                 touch $DIR/$tdir/striped_dir/file_$i ||
14977                                         error "touch error $i"
14978                 mtime2=$(stat -c %Y $DIR/$tdir/striped_dir)
14979                 [ $mtime1 -eq $mtime2 ] &&
14980                         error "mtime not change after create"
14981                 sleep 1
14982                 rm -f $DIR/$tdir/striped_dir/file_$i ||
14983                                         error "unlink error $i"
14984                 mtime3=$(stat -c %Y $DIR/$tdir/striped_dir)
14985                 [ $mtime2 -eq $mtime3 ] &&
14986                         error "mtime did not change after unlink"
14987         done
14988         true
14989 }
14990 run_test 300b "check ctime/mtime for striped dir"
14991
14992 test_300c() {
14993         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
14994                 skip "skipped for lustre < 2.7.0" && return
14995         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14996         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14997         local file_count
14998
14999         mkdir -p $DIR/$tdir
15000         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir ||
15001                 error "set striped dir error"
15002
15003         chown $RUNAS_ID:$RUNAS_GID $DIR/$tdir/striped_dir ||
15004                 error "chown striped dir failed"
15005
15006         $RUNAS createmany -o $DIR/$tdir/striped_dir/f 5000 ||
15007                 error "create 5k files failed"
15008
15009         file_count=$(ls $DIR/$tdir/striped_dir | wc -l)
15010
15011         [ "$file_count" = 5000 ] || error "file count $file_count != 5000"
15012
15013         rm -rf $DIR/$tdir
15014 }
15015 run_test 300c "chown && check ls under striped directory"
15016
15017 test_300d() {
15018         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
15019                 skip "skipped for lustre < 2.7.0" && return
15020         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15021         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15022         local stripe_count
15023         local file
15024
15025         mkdir -p $DIR/$tdir
15026         $SETSTRIPE -c 2 $DIR/$tdir
15027
15028         #local striped directory
15029         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir ||
15030                 error "set striped dir error"
15031         createmany -o $DIR/$tdir/striped_dir/f 10 ||
15032                 error "create 10 files failed"
15033
15034         #remote striped directory
15035         $LFS setdirstripe -i 1 -c 2 $DIR/$tdir/remote_striped_dir ||
15036                 error "set striped dir error"
15037         createmany -o $DIR/$tdir/remote_striped_dir/f 10 ||
15038                 error "create 10 files failed"
15039
15040         for file in $(find $DIR/$tdir); do
15041                 stripe_count=$($GETSTRIPE -c $file)
15042                 [ $stripe_count -eq 2 ] ||
15043                         error "wrong stripe $stripe_count for $file"
15044         done
15045
15046         rm -rf $DIR/$tdir
15047 }
15048 run_test 300d "check default stripe under striped directory"
15049
15050 test_300e() {
15051         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15052                 skip "Need MDS version at least 2.7.55" && return
15053         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15054         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15055         local stripe_count
15056         local file
15057
15058         mkdir -p $DIR/$tdir
15059
15060         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir ||
15061                 error "set striped dir error"
15062
15063         touch $DIR/$tdir/striped_dir/a
15064         touch $DIR/$tdir/striped_dir/b
15065         touch $DIR/$tdir/striped_dir/c
15066
15067         mkdir $DIR/$tdir/striped_dir/dir_a
15068         mkdir $DIR/$tdir/striped_dir/dir_b
15069         mkdir $DIR/$tdir/striped_dir/dir_c
15070
15071         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir/stp_a ||
15072                 error "set striped adir under striped dir error"
15073
15074         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir/stp_b ||
15075                 error "set striped bdir under striped dir error"
15076
15077         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir/stp_c ||
15078                 error "set striped cdir under striped dir error"
15079
15080         mrename $DIR/$tdir/striped_dir/dir_a $DIR/$tdir/striped_dir/dir_b ||
15081                 error "rename dir under striped dir fails"
15082
15083         mrename $DIR/$tdir/striped_dir/stp_a $DIR/$tdir/striped_dir/stp_b ||
15084                 error "rename dir under different stripes fails"
15085
15086         mrename $DIR/$tdir/striped_dir/a $DIR/$tdir/striped_dir/c ||
15087                 error "rename file under striped dir should succeed"
15088
15089         mrename $DIR/$tdir/striped_dir/dir_b $DIR/$tdir/striped_dir/dir_c ||
15090                 error "rename dir under striped dir should succeed"
15091
15092         rm -rf $DIR/$tdir
15093 }
15094 run_test 300e "check rename under striped directory"
15095
15096 test_300f() {
15097         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15098                 skip "Need MDS version at least 2.7.55" && return
15099         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15100         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15101         local stripe_count
15102         local file
15103
15104         rm -rf $DIR/$tdir
15105         mkdir -p $DIR/$tdir
15106
15107         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir ||
15108                 error "set striped dir error"
15109
15110         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir1 ||
15111                 error "set striped dir error"
15112
15113         touch $DIR/$tdir/striped_dir/a
15114         mkdir $DIR/$tdir/striped_dir/dir_a
15115         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir/stp_a ||
15116                 error "create striped dir under striped dir fails"
15117
15118         touch $DIR/$tdir/striped_dir1/b
15119         mkdir $DIR/$tdir/striped_dir1/dir_b
15120         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir/stp_b ||
15121                 error "create striped dir under striped dir fails"
15122
15123         mrename $DIR/$tdir/striped_dir/dir_a $DIR/$tdir/striped_dir1/dir_b ||
15124                 error "rename dir under different striped dir should fail"
15125
15126         mrename $DIR/$tdir/striped_dir/stp_a $DIR/$tdir/striped_dir1/stp_b ||
15127                 error "rename striped dir under diff striped dir should fail"
15128
15129         mrename $DIR/$tdir/striped_dir/a $DIR/$tdir/striped_dir1/a ||
15130                 error "rename file under diff striped dirs fails"
15131
15132         rm -rf $DIR/$tdir
15133 }
15134 run_test 300f "check rename cross striped directory"
15135
15136 test_300_check_default_striped_dir()
15137 {
15138         local dirname=$1
15139         local default_count=$2
15140         local default_index=$3
15141         local stripe_count
15142         local stripe_index
15143         local dir_stripe_index
15144         local dir
15145
15146         echo "checking $dirname $default_count $default_index"
15147         $LFS setdirstripe -D -c $default_count -i $default_index \
15148                                 -t all_char $DIR/$tdir/$dirname ||
15149                 error "set default stripe on striped dir error"
15150         stripe_count=$($LFS getdirstripe -D -c $DIR/$tdir/$dirname)
15151         [ $stripe_count -eq $default_count ] ||
15152                 error "expect $default_count get $stripe_count for $dirname"
15153
15154         stripe_index=$($LFS getdirstripe -D -i $DIR/$tdir/$dirname)
15155         [ $stripe_index -eq $default_index ] ||
15156                 error "expect $default_index get $stripe_index for $dirname"
15157
15158         mkdir $DIR/$tdir/$dirname/{test1,test2,test3,test4} ||
15159                                                 error "create dirs failed"
15160
15161         createmany -o $DIR/$tdir/$dirname/f- 10 || error "create files failed"
15162         unlinkmany $DIR/$tdir/$dirname/f- 10    || error "unlink files failed"
15163         for dir in $(find $DIR/$tdir/$dirname/*); do
15164                 stripe_count=$($LFS getdirstripe -c $dir)
15165                 [ $stripe_count -eq $default_count ] ||
15166                 [ $stripe_count -eq 0 -o $default_count -eq 1 ] ||
15167                 error "stripe count $default_count != $stripe_count for $dir"
15168
15169                 stripe_index=$($LFS getdirstripe -i $dir)
15170                 [ $default_index -eq -1 -o $stripe_index -eq $default_index ] ||
15171                         error "$stripe_index != $default_index for $dir"
15172
15173                 #check default stripe
15174                 stripe_count=$($LFS getdirstripe -D -c $dir)
15175                 [ $stripe_count -eq $default_count ] ||
15176                 error "default count $default_count != $stripe_count for $dir"
15177
15178                 stripe_index=$($LFS getdirstripe -D -i $dir)
15179                 [ $stripe_index -eq $default_index ] ||
15180                 error "default index $default_index != $stripe_index for $dir"
15181         done
15182         rmdir $DIR/$tdir/$dirname/* || error "rmdir failed"
15183 }
15184
15185 test_300g() {
15186         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15187                 skip "Need MDS version at least 2.7.55" && return
15188         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15189         local dir
15190         local stripe_count
15191         local stripe_index
15192
15193         mkdir $DIR/$tdir
15194         mkdir $DIR/$tdir/normal_dir
15195
15196         #Checking when client cache stripe index
15197         $LFS setdirstripe -c$MDSCOUNT $DIR/$tdir/striped_dir
15198         $LFS setdirstripe -D -i1 $DIR/$tdir/striped_dir ||
15199                 error "create striped_dir failed"
15200
15201         mkdir $DIR/$tdir/striped_dir/dir1 ||
15202                 error "create dir1 fails"
15203         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir/dir1)
15204         [ $stripe_index -eq 1 ] ||
15205                 error "dir1 expect 1 got $stripe_index"
15206
15207         $LFS setdirstripe -i2 $DIR/$tdir/striped_dir/dir2 ||
15208                 error "create dir2 fails"
15209         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir/dir2)
15210         [ $stripe_index -eq 2 ] ||
15211                 error "dir2 expect 2 got $stripe_index"
15212
15213         #check default stripe count/stripe index
15214         test_300_check_default_striped_dir normal_dir $MDSCOUNT 1
15215         test_300_check_default_striped_dir normal_dir 1 0
15216         test_300_check_default_striped_dir normal_dir 2 1
15217         test_300_check_default_striped_dir normal_dir 2 -1
15218
15219         #delete default stripe information
15220         echo "delete default stripeEA"
15221         $LFS setdirstripe -d $DIR/$tdir/normal_dir ||
15222                 error "set default stripe on striped dir error"
15223
15224         mkdir -p $DIR/$tdir/normal_dir/{test1,test2,test3,test4}
15225         for dir in $(find $DIR/$tdir/normal_dir/*); do
15226                 stripe_count=$($LFS getdirstripe -c $dir)
15227                 [ $stripe_count -eq 0 ] ||
15228                         error "expect 1 get $stripe_count for $dir"
15229                 stripe_index=$($LFS getdirstripe -i $dir)
15230                 [ $stripe_index -eq 0 ] ||
15231                         error "expect 0 get $stripe_index for $dir"
15232         done
15233 }
15234 run_test 300g "check default striped directory for normal directory"
15235
15236 test_300h() {
15237         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15238                 skip "Need MDS version at least 2.7.55" && return
15239         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15240         local dir
15241         local stripe_count
15242
15243         mkdir $DIR/$tdir
15244         $LFS setdirstripe -i 0 -c $MDSCOUNT -t all_char \
15245                                         $DIR/$tdir/striped_dir ||
15246                 error "set striped dir error"
15247
15248         test_300_check_default_striped_dir striped_dir $MDSCOUNT 1
15249         test_300_check_default_striped_dir striped_dir 1 0
15250         test_300_check_default_striped_dir striped_dir 2 1
15251         test_300_check_default_striped_dir striped_dir 2 -1
15252
15253         #delete default stripe information
15254         $LFS setdirstripe -d $DIR/$tdir/striped_dir ||
15255                 error "set default stripe on striped dir error"
15256
15257         mkdir -p $DIR/$tdir/striped_dir/{test1,test2,test3,test4}
15258         for dir in $(find $DIR/$tdir/striped_dir/*); do
15259                 stripe_count=$($LFS getdirstripe -c $dir)
15260                 [ $stripe_count -eq 0 ] ||
15261                         error "expect 1 get $stripe_count for $dir"
15262         done
15263 }
15264 run_test 300h "check default striped directory for striped directory"
15265
15266 test_300i() {
15267         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15268                 skip "Need MDS version at least 2.7.55" && return
15269         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15270         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15271         local stripe_count
15272         local file
15273
15274         mkdir $DIR/$tdir
15275
15276         $LFS setdirstripe -i 0 -c$MDSCOUNT -t all_char $DIR/$tdir/striped_dir ||
15277                 error "set striped dir error"
15278
15279         createmany -o $DIR/$tdir/striped_dir/f- 10 ||
15280                 error "create files under striped dir failed"
15281
15282         $LFS setdirstripe -i0 -c$MDSCOUNT -H all_char $DIR/$tdir/hashdir ||
15283                 error "set striped hashdir error"
15284
15285         $LFS setdirstripe -i0 -c$MDSCOUNT -H all_char $DIR/$tdir/hashdir/d0 ||
15286                 error "create dir0 under hash dir failed"
15287         $LFS setdirstripe -i0 -c$MDSCOUNT -H fnv_1a_64 $DIR/$tdir/hashdir/d1 ||
15288                 error "create dir1 under hash dir failed"
15289
15290         # unfortunately, we need to umount to clear dir layout cache for now
15291         # once we fully implement dir layout, we can drop this
15292         umount_client $MOUNT || error "umount failed"
15293         mount_client $MOUNT || error "mount failed"
15294
15295         $LFS find -H fnv_1a_64 $DIR/$tdir/hashdir
15296         local dircnt=$($LFS find -H fnv_1a_64 $DIR/$tdir/hashdir | wc -l)
15297         [ $dircnt -eq 1 ] || error "lfs find striped dir got:$dircnt,except:1"
15298
15299         #set the stripe to be unknown hash type
15300         #define OBD_FAIL_UNKNOWN_LMV_STRIPE     0x1901
15301         $LCTL set_param fail_loc=0x1901
15302         for ((i = 0; i < 10; i++)); do
15303                 $CHECKSTAT -t file $DIR/$tdir/striped_dir/f-$i ||
15304                         error "stat f-$i failed"
15305                 rm $DIR/$tdir/striped_dir/f-$i || error "unlink f-$i failed"
15306         done
15307
15308         touch $DIR/$tdir/striped_dir/f0 &&
15309                 error "create under striped dir with unknown hash should fail"
15310
15311         $LCTL set_param fail_loc=0
15312
15313         umount_client $MOUNT || error "umount failed"
15314         mount_client $MOUNT || error "mount failed"
15315
15316         return 0
15317 }
15318 run_test 300i "client handle unknown hash type striped directory"
15319
15320 test_300j() {
15321         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15322         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15323                 skip "Need MDS version at least 2.7.55" && return
15324         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15325         local stripe_count
15326         local file
15327
15328         mkdir $DIR/$tdir
15329
15330         #define OBD_FAIL_SPLIT_UPDATE_REC       0x1702
15331         $LCTL set_param fail_loc=0x1702
15332         $LFS setdirstripe -i 0 -c$MDSCOUNT -t all_char $DIR/$tdir/striped_dir ||
15333                 error "set striped dir error"
15334
15335         createmany -o $DIR/$tdir/striped_dir/f- 10 ||
15336                 error "create files under striped dir failed"
15337
15338         $LCTL set_param fail_loc=0
15339
15340         rm -rf $DIR/$tdir || error "unlink striped dir fails"
15341
15342         return 0
15343 }
15344 run_test 300j "test large update record"
15345
15346 test_300k() {
15347         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15348                 skip "Need MDS version at least 2.7.55" && return
15349         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15350         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15351         local stripe_count
15352         local file
15353
15354         mkdir $DIR/$tdir
15355
15356         #define OBD_FAIL_LARGE_STRIPE   0x1703
15357         $LCTL set_param fail_loc=0x1703
15358         $LFS setdirstripe -i 0 -c512 $DIR/$tdir/striped_dir ||
15359                 error "set striped dir error"
15360         $LCTL set_param fail_loc=0
15361
15362         $LFS getdirstripe $DIR/$tdir/striped_dir ||
15363                 error "getstripeddir fails"
15364         rm -rf $DIR/$tdir/striped_dir ||
15365                 error "unlink striped dir fails"
15366
15367         return 0
15368 }
15369 run_test 300k "test large striped directory"
15370
15371 test_300l() {
15372         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15373                 skip "Need MDS version at least 2.7.55" && return
15374         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15375         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15376         local stripe_index
15377
15378         test_mkdir -p $DIR/$tdir/striped_dir
15379         chown $RUNAS_ID $DIR/$tdir/striped_dir ||
15380                         error "chown $RUNAS_ID failed"
15381         $LFS setdirstripe -i 1 -D $DIR/$tdir/striped_dir ||
15382                 error "set default striped dir failed"
15383
15384         #define OBD_FAIL_MDS_STALE_DIR_LAYOUT    0x158
15385         $LCTL set_param fail_loc=0x80000158
15386         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir || error "create dir fails"
15387
15388         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir/test_dir)
15389         [ $stripe_index -eq 1 ] ||
15390                 error "expect 1 get $stripe_index for $dir"
15391 }
15392 run_test 300l "non-root user to create dir under striped dir with stale layout"
15393
15394 test_300m() {
15395         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15396                 skip "Need MDS version at least 2.7.55" && return
15397         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15398         [ $MDSCOUNT -ge 2 ] && skip "Only for single MDT" && return
15399
15400         mkdir -p $DIR/$tdir/striped_dir
15401         $LFS setdirstripe -D -c 1 $DIR/$tdir/striped_dir ||
15402                 error "set default stripes dir error"
15403
15404         mkdir $DIR/$tdir/striped_dir/a || error "mkdir a fails"
15405
15406         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir/a)
15407         [ $stripe_count -eq 0 ] ||
15408                         error "expect 0 get $stripe_count for a"
15409
15410         $LFS setdirstripe -D -c 2 $DIR/$tdir/striped_dir ||
15411                 error "set default stripes dir error"
15412
15413         mkdir $DIR/$tdir/striped_dir/b || error "mkdir b fails"
15414
15415         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir/b)
15416         [ $stripe_count -eq 0 ] ||
15417                         error "expect 0 get $stripe_count for b"
15418
15419         $LFS setdirstripe -D -c1 -i2 $DIR/$tdir/striped_dir ||
15420                 error "set default stripes dir error"
15421
15422         mkdir $DIR/$tdir/striped_dir/c &&
15423                 error "default stripe_index is invalid, mkdir c should fails"
15424
15425         rm -rf $DIR/$tdir || error "rmdir fails"
15426 }
15427 run_test 300m "setstriped directory on single MDT FS"
15428
15429 cleanup_300n() {
15430         local list=$(comma_list $(mdts_nodes))
15431
15432         trap 0
15433         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
15434 }
15435
15436 test_300n() {
15437         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15438                 skip "Need MDS version at least 2.7.55" && return
15439         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15440         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15441         remote_mds_nodsh && skip "remote MDS with nodsh" && return
15442
15443         local stripe_index
15444         local list=$(comma_list $(mdts_nodes))
15445
15446         trap cleanup_300n RETURN EXIT
15447         mkdir -p $DIR/$tdir
15448         chmod 777 $DIR/$tdir
15449         $RUNAS $LFS setdirstripe -i0 -c$MDSCOUNT \
15450                                 $DIR/$tdir/striped_dir > /dev/null 2>&1 &&
15451                 error "create striped dir succeeds with gid=0"
15452
15453         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=-1
15454         $RUNAS $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir ||
15455                 error "create striped dir fails with gid=-1"
15456
15457         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
15458         $RUNAS $LFS setdirstripe -i 1 -c$MDSCOUNT -D \
15459                                 $DIR/$tdir/striped_dir > /dev/null 2>&1 &&
15460                 error "set default striped dir succeeds with gid=0"
15461
15462
15463         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=-1
15464         $RUNAS $LFS setdirstripe -i 1 -c$MDSCOUNT -D $DIR/$tdir/striped_dir ||
15465                 error "set default striped dir fails with gid=-1"
15466
15467
15468         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
15469         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir ||
15470                                         error "create test_dir fails"
15471         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir1 ||
15472                                         error "create test_dir1 fails"
15473         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir2 ||
15474                                         error "create test_dir2 fails"
15475         cleanup_300n
15476 }
15477 run_test 300n "non-root user to create dir under striped dir with default EA"
15478
15479 test_300o() {
15480         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15481                 skip "Need MDS version at least 2.7.55" && return
15482         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15483         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15484         local numfree1
15485         local numfree2
15486
15487         mkdir -p $DIR/$tdir
15488
15489         numfree1=$(lctl get_param -n mdc.*MDT0000*.filesfree)
15490         numfree2=$(lctl get_param -n mdc.*MDT0001*.filesfree)
15491         if [ $numfree1 -lt 66000 -o $numfree2 -lt 66000 ]; then
15492                 skip "not enough free inodes $numfree1 $numfree2"
15493                 return
15494         fi
15495
15496         numfree1=$(lctl get_param -n mdc.*MDT0000-mdc-*.kbytesfree)
15497         numfree2=$(lctl get_param -n mdc.*MDT0001-mdc-*.kbytesfree)
15498         if [ $numfree1 -lt 300000 -o $numfree2 -lt 300000 ]; then
15499                 skip "not enough free space $numfree1 $numfree2"
15500                 return
15501         fi
15502
15503         $LFS setdirstripe -c2 $DIR/$tdir/striped_dir ||
15504                 error "setdirstripe fails"
15505
15506         createmany -d $DIR/$tdir/striped_dir/d 131000 ||
15507                 error "create dirs fails"
15508
15509         $LCTL set_param ldlm.namespaces.*mdc-*.lru_size=0
15510         ls $DIR/$tdir/striped_dir > /dev/null ||
15511                 error "ls striped dir fails"
15512         unlinkmany -d $DIR/$tdir/striped_dir/d 131000 ||
15513                 error "unlink big striped dir fails"
15514 }
15515 run_test 300o "unlink big sub stripe(> 65000 subdirs)"
15516
15517 test_300p() {
15518         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15519         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15520         remote_mds_nodsh && skip "remote MDS with nodsh" && return
15521
15522         mkdir -p $DIR/$tdir
15523
15524         #define OBD_FAIL_OUT_ENOSPC     0x1704
15525         do_facet mds2 lctl set_param fail_loc=0x80001704
15526         $LFS setdirstripe -c2 $DIR/$tdir/bad_striped_dir > /dev/null 2>&1 &&
15527                         error "create striped directory should fail"
15528
15529         [ -e $DIR/$tdir/bad_striped_dir ] && error "striped dir exists"
15530
15531         $LFS setdirstripe -c2 $DIR/$tdir/bad_striped_dir
15532         true
15533 }
15534 run_test 300p "create striped directory without space"
15535
15536 test_300q() {
15537         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15538         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15539
15540         local fd=$(free_fd)
15541         local cmd="exec $fd<$tdir"
15542         cd $DIR
15543         $LFS mkdir -c $MDSCOUNT $tdir || error "create $tdir fails"
15544         eval $cmd
15545         cmd="exec $fd<&-"
15546         trap "eval $cmd" EXIT
15547         cd $tdir || error "cd $tdir fails"
15548         rmdir  ../$tdir || error "rmdir $tdir fails"
15549         mkdir local_dir && error "create dir succeeds"
15550         $LFS setdirstripe -i1 remote_dir && error "create remote dir succeeds"
15551         eval $cmd
15552         return 0
15553 }
15554 run_test 300q "create remote directory under orphan directory"
15555
15556 prepare_remote_file() {
15557         mkdir $DIR/$tdir/src_dir ||
15558                 error "create remote source failed"
15559
15560         cp /etc/hosts $DIR/$tdir/src_dir/a || error
15561         touch $DIR/$tdir/src_dir/a
15562
15563         $LFS mkdir -i 1 $DIR/$tdir/tgt_dir ||
15564                 error "create remote target dir failed"
15565
15566         touch $DIR/$tdir/tgt_dir/b
15567
15568         mrename $DIR/$tdir/src_dir/a $DIR/$tdir/tgt_dir/b ||
15569                 error "rename dir cross MDT failed!"
15570
15571         $CHECKSTAT -t file $DIR/$tdir/src_dir/a &&
15572                 error "src_child still exists after rename"
15573
15574         $CHECKSTAT -t file $DIR/$tdir/tgt_dir/b ||
15575                 error "missing file(a) after rename"
15576
15577         diff /etc/hosts $DIR/$tdir/tgt_dir/b ||
15578                 error "diff after rename"
15579 }
15580
15581 test_310a() {
15582         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 4 MDTs" && return
15583         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15584         local remote_file=$DIR/$tdir/tgt_dir/b
15585
15586         mkdir -p $DIR/$tdir
15587
15588         prepare_remote_file || error "prepare remote file failed"
15589
15590         #open-unlink file
15591         $OPENUNLINK $remote_file $remote_file || error
15592         $CHECKSTAT -a $remote_file || error
15593 }
15594 run_test 310a "open unlink remote file"
15595
15596 test_310b() {
15597         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 4 MDTs" && return
15598         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15599         local remote_file=$DIR/$tdir/tgt_dir/b
15600
15601         mkdir -p $DIR/$tdir
15602
15603         prepare_remote_file || error "prepare remote file failed"
15604
15605         ln $remote_file $DIR/$tfile || error "link failed for remote file"
15606         $MULTIOP $DIR/$tfile Ouc || error "mulitop failed"
15607         $CHECKSTAT -t file $remote_file || error "check file failed"
15608 }
15609 run_test 310b "unlink remote file with multiple links while open"
15610
15611 test_310c() {
15612         [[ $MDSCOUNT -lt 4 ]] && skip "needs >= 4 MDTs" && return
15613         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15614         local remote_file=$DIR/$tdir/tgt_dir/b
15615
15616         mkdir -p $DIR/$tdir
15617
15618         prepare_remote_file || error "prepare remote file failed"
15619
15620         ln $remote_file $DIR/$tfile || error "link failed for remote file"
15621         multiop_bg_pause $remote_file O_uc ||
15622                         error "mulitop failed for remote file"
15623         MULTIPID=$!
15624         $MULTIOP $DIR/$tfile Ouc
15625         kill -USR1 $MULTIPID
15626         wait $MULTIPID
15627 }
15628 run_test 310c "open-unlink remote file with multiple links"
15629
15630 #LU-4825
15631 test_311() {
15632         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.54) ] &&
15633                 skip "lustre < 2.8.54 does not contain LU-4825 fix" && return
15634         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15635         remote_mds_nodsh && skip "remote MDS with nodsh" && return
15636
15637         local old_iused=$($LFS df -i | grep OST0000 | awk '{ print $3 }')
15638
15639         mkdir -p $DIR/$tdir
15640         $SETSTRIPE -i 0 -c 1 $DIR/$tdir
15641         createmany -o $DIR/$tdir/$tfile. 1000
15642
15643         # statfs data is not real time, let's just calculate it
15644         old_iused=$((old_iused + 1000))
15645
15646         local count=$(do_facet $SINGLEMDS "lctl get_param -n \
15647                         osp.*OST0000*MDT0000.create_count")
15648         local max_count=$(do_facet $SINGLEMDS "lctl get_param -n \
15649                                 osp.*OST0000*MDT0000.max_create_count")
15650         for idx in $(seq $MDSCOUNT); do
15651                 do_facet mds$idx "lctl set_param -n \
15652                         osp.*OST0000*MDT000?.max_create_count=0"
15653         done
15654
15655         $SETSTRIPE -i 0 $DIR/$tdir/$tfile || error "setstripe failed"
15656         local index=$($GETSTRIPE -i $DIR/$tdir/$tfile)
15657         [ $index -ne 0 ] || error "$tfile stripe index is 0"
15658
15659         unlinkmany $DIR/$tdir/$tfile. 1000
15660
15661         for idx in $(seq $MDSCOUNT); do
15662                 do_facet mds$idx "lctl set_param -n \
15663                         osp.*OST0000*MDT000?.max_create_count=$max_count"
15664                 do_facet mds$idx "lctl set_param -n \
15665                         osp.*OST0000*MDT000?.create_count=$count"
15666         done
15667
15668         local new_iused
15669         for i in $(seq 120); do
15670                 new_iused=$($LFS df -i | grep OST0000 | awk '{ print $3 }')
15671                 # system may be too busy to destroy all objs in time, use
15672                 # a somewhat small value to not fail autotest
15673                 [ $((old_iused - new_iused)) -gt 400 ] && break
15674                 sleep 1
15675         done
15676
15677         echo "waited $i sec, old Iused $old_iused, new Iused $new_iused"
15678         [ $((old_iused - new_iused)) -gt 400 ] ||
15679                 error "objs not destroyed after unlink"
15680 }
15681 run_test 311 "disable OSP precreate, and unlink should destroy objs"
15682
15683 zfs_oid_to_objid()
15684 {
15685         local ost=$1
15686         local objid=$2
15687
15688         local vdevdir=$(dirname $(facet_vdevice $ost))
15689         local cmd="$ZDB -e -p $vdevdir -dddd $(facet_device $ost)"
15690         local zfs_zapid=$(do_facet $ost $cmd |
15691                           grep -w "/O/0/d$((objid%32))" -C 5 |
15692                           awk '/Object/{getline; print $1}')
15693         local zfs_objid=$(do_facet $ost $cmd $zfs_zapid |
15694                           awk "/$objid = /"'{printf $3}')
15695
15696         echo $zfs_objid
15697 }
15698
15699 zfs_object_blksz() {
15700         local ost=$1
15701         local objid=$2
15702
15703         local vdevdir=$(dirname $(facet_vdevice $ost))
15704         local cmd="$ZDB -e -p $vdevdir -dddd $(facet_device $ost)"
15705         local blksz=$(do_facet $ost $cmd $objid |
15706                       awk '/dblk/{getline; printf $4}')
15707
15708         case "${blksz: -1}" in
15709                 k|K) blksz=$((${blksz:0:$((${#blksz} - 1))}*1024)) ;;
15710                 m|M) blksz=$((${blksz:0:$((${#blksz} - 1))}*1024*1024)) ;;
15711                 *) ;;
15712         esac
15713
15714         echo $blksz
15715 }
15716
15717 test_312() { # LU-4856
15718         remote_ost_nodsh && skip "remote OST with nodsh" && return
15719
15720         [ $(facet_fstype ost1) = "zfs" ] ||
15721                 { skip "the test only applies to zfs" && return; }
15722
15723         local max_blksz=$(do_facet ost1 \
15724                           $ZFS get -p recordsize $(facet_device ost1) |
15725                           awk '!/VALUE/{print $3}')
15726
15727         # to make life a little bit easier
15728         $LFS mkdir -c 1 -i 0 $DIR/$tdir
15729         $LFS setstripe -c 1 -i 0 $DIR/$tdir
15730
15731         local tf=$DIR/$tdir/$tfile
15732         touch $tf
15733         local oid=$($LFS getstripe $tf | awk '/obdidx/{getline; print $2}')
15734
15735         # Get ZFS object id
15736         local zfs_objid=$(zfs_oid_to_objid ost1 $oid)
15737
15738         # block size change by sequential over write
15739         local blksz
15740         for ((bs=4096; bs <= max_blksz; bs <<= 2)); do
15741                 dd if=/dev/zero of=$tf bs=$bs count=1 oflag=sync conv=notrunc
15742
15743                 blksz=$(zfs_object_blksz ost1 $zfs_objid)
15744                 [ $blksz -eq $bs ] || error "blksz error: $blksz, expected: $bs"
15745         done
15746         rm -f $tf
15747
15748         # block size change by sequential append write
15749         dd if=/dev/zero of=$tf bs=4K count=1 oflag=sync conv=notrunc
15750         oid=$($LFS getstripe $tf | awk '/obdidx/{getline; print $2}')
15751         zfs_objid=$(zfs_oid_to_objid ost1 $oid)
15752
15753         for ((count = 1; count < $((max_blksz / 4096)); count *= 2)); do
15754                 dd if=/dev/zero of=$tf bs=4K count=$count seek=$count \
15755                         oflag=sync conv=notrunc
15756
15757                 blksz=$(zfs_object_blksz ost1 $zfs_objid)
15758                 blksz=$((blksz / 8192)) # in 2*4K unit
15759                 [ $blksz -eq $count ] ||
15760                         error "blksz error(in 8k): $blksz, expected: $count"
15761         done
15762         rm -f $tf
15763
15764         # random write
15765         touch $tf
15766         oid=$($LFS getstripe $tf | awk '/obdidx/{getline; print $2}')
15767         zfs_objid=$(zfs_oid_to_objid ost1 $oid)
15768
15769         dd if=/dev/zero of=$tf bs=8K count=1 oflag=sync conv=notrunc
15770         blksz=$(zfs_object_blksz ost1 $zfs_objid)
15771         [ $blksz -eq 8192 ] || error "blksz error: $blksz, expected: 8k"
15772
15773         dd if=/dev/zero of=$tf bs=64K count=1 oflag=sync conv=notrunc seek=128
15774         blksz=$(zfs_object_blksz ost1 $zfs_objid)
15775         [ $blksz -eq 65536 ] || error "blksz error: $blksz, expected: 64k"
15776
15777         dd if=/dev/zero of=$tf bs=1M count=1 oflag=sync conv=notrunc
15778         blksz=$(zfs_object_blksz ost1 $zfs_objid)
15779         [ $blksz -eq 65536 ] || error "rewrite error: $blksz, expected: 64k"
15780 }
15781 run_test 312 "make sure ZFS adjusts its block size by write pattern"
15782
15783 test_313() {
15784         remote_ost_nodsh && skip "remote OST with nodsh" && return
15785
15786         local file=$DIR/$tfile
15787         rm -f $file
15788         $SETSTRIPE -c 1 -i 0 $file || error "setstripe failed"
15789
15790         # define OBD_FAIL_TGT_RCVD_EIO           0x720
15791         do_facet ost1 "$LCTL set_param fail_loc=0x720"
15792         dd if=/dev/zero of=$file bs=4096 oflag=direct count=1 &&
15793                 error "write should failed"
15794         do_facet ost1 "$LCTL set_param fail_loc=0"
15795         rm -f $file
15796 }
15797 run_test 313 "io should fail after last_rcvd update fail"
15798
15799 test_fake_rw() {
15800         local read_write=$1
15801         if [ "$read_write" = "write" ]; then
15802                 local dd_cmd="dd if=/dev/zero of=$DIR/$tfile"
15803         elif [ "$read_write" = "read" ]; then
15804                 local dd_cmd="dd of=/dev/null if=$DIR/$tfile"
15805         else
15806                 error "argument error"
15807         fi
15808
15809         # turn off debug for performance testing
15810         local saved_debug=$($LCTL get_param -n debug)
15811         $LCTL set_param debug=0
15812
15813         $SETSTRIPE -c 1 -i 0 $DIR/$tfile
15814
15815         # get ost1 size - lustre-OST0000
15816         local ost1_avail_size=$($LFS df | awk /${ost1_svc}/'{ print $4 }')
15817         local blocks=$((ost1_avail_size/2/1024)) # half avail space by megabytes
15818         [ $blocks -gt 1000 ] && blocks=1000 # 1G in maximum
15819
15820         if [ "$read_write" = "read" ]; then
15821                 truncate -s $(expr 1048576 \* $blocks) $DIR/$tfile
15822         fi
15823
15824         local start_time=$(date +%s.%N)
15825         $dd_cmd bs=1M count=$blocks oflag=sync ||
15826                 error "real dd $read_write error"
15827         local duration=$(bc <<< "$(date +%s.%N) - $start_time")
15828
15829         if [ "$read_write" = "write" ]; then
15830                 rm -f $DIR/$tfile
15831         fi
15832
15833         # define OBD_FAIL_OST_FAKE_RW           0x238
15834         do_facet ost1 $LCTL set_param fail_loc=0x238
15835
15836         local start_time=$(date +%s.%N)
15837         $dd_cmd bs=1M count=$blocks oflag=sync ||
15838                 error "fake dd $read_write error"
15839         local duration_fake=$(bc <<< "$(date +%s.%N) - $start_time")
15840
15841         if [ "$read_write" = "write" ]; then
15842                 # verify file size
15843                 cancel_lru_locks osc
15844                 $CHECKSTAT -t file -s $((blocks * 1024 * 1024)) $DIR/$tfile ||
15845                         error "$tfile size not $blocks MB"
15846         fi
15847         do_facet ost1 $LCTL set_param fail_loc=0
15848
15849         echo "fake $read_write $duration_fake vs. normal $read_write" \
15850                 "$duration in seconds"
15851         [ $(bc <<< "$duration_fake < $duration") -eq 1 ] ||
15852                 error_not_in_vm "fake write is slower"
15853
15854         $LCTL set_param -n debug="$saved_debug"
15855         rm -f $DIR/$tfile
15856 }
15857 test_399a() { # LU-7655 for OST fake write
15858         remote_ost_nodsh && skip "remote OST with nodsh" && return
15859
15860         test_fake_rw write
15861 }
15862 run_test 399a "fake write should not be slower than normal write"
15863
15864 test_399b() { # LU-8726 for OST fake read
15865         remote_ost_nodsh && skip "remote OST with nodsh" && return
15866
15867         if [ "$(facet_fstype ost1)" != "ldiskfs" ]; then
15868                 skip "only for ldiskfs" && return 0
15869         fi
15870         test_fake_rw read
15871 }
15872 run_test 399b "fake read should not be slower than normal read"
15873
15874 test_400a() { # LU-1606, was conf-sanity test_74
15875         local extra_flags=''
15876         local out=$TMP/$tfile
15877         local prefix=/usr/include/lustre
15878         local prog
15879
15880         if ! which $CC > /dev/null 2>&1; then
15881                 skip_env "$CC is not installed"
15882                 return 0
15883         fi
15884
15885         if ! [[ -d $prefix ]]; then
15886                 # Assume we're running in tree and fixup the include path.
15887                 extra_flags+=" -I$LUSTRE/../libcfs/include"
15888                 extra_flags+=" -I$LUSTRE/include"
15889                 extra_flags+=" -L$LUSTRE/utils"
15890         fi
15891
15892         for prog in $LUSTRE_TESTS_API_DIR/*.c; do
15893                 $CC -Wall -Werror $extra_flags -llustreapi -o $out $prog ||
15894                         error "client api broken"
15895         done
15896         rm -f $out
15897 }
15898 run_test 400a "Lustre client api program can compile and link"
15899
15900 test_400b() { # LU-1606, LU-5011
15901         local header
15902         local out=$TMP/$tfile
15903         local prefix=/usr/include/lustre
15904
15905         # We use a hard coded prefix so that this test will not fail
15906         # when run in tree. There are headers in lustre/include/lustre/
15907         # that are not packaged (like lustre_idl.h) and have more
15908         # complicated include dependencies (like config.h and lnet/types.h).
15909         # Since this test about correct packaging we just skip them when
15910         # they don't exist (see below) rather than try to fixup cppflags.
15911
15912         if ! which $CC > /dev/null 2>&1; then
15913                 skip_env "$CC is not installed"
15914                 return 0
15915         fi
15916
15917         for header in $prefix/*.h; do
15918                 if ! [[ -f "$header" ]]; then
15919                         continue
15920                 fi
15921
15922                 if [[ "$(basename $header)" == liblustreapi.h ]]; then
15923                         continue # liblustreapi.h is deprecated.
15924                 fi
15925
15926                 $CC -Wall -Werror -include $header -c -x c /dev/null -o $out ||
15927                         error "cannot compile '$header'"
15928         done
15929         rm -f $out
15930 }
15931 run_test 400b "packaged headers can be compiled"
15932
15933 test_401a() { #LU-7437
15934         local printf_arg=$(find -printf 2>&1 | grep "unrecognized:")
15935         [ -n "$printf_arg" ] && skip_env "find does not support -printf" &&
15936                 return
15937         #count the number of parameters by "list_param -R"
15938         local params=$($LCTL list_param -R '*' 2>/dev/null | wc -l)
15939         #count the number of parameters by listing proc files
15940         local proc_dirs=$(eval \ls -d $proc_regexp 2>/dev/null)
15941         echo "proc_dirs='$proc_dirs'"
15942         [ -n "$proc_dirs" ] || error "no proc_dirs on $HOSTNAME"
15943         local procs=$(find -L $proc_dirs -mindepth 1 -printf '%P\n' 2>/dev/null|
15944                       sort -u | wc -l)
15945
15946         [ $params -eq $procs ] ||
15947                 error "found $params parameters vs. $procs proc files"
15948
15949         # test the list_param -D option only returns directories
15950         params=$($LCTL list_param -R -D '*' 2>/dev/null | wc -l)
15951         #count the number of parameters by listing proc directories
15952         procs=$(find -L $proc_dirs -mindepth 1 -type d -printf '%P\n' 2>/dev/null |
15953                 sort -u | wc -l)
15954
15955         [ $params -eq $procs ] ||
15956                 error "found $params parameters vs. $procs proc files"
15957 }
15958 run_test 401a "Verify if 'lctl list_param -R' can list parameters recursively"
15959
15960 test_401b() {
15961         local save=$($LCTL get_param -n jobid_var)
15962         local tmp=testing
15963
15964         $LCTL set_param foo=bar jobid_var=$tmp bar=baz &&
15965                 error "no error returned when setting bad parameters"
15966
15967         local jobid_new=$($LCTL get_param -n foe jobid_var baz)
15968         [[ "$jobid_new" == "$tmp" ]] || error "jobid tmp $jobid_new != $tmp"
15969
15970         $LCTL set_param -n fog=bam jobid_var=$save bat=fog
15971         local jobid_old=$($LCTL get_param -n foe jobid_var bag)
15972         [[ "$jobid_old" == "$save" ]] || error "jobid new $jobid_old != $save"
15973 }
15974 run_test 401b "Verify 'lctl {get,set}_param' continue after error"
15975
15976 test_401c() {
15977         local jobid_var_old=$($LCTL get_param -n jobid_var)
15978         local jobid_var_new
15979
15980         $LCTL set_param jobid_var= &&
15981                 error "no error returned for 'set_param a='"
15982
15983         jobid_var_new=$($LCTL get_param -n jobid_var)
15984         [[ "$jobid_var_old" == "$jobid_var_new" ]] ||
15985                 error "jobid_var was changed by setting without value"
15986
15987         $LCTL set_param jobid_var &&
15988                 error "no error returned for 'set_param a'"
15989
15990         jobid_var_new=$($LCTL get_param -n jobid_var)
15991         [[ "$jobid_var_old" == "$jobid_var_new" ]] ||
15992                 error "jobid_var was changed by setting without value"
15993 }
15994 run_test 401c "Verify 'lctl set_param' without value fails in either format."
15995
15996 test_401d() {
15997         local jobid_var_old=$($LCTL get_param -n jobid_var)
15998         local jobid_var_new
15999         local new_value="foo=bar"
16000
16001         $LCTL set_param jobid_var=$new_value ||
16002                 error "'set_param a=b' did not accept a value containing '='"
16003
16004         jobid_var_new=$($LCTL get_param -n jobid_var)
16005         [[ "$jobid_var_new" == "$new_value" ]] ||
16006                 error "'set_param a=b' failed on a value containing '='"
16007
16008         # Reset the jobid_var to test the other format
16009         $LCTL set_param jobid_var=$jobid_var_old
16010         jobid_var_new=$($LCTL get_param -n jobid_var)
16011         [[ "$jobid_var_new" == "$jobid_var_old" ]] ||
16012                 error "failed to reset jobid_var"
16013
16014         $LCTL set_param jobid_var $new_value ||
16015                 error "'set_param a b' did not accept a value containing '='"
16016
16017         jobid_var_new=$($LCTL get_param -n jobid_var)
16018         [[ "$jobid_var_new" == "$new_value" ]] ||
16019                 error "'set_param a b' failed on a value containing '='"
16020
16021         $LCTL set_param jobid_var $jobid_var_old
16022         jobid_var_new=$($LCTL get_param -n jobid_var)
16023         [[ "$jobid_var_new" == "$jobid_var_old" ]] ||
16024                 error "failed to reset jobid_var"
16025 }
16026 run_test 401d "Verify 'lctl set_param' accepts values containing '='"
16027
16028 test_402() {
16029         local server_version=$(lustre_version_code $SINGLEMDS)
16030         [[ $server_version -ge $(version_code 2.7.66) ]] ||
16031         [[ $server_version -ge $(version_code 2.7.18.4) &&
16032                 $server_version -lt $(version_code 2.7.50) ]] ||
16033         [[ $server_version -ge $(version_code 2.7.2) &&
16034                 $server_version -lt $(version_code 2.7.11) ]] ||
16035                 { skip "Need MDS version 2.7.2+ or 2.7.18.4+ or 2.7.66+";
16036                         return; }
16037         remote_mds_nodsh && skip "remote MDS with nodsh" && return
16038         $LFS setdirstripe -i 0 $DIR/$tdir || error "setdirstripe -i 0 failed"
16039 #define OBD_FAIL_MDS_FLD_LOOKUP 0x15c
16040         do_facet mds1 "lctl set_param fail_loc=0x8000015c"
16041         touch $DIR/$tdir/$tfile && error "touch should fail with ENOENT" ||
16042                 echo "Touch failed - OK"
16043 }
16044 run_test 402 "Return ENOENT to lod_generate_and_set_lovea"
16045
16046 test_403() {
16047         local file1=$DIR/$tfile.1
16048         local file2=$DIR/$tfile.2
16049         local tfile=$TMP/$tfile
16050
16051         rm -f $file1 $file2 $tfile
16052
16053         touch $file1
16054         ln $file1 $file2
16055
16056         # 30 sec OBD_TIMEOUT in ll_getattr()
16057         # right before populating st_nlink
16058         $LCTL set_param fail_loc=0x80001409
16059         stat -c %h $file1 > $tfile &
16060
16061         # create an alias, drop all locks and reclaim the dentry
16062         < $file2
16063         cancel_lru_locks mdc
16064         cancel_lru_locks osc
16065         sysctl -w vm.drop_caches=2
16066
16067         wait
16068
16069         [ `cat $tfile` -gt 0 ] || error "wrong nlink count: `cat $tfile`"
16070
16071         rm -f $tfile $file1 $file2
16072 }
16073 run_test 403 "i_nlink should not drop to zero due to aliasing"
16074
16075 test_404() { # LU-6601
16076         local server_version=$(lustre_version_code $SINGLEMDS)
16077         [[ $server_version -ge $(version_code 2.8.53) ]] ||
16078                 { skip "Need server version newer than 2.8.52"; return 0; }
16079
16080         remote_mds_nodsh && skip "remote MDS with nodsh" && return
16081         local mosps=$(do_facet $SINGLEMDS $LCTL dl |
16082                 awk '/osp .*-osc-MDT/ { print $4}')
16083
16084         local osp
16085         for osp in $mosps; do
16086                 echo "Deactivate: " $osp
16087                 do_facet $SINGLEMDS $LCTL --device %$osp deactivate
16088                 local stat=$(do_facet $SINGLEMDS $LCTL dl |
16089                         awk -vp=$osp '$4 == p { print $2 }')
16090                 [ $stat = IN ] || {
16091                         do_facet $SINGLEMDS $LCTL dl | grep -w $osp
16092                         error "deactivate error"
16093                 }
16094                 echo "Activate: " $osp
16095                 do_facet $SINGLEMDS $LCTL --device %$osp activate
16096                 local stat=$(do_facet $SINGLEMDS $LCTL dl |
16097                         awk -vp=$osp '$4 == p { print $2 }')
16098                 [ $stat = UP ] || {
16099                         do_facet $SINGLEMDS $LCTL dl | grep -w $osp
16100                         error "activate error"
16101                 }
16102         done
16103 }
16104 run_test 404 "validate manual {de}activated works properly for OSPs"
16105
16106 test_405() {
16107         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.92) ] &&
16108                 skip "Layout swap lock is not supported" && return
16109
16110         check_swap_layouts_support && return 0
16111
16112         test_mkdir -p $DIR/$tdir
16113         swap_lock_test -d $DIR/$tdir ||
16114                 error "One layout swap locked test failed"
16115 }
16116 run_test 405 "Various layout swap lock tests"
16117
16118 test_406() {
16119         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
16120         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
16121         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
16122         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
16123         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.50) ] &&
16124                 skip "Need MDS version at least 2.8.50" && return
16125
16126         local def_stripenr=$($GETSTRIPE -c $MOUNT)
16127         local def_stripe_size=$($GETSTRIPE -S $MOUNT)
16128         local def_stripe_offset=$($GETSTRIPE -i $MOUNT)
16129         local def_pool=$($GETSTRIPE -p $MOUNT)
16130
16131         local test_pool=$TESTNAME
16132         pool_add $test_pool || error "pool_add failed"
16133         pool_add_targets $test_pool 0 $(($OSTCOUNT - 1)) 1 ||
16134                 error "pool_add_targets failed"
16135
16136         # parent set default stripe count only, child will stripe from both
16137         # parent and fs default
16138         $SETSTRIPE -c 1 -i 1 -S $((def_stripe_size * 2)) -p $test_pool $MOUNT ||
16139                 error "setstripe $MOUNT failed"
16140         $LFS mkdir -c $MDSCOUNT $DIR/$tdir || error "mkdir $tdir failed"
16141         $SETSTRIPE -c $OSTCOUNT $DIR/$tdir || error "setstripe $tdir failed"
16142         for i in $(seq 10); do
16143                 local f=$DIR/$tdir/$tfile.$i
16144                 touch $f || error "touch failed"
16145                 local count=$($GETSTRIPE -c $f)
16146                 [ $count -eq $OSTCOUNT ] ||
16147                         error "$f stripe count $count != $OSTCOUNT"
16148                 local offset=$($GETSTRIPE -i $f)
16149                 [ $offset -eq 1 ] || error "$f stripe offset $offset != 1"
16150                 local size=$($GETSTRIPE -S $f)
16151                 [ $size -eq $((def_stripe_size * 2)) ] ||
16152                         error "$f stripe size $size != $((def_stripe_size * 2))"
16153                 local pool=$($GETSTRIPE -p $f)
16154                 [ $pool == $test_pool ] || error "$f pool $pool != $test_pool"
16155         done
16156
16157         # change fs default striping, delete parent default striping, now child
16158         # will stripe from new fs default striping only
16159         $SETSTRIPE -c 1 -S $def_stripe_size -i 0 $MOUNT ||
16160                 error "change $MOUNT default stripe failed"
16161         $SETSTRIPE -c 0 $DIR/$tdir || error "delete $tdir default stripe failed"
16162         for i in $(seq 11 20); do
16163                 local f=$DIR/$tdir/$tfile.$i
16164                 touch $f || error "touch $f failed"
16165                 local count=$($GETSTRIPE -c $f)
16166                 [ $count -eq 1 ] || error "$f stripe count $count != 1"
16167                 local offset=$($GETSTRIPE -i $f)
16168                 [ $offset -eq 0 ] || error "$f stripe offset $offset != 0"
16169                 local size=$($GETSTRIPE -S $f)
16170                 [ $size -eq $def_stripe_size ] ||
16171                         error "$f stripe size $size != $def_stripe_size"
16172                 local pool=$($GETSTRIPE -p $f)
16173                 [ "#$pool" == "#" ] || error "$f pool $pool is set"
16174
16175         done
16176
16177         unlinkmany $DIR/$tdir/$tfile. 1 20
16178
16179         # restore FS default striping
16180         if [ -z $def_pool ]; then
16181                 $SETSTRIPE -c $def_stripenr -S $def_stripe_size \
16182                         -i $def_stripe_offset $MOUNT ||
16183                         error "restore default striping failed"
16184         else
16185                 $SETSTRIPE -c $def_stripenr -S $def_stripe_size -p $def_pool \
16186                         -i $def_stripe_offset $MOUNT ||
16187                         error "restore default striping with $def_pool failed"
16188         fi
16189
16190         local f=$DIR/$tdir/$tfile
16191         pool_remove_all_targets $test_pool $f
16192         pool_remove $test_pool $f
16193 }
16194 run_test 406 "DNE support fs default striping"
16195
16196 test_407() {
16197         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
16198         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.55) ]] &&
16199                 skip "Need MDS version at least 2.8.55" && return
16200         remote_mds_nodsh && skip "remote MDS with nodsh" && return
16201
16202         $LFS mkdir -i 0 -c 1 $DIR/$tdir.0 ||
16203                 error "$LFS mkdir -i 0 -c 1 $tdir.0 failed"
16204         $LFS mkdir -i 1 -c 1 $DIR/$tdir.1 ||
16205                 error "$LFS mkdir -i 1 -c 1 $tdir.1 failed"
16206         touch $DIR/$tdir.0/$tfile.0 || error "touch $tdir.0/$tfile.0 failed"
16207
16208         #define OBD_FAIL_DT_TXN_STOP    0x2019
16209         for idx in $(seq $MDSCOUNT); do
16210                 do_facet mds$idx "lctl set_param fail_loc=0x2019"
16211         done
16212         $LFS mkdir -c 2 $DIR/$tdir && error "$LFS mkdir -c 2 $tdir should fail"
16213         mv $DIR/$tdir.0/$tfile.0 $DIR/$tdir.1/$tfile.1 &&
16214                 error "mv $tdir.0/$tfile.0 $tdir.1/$tfile.1 should fail"
16215         true
16216 }
16217 run_test 407 "transaction fail should cause operation fail"
16218
16219 test_408() {
16220         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 oflag=direct
16221
16222         #define OBD_FAIL_OSC_BRW_PREP_REQ2        0x40a
16223         lctl set_param fail_loc=0x8000040a
16224         # let ll_prepare_partial_page() fail
16225         dd if=/dev/zero of=$DIR/$tfile bs=2048 count=1 conv=notrunc || true
16226
16227         rm -f $DIR/$tfile
16228
16229         # create at least 100 unused inodes so that
16230         # shrink_icache_memory(0) should not return 0
16231         touch $DIR/$tfile-{0..100}
16232         rm -f $DIR/$tfile-{0..100}
16233         sync
16234
16235         echo 2 > /proc/sys/vm/drop_caches
16236 }
16237 run_test 408 "drop_caches should not hang due to page leaks"
16238
16239 test_409()
16240 {
16241         [ $MDSCOUNT -lt 2 ] &&
16242                 skip "We need at least 2 MDTs for this test" && return
16243
16244         check_mount_and_prep
16245
16246         mkdir -p $DIR/$tdir || error "(0) Fail to mkdir"
16247         $LFS mkdir -i 1 -c 2 $DIR/$tdir/foo || error "(1) Fail to mkdir"
16248         touch $DIR/$tdir/guard || error "(2) Fail to create"
16249
16250         local PREFIX=$(str_repeat 'A' 128)
16251         echo "Create 1K hard links start at $(date)"
16252         createmany -l $DIR/$tdir/guard $DIR/$tdir/foo/${PREFIX}_ 1000 ||
16253                 error "(3) Fail to hard link"
16254
16255         echo "Links count should be right although linkEA overflow"
16256         stat $DIR/$tdir/guard || error "(4) Fail to stat"
16257         local linkcount=$(stat --format=%h $DIR/$tdir/guard)
16258         [ $linkcount -eq 1001 ] ||
16259                 error "(5) Unexpected hard links count: $linkcount"
16260
16261         echo "List all links start at $(date)"
16262         ls -l $DIR/$tdir/foo > /dev/null ||
16263                 error "(6) Fail to list $DIR/$tdir/foo"
16264
16265         echo "Unlink hard links start at $(date)"
16266         unlinkmany $DIR/$tdir/foo/${PREFIX}_ 1000 ||
16267                 error "(7) Fail to unlink"
16268 }
16269 run_test 409 "Large amount of cross-MDTs hard links on the same file"
16270
16271 prep_801() {
16272         [[ $(lustre_version_code mds1) -lt $(version_code 2.9.55) ]] ||
16273         [[ $(lustre_version_code ost1) -lt $(version_code 2.9.55) ]] &&
16274                 skip "Need server version at least 2.9.55" & exit 0
16275         start_full_debug_logging
16276 }
16277
16278 post_801() {
16279         stop_full_debug_logging
16280 }
16281
16282 test_801a() {
16283         prep_801
16284
16285         #define OBD_FAIL_BARRIER_DELAY          0x2202
16286         do_facet mgs $LCTL set_param fail_val=3 fail_loc=0x2202
16287         do_facet mgs $LCTL barrier_freeze $FSNAME 10 &
16288
16289         sleep 1
16290         local b_status=$(do_facet mgs $LCTL barrier_stat $FSNAME |
16291                                awk '/The barrier for/ { print $7 }')
16292         [ "$b_status" = "'freezing_p1'" ] ||
16293                 error "(1) unexpected barrier status $b_status"
16294
16295         do_facet mgs $LCTL set_param fail_val=0 fail_loc=0
16296         wait
16297         b_status=$(do_facet mgs $LCTL barrier_stat $FSNAME |
16298                          awk '/The barrier for/ { print $7 }')
16299         [ "$b_status" = "'frozen'" ] ||
16300                 error "(2) unexpected barrier status $b_status"
16301
16302         local expired=$(do_facet mgs $LCTL barrier_stat $FSNAME |
16303                         awk '/will be expired/ { print $7 }')
16304         echo "sleep $((expired + 3)) seconds, then the barrier will be expired"
16305         sleep $((expired + 3))
16306
16307         b_status=$(do_facet mgs $LCTL barrier_stat $FSNAME |
16308                          awk '/The barrier for/ { print $7 }')
16309         [ "$b_status" = "'expired'" ] ||
16310                 error "(3) unexpected barrier status $b_status"
16311
16312         do_facet mgs $LCTL barrier_freeze $FSNAME 10 ||
16313                 error "(4) fail to freeze barrier"
16314
16315         b_status=$(do_facet mgs $LCTL barrier_stat $FSNAME |
16316                          awk '/The barrier for/ { print $7 }')
16317         [ "$b_status" = "'frozen'" ] ||
16318                 error "(5) unexpected barrier status $b_status"
16319
16320         #define OBD_FAIL_BARRIER_DELAY          0x2202
16321         do_facet mgs $LCTL set_param fail_val=3 fail_loc=0x2202
16322         do_facet mgs $LCTL barrier_thaw $FSNAME &
16323
16324         sleep 1
16325         b_status=$(do_facet mgs $LCTL barrier_stat $FSNAME |
16326                          awk '/The barrier for/ { print $7 }')
16327         [ "$b_status" = "'thawing'" ] ||
16328                 error "(6) unexpected barrier status $b_status"
16329
16330         do_facet mgs $LCTL set_param fail_val=0 fail_loc=0
16331         wait
16332         b_status=$(do_facet mgs $LCTL barrier_stat $FSNAME |
16333                          awk '/The barrier for/ { print $7 }')
16334         [ "$b_status" = "'thawed'" ] ||
16335                 error "(7) unexpected barrier status $b_status"
16336
16337         #define OBD_FAIL_BARRIER_FAILURE        0x2203
16338         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2203
16339         do_facet mgs $LCTL barrier_freeze $FSNAME
16340
16341         b_status=$(do_facet mgs $LCTL barrier_stat $FSNAME |
16342                                awk '/The barrier for/ { print $7 }')
16343         [ "$b_status" = "'failed'" ] ||
16344                 error "(8) unexpected barrier status $b_status"
16345
16346         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
16347         do_facet mgs $LCTL barrier_thaw $FSNAME
16348
16349         post_801
16350 }
16351 run_test 801a "write barrier user interfaces and stat machine"
16352
16353 test_801b() {
16354         prep_801
16355
16356         mkdir $DIR/$tdir || error "(1) fail to mkdir"
16357         createmany -d $DIR/$tdir/d 6 || "(2) fail to mkdir"
16358         touch $DIR/$tdir/d2/f10 || error "(3) fail to touch"
16359         touch $DIR/$tdir/d3/f11 || error "(4) fail to touch"
16360         touch $DIR/$tdir/d4/f12 || error "(5) fail to touch"
16361
16362         cancel_lru_locks mdc
16363
16364         # 180 seconds should be long enough
16365         do_facet mgs $LCTL barrier_freeze $FSNAME 180
16366
16367         local b_status=$(do_facet mgs $LCTL barrier_stat $FSNAME |
16368                                awk '/The barrier for/ { print $7 }')
16369         [ "$b_status" = "'frozen'" ] ||
16370                 error "(6) unexpected barrier status $b_status"
16371
16372         mkdir $DIR/$tdir/d0/d10 &
16373         mkdir_pid=$!
16374
16375         touch $DIR/$tdir/d1/f13 &
16376         touch_pid=$!
16377
16378         ln $DIR/$tdir/d2/f10 $DIR/$tdir/d2/f14 &
16379         ln_pid=$!
16380
16381         mv $DIR/$tdir/d3/f11 $DIR/$tdir/d3/f15 &
16382         mv_pid=$!
16383
16384         rm -f $DIR/$tdir/d4/f12 &
16385         rm_pid=$!
16386
16387         stat $DIR/$tdir/d5 || error "(7) stat should succeed"
16388
16389         # To guarantee taht the 'stat' is not blocked
16390         b_status=$(do_facet mgs $LCTL barrier_stat $FSNAME |
16391                          awk '/The barrier for/ { print $7 }')
16392         [ "$b_status" = "'frozen'" ] ||
16393                 error "(8) unexpected barrier status $b_status"
16394
16395         # let above commands to run at background
16396         sleep 5
16397
16398         ps -p $mkdir_pid || error "(9) mkdir should be blocked"
16399         ps -p $touch_pid || error "(10) touch should be blocked"
16400         ps -p $ln_pid || error "(11) link should be blocked"
16401         ps -p $mv_pid || error "(12) rename should be blocked"
16402         ps -p $rm_pid || error "(13) unlink should be blocked"
16403
16404         b_status=$(do_facet mgs $LCTL barrier_stat $FSNAME |
16405                          awk '/The barrier for/ { print $7 }')
16406         [ "$b_status" = "'frozen'" ] ||
16407                 error "(14) unexpected barrier status $b_status"
16408
16409         do_facet mgs $LCTL barrier_thaw $FSNAME
16410         b_status=$(do_facet mgs $LCTL barrier_stat $FSNAME |
16411                          awk '/The barrier for/ { print $7 }')
16412         [ "$b_status" = "'thawed'" ] ||
16413                 error "(15) unexpected barrier status $b_status"
16414
16415         wait $mkdir_pid || error "(16) mkdir should succeed"
16416         wait $touch_pid || error "(17) touch should succeed"
16417         wait $ln_pid || error "(18) link should succeed"
16418         wait $mv_pid || error "(19) rename should succeed"
16419         wait $rm_pid || error "(20) unlink should succeed"
16420
16421         post_801
16422 }
16423 run_test 801b "modification will be blocked by write barrier"
16424
16425 test_801c() {
16426         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
16427
16428         prep_801
16429
16430         stop mds2 || error "(1) Fail to stop mds2"
16431
16432         do_facet mgs $LCTL barrier_freeze $FSNAME 30
16433
16434         local b_status=$(do_facet mgs $LCTL barrier_stat $FSNAME |
16435                                awk '/The barrier for/ { print $7 }')
16436         [ "$b_status" = "'expired'" -o "$b_status" = "'failed'" ] || {
16437                 do_facet mgs $LCTL barrier_thaw $FSNAME
16438                 error "(2) unexpected barrier status $b_status"
16439         }
16440
16441         do_facet mgs $LCTL barrier_rescan $FSNAME ||
16442                 error "(3) Fail to rescan barrier bitmap"
16443
16444         do_facet mgs $LCTL barrier_freeze $FSNAME 10
16445
16446         b_status=$(do_facet mgs $LCTL barrier_stat $FSNAME |
16447                          awk '/The barrier for/ { print $7 }')
16448         [ "$b_status" = "'frozen'" ] ||
16449                 error "(4) unexpected barrier status $b_status"
16450
16451         do_facet mgs $LCTL barrier_thaw $FSNAME
16452         b_status=$(do_facet mgs $LCTL barrier_stat $FSNAME |
16453                          awk '/The barrier for/ { print $7 }')
16454         [ "$b_status" = "'thawed'" ] ||
16455                 error "(5) unexpected barrier status $b_status"
16456
16457         local devname=$(mdsdevname 2)
16458
16459         start mds2 $devname $MDS_MOUNT_OPTS || error "(6) Fail to start mds2"
16460
16461         do_facet mgs $LCTL barrier_rescan $FSNAME ||
16462                 error "(7) Fail to rescan barrier bitmap"
16463
16464         post_801
16465 }
16466 run_test 801c "rescan barrier bitmap"
16467
16468 saved_MGS_MOUNT_OPTS=$MGS_MOUNT_OPTS
16469 saved_MDS_MOUNT_OPTS=$MDS_MOUNT_OPTS
16470 saved_OST_MOUNT_OPTS=$OST_MOUNT_OPTS
16471
16472 cleanup_802() {
16473         trap 0
16474
16475         stopall
16476         MGS_MOUNT_OPTS=$saved_MGS_MOUNT_OPTS
16477         MDS_MOUNT_OPTS=$saved_MDS_MOUNT_OPTS
16478         OST_MOUNT_OPTS=$saved_OST_MOUNT_OPTS
16479         setupall
16480 }
16481
16482 test_802() {
16483
16484         [[ $(lustre_version_code mds1) -lt $(version_code 2.9.55) ]] ||
16485         [[ $(lustre_version_code ost1) -lt $(version_code 2.9.55) ]] &&
16486                 skip "Need server version at least 2.9.55" & exit 0
16487
16488         mkdir $DIR/$tdir || error "(1) fail to mkdir"
16489
16490         cp $LUSTRE/tests/test-framework.sh $DIR/$tdir/ ||
16491                 error "(2) Fail to copy"
16492
16493         trap cleanup_802 EXIT
16494
16495         # sync by force before remount as readonly
16496         sync; sync_all_data; sleep 3; sync_all_data
16497
16498         stopall
16499
16500         MGS_MOUNT_OPTS=$(csa_add "$MGS_MOUNT_OPTS" -o rdonly_dev)
16501         MDS_MOUNT_OPTS=$(csa_add "$MDS_MOUNT_OPTS" -o rdonly_dev)
16502         OST_MOUNT_OPTS=$(csa_add "$OST_MOUNT_OPTS" -o rdonly_dev)
16503
16504         echo "Mount the server as read only"
16505         setupall server_only || error "(3) Fail to start servers"
16506
16507         echo "Mount client without ro should fail"
16508         mount_client $MOUNT &&
16509                 error "(4) Mount client without 'ro' should fail"
16510
16511         echo "Mount client with ro should succeed"
16512         mount_client $MOUNT ro ||
16513                 error "(5) Mount client with 'ro' should succeed"
16514
16515         echo "Modify should be refused"
16516         touch $DIR/$tdir/guard && error "(6) Touch should fail under ro mode"
16517
16518         echo "Read should be allowed"
16519         diff $LUSTRE/tests/test-framework.sh $DIR/$tdir/test-framework.sh ||
16520                 error "(7) Read should succeed under ro mode"
16521
16522         cleanup_802
16523 }
16524 run_test 802 "simulate readonly device"
16525
16526 #
16527 # tests that do cleanup/setup should be run at the end
16528 #
16529
16530 test_900() {
16531         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
16532         local ls
16533         #define OBD_FAIL_MGC_PAUSE_PROCESS_LOG   0x903
16534         $LCTL set_param fail_loc=0x903
16535
16536         cancel_lru_locks MGC
16537
16538         FAIL_ON_ERROR=true cleanup
16539         FAIL_ON_ERROR=true setup
16540 }
16541 run_test 900 "umount should not race with any mgc requeue thread"
16542
16543 complete $SECONDS
16544 [ -f $EXT2_DEV ] && rm $EXT2_DEV || true
16545 check_and_cleanup_lustre
16546 if [ "$I_MOUNTED" != "yes" ]; then
16547         lctl set_param debug="$OLDDEBUG" 2> /dev/null || true
16548 fi
16549 exit_status