Whamcloud - gitweb
5e0cf1affad1d7c6466d551012fc100c456d939f
[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: LU-9693 LU-6493 LU-9693 3561 5188
12 ALWAYS_EXCEPT="                42a    42b      42c     45   68b $SANITY_EXCEPT"
13 # UPDATE THE COMMENT ABOVE WITH BUG NUMBERS WHEN CHANGING ALWAYS_EXCEPT!
14
15 # skipped tests: LU-2036 LU-8411 LU-9096 LU-9054
16 ALWAYS_EXCEPT="  76      407     253     312 $ALWAYS_EXCEPT"
17
18 # Check Grants after these tests
19 GRANT_CHECK_LIST="$GRANT_CHECK_LIST 42a 42b 42c 42d 42e 63a 63b 64a 64b 64c"
20
21 is_sles11()                                             # LU-4341
22 {
23         if [ -r /etc/SuSE-release ]
24         then
25                 local vers=$(grep VERSION /etc/SuSE-release | awk '{print $3}')
26                 local patchlev=$(grep PATCHLEVEL /etc/SuSE-release |
27                         awk '{ print $3 }')
28                 if [ $vers -eq 11 ] && [ $patchlev -ge 3 ]; then
29                         return 0
30                 fi
31         fi
32         return 1
33 }
34
35 if is_sles11; then                                      # LU-4341
36         ALWAYS_EXCEPT="$ALWAYS_EXCEPT 170"
37 fi
38
39 SRCDIR=$(cd $(dirname $0); echo $PWD)
40 export PATH=$PATH:/sbin
41
42 TMP=${TMP:-/tmp}
43
44 CC=${CC:-cc}
45 CHECKSTAT=${CHECKSTAT:-"checkstat -v"}
46 CREATETEST=${CREATETEST:-createtest}
47 LFS=${LFS:-lfs}
48 LFIND=${LFIND:-"$LFS find"}
49 LVERIFY=${LVERIFY:-ll_dirstripe_verify}
50 LCTL=${LCTL:-lctl}
51 OPENFILE=${OPENFILE:-openfile}
52 OPENUNLINK=${OPENUNLINK:-openunlink}
53 export MULTIOP=${MULTIOP:-multiop}
54 READS=${READS:-"reads"}
55 MUNLINK=${MUNLINK:-munlink}
56 SOCKETSERVER=${SOCKETSERVER:-socketserver}
57 SOCKETCLIENT=${SOCKETCLIENT:-socketclient}
58 MEMHOG=${MEMHOG:-memhog}
59 DIRECTIO=${DIRECTIO:-directio}
60 ACCEPTOR_PORT=${ACCEPTOR_PORT:-988}
61 STRIPES_PER_OBJ=-1
62 CHECK_GRANT=${CHECK_GRANT:-"yes"}
63 GRANT_CHECK_LIST=${GRANT_CHECK_LIST:-""}
64 export PARALLEL=${PARALLEL:-"no"}
65
66 export NAME=${NAME:-local}
67
68 SAVE_PWD=$PWD
69
70 CLEANUP=${CLEANUP:-:}
71 SETUP=${SETUP:-:}
72 TRACE=${TRACE:-""}
73 LUSTRE=${LUSTRE:-$(cd $(dirname $0)/..; echo $PWD)}
74 LUSTRE_TESTS_API_DIR=${LUSTRE_TESTS_API_DIR:-${LUSTRE}/tests/clientapi}
75 . $LUSTRE/tests/test-framework.sh
76 init_test_env $@
77 . ${CONFIG:=$LUSTRE/tests/cfg/${NAME}.sh}
78 init_logging
79
80 #                                  5          12          (min)"
81 [ "$SLOW" = "no" ] && EXCEPT_SLOW="27m 64b 68 71 115 300o"
82
83 if [ $(facet_fstype $SINGLEMDS) = "zfs" ]; then
84         # bug number for skipped test: LU-1957
85         ALWAYS_EXCEPT="$ALWAYS_EXCEPT  180"
86         #                                               13    (min)"
87         [ "$SLOW" = "no" ] && EXCEPT_SLOW="$EXCEPT_SLOW 51b"
88 fi
89
90 FAIL_ON_ERROR=false
91
92 cleanup() {
93         echo -n "cln.."
94         pgrep ll_sa > /dev/null && { echo "There are ll_sa thread not exit!"; exit 20; }
95         cleanupall ${FORCE} $* || { echo "FAILed to clean up"; exit 20; }
96 }
97 setup() {
98         echo -n "mnt.."
99         load_modules
100         setupall || exit 10
101         echo "done"
102 }
103
104 check_swap_layouts_support()
105 {
106         $LCTL get_param -n llite.*.sbi_flags | grep -q layout ||
107                 { skip "Does not support layout lock."; return 0; }
108         return 1
109 }
110
111 check_and_setup_lustre
112 DIR=${DIR:-$MOUNT}
113 assert_DIR
114
115 MDT0=$($LCTL get_param -n mdc.*.mds_server_uuid |
116         awk '{ gsub(/_UUID/,""); print $1 }' | head -n1)
117 MAXFREE=${MAXFREE:-$((200000 * $OSTCOUNT))}
118
119 [ -f $DIR/d52a/foo ] && chattr -a $DIR/d52a/foo
120 [ -f $DIR/d52b/foo ] && chattr -i $DIR/d52b/foo
121 rm -rf $DIR/[Rdfs][0-9]*
122
123 # $RUNAS_ID may get set incorrectly somewhere else
124 [ $UID -eq 0 -a $RUNAS_ID -eq 0 ] && error "\$RUNAS_ID set to 0, but \$UID is also 0!"
125
126 check_runas_id $RUNAS_ID $RUNAS_GID $RUNAS
127
128 build_test_filter
129
130 if [ "${ONLY}" = "MOUNT" ] ; then
131         echo "Lustre is up, please go on"
132         exit
133 fi
134
135 echo "preparing for tests involving mounts"
136 EXT2_DEV=${EXT2_DEV:-$TMP/SANITY.LOOP}
137 touch $EXT2_DEV
138 mke2fs -j -F $EXT2_DEV 8000 > /dev/null
139 echo # add a newline after mke2fs.
140
141 umask 077
142
143 OLDDEBUG=$(lctl get_param -n debug 2> /dev/null)
144 lctl set_param debug=-1 2> /dev/null || true
145 test_0a() {
146         touch $DIR/$tfile
147         $CHECKSTAT -t file $DIR/$tfile || error "$tfile is not a file"
148         rm $DIR/$tfile
149         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
150 }
151 run_test 0a "touch; rm ====================="
152
153 test_0b() {
154         chmod 0755 $DIR || error "chmod 0755 $DIR failed"
155         $CHECKSTAT -p 0755 $DIR || error "$DIR permission is not 0755"
156 }
157 run_test 0b "chmod 0755 $DIR ============================="
158
159 test_0c() {
160         $LCTL get_param mdc.*.import | grep "state: FULL" ||
161                 error "import not FULL"
162         $LCTL get_param mdc.*.import | grep "target: $FSNAME-MDT" ||
163                 error "bad target"
164 }
165 run_test 0c "check import proc ============================="
166
167 test_1() {
168         test_mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
169         test_mkdir -p $DIR/$tdir/d2 || error "mkdir $tdir/d2 failed"
170         test_mkdir $DIR/$tdir/d2 && error "we expect EEXIST, but not returned"
171         $CHECKSTAT -t dir $DIR/$tdir/d2 || error "$tdir/d2 is not a dir"
172         rmdir $DIR/$tdir/d2
173         rmdir $DIR/$tdir
174         $CHECKSTAT -a $DIR/$tdir || error "$tdir was not removed"
175 }
176 run_test 1 "mkdir; remkdir; rmdir =============================="
177
178 test_2() {
179         test_mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
180         touch $DIR/$tdir/$tfile || error "touch $tdir/$tfile failed"
181         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "$tdir/$tfile not a file"
182         rm -r $DIR/$tdir
183         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$file is not removed"
184 }
185 run_test 2 "mkdir; touch; rmdir; check file ===================="
186
187 test_3() {
188         test_mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
189         $CHECKSTAT -t dir $DIR/$tdir || error "$tdir is not a directory"
190         touch $DIR/$tdir/$tfile
191         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "$tdir/$tfile not a file"
192         rm -r $DIR/$tdir
193         $CHECKSTAT -a $DIR/$tdir || error "$tdir is not removed"
194 }
195 run_test 3 "mkdir; touch; rmdir; check dir ====================="
196
197 # LU-4471 - failed rmdir on remote directories still removes directory on MDT0
198 test_4() {
199         local MDTIDX=1
200
201         test_mkdir $DIR/$tdir ||
202                 error "Create remote directory failed"
203
204         touch $DIR/$tdir/$tfile ||
205                 error "Create file under remote directory failed"
206
207         rmdir $DIR/$tdir &&
208                 error "Expect error removing in-use dir $DIR/$tdir"
209
210         test -d $DIR/$tdir || error "Remote directory disappeared"
211
212         rm -rf $DIR/$tdir || error "remove remote dir error"
213 }
214 run_test 4 "mkdir; touch dir/file; rmdir; checkdir (expect error)"
215
216 test_5() {
217         test_mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
218         test_mkdir $DIR/$tdir/d2 || error "mkdir $tdir/d2 failed"
219         chmod 0707 $DIR/$tdir/d2 || error "chmod 0707 $tdir/d2 failed"
220         $CHECKSTAT -t dir -p 0707 $DIR/$tdir/d2 || error "$tdir/d2 not mode 707"
221         $CHECKSTAT -t dir $DIR/$tdir/d2 || error "$tdir/d2 is not a directory"
222 }
223 run_test 5 "mkdir .../d5 .../d5/d2; chmod .../d5/d2 ============"
224
225 test_6a() {
226         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
227         chmod 0666 $DIR/$tfile || error "chmod 0666 $tfile failed"
228         $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/$tfile ||
229                 error "$tfile does not have perm 0666 or UID $UID"
230         $RUNAS chmod 0444 $DIR/$tfile && error "chmod $tfile worked on UID $UID"
231         $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/$tfile ||
232                 error "$tfile should be 0666 and owned by UID $UID"
233 }
234 run_test 6a "touch f6a; chmod f6a; $RUNAS chmod f6a (should return error) =="
235
236 test_6c() {
237         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
238         touch $DIR/$tfile
239         chown $RUNAS_ID $DIR/$tfile || error "chown $RUNAS_ID $file failed"
240         $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/$tfile ||
241                 error "$tfile should be owned by UID $RUNAS_ID"
242         $RUNAS chown $UID $DIR/$tfile && error "chown $UID $file succeeded"
243         $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/$tfile ||
244                 error "$tfile should be owned by UID $RUNAS_ID"
245 }
246 run_test 6c "touch f6c; chown f6c; $RUNAS chown f6c (should return error) =="
247
248 test_6e() {
249         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
250         touch $DIR/$tfile
251         chgrp $RUNAS_ID $DIR/$tfile || error "chgrp $RUNAS_ID $file failed"
252         $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/$tfile ||
253                 error "$tfile should be owned by GID $UID"
254         $RUNAS chgrp $UID $DIR/$tfile && error "chgrp $UID $file succeeded"
255         $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/$tfile ||
256                 error "$tfile should be owned by UID $UID and GID $RUNAS_ID"
257 }
258 run_test 6e "touch f6e; chgrp f6e; $RUNAS chgrp f6e (should return error) =="
259
260 test_6g() {
261         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
262         test_mkdir $DIR/$tdir || error "mkdir $tfile failed"
263         chmod 777 $DIR/$tdir || error "chmod 0777 $tdir failed"
264         $RUNAS mkdir $DIR/$tdir/d || error "mkdir $tdir/d failed"
265         chmod g+s $DIR/$tdir/d || error "chmod g+s $tdir/d failed"
266         test_mkdir $DIR/$tdir/d/subdir || error "mkdir $tdir/d/subdir failed"
267         $CHECKSTAT -g \#$RUNAS_GID $DIR/$tdir/d/subdir ||
268                 error "$tdir/d/subdir should be GID $RUNAS_GID"
269         if [[ $MDSCOUNT -gt 1 ]]; then
270                 # check remote dir sgid inherite
271                 $LFS mkdir -i 0 $DIR/$tdir.local ||
272                         error "mkdir $tdir.local failed"
273                 chmod g+s $DIR/$tdir.local ||
274                         error "chmod $tdir.local failed"
275                 chgrp $RUNAS_GID $DIR/$tdir.local ||
276                         error "chgrp $tdir.local failed"
277                 $LFS mkdir -i 1 $DIR/$tdir.local/$tdir.remote ||
278                         error "mkdir $tdir.remote failed"
279                 $CHECKSTAT -g \#$RUNAS_GID $DIR/$tdir.local/$tdir.remote ||
280                         error "$tdir.remote should be owned by $UID.$RUNAS_ID"
281                 $CHECKSTAT -p 02755 $DIR/$tdir.local/$tdir.remote ||
282                         error "$tdir.remote should be mode 02755"
283         fi
284 }
285 run_test 6g "Is new dir in sgid dir inheriting group?"
286
287 test_6h() { # bug 7331
288         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
289         touch $DIR/$tfile || error "touch failed"
290         chown $RUNAS_ID:$RUNAS_GID $DIR/$tfile || error "initial chown failed"
291         $RUNAS -G$RUNAS_GID chown $RUNAS_ID:0 $DIR/$tfile &&
292                 error "chown $RUNAS_ID:0 $tfile worked as GID $RUNAS_GID"
293         $CHECKSTAT -t file -u \#$RUNAS_ID -g \#$RUNAS_GID $DIR/$tfile ||
294                 error "$tdir/$tfile should be UID $RUNAS_UID GID $RUNAS_GID"
295 }
296 run_test 6h "$RUNAS chown RUNAS_ID.0 .../f6h (should return error)"
297
298 test_7a() {
299         test_mkdir $DIR/$tdir
300         $MCREATE $DIR/$tdir/$tfile
301         chmod 0666 $DIR/$tdir/$tfile
302         $CHECKSTAT -t file -p 0666 $DIR/$tdir/$tfile ||
303                 error "$tdir/$tfile should be mode 0666"
304 }
305 run_test 7a "mkdir .../d7; mcreate .../d7/f; chmod .../d7/f ===="
306
307 test_7b() {
308         if [ ! -d $DIR/$tdir ]; then
309                 test_mkdir $DIR/$tdir
310         fi
311         $MCREATE $DIR/$tdir/$tfile
312         echo -n foo > $DIR/$tdir/$tfile
313         [ "$(cat $DIR/$tdir/$tfile)" = "foo" ] || error "$tdir/$tfile not 'foo'"
314         $CHECKSTAT -t file -s 3 $DIR/$tdir/$tfile || error "$tfile size not 3"
315 }
316 run_test 7b "mkdir .../d7; mcreate d7/f2; echo foo > d7/f2 ====="
317
318 test_8() {
319         test_mkdir $DIR/$tdir
320         touch $DIR/$tdir/$tfile
321         chmod 0666 $DIR/$tdir/$tfile
322         $CHECKSTAT -t file -p 0666 $DIR/$tdir/$tfile ||
323                 error "$tfile mode not 0666"
324 }
325 run_test 8 "mkdir .../d8; touch .../d8/f; chmod .../d8/f ======="
326
327 test_9() {
328         test_mkdir $DIR/$tdir
329         test_mkdir $DIR/$tdir/d2
330         test_mkdir $DIR/$tdir/d2/d3
331         $CHECKSTAT -t dir $DIR/$tdir/d2/d3 || error "$tdir/d2/d3 not a dir"
332 }
333 run_test 9 "mkdir .../d9 .../d9/d2 .../d9/d2/d3 ================"
334
335 test_10() {
336         test_mkdir $DIR/$tdir
337         test_mkdir $DIR/$tdir/d2
338         touch $DIR/$tdir/d2/$tfile
339         $CHECKSTAT -t file $DIR/$tdir/d2/$tfile ||
340                 error "$tdir/d2/$tfile not a file"
341 }
342 run_test 10 "mkdir .../d10 .../d10/d2; touch .../d10/d2/f ======"
343
344 test_11() {
345         test_mkdir $DIR/$tdir
346         test_mkdir $DIR/$tdir/d2
347         chmod 0666 $DIR/$tdir/d2
348         chmod 0705 $DIR/$tdir/d2
349         $CHECKSTAT -t dir -p 0705 $DIR/$tdir/d2 ||
350                 error "$tdir/d2 mode not 0705"
351 }
352 run_test 11 "mkdir .../d11 d11/d2; chmod .../d11/d2 ============"
353
354 test_12() {
355         test_mkdir $DIR/$tdir
356         touch $DIR/$tdir/$tfile
357         chmod 0666 $DIR/$tdir/$tfile
358         chmod 0654 $DIR/$tdir/$tfile
359         $CHECKSTAT -t file -p 0654 $DIR/$tdir/$tfile ||
360                 error "$tdir/d2 mode not 0654"
361 }
362 run_test 12 "touch .../d12/f; chmod .../d12/f .../d12/f ========"
363
364 test_13() {
365         test_mkdir $DIR/$tdir
366         dd if=/dev/zero of=$DIR/$tdir/$tfile count=10
367         >  $DIR/$tdir/$tfile
368         $CHECKSTAT -t file -s 0 $DIR/$tdir/$tfile ||
369                 error "$tdir/$tfile size not 0 after truncate"
370 }
371 run_test 13 "creat .../d13/f; dd .../d13/f; > .../d13/f ========"
372
373 test_14() {
374         test_mkdir $DIR/$tdir
375         touch $DIR/$tdir/$tfile
376         rm $DIR/$tdir/$tfile
377         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$tfile not removed"
378 }
379 run_test 14 "touch .../d14/f; rm .../d14/f; rm .../d14/f ======="
380
381 test_15() {
382         test_mkdir $DIR/$tdir
383         touch $DIR/$tdir/$tfile
384         mv $DIR/$tdir/$tfile $DIR/$tdir/${tfile}_2
385         $CHECKSTAT -t file $DIR/$tdir/${tfile}_2 ||
386                 error "$tdir/${tfile_2} not a file after rename"
387         rm $DIR/$tdir/${tfile}_2 || error "unlink failed after rename"
388 }
389 run_test 15 "touch .../d15/f; mv .../d15/f .../d15/f2 =========="
390
391 test_16() {
392         test_mkdir $DIR/$tdir
393         touch $DIR/$tdir/$tfile
394         rm -rf $DIR/$tdir/$tfile
395         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$tfile not removed"
396 }
397 run_test 16 "touch .../d16/f; rm -rf .../d16/f ================="
398
399 test_17a() {
400         test_mkdir -p $DIR/$tdir
401         touch $DIR/$tdir/$tfile
402         ln -s $DIR/$tdir/$tfile $DIR/$tdir/l-exist
403         ls -l $DIR/$tdir
404         $CHECKSTAT -l $DIR/$tdir/$tfile $DIR/$tdir/l-exist ||
405                 error "$tdir/l-exist not a symlink"
406         $CHECKSTAT -f -t f $DIR/$tdir/l-exist ||
407                 error "$tdir/l-exist not referencing a file"
408         rm -f $DIR/$tdir/l-exist
409         $CHECKSTAT -a $DIR/$tdir/l-exist || error "$tdir/l-exist not removed"
410 }
411 run_test 17a "symlinks: create, remove (real) =================="
412
413 test_17b() {
414         test_mkdir -p $DIR/$tdir
415         ln -s no-such-file $DIR/$tdir/l-dangle
416         ls -l $DIR/$tdir
417         $CHECKSTAT -l no-such-file $DIR/$tdir/l-dangle ||
418                 error "$tdir/l-dangle not referencing no-such-file"
419         $CHECKSTAT -fa $DIR/$tdir/l-dangle ||
420                 error "$tdir/l-dangle not referencing non-existent file"
421         rm -f $DIR/$tdir/l-dangle
422         $CHECKSTAT -a $DIR/$tdir/l-dangle || error "$tdir/l-dangle not removed"
423 }
424 run_test 17b "symlinks: create, remove (dangling) =============="
425
426 test_17c() { # bug 3440 - don't save failed open RPC for replay
427         test_mkdir -p $DIR/$tdir
428         ln -s foo $DIR/$tdir/$tfile
429         cat $DIR/$tdir/$tfile && error "opened non-existent symlink" || true
430 }
431 run_test 17c "symlinks: open dangling (should return error) ===="
432
433 test_17d() {
434         test_mkdir -p $DIR/$tdir
435         ln -s foo $DIR/$tdir/$tfile
436         touch $DIR/$tdir/$tfile || error "creating to new symlink"
437 }
438 run_test 17d "symlinks: create dangling ========================"
439
440 test_17e() {
441         test_mkdir -p $DIR/$tdir
442         local foo=$DIR/$tdir/$tfile
443         ln -s $foo $foo || error "create symlink failed"
444         ls -l $foo || error "ls -l failed"
445         ls $foo && error "ls not failed" || true
446 }
447 run_test 17e "symlinks: create recursive symlink (should return error) ===="
448
449 test_17f() {
450         test_mkdir -p $DIR/$tdir
451         ln -s 1234567890/2234567890/3234567890/4234567890 $DIR/$tdir/111
452         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890 $DIR/$tdir/222
453         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890 $DIR/$tdir/333
454         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890 $DIR/$tdir/444
455         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890/c234567890/d234567890/f234567890 $DIR/$tdir/555
456         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
457         ls -l  $DIR/$tdir
458 }
459 run_test 17f "symlinks: long and very long symlink name ========================"
460
461 # str_repeat(S, N) generate a string that is string S repeated N times
462 str_repeat() {
463         local s=$1
464         local n=$2
465         local ret=''
466         while [ $((n -= 1)) -ge 0 ]; do
467                 ret=$ret$s
468         done
469         echo $ret
470 }
471
472 # Long symlinks and LU-2241
473 test_17g() {
474         test_mkdir -p $DIR/$tdir
475         local TESTS="59 60 61 4094 4095"
476
477         # Fix for inode size boundary in 2.1.4
478         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.1.4) ] &&
479                 TESTS="4094 4095"
480
481         # Patch not applied to 2.2 or 2.3 branches
482         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
483         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.3.55) ] &&
484                 TESTS="4094 4095"
485
486         # skip long symlink name for rhel6.5.
487         # rhel6.5 has a limit (PATH_MAX - sizeof(struct filename))
488         grep -q '6.5' /etc/redhat-release &>/dev/null &&
489                 TESTS="59 60 61 4062 4063"
490
491         for i in $TESTS; do
492                 local SYMNAME=$(str_repeat 'x' $i)
493                 ln -s $SYMNAME $DIR/$tdir/f$i || error "failed $i-char symlink"
494                 readlink $DIR/$tdir/f$i || error "failed $i-char readlink"
495         done
496 }
497 run_test 17g "symlinks: really long symlink name and inode boundaries"
498
499 test_17h() { #bug 17378
500         remote_mds_nodsh && skip "remote MDS with nodsh" && return
501         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
502         local mdt_idx
503         test_mkdir -p $DIR/$tdir
504         if [[ $MDSCOUNT -gt 1 ]]; then
505                 mdt_idx=$($LFS getdirstripe -i $DIR/$tdir)
506         else
507                 mdt_idx=0
508         fi
509         $SETSTRIPE -c -1 $DIR/$tdir
510 #define OBD_FAIL_MDS_LOV_PREP_CREATE 0x141
511         do_facet mds$((mdt_idx + 1)) lctl set_param fail_loc=0x80000141
512         touch $DIR/$tdir/$tfile || true
513 }
514 run_test 17h "create objects: lov_free_memmd() doesn't lbug"
515
516 test_17i() { #bug 20018
517         remote_mds_nodsh && skip "remote MDS with nodsh" && return
518         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
519         test_mkdir -c1 $DIR/$tdir
520         local foo=$DIR/$tdir/$tfile
521         local mdt_idx
522         if [[ $MDSCOUNT -gt 1 ]]; then
523                 mdt_idx=$($LFS getdirstripe -i $DIR/$tdir)
524         else
525                 mdt_idx=0
526         fi
527         ln -s $foo $foo || error "create symlink failed"
528 #define OBD_FAIL_MDS_READLINK_EPROTO     0x143
529         do_facet mds$((mdt_idx + 1)) lctl set_param fail_loc=0x80000143
530         ls -l $foo && error "error not detected"
531         return 0
532 }
533 run_test 17i "don't panic on short symlink"
534
535 test_17k() { #bug 22301
536         [[ -z "$(which rsync 2>/dev/null)" ]] &&
537                 skip "no rsync command" && return 0
538         rsync --help | grep -q xattr ||
539                 skip_env "$(rsync --version | head -n1) does not support xattrs"
540         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return 0
541         test_mkdir -p $DIR/$tdir
542         test_mkdir -p $DIR/$tdir.new
543         touch $DIR/$tdir/$tfile
544         ln -s $DIR/$tdir/$tfile $DIR/$tdir/$tfile.lnk
545         rsync -av -X $DIR/$tdir/ $DIR/$tdir.new ||
546                 error "rsync failed with xattrs enabled"
547 }
548 run_test 17k "symlinks: rsync with xattrs enabled ========================="
549
550 test_17l() { # LU-279
551         [[ -z "$(which getfattr 2>/dev/null)" ]] &&
552                 skip "no getfattr command" && return 0
553         test_mkdir -p $DIR/$tdir
554         touch $DIR/$tdir/$tfile
555         ln -s $DIR/$tdir/$tfile $DIR/$tdir/$tfile.lnk
556         for path in "$DIR/$tdir" "$DIR/$tdir/$tfile" "$DIR/$tdir/$tfile.lnk"; do
557                 # -h to not follow symlinks. -m '' to list all the xattrs.
558                 # grep to remove first line: '# file: $path'.
559                 for xattr in `getfattr -hm '' $path 2>/dev/null | grep -v '^#'`;
560                 do
561                         lgetxattr_size_check $path $xattr ||
562                                 error "lgetxattr_size_check $path $xattr failed"
563                 done
564         done
565 }
566 run_test 17l "Ensure lgetxattr's returned xattr size is consistent ========"
567
568 # LU-1540
569 test_17m() {
570         local short_sym="0123456789"
571         local WDIR=$DIR/${tdir}m
572         local i
573
574         remote_mds_nodsh && skip "remote MDS with nodsh" && return
575         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
576         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.2.93) ] &&
577                 skip "MDS 2.2.0-2.2.93 do not NUL-terminate symlinks" && return
578
579         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
580                 skip "only for ldiskfs MDT" && return 0
581
582         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
583
584         test_mkdir -p $WDIR
585         long_sym=$short_sym
586         # create a long symlink file
587         for ((i = 0; i < 4; ++i)); do
588                 long_sym=${long_sym}${long_sym}
589         done
590
591         echo "create 512 short and long symlink files under $WDIR"
592         for ((i = 0; i < 256; ++i)); do
593                 ln -sf ${long_sym}"a5a5" $WDIR/long-$i
594                 ln -sf ${short_sym}"a5a5" $WDIR/short-$i
595         done
596
597         echo "erase them"
598         rm -f $WDIR/*
599         sync
600         wait_delete_completed
601
602         echo "recreate the 512 symlink files with a shorter string"
603         for ((i = 0; i < 512; ++i)); do
604                 # rewrite the symlink file with a shorter string
605                 ln -sf ${long_sym} $WDIR/long-$i || error "long_sym failed"
606                 ln -sf ${short_sym} $WDIR/short-$i || error "short_sym failed"
607         done
608
609         local mds_index=$(($($LFS getstripe -M $WDIR) + 1))
610         local devname=$(mdsdevname $mds_index)
611
612         echo "stop and checking mds${mds_index}:"
613         # e2fsck should not return error
614         stop mds${mds_index}
615         run_e2fsck $(facet_active_host mds${mds_index}) $devname -n
616         rc=$?
617
618         start mds${mds_index} $devname $MDS_MOUNT_OPTS || error "start failed"
619         df $MOUNT > /dev/null 2>&1
620         [ $rc -eq 0 ] ||
621                 error "e2fsck detected error for short/long symlink: rc=$rc"
622 }
623 run_test 17m "run e2fsck against MDT which contains short/long symlink"
624
625 check_fs_consistency_17n() {
626         local mdt_index
627         local rc=0
628
629         # create/unlink in 17n only change 2 MDTs(MDT1/MDT2),
630         # so it only check MDT1/MDT2 instead of all of MDTs.
631         for mdt_index in 1 2; do
632                 local devname=$(mdsdevname $mdt_index)
633                 # e2fsck should not return error
634                 stop mds${mdt_index}
635                 run_e2fsck $(facet_active_host mds$mdt_index) $devname -n ||
636                         rc=$((rc + $?))
637
638                 start mds${mdt_index} $devname $MDS_MOUNT_OPTS ||
639                         error "mount mds$mdt_index failed"
640                 df $MOUNT > /dev/null 2>&1
641         done
642         return $rc
643 }
644
645 test_17n() {
646         local i
647
648         remote_mds_nodsh && skip "remote MDS with nodsh" && return
649         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
650         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.2.93) ] &&
651                 skip "MDS 2.2.0-2.2.93 do not NUL-terminate symlinks" && return
652
653         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
654                 skip "only for ldiskfs MDT" && return 0
655
656         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
657
658         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
659
660         test_mkdir $DIR/$tdir
661         for ((i=0; i<10; i++)); do
662                 $LFS mkdir -i1 -c2 $DIR/$tdir/remote_dir_${i} ||
663                         error "create remote dir error $i"
664                 createmany -o $DIR/$tdir/remote_dir_${i}/f 10 ||
665                         error "create files under remote dir failed $i"
666         done
667
668         check_fs_consistency_17n ||
669                 error "e2fsck report error after create files under remote dir"
670
671         for ((i = 0; i < 10; i++)); do
672                 rm -rf $DIR/$tdir/remote_dir_${i} ||
673                         error "destroy remote dir error $i"
674         done
675
676         check_fs_consistency_17n ||
677                 error "e2fsck report error after unlink files under remote dir"
678
679         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.50) ] &&
680                 skip "lustre < 2.4.50 does not support migrate mv " && return
681
682         for ((i = 0; i < 10; i++)); do
683                 mkdir -p $DIR/$tdir/remote_dir_${i}
684                 createmany -o $DIR/$tdir/remote_dir_${i}/f 10 ||
685                         error "create files under remote dir failed $i"
686                 $LFS migrate --mdt-index 1 $DIR/$tdir/remote_dir_${i} ||
687                         error "migrate remote dir error $i"
688         done
689         check_fs_consistency_17n || error "e2fsck report error after migration"
690
691         for ((i = 0; i < 10; i++)); do
692                 rm -rf $DIR/$tdir/remote_dir_${i} ||
693                         error "destroy remote dir error $i"
694         done
695
696         check_fs_consistency_17n || error "e2fsck report error after unlink"
697 }
698 run_test 17n "run e2fsck against master/slave MDT which contains remote dir"
699
700 test_17o() {
701         remote_mds_nodsh && skip "remote MDS with nodsh" && return
702         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.64) ] &&
703                 skip "Need MDS version at least 2.3.64" && return
704
705         local WDIR=$DIR/${tdir}o
706         local mdt_index
707         local rc=0
708
709         test_mkdir -p $WDIR
710         touch $WDIR/$tfile
711         mdt_index=$($LFS getstripe -M $WDIR/$tfile)
712         mdt_index=$((mdt_index+1))
713
714         cancel_lru_locks mdc
715         #fail mds will wait the failover finish then set
716         #following fail_loc to avoid interfer the recovery process.
717         fail mds${mdt_index}
718
719         #define OBD_FAIL_OSD_LMA_INCOMPAT 0x194
720         do_facet mds${mdt_index} lctl set_param fail_loc=0x194
721         ls -l $WDIR/$tfile && rc=1
722         do_facet mds${mdt_index} lctl set_param fail_loc=0
723         [[ $rc -ne 0 ]] && error "stat file should fail"
724         true
725 }
726 run_test 17o "stat file with incompat LMA feature"
727
728 test_18() {
729         touch $DIR/$tfile || error "Failed to touch $DIR/$tfile: $?"
730         ls $DIR || error "Failed to ls $DIR: $?"
731 }
732 run_test 18 "touch .../f ; ls ... =============================="
733
734 test_19a() {
735         touch $DIR/$tfile
736         ls -l $DIR
737         rm $DIR/$tfile
738         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
739 }
740 run_test 19a "touch .../f19 ; ls -l ... ; rm .../f19 ==========="
741
742 test_19b() {
743         ls -l $DIR/$tfile && error "ls -l $tfile failed"|| true
744 }
745 run_test 19b "ls -l .../f19 (should return error) =============="
746
747 test_19c() {
748         [ $RUNAS_ID -eq $UID ] &&
749                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
750         $RUNAS touch $DIR/$tfile && error "create non-root file failed" || true
751 }
752 run_test 19c "$RUNAS touch .../f19 (should return error) =="
753
754 test_19d() {
755         cat $DIR/f19 && error || true
756 }
757 run_test 19d "cat .../f19 (should return error) =============="
758
759 test_20() {
760         touch $DIR/$tfile
761         rm $DIR/$tfile
762         touch $DIR/$tfile
763         rm $DIR/$tfile
764         touch $DIR/$tfile
765         rm $DIR/$tfile
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         test_mkdir -p $DIR/d27 || error "mkdir failed"
1356         $LFS getstripe $DIR/d27
1357         $LFS setstripe -c 1 $DIR/d27/f0 || error "setstripe failed"
1358         $CHECKSTAT -t file $DIR/d27/f0 || error "checkstat failed"
1359         cp /etc/hosts $DIR/d27/f0 || error
1360 }
1361 run_test 27a "one stripe file"
1362
1363 test_27b() {
1364         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping 2-stripe test" && return
1365         test_mkdir -p $DIR/d27
1366         $LFS setstripe -c 2 $DIR/d27/f01 || error "setstripe failed"
1367         $LFS getstripe -c $DIR/d27/f01
1368         [ $($LFS getstripe -c $DIR/d27/f01) -eq 2 ] ||
1369                 error "two-stripe file doesn't have two stripes"
1370
1371         dd if=/dev/zero of=$DIR/d27/f01 bs=4k count=4 || error "dd failed"
1372 }
1373 run_test 27b "create and write to two stripe file"
1374
1375 test_27d() {
1376         test_mkdir -p $DIR/d27
1377         $LFS setstripe -c 0 -i -1 -S 0 $DIR/d27/fdef || error "setstripe failed"
1378         $CHECKSTAT -t file $DIR/d27/fdef || error "checkstat failed"
1379         dd if=/dev/zero of=$DIR/d27/fdef bs=4k count=4 || error
1380 }
1381 run_test 27d "create file with default settings"
1382
1383 test_27e() {
1384         # LU-5839 adds check for existed layout before setting it
1385         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.56) ]] &&
1386                 skip "Need MDS version at least 2.7.56" && return
1387         test_mkdir -p $DIR/d27
1388         $LFS setstripe -c 2 $DIR/d27/f12 || error "setstripe failed"
1389         $LFS setstripe -c 2 $DIR/d27/f12 && error "setstripe succeeded twice"
1390         $CHECKSTAT -t file $DIR/d27/f12 || error "checkstat failed"
1391 }
1392 run_test 27e "setstripe existing file (should return error)"
1393
1394 test_27f() {
1395         test_mkdir $DIR/$tdir
1396         $LFS setstripe -S 100 -i 0 -c 1 $DIR/$tdir/$tfile &&
1397                 error "$SETSTRIPE $DIR/$tdir/$tfile failed"
1398         $CHECKSTAT -t file $DIR/$tdir/$tfile &&
1399                 error "$CHECKSTAT -t file $DIR/$tdir/$tfile should fail"
1400         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=4k count=4 || error "dd failed"
1401         $LFS getstripe $DIR/$tdir/$tfile || error "$LFS getstripe failed"
1402 }
1403 run_test 27f "setstripe with bad stripe size (should return error)"
1404
1405 test_27g() {
1406         test_mkdir -p $DIR/d27
1407         $MCREATE $DIR/d27/fnone || error "mcreate failed"
1408         $LFS getstripe $DIR/d27/fnone 2>&1 | grep "no stripe info" ||
1409                 error "$DIR/d27/fnone has object"
1410 }
1411 run_test 27g "$LFS getstripe with no objects"
1412
1413 test_27i() {
1414         test_mkdir $DIR/$tdir
1415         touch $DIR/$tdir/$tfile || error "touch failed"
1416         [[ $($LFS getstripe -c $DIR/$tdir/$tfile) -gt 0 ]] ||
1417                 error "missing objects"
1418 }
1419 run_test 27i "$LFS getstripe with some objects"
1420
1421 test_27j() {
1422         test_mkdir -p $DIR/d27
1423         $LFS setstripe -i $OSTCOUNT $DIR/d27/f27j &&
1424                 error "setstripe failed" || true
1425 }
1426 run_test 27j "setstripe with bad stripe offset (should return error)"
1427
1428 test_27k() { # bug 2844
1429         test_mkdir -p $DIR/d27
1430         FILE=$DIR/d27/f27k
1431         LL_MAX_BLKSIZE=$((4 * 1024 * 1024))
1432         [ ! -d $DIR/d27 ] && test_mkdir -p $DIR d27
1433         $LFS setstripe -S 67108864 $FILE || error "setstripe failed"
1434         BLKSIZE=$(stat $FILE | awk '/IO Block:/ { print $7 }')
1435         [ $BLKSIZE -le $LL_MAX_BLKSIZE ] || error "1:$BLKSIZE > $LL_MAX_BLKSIZE"
1436         dd if=/dev/zero of=$FILE bs=4k count=1
1437         BLKSIZE=$(stat $FILE | awk '/IO Block:/ { print $7 }')
1438         [ $BLKSIZE -le $LL_MAX_BLKSIZE ] || error "2:$BLKSIZE > $LL_MAX_BLKSIZE"
1439 }
1440 run_test 27k "limit i_blksize for broken user apps"
1441
1442 test_27l() {
1443         test_mkdir -p $DIR/d27
1444         mcreate $DIR/f27l || error "creating file"
1445         $RUNAS $SETSTRIPE -c 1 $DIR/f27l &&
1446                 error "setstripe should have failed" || true
1447 }
1448 run_test 27l "check setstripe permissions (should return error)"
1449
1450 test_27m() {
1451         [[ $OSTCOUNT -lt 2 ]] && skip_env "$OSTCOUNT < 2 OSTs -- skipping" &&
1452                 return
1453
1454         ORIGFREE=$($LCTL get_param -n lov.$FSNAME-clilov-*.kbytesavail |
1455                    head -n1)
1456         if [[ $ORIGFREE -gt $MAXFREE ]]; then
1457                 skip "$ORIGFREE > $MAXFREE skipping out-of-space test on OST0"
1458                 return
1459         fi
1460         trap simple_cleanup_common EXIT
1461         test_mkdir -p $DIR/$tdir
1462         $LFS setstripe -i 0 -c 1 $DIR/$tdir/f27m_1
1463         dd if=/dev/zero of=$DIR/$tdir/f27m_1 bs=1024 count=$MAXFREE &&
1464                 error "dd should fill OST0"
1465         i=2
1466         while $LFS setstripe -i 0 -c 1 $DIR/$tdir/f27m_$i; do
1467                 i=$((i + 1))
1468                 [ $i -gt 256 ] && break
1469         done
1470         i=$((i + 1))
1471         touch $DIR/$tdir/f27m_$i
1472         [ $($LFS getstripe $DIR/$tdir/f27m_$i | grep -A 10 obdidx |
1473             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         [ $($LFS getstripe $DIR/$tdir/f27m_$i | grep -A 10 obdidx |
1478             awk '{print $1}'| grep -w "0") ] &&
1479                 error "OST0 was full but new created file still use it"
1480         simple_cleanup_common
1481 }
1482 run_test 27m "create file while OST0 was full"
1483
1484 sleep_maxage() {
1485         local DELAY=$(do_facet $SINGLEMDS lctl get_param -n lov.*.qos_maxage |
1486                       head -n 1 | awk '{print $1 * 2}')
1487         sleep $DELAY
1488 }
1489
1490 # OSCs keep a NOSPC flag that will be reset after ~5s (qos_maxage)
1491 # if the OST isn't full anymore.
1492 reset_enospc() {
1493         local OSTIDX=${1:-""}
1494
1495         local list=$(comma_list $(osts_nodes))
1496         [ "$OSTIDX" ] && list=$(facet_host ost$((OSTIDX + 1)))
1497
1498         do_nodes $list lctl set_param fail_loc=0
1499         sync    # initiate all OST_DESTROYs from MDS to OST
1500         sleep_maxage
1501 }
1502
1503 exhaust_precreations() {
1504         local OSTIDX=$1
1505         local FAILLOC=$2
1506         local FAILIDX=${3:-$OSTIDX}
1507         local ofacet=ost$((OSTIDX + 1))
1508
1509         test_mkdir -p -c1 $DIR/$tdir
1510         local mdtidx=$($LFS getstripe -M $DIR/$tdir)
1511         local mfacet=mds$((mdtidx + 1))
1512         echo OSTIDX=$OSTIDX MDTIDX=$mdtidx
1513
1514         local OST=$(ostname_from_index $OSTIDX)
1515
1516         # on the mdt's osc
1517         local mdtosc_proc1=$(get_mdtosc_proc_path $mfacet $OST)
1518         local last_id=$(do_facet $mfacet lctl get_param -n \
1519                         osc.$mdtosc_proc1.prealloc_last_id)
1520         local next_id=$(do_facet $mfacet lctl get_param -n \
1521                         osc.$mdtosc_proc1.prealloc_next_id)
1522
1523         local mdtosc_proc2=$(get_mdtosc_proc_path $mfacet)
1524         do_facet $mfacet lctl get_param osc.$mdtosc_proc2.prealloc*
1525
1526         test_mkdir -p $DIR/$tdir/${OST}
1527         $SETSTRIPE -i $OSTIDX -c 1 $DIR/$tdir/${OST}
1528 #define OBD_FAIL_OST_ENOSPC              0x215
1529         do_facet $ofacet lctl set_param fail_val=$FAILIDX fail_loc=0x215
1530         echo "Creating to objid $last_id on ost $OST..."
1531         createmany -o $DIR/$tdir/${OST}/f $next_id $((last_id - next_id + 2))
1532         do_facet $mfacet lctl get_param osc.$mdtosc_proc2.prealloc*
1533         do_facet $ofacet lctl set_param fail_loc=$FAILLOC
1534         sleep_maxage
1535 }
1536
1537 exhaust_all_precreations() {
1538         local i
1539         for (( i=0; i < OSTCOUNT; i++ )) ; do
1540                 exhaust_precreations $i $1 -1
1541         done
1542 }
1543
1544 test_27n() {
1545         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
1546         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1547         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1548         remote_ost_nodsh && skip "remote OST with nodsh" && return
1549
1550         reset_enospc
1551         rm -f $DIR/$tdir/$tfile
1552         exhaust_precreations 0 0x80000215
1553         $LFS setstripe -c -1 $DIR/$tdir
1554         touch $DIR/$tdir/$tfile || error
1555         $LFS getstripe $DIR/$tdir/$tfile
1556         reset_enospc
1557 }
1558 run_test 27n "create file with some full OSTs"
1559
1560 test_27o() {
1561         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
1562         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1563         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1564         remote_ost_nodsh && skip "remote OST with nodsh" && return
1565
1566         reset_enospc
1567         rm -f $DIR/$tdir/$tfile
1568         exhaust_all_precreations 0x215
1569
1570         touch $DIR/$tdir/$tfile && error "able to create $DIR/$tdir/$tfile"
1571
1572         reset_enospc
1573         rm -rf $DIR/$tdir/*
1574 }
1575 run_test 27o "create file with all full OSTs (should error)"
1576
1577 test_27p() {
1578         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
1579         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1580         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1581         remote_ost_nodsh && skip "remote OST with nodsh" && return
1582
1583         reset_enospc
1584         rm -f $DIR/$tdir/$tfile
1585         test_mkdir -p $DIR/$tdir
1586
1587         $MCREATE $DIR/$tdir/$tfile || error "mcreate failed"
1588         $TRUNCATE $DIR/$tdir/$tfile 80000000 || error "truncate failed"
1589         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1590
1591         exhaust_precreations 0 0x80000215
1592         echo foo >> $DIR/$tdir/$tfile || error "append failed"
1593         $CHECKSTAT -s 80000004 $DIR/$tdir/$tfile || error "checkstat failed"
1594         $LFS getstripe $DIR/$tdir/$tfile
1595
1596         reset_enospc
1597 }
1598 run_test 27p "append to a truncated file with some full OSTs"
1599
1600 test_27q() {
1601         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
1602         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1603         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1604         remote_ost_nodsh && skip "remote OST with nodsh" && return
1605
1606         reset_enospc
1607         rm -f $DIR/$tdir/$tfile
1608
1609         test_mkdir -p $DIR/$tdir
1610         $MCREATE $DIR/$tdir/$tfile || error "mcreate $DIR/$tdir/$tfile failed"
1611         $TRUNCATE $DIR/$tdir/$tfile 80000000 ||
1612                 error "truncate $DIR/$tdir/$tfile failed"
1613         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1614
1615         exhaust_all_precreations 0x215
1616
1617         echo foo >> $DIR/$tdir/$tfile && error "append succeeded"
1618         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat 2 failed"
1619
1620         reset_enospc
1621 }
1622 run_test 27q "append to truncated file with all OSTs full (should error)"
1623
1624 test_27r() {
1625         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
1626         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1627         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1628         remote_ost_nodsh && skip "remote OST with nodsh" && return
1629
1630         reset_enospc
1631         rm -f $DIR/$tdir/$tfile
1632         exhaust_precreations 0 0x80000215
1633
1634         $LFS setstripe -i 0 -c 2 $DIR/$tdir/$tfile # && error
1635
1636         reset_enospc
1637 }
1638 run_test 27r "stripe file with some full OSTs (shouldn't LBUG) ="
1639
1640 test_27s() { # bug 10725
1641         test_mkdir -p $DIR/$tdir
1642         local stripe_size=$((4096 * 1024 * 1024))       # 2^32
1643         local stripe_count=0
1644         [ $OSTCOUNT -eq 1 ] || stripe_count=2
1645         $LFS setstripe -S $stripe_size -c $stripe_count $DIR/$tdir &&
1646                 error "stripe width >= 2^32 succeeded" || true
1647
1648 }
1649 run_test 27s "lsm_xfersize overflow (should error) (bug 10725)"
1650
1651 test_27t() { # bug 10864
1652         WDIR=$(pwd)
1653         WLFS=$(which lfs)
1654         cd $DIR
1655         touch $tfile
1656         $WLFS getstripe $tfile
1657         cd $WDIR
1658 }
1659 run_test 27t "check that utils parse path correctly"
1660
1661 test_27u() { # bug 4900
1662         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
1663         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1664         local index
1665         local list=$(comma_list $(mdts_nodes))
1666
1667 #define OBD_FAIL_MDS_OSC_PRECREATE      0x139
1668         do_nodes $list $LCTL set_param fail_loc=0x139
1669         test_mkdir -p $DIR/$tdir
1670         trap simple_cleanup_common EXIT
1671         createmany -o $DIR/$tdir/t- 1000
1672         do_nodes $list $LCTL set_param fail_loc=0
1673
1674         TLOG=$TMP/$tfile.getstripe
1675         $LFS getstripe $DIR/$tdir > $TLOG
1676         OBJS=$(awk -vobj=0 '($1 == 0) { obj += 1 } END { print obj; }' $TLOG)
1677         unlinkmany $DIR/$tdir/t- 1000
1678         trap 0
1679         [[ $OBJS -gt 0 ]] &&
1680                 error "$OBJS objects created on OST-0. See $TLOG" || pass
1681 }
1682 run_test 27u "skip object creation on OSC w/o objects"
1683
1684 test_27v() { # bug 4900
1685         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
1686         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1687         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1688         remote_ost_nodsh && skip "remote OST with nodsh" && return
1689
1690         exhaust_all_precreations 0x215
1691         reset_enospc
1692
1693         test_mkdir $DIR/$tdir
1694         $LFS setstripe -c 1 $DIR/$tdir         # 1 stripe / file
1695
1696         touch $DIR/$tdir/$tfile
1697         #define OBD_FAIL_TGT_DELAY_PRECREATE     0x705
1698         # all except ost1
1699         for (( i=1; i < OSTCOUNT; i++ )); do
1700                 do_facet ost$i lctl set_param fail_loc=0x705
1701         done
1702         local START=`date +%s`
1703         createmany -o $DIR/$tdir/$tfile 32
1704
1705         local FINISH=`date +%s`
1706         local TIMEOUT=`lctl get_param -n timeout`
1707         local PROCESS=$((FINISH - START))
1708         [ $PROCESS -ge $((TIMEOUT / 2)) ] && \
1709                error "$FINISH - $START >= $TIMEOUT / 2"
1710         sleep $((TIMEOUT / 2 - PROCESS))
1711         reset_enospc
1712 }
1713 run_test 27v "skip object creation on slow OST"
1714
1715 test_27w() { # bug 10997
1716         test_mkdir $DIR/$tdir || error "mkdir failed"
1717         $LFS setstripe -S 65536 $DIR/$tdir/f0 || error "setstripe failed"
1718         [ $($LFS getstripe -S $DIR/$tdir/f0) -ne 65536 ] &&
1719                 error "stripe size $size != 65536" || true
1720         [ $($LFS getstripe -d $DIR/$tdir | grep -c "stripe_count") -ne 1 ] &&
1721                 error "$LFS getstripe -d $DIR/$tdir failed" || true
1722 }
1723 run_test 27w "check $LFS setstripe -S option"
1724
1725 test_27wa() {
1726         [[ $OSTCOUNT -lt 2 ]] &&
1727                 skip_env "skipping multiple stripe count/offset test" && return
1728
1729         test_mkdir $DIR/$tdir || error "mkdir failed"
1730         for i in $(seq 1 $OSTCOUNT); do
1731                 offset=$((i - 1))
1732                 $LFS setstripe -c $i -i $offset $DIR/$tdir/f$i ||
1733                         error "setstripe -c $i -i $offset failed"
1734                 count=$($LFS getstripe -c $DIR/$tdir/f$i)
1735                 index=$($LFS getstripe -i $DIR/$tdir/f$i)
1736                 [ $count -ne $i ] && error "stripe count $count != $i" || true
1737                 [ $index -ne $offset ] &&
1738                         error "stripe offset $index != $offset" || true
1739         done
1740 }
1741 run_test 27wa "check $LFS setstripe -c -i options"
1742
1743 test_27x() {
1744         remote_ost_nodsh && skip "remote OST with nodsh" && return
1745         [[ $OSTCOUNT -lt 2 ]] && skip_env "$OSTCOUNT < 2 OSTs" && return
1746         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1747         OFFSET=$(($OSTCOUNT - 1))
1748         OSTIDX=0
1749         local OST=$(ostname_from_index $OSTIDX)
1750
1751         test_mkdir -p $DIR/$tdir
1752         $LFS setstripe -c 1 $DIR/$tdir  # 1 stripe per file
1753         do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 1
1754         sleep_maxage
1755         createmany -o $DIR/$tdir/$tfile $OSTCOUNT
1756         for i in $(seq 0 $OFFSET); do
1757                 [ $($LFS getstripe $DIR/$tdir/$tfile$i | grep -A 10 obdidx |
1758                     awk '{print $1}' | grep -w "$OSTIDX") ] &&
1759                 error "OST0 was degraded but new created file still use it"
1760         done
1761         do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 0
1762 }
1763 run_test 27x "create files while OST0 is degraded"
1764
1765 test_27y() {
1766         [[ $OSTCOUNT -lt 2 ]] &&
1767                 skip_env "$OSTCOUNT < 2 OSTs -- skipping" && return
1768         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1769         remote_ost_nodsh && skip "remote OST with nodsh" && return
1770         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1771
1772         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS $FSNAME-OST0000)
1773         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
1774                 osc.$mdtosc.prealloc_last_id)
1775         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
1776                 osc.$mdtosc.prealloc_next_id)
1777         local fcount=$((last_id - next_id))
1778         [[ $fcount -eq 0 ]] && skip "not enough space on OST0" && return
1779         [[ $fcount -gt $OSTCOUNT ]] && fcount=$OSTCOUNT
1780
1781         local MDS_OSCS=$(do_facet $SINGLEMDS lctl dl |
1782                          awk '/[oO][sS][cC].*md[ts]/ { print $4 }')
1783         local OST_DEACTIVE_IDX=-1
1784         local OSC
1785         local OSTIDX
1786         local OST
1787
1788         for OSC in $MDS_OSCS; do
1789                 OST=$(osc_to_ost $OSC)
1790                 OSTIDX=$(index_from_ostuuid $OST)
1791                 if [ $OST_DEACTIVE_IDX == -1 ]; then
1792                         OST_DEACTIVE_IDX=$OSTIDX
1793                 fi
1794                 if [ $OSTIDX != $OST_DEACTIVE_IDX ]; then
1795                         echo $OSC "is Deactivated:"
1796                         do_facet $SINGLEMDS lctl --device  %$OSC deactivate
1797                 fi
1798         done
1799
1800         OSTIDX=$(index_from_ostuuid $OST)
1801         test_mkdir -p $DIR/$tdir
1802         $LFS setstripe -c 1 $DIR/$tdir      # 1 stripe / file
1803
1804         for OSC in $MDS_OSCS; do
1805                 OST=$(osc_to_ost $OSC)
1806                 OSTIDX=$(index_from_ostuuid $OST)
1807                 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
1808                         echo $OST "is degraded:"
1809                         do_facet ost$((OSTIDX+1)) lctl set_param -n \
1810                                                 obdfilter.$OST.degraded=1
1811                 fi
1812         done
1813
1814         sleep_maxage
1815         createmany -o $DIR/$tdir/$tfile $fcount
1816
1817         for OSC in $MDS_OSCS; do
1818                 OST=$(osc_to_ost $OSC)
1819                 OSTIDX=$(index_from_ostuuid $OST)
1820                 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
1821                         echo $OST "is recovered from degraded:"
1822                         do_facet ost$((OSTIDX+1)) lctl set_param -n \
1823                                                 obdfilter.$OST.degraded=0
1824                 else
1825                         do_facet $SINGLEMDS lctl --device %$OSC activate
1826                 fi
1827         done
1828
1829         # all osp devices get activated, hence -1 stripe count restored
1830         local stripecnt=0
1831
1832         # sleep 2*lod_qos_maxage seconds waiting for lod qos to notice osp
1833         # devices get activated.
1834         sleep_maxage
1835         $LFS setstripe -c -1 $DIR/$tfile
1836         stripecnt=$($LFS getstripe -c $DIR/$tfile)
1837         rm -f $DIR/$tfile
1838         [ $stripecnt -ne $OSTCOUNT ] &&
1839                 error "Of $OSTCOUNT OSTs, only $stripecnt is available"
1840         return 0
1841 }
1842 run_test 27y "create files while OST0 is degraded and the rest inactive"
1843
1844 check_seq_oid()
1845 {
1846         log "check file $1"
1847
1848         lmm_count=$($GETSTRIPE -c $1)
1849         lmm_seq=$($GETSTRIPE -v $1 | awk '/lmm_seq/ { print $2 }')
1850         lmm_oid=$($GETSTRIPE -v $1 | awk '/lmm_object_id/ { print $2 }')
1851
1852         local old_ifs="$IFS"
1853         IFS=$'[:]'
1854         fid=($($LFS path2fid $1))
1855         IFS="$old_ifs"
1856
1857         log "FID seq ${fid[1]}, oid ${fid[2]} ver ${fid[3]}"
1858         log "LOV seq $lmm_seq, oid $lmm_oid, count: $lmm_count"
1859
1860         # compare lmm_seq and lu_fid->f_seq
1861         [ $lmm_seq = ${fid[1]} ] || { error "SEQ mismatch"; return 1; }
1862         # compare lmm_object_id and lu_fid->oid
1863         [ $lmm_oid = ${fid[2]} ] || { error "OID mismatch"; return 2; }
1864
1865         # check the trusted.fid attribute of the OST objects of the file
1866         local have_obdidx=false
1867         local stripe_nr=0
1868         $GETSTRIPE $1 | while read obdidx oid hex seq; do
1869                 # skip lines up to and including "obdidx"
1870                 [ -z "$obdidx" ] && break
1871                 [ "$obdidx" = "obdidx" ] && have_obdidx=true && continue
1872                 $have_obdidx || continue
1873
1874                 local ost=$((obdidx + 1))
1875                 local dev=$(ostdevname $ost)
1876                 local oid_hex
1877
1878                 log "want: stripe:$stripe_nr ost:$obdidx oid:$oid/$hex seq:$seq"
1879
1880                 seq=$(echo $seq | sed -e "s/^0x//g")
1881                 if [ $seq == 0 ] || [ $(facet_fstype ost$ost) == zfs ]; then
1882                         oid_hex=$(echo $oid)
1883                 else
1884                         oid_hex=$(echo $hex | sed -e "s/^0x//g")
1885                 fi
1886                 local obj_file="O/$seq/d$((oid %32))/$oid_hex"
1887
1888                 local ff=""
1889                 #
1890                 # Don't unmount/remount the OSTs if we don't need to do that.
1891                 # LU-2577 changes filter_fid to be smaller, so debugfs needs
1892                 # update too, until that use mount/ll_decode_filter_fid/mount.
1893                 # Re-enable when debugfs will understand new filter_fid.
1894                 #
1895                 if [ $(facet_fstype ost$ost) == ldiskfs ]; then
1896                         ff=$(do_facet ost$ost "$DEBUGFS -c -R 'stat $obj_file' \
1897                                 $dev 2>/dev/null" | grep "parent=")
1898                 fi
1899                 if [ -z "$ff" ]; then
1900                         stop ost$ost
1901                         mount_fstype ost$ost
1902                         ff=$(do_facet ost$ost $LL_DECODE_FILTER_FID \
1903                                 $(facet_mntpt ost$ost)/$obj_file)
1904                         unmount_fstype ost$ost
1905                         start ost$ost $dev $OST_MOUNT_OPTS
1906                         clients_up
1907                 fi
1908
1909                 [ -z "$ff" ] && error "$obj_file: no filter_fid info"
1910
1911                 echo "$ff" | sed -e 's#.*objid=#got: objid=#'
1912
1913                 # /mnt/O/0/d23/23: objid=23 seq=0 parent=[0x200000400:0x1e:0x1]
1914                 # fid: objid=23 seq=0 parent=[0x200000400:0x1e:0x0] stripe=1
1915                 #
1916                 # fid: parent=[0x200000400:0x1e:0x0] stripe=1 stripe_count=2 \
1917                 #       stripe_size=1048576 component_id=1 component_start=0 \
1918                 #       component_end=33554432
1919                 local ff_parent=$(sed -e 's/.*parent=.//' <<<$ff)
1920                 local ff_pseq=$(cut -d: -f1 <<<$ff_parent)
1921                 local ff_poid=$(cut -d: -f2 <<<$ff_parent)
1922                 local ff_pstripe
1923                 if grep -q 'stripe=' <<<$ff; then
1924                         ff_pstripe=$(sed -e 's/.*stripe=//' -e 's/ .*//' <<<$ff)
1925                 else
1926                         # $LL_DECODE_FILTER_FID does not print "stripe="; look
1927                         # into f_ver in this case.  See comment on ff_parent.
1928                         ff_pstripe=$(cut -d: -f3 <<<$ff_parent | sed -e 's/]//')
1929                 fi
1930
1931                 if grep -q 'stripe_count=' <<<$ff; then
1932                         local ff_scnt=$(sed -e 's/.*stripe_count=//' \
1933                                             -e 's/ .*//' <<<$ff)
1934                         [ $lmm_count = $ff_scnt ] ||
1935                                 error "FF stripe count $lmm_count != $ff_scnt"
1936                 fi
1937                 # compare lmm_seq and filter_fid->ff_parent.f_seq
1938                 [ $ff_pseq = $lmm_seq ] ||
1939                         error "FF parent SEQ $ff_pseq != $lmm_seq"
1940                 # compare lmm_object_id and filter_fid->ff_parent.f_oid
1941                 [ $ff_poid = $lmm_oid ] ||
1942                         error "FF parent OID $ff_poid != $lmm_oid"
1943                 (($ff_pstripe == $stripe_nr)) ||
1944                         error "FF stripe $ff_pstripe != $stripe_nr"
1945
1946                 stripe_nr=$((stripe_nr + 1))
1947         done
1948 }
1949
1950 test_27z() {
1951         remote_ost_nodsh && skip "remote OST with nodsh" && return
1952         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1953         test_mkdir -p $DIR/$tdir
1954
1955         $SETSTRIPE -c 1 -i 0 -S 64k $DIR/$tdir/$tfile-1 ||
1956                 { error "setstripe -c -1 failed"; return 1; }
1957         # We need to send a write to every object to get parent FID info set.
1958         # This _should_ also work for setattr, but does not currently.
1959         # touch $DIR/$tdir/$tfile-1 ||
1960         dd if=/dev/zero of=$DIR/$tdir/$tfile-1 bs=1M count=1 ||
1961                 { error "dd $tfile-1 failed"; return 2; }
1962         $SETSTRIPE -c -1 -i $((OSTCOUNT - 1)) -S 1M $DIR/$tdir/$tfile-2 ||
1963                 { error "setstripe -c -1 failed"; return 3; }
1964         dd if=/dev/zero of=$DIR/$tdir/$tfile-2 bs=1M count=$OSTCOUNT ||
1965                 { error "dd $tfile-2 failed"; return 4; }
1966
1967         # make sure write RPCs have been sent to OSTs
1968         sync; sleep 5; sync
1969
1970         check_seq_oid $DIR/$tdir/$tfile-1 || return 5
1971         check_seq_oid $DIR/$tdir/$tfile-2 || return 6
1972 }
1973 run_test 27z "check SEQ/OID on the MDT and OST filesystems"
1974
1975 test_27A() { # b=19102
1976         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1977         local restore_size=$($GETSTRIPE -S $MOUNT)
1978         local restore_count=$($GETSTRIPE -c $MOUNT)
1979         local restore_offset=$($GETSTRIPE -i $MOUNT)
1980         $SETSTRIPE -c 0 -i -1 -S 0 $MOUNT
1981         wait_update $HOSTNAME "$GETSTRIPE -c $MOUNT | sed 's/  *//g'" "1" 20 ||
1982                 error "stripe count $($GETSTRIPE -c $MOUNT) != 1"
1983         local default_size=$($GETSTRIPE -S $MOUNT)
1984         local default_offset=$($GETSTRIPE -i $MOUNT)
1985         local dsize=$((1024 * 1024))
1986         [ $default_size -eq $dsize ] ||
1987                 error "stripe size $default_size != $dsize"
1988         [ $default_offset -eq -1 ] ||error "stripe offset $default_offset != -1"
1989         $SETSTRIPE -c $restore_count -i $restore_offset -S $restore_size $MOUNT
1990 }
1991 run_test 27A "check filesystem-wide default LOV EA values"
1992
1993 test_27B() { # LU-2523
1994         test_mkdir -p $DIR/$tdir
1995         rm -f $DIR/$tdir/f0 $DIR/$tdir/f1
1996         touch $DIR/$tdir/f0
1997         # open f1 with O_LOV_DELAY_CREATE
1998         # rename f0 onto f1
1999         # call setstripe ioctl on open file descriptor for f1
2000         # close
2001         multiop $DIR/$tdir/f1 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:nB1c \
2002                 $DIR/$tdir/f0
2003
2004         rm -f $DIR/$tdir/f1
2005         # open f1 with O_LOV_DELAY_CREATE
2006         # unlink f1
2007         # call setstripe ioctl on open file descriptor for f1
2008         # close
2009         multiop $DIR/$tdir/f1 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:uB1c
2010
2011         # Allow multiop to fail in imitation of NFS's busted semantics.
2012         true
2013 }
2014 run_test 27B "call setstripe on open unlinked file/rename victim"
2015
2016 test_27C() { #LU-2871
2017         [[ $OSTCOUNT -lt 2 ]] && skip "needs >= 2 OSTs" && return
2018
2019         declare -a ost_idx
2020         local index
2021         local found
2022         local i
2023         local j
2024
2025         test_mkdir -p $DIR/$tdir
2026         cd $DIR/$tdir
2027         for i in $(seq 0 $((OSTCOUNT - 1))); do
2028                 # set stripe across all OSTs starting from OST$i
2029                 $SETSTRIPE -i $i -c -1 $tfile$i
2030                 # get striping information
2031                 ost_idx=($($GETSTRIPE $tfile$i |
2032                          tail -n $((OSTCOUNT + 1)) | awk '{print $1}'))
2033                 echo ${ost_idx[@]}
2034
2035                 # check the layout
2036                 [ ${#ost_idx[@]} -eq $OSTCOUNT ] ||
2037                         error "${#ost_idx[@]} != $OSTCOUNT"
2038
2039                 for index in $(seq 0 $((OSTCOUNT - 1))); do
2040                         found=0
2041                         for j in $(echo ${ost_idx[@]}); do
2042                                 if [ $index -eq $j ]; then
2043                                         found=1
2044                                         break
2045                                 fi
2046                         done
2047                         [ $found = 1 ] ||
2048                                 error "Can not find $index in ${ost_idx[@]}"
2049                 done
2050         done
2051 }
2052 run_test 27C "check full striping across all OSTs"
2053
2054 test_27D() {
2055         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
2056         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
2057         remote_mds_nodsh && skip "remote MDS with nodsh" && return
2058         local POOL=${POOL:-testpool}
2059         local first_ost=0
2060         local last_ost=$(($OSTCOUNT - 1))
2061         local ost_step=1
2062         local ost_list=$(seq $first_ost $ost_step $last_ost)
2063         local ost_range="$first_ost $last_ost $ost_step"
2064
2065         test_mkdir -p $DIR/$tdir
2066         pool_add $POOL || error "pool_add failed"
2067         pool_add_targets $POOL $ost_range || error "pool_add_targets failed"
2068
2069         local skip27D
2070         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.55) ] &&
2071                 skip27D += "-s 29"
2072         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.9.55) ] &&
2073                 skip27D += "-s 30,31"
2074         llapi_layout_test -d$DIR/$tdir -p$POOL -o$OSTCOUNT $skip27D ||
2075                 error "llapi_layout_test failed"
2076
2077         destroy_test_pools || error "destroy test pools failed"
2078 }
2079 run_test 27D "validate llapi_layout API"
2080
2081 # Verify that default_easize is increased from its initial value after
2082 # accessing a widely striped file.
2083 test_27E() {
2084         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
2085         [ $(lustre_version_code client) -lt $(version_code 2.5.57) ] &&
2086                 skip "client does not have LU-3338 fix" && return
2087
2088         # 72 bytes is the minimum space required to store striping
2089         # information for a file striped across one OST:
2090         # (sizeof(struct lov_user_md_v3) +
2091         #  sizeof(struct lov_user_ost_data_v1))
2092         local min_easize=72
2093         $LCTL set_param -n llite.*.default_easize $min_easize ||
2094                 error "lctl set_param failed"
2095         local easize=$($LCTL get_param -n llite.*.default_easize)
2096
2097         [ $easize -eq $min_easize ] ||
2098                 error "failed to set default_easize"
2099
2100         $LFS setstripe -c $OSTCOUNT $DIR/$tfile ||
2101                 error "setstripe failed"
2102         cat $DIR/$tfile
2103         rm $DIR/$tfile
2104
2105         easize=$($LCTL get_param -n llite.*.default_easize)
2106
2107         [ $easize -gt $min_easize ] ||
2108                 error "default_easize not updated"
2109 }
2110 run_test 27E "check that default extended attribute size properly increases"
2111
2112 test_27F() { # LU-5346/LU-7975
2113         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2114         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.51) ]] &&
2115                 skip "Need MDS version at least 2.8.51" && return
2116         remote_ost_nodsh && skip "remote OST with nodsh" && return
2117
2118         test_mkdir -p $DIR/$tdir
2119         rm -f $DIR/$tdir/f0
2120         $SETSTRIPE -c 2 $DIR/$tdir
2121
2122         # stop all OSTs to reproduce situation for LU-7975 ticket
2123         for num in $(seq $OSTCOUNT); do
2124                 stop ost$num
2125         done
2126
2127         # open/create f0 with O_LOV_DELAY_CREATE
2128         # truncate f0 to a non-0 size
2129         # close
2130         multiop $DIR/$tdir/f0 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:T1050000c
2131
2132         $CHECKSTAT -s 1050000 $DIR/$tdir/f0 || error "checkstat failed"
2133         # open/write it again to force delayed layout creation
2134         cat /etc/hosts > $DIR/$tdir/f0 &
2135         catpid=$!
2136
2137         # restart OSTs
2138         for num in $(seq $OSTCOUNT); do
2139                 start ost$num $(ostdevname $num) $OST_MOUNT_OPTS ||
2140                         error "ost$num failed to start"
2141         done
2142
2143         wait $catpid || error "cat failed"
2144
2145         cmp /etc/hosts $DIR/$tdir/f0 || error "cmp failed"
2146         [[ $($GETSTRIPE -c $DIR/$tdir/f0) == 2 ]] || error "wrong stripecount"
2147
2148 }
2149 run_test 27F "Client resend delayed layout creation with non-zero size"
2150
2151 # createtest also checks that device nodes are created and
2152 # then visible correctly (#2091)
2153 test_28() { # bug 2091
2154         test_mkdir $DIR/d28
2155         $CREATETEST $DIR/d28/ct || error
2156 }
2157 run_test 28 "create/mknod/mkdir with bad file types ============"
2158
2159 test_29() {
2160         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return 0
2161         sync; sleep 1; sync # flush out any dirty pages from previous tests
2162         cancel_lru_locks
2163         test_mkdir $DIR/d29
2164         touch $DIR/d29/foo
2165         log 'first d29'
2166         ls -l $DIR/d29
2167
2168         declare -i LOCKCOUNTORIG=0
2169         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
2170                 let LOCKCOUNTORIG=$LOCKCOUNTORIG+$lock_count
2171         done
2172         [ $LOCKCOUNTORIG -eq 0 ] && error "No mdc lock count" && return 1
2173
2174         declare -i LOCKUNUSEDCOUNTORIG=0
2175         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
2176                 let LOCKUNUSEDCOUNTORIG=$LOCKUNUSEDCOUNTORIG+$unused_count
2177         done
2178
2179         log 'second d29'
2180         ls -l $DIR/d29
2181         log 'done'
2182
2183         declare -i LOCKCOUNTCURRENT=0
2184         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
2185                 let LOCKCOUNTCURRENT=$LOCKCOUNTCURRENT+$lock_count
2186         done
2187
2188         declare -i LOCKUNUSEDCOUNTCURRENT=0
2189         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
2190                 let LOCKUNUSEDCOUNTCURRENT=$LOCKUNUSEDCOUNTCURRENT+$unused_count
2191         done
2192
2193         if [[ $LOCKCOUNTCURRENT -gt $LOCKCOUNTORIG ]]; then
2194                 $LCTL set_param -n ldlm.dump_namespaces ""
2195                 error "CURRENT: $LOCKCOUNTCURRENT > $LOCKCOUNTORIG"
2196                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
2197                 log "dumped log to $TMP/test_29.dk (bug 5793)"
2198                 return 2
2199         fi
2200         if [[ $LOCKUNUSEDCOUNTCURRENT -gt $LOCKUNUSEDCOUNTORIG ]]; then
2201                 error "UNUSED: $LOCKUNUSEDCOUNTCURRENT > $LOCKUNUSEDCOUNTORIG"
2202                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
2203                 log "dumped log to $TMP/test_29.dk (bug 5793)"
2204                 return 3
2205         fi
2206 }
2207 run_test 29 "IT_GETATTR regression  ============================"
2208
2209 test_30a() { # was test_30
2210         cp $(which ls) $DIR || cp /bin/ls $DIR
2211         $DIR/ls / || error
2212         rm $DIR/ls
2213 }
2214 run_test 30a "execute binary from Lustre (execve) =============="
2215
2216 test_30b() {
2217         cp `which ls` $DIR || cp /bin/ls $DIR
2218         chmod go+rx $DIR/ls
2219         $RUNAS $DIR/ls / || error
2220         rm $DIR/ls
2221 }
2222 run_test 30b "execute binary from Lustre as non-root ==========="
2223
2224 test_30c() { # b=22376
2225         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2226         cp `which ls` $DIR || cp /bin/ls $DIR
2227         chmod a-rw $DIR/ls
2228         cancel_lru_locks mdc
2229         cancel_lru_locks osc
2230         $RUNAS $DIR/ls / || error
2231         rm -f $DIR/ls
2232 }
2233 run_test 30c "execute binary from Lustre without read perms ===="
2234
2235 test_31a() {
2236         $OPENUNLINK $DIR/f31 $DIR/f31 || error
2237         $CHECKSTAT -a $DIR/f31 || error
2238 }
2239 run_test 31a "open-unlink file =================================="
2240
2241 test_31b() {
2242         touch $DIR/f31 || error
2243         ln $DIR/f31 $DIR/f31b || error
2244         $MULTIOP $DIR/f31b Ouc || error
2245         $CHECKSTAT -t file $DIR/f31 || error
2246 }
2247 run_test 31b "unlink file with multiple links while open ======="
2248
2249 test_31c() {
2250         touch $DIR/f31 || error
2251         ln $DIR/f31 $DIR/f31c || error
2252         multiop_bg_pause $DIR/f31 O_uc || return 1
2253         MULTIPID=$!
2254         $MULTIOP $DIR/f31c Ouc
2255         kill -USR1 $MULTIPID
2256         wait $MULTIPID
2257 }
2258 run_test 31c "open-unlink file with multiple links ============="
2259
2260 test_31d() {
2261         opendirunlink $DIR/d31d $DIR/d31d || error
2262         $CHECKSTAT -a $DIR/d31d || error
2263 }
2264 run_test 31d "remove of open directory ========================="
2265
2266 test_31e() { # bug 2904
2267         openfilleddirunlink $DIR/d31e || error
2268 }
2269 run_test 31e "remove of open non-empty directory ==============="
2270
2271 test_31f() { # bug 4554
2272         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2273         set -vx
2274         test_mkdir $DIR/d31f
2275         $SETSTRIPE -S 1048576 -c 1 $DIR/d31f
2276         cp /etc/hosts $DIR/d31f
2277         ls -l $DIR/d31f
2278         $GETSTRIPE $DIR/d31f/hosts
2279         multiop_bg_pause $DIR/d31f D_c || return 1
2280         MULTIPID=$!
2281
2282         rm -rv $DIR/d31f || error "first of $DIR/d31f"
2283         test_mkdir $DIR/d31f
2284         $SETSTRIPE -S 1048576 -c 1 $DIR/d31f
2285         cp /etc/hosts $DIR/d31f
2286         ls -l $DIR/d31f
2287         $GETSTRIPE $DIR/d31f/hosts
2288         multiop_bg_pause $DIR/d31f D_c || return 1
2289         MULTIPID2=$!
2290
2291         kill -USR1 $MULTIPID || error "first opendir $MULTIPID not running"
2292         wait $MULTIPID || error "first opendir $MULTIPID failed"
2293
2294         sleep 6
2295
2296         kill -USR1 $MULTIPID2 || error "second opendir $MULTIPID not running"
2297         wait $MULTIPID2 || error "second opendir $MULTIPID2 failed"
2298         set +vx
2299 }
2300 run_test 31f "remove of open directory with open-unlink file ==="
2301
2302 test_31g() {
2303         echo "-- cross directory link --"
2304         test_mkdir -c1 $DIR/${tdir}ga
2305         test_mkdir -c1 $DIR/${tdir}gb
2306         touch $DIR/${tdir}ga/f
2307         ln $DIR/${tdir}ga/f $DIR/${tdir}gb/g
2308         $CHECKSTAT -t file $DIR/${tdir}ga/f || error "source"
2309         [ `stat -c%h $DIR/${tdir}ga/f` == '2' ] || error "source nlink"
2310         $CHECKSTAT -t file $DIR/${tdir}gb/g || error "target"
2311         [ `stat -c%h $DIR/${tdir}gb/g` == '2' ] || error "target nlink"
2312 }
2313 run_test 31g "cross directory link==============="
2314
2315 test_31h() {
2316         echo "-- cross directory link --"
2317         test_mkdir -c1 $DIR/${tdir}
2318         test_mkdir -c1 $DIR/${tdir}/dir
2319         touch $DIR/${tdir}/f
2320         ln $DIR/${tdir}/f $DIR/${tdir}/dir/g
2321         $CHECKSTAT -t file $DIR/${tdir}/f || error "source"
2322         [ `stat -c%h $DIR/${tdir}/f` == '2' ] || error "source nlink"
2323         $CHECKSTAT -t file $DIR/${tdir}/dir/g || error "target"
2324         [ `stat -c%h $DIR/${tdir}/dir/g` == '2' ] || error "target nlink"
2325 }
2326 run_test 31h "cross directory link under child==============="
2327
2328 test_31i() {
2329         echo "-- cross directory link --"
2330         test_mkdir -c1 $DIR/$tdir
2331         test_mkdir -c1 $DIR/$tdir/dir
2332         touch $DIR/$tdir/dir/f
2333         ln $DIR/$tdir/dir/f $DIR/$tdir/g
2334         $CHECKSTAT -t file $DIR/$tdir/dir/f || error "source"
2335         [ `stat -c%h $DIR/$tdir/dir/f` == '2' ] || error "source nlink"
2336         $CHECKSTAT -t file $DIR/$tdir/g || error "target"
2337         [ `stat -c%h $DIR/$tdir/g` == '2' ] || error "target nlink"
2338 }
2339 run_test 31i "cross directory link under parent==============="
2340
2341 test_31j() {
2342         test_mkdir -c1 -p $DIR/$tdir
2343         test_mkdir -c1 -p $DIR/$tdir/dir1
2344         ln $DIR/$tdir/dir1 $DIR/$tdir/dir2 && error "ln for dir"
2345         link $DIR/$tdir/dir1 $DIR/$tdir/dir3 && error "link for dir"
2346         mlink $DIR/$tdir/dir1 $DIR/$tdir/dir4 && error "mlink for dir"
2347         mlink $DIR/$tdir/dir1 $DIR/$tdir/dir1 && error "mlink to the same dir"
2348         return 0
2349 }
2350 run_test 31j "link for directory==============="
2351
2352 test_31k() {
2353         test_mkdir -c1 -p $DIR/$tdir
2354         touch $DIR/$tdir/s
2355         touch $DIR/$tdir/exist
2356         mlink $DIR/$tdir/s $DIR/$tdir/t || error "mlink"
2357         mlink $DIR/$tdir/s $DIR/$tdir/exist && error "mlink to exist file"
2358         mlink $DIR/$tdir/s $DIR/$tdir/s && error "mlink to the same file"
2359         mlink $DIR/$tdir/s $DIR/$tdir && error "mlink to parent dir"
2360         mlink $DIR/$tdir $DIR/$tdir/s && error "mlink parent dir to target"
2361         mlink $DIR/$tdir/not-exist $DIR/$tdir/foo && error "mlink non-existing to new"
2362         mlink $DIR/$tdir/not-exist $DIR/$tdir/s && error "mlink non-existing to exist"
2363         return 0
2364 }
2365 run_test 31k "link to file: the same, non-existing, dir==============="
2366
2367 test_31m() {
2368         mkdir $DIR/d31m
2369         touch $DIR/d31m/s
2370         mkdir $DIR/d31m2
2371         touch $DIR/d31m2/exist
2372         mlink $DIR/d31m/s $DIR/d31m2/t || error "mlink"
2373         mlink $DIR/d31m/s $DIR/d31m2/exist && error "mlink to exist file"
2374         mlink $DIR/d31m/s $DIR/d31m2 && error "mlink to parent dir"
2375         mlink $DIR/d31m2 $DIR/d31m/s && error "mlink parent dir to target"
2376         mlink $DIR/d31m/not-exist $DIR/d31m2/foo && error "mlink non-existing to new"
2377         mlink $DIR/d31m/not-exist $DIR/d31m2/s && error "mlink non-existing to exist"
2378         return 0
2379 }
2380 run_test 31m "link to file: the same, non-existing, dir==============="
2381
2382 test_31n() {
2383         touch $DIR/$tfile || error "cannot create '$DIR/$tfile'"
2384         nlink=$(stat --format=%h $DIR/$tfile)
2385         [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
2386         local fd=$(free_fd)
2387         local cmd="exec $fd<$DIR/$tfile"
2388         eval $cmd
2389         cmd="exec $fd<&-"
2390         trap "eval $cmd" EXIT
2391         nlink=$(stat --dereference --format=%h /proc/self/fd/$fd)
2392         [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
2393         rm $DIR/$tfile || error "cannot remove '$DIR/$tfile'"
2394         nlink=$(stat --dereference --format=%h /proc/self/fd/$fd)
2395         [ ${nlink:--1} -eq 0 ] || error "nlink is $nlink, expected 0"
2396         eval $cmd
2397 }
2398 run_test 31n "check link count of unlinked file"
2399
2400 link_one() {
2401         local TEMPNAME=$(mktemp $1_XXXXXX)
2402         mlink $TEMPNAME $1 2> /dev/null &&
2403                 echo "$BASHPID: link $TEMPNAME to $1 succeeded"
2404         munlink $TEMPNAME
2405 }
2406
2407 test_31o() { # LU-2901
2408         test_mkdir -p $DIR/$tdir
2409         for LOOP in $(seq 100); do
2410                 rm -f $DIR/$tdir/$tfile*
2411                 for THREAD in $(seq 8); do
2412                         link_one $DIR/$tdir/$tfile.$LOOP &
2413                 done
2414                 wait
2415                 local LINKS=$(ls -1 $DIR/$tdir | grep -c $tfile.$LOOP)
2416                 [[ $LINKS -gt 1 ]] && ls $DIR/$tdir &&
2417                         error "$LINKS duplicate links to $tfile.$LOOP" &&
2418                         break || true
2419         done
2420 }
2421 run_test 31o "duplicate hard links with same filename"
2422
2423 test_31p() {
2424         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2425
2426         test_mkdir $DIR/$tdir
2427         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2428         $LFS setdirstripe -D -c2 -t all_char $DIR/$tdir/striped_dir
2429
2430         opendirunlink $DIR/$tdir/striped_dir/test1 ||
2431                 error "open unlink test1 failed"
2432         opendirunlink $DIR/$tdir/striped_dir/test2 ||
2433                 error "open unlink test2 failed"
2434
2435         $CHECKSTAT -a $DIR/$tdir/striped_dir/test1 ||
2436                 error "test1 still exists"
2437         $CHECKSTAT -a $DIR/$tdir/striped_dir/test2 ||
2438                 error "test2 still exists"
2439 }
2440 run_test 31p "remove of open striped directory"
2441
2442 cleanup_test32_mount() {
2443         local rc=0
2444         trap 0
2445         local loopdev=$(losetup -a | grep $EXT2_DEV | sed -ne 's/:.*$//p')
2446         $UMOUNT $DIR/$tdir/ext2-mountpoint || rc=$?
2447         losetup -d $loopdev || true
2448         rm -rf $DIR/$tdir
2449         return $rc
2450 }
2451
2452 test_32a() {
2453         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2454         echo "== more mountpoints and symlinks ================="
2455         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2456         trap cleanup_test32_mount EXIT
2457         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2458         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2459         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/.. || error
2460         cleanup_test32_mount
2461 }
2462 run_test 32a "stat d32a/ext2-mountpoint/.. ====================="
2463
2464 test_32b() {
2465         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2466         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2467         trap cleanup_test32_mount EXIT
2468         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2469         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2470         ls -al $DIR/$tdir/ext2-mountpoint/.. || error
2471         cleanup_test32_mount
2472 }
2473 run_test 32b "open d32b/ext2-mountpoint/.. ====================="
2474
2475 test_32c() {
2476         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2477         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2478         trap cleanup_test32_mount EXIT
2479         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2480         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2481         test_mkdir -p $DIR/$tdir/d2/test_dir
2482         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/../d2/test_dir || error
2483         cleanup_test32_mount
2484 }
2485 run_test 32c "stat d32c/ext2-mountpoint/../d2/test_dir ========="
2486
2487 test_32d() {
2488         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2489         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2490         trap cleanup_test32_mount EXIT
2491         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2492         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2493         test_mkdir -p $DIR/$tdir/d2/test_dir
2494         ls -al $DIR/$tdir/ext2-mountpoint/../d2/test_dir || error
2495         cleanup_test32_mount
2496 }
2497 run_test 32d "open d32d/ext2-mountpoint/../d2/test_dir ========="
2498
2499 test_32e() {
2500         [ -e $DIR/d32e ] && rm -fr $DIR/d32e
2501         test_mkdir -p $DIR/d32e/tmp
2502         TMP_DIR=$DIR/d32e/tmp
2503         ln -s $DIR/d32e $TMP_DIR/symlink11
2504         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2505         $CHECKSTAT -t link $DIR/d32e/tmp/symlink11 || error
2506         $CHECKSTAT -t link $DIR/d32e/symlink01 || error
2507 }
2508 run_test 32e "stat d32e/symlink->tmp/symlink->lustre-subdir ===="
2509
2510 test_32f() {
2511         [ -e $DIR/d32f ] && rm -fr $DIR/d32f
2512         test_mkdir -p $DIR/d32f/tmp
2513         TMP_DIR=$DIR/d32f/tmp
2514         ln -s $DIR/d32f $TMP_DIR/symlink11
2515         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2516         ls $DIR/d32f/tmp/symlink11  || error
2517         ls $DIR/d32f/symlink01 || error
2518 }
2519 run_test 32f "open d32f/symlink->tmp/symlink->lustre-subdir ===="
2520
2521 test_32g() {
2522         TMP_DIR=$DIR/$tdir/tmp
2523         test_mkdir -p $DIR/$tdir/tmp
2524         test_mkdir $DIR/${tdir}2
2525         ln -s $DIR/${tdir}2 $TMP_DIR/symlink12
2526         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2527         $CHECKSTAT -t link $TMP_DIR/symlink12 || error
2528         $CHECKSTAT -t link $DIR/$tdir/symlink02 || error
2529         $CHECKSTAT -t dir -f $TMP_DIR/symlink12 || error
2530         $CHECKSTAT -t dir -f $DIR/$tdir/symlink02 || error
2531 }
2532 run_test 32g "stat d32g/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2533
2534 test_32h() {
2535         rm -fr $DIR/$tdir $DIR/${tdir}2
2536         TMP_DIR=$DIR/$tdir/tmp
2537         test_mkdir -p $DIR/$tdir/tmp
2538         test_mkdir $DIR/${tdir}2
2539         ln -s $DIR/${tdir}2 $TMP_DIR/symlink12
2540         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2541         ls $TMP_DIR/symlink12 || error
2542         ls $DIR/$tdir/symlink02  || error
2543 }
2544 run_test 32h "open d32h/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2545
2546 test_32i() {
2547         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2548         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2549         trap cleanup_test32_mount EXIT
2550         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2551         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2552         touch $DIR/$tdir/test_file
2553         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../test_file || error
2554         cleanup_test32_mount
2555 }
2556 run_test 32i "stat d32i/ext2-mountpoint/../test_file ==========="
2557
2558 test_32j() {
2559         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2560         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2561         trap cleanup_test32_mount EXIT
2562         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2563         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2564         touch $DIR/$tdir/test_file
2565         cat $DIR/$tdir/ext2-mountpoint/../test_file || error
2566         cleanup_test32_mount
2567 }
2568 run_test 32j "open d32j/ext2-mountpoint/../test_file ==========="
2569
2570 test_32k() {
2571         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2572         rm -fr $DIR/$tdir
2573         trap cleanup_test32_mount EXIT
2574         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2575         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint
2576         test_mkdir -p $DIR/$tdir/d2
2577         touch $DIR/$tdir/d2/test_file || error
2578         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../d2/test_file || error
2579         cleanup_test32_mount
2580 }
2581 run_test 32k "stat d32k/ext2-mountpoint/../d2/test_file ========"
2582
2583 test_32l() {
2584         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2585         rm -fr $DIR/$tdir
2586         trap cleanup_test32_mount EXIT
2587         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2588         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2589         test_mkdir -p $DIR/$tdir/d2
2590         touch $DIR/$tdir/d2/test_file
2591         cat  $DIR/$tdir/ext2-mountpoint/../d2/test_file || error
2592         cleanup_test32_mount
2593 }
2594 run_test 32l "open d32l/ext2-mountpoint/../d2/test_file ========"
2595
2596 test_32m() {
2597         rm -fr $DIR/d32m
2598         test_mkdir -p $DIR/d32m/tmp
2599         TMP_DIR=$DIR/d32m/tmp
2600         ln -s $DIR $TMP_DIR/symlink11
2601         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2602         $CHECKSTAT -t link $DIR/d32m/tmp/symlink11 || error
2603         $CHECKSTAT -t link $DIR/d32m/symlink01 || error
2604 }
2605 run_test 32m "stat d32m/symlink->tmp/symlink->lustre-root ======"
2606
2607 test_32n() {
2608         rm -fr $DIR/d32n
2609         test_mkdir -p $DIR/d32n/tmp
2610         TMP_DIR=$DIR/d32n/tmp
2611         ln -s $DIR $TMP_DIR/symlink11
2612         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2613         ls -l $DIR/d32n/tmp/symlink11  || error
2614         ls -l $DIR/d32n/symlink01 || error
2615 }
2616 run_test 32n "open d32n/symlink->tmp/symlink->lustre-root ======"
2617
2618 test_32o() {
2619         touch $DIR/$tfile
2620         test_mkdir -p $DIR/d32o/tmp
2621         TMP_DIR=$DIR/d32o/tmp
2622         ln -s $DIR/$tfile $TMP_DIR/symlink12
2623         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2624         $CHECKSTAT -t link $DIR/d32o/tmp/symlink12 || error
2625         $CHECKSTAT -t link $DIR/d32o/symlink02 || error
2626         $CHECKSTAT -t file -f $DIR/d32o/tmp/symlink12 || error
2627         $CHECKSTAT -t file -f $DIR/d32o/symlink02 || error
2628 }
2629 run_test 32o "stat d32o/symlink->tmp/symlink->lustre-root/$tfile"
2630
2631 test_32p() {
2632         log 32p_1
2633         rm -fr $DIR/d32p
2634         log 32p_2
2635         rm -f $DIR/$tfile
2636         log 32p_3
2637         touch $DIR/$tfile
2638         log 32p_4
2639         test_mkdir -p $DIR/d32p/tmp
2640         log 32p_5
2641         TMP_DIR=$DIR/d32p/tmp
2642         log 32p_6
2643         ln -s $DIR/$tfile $TMP_DIR/symlink12
2644         log 32p_7
2645         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2646         log 32p_8
2647         cat $DIR/d32p/tmp/symlink12 || error
2648         log 32p_9
2649         cat $DIR/d32p/symlink02 || error
2650         log 32p_10
2651 }
2652 run_test 32p "open d32p/symlink->tmp/symlink->lustre-root/$tfile"
2653
2654 test_32q() {
2655         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2656         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2657         trap cleanup_test32_mount EXIT
2658         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2659         touch $DIR/$tdir/ext2-mountpoint/under_the_mount
2660         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint
2661         ls $DIR/$tdir/ext2-mountpoint | grep "\<under_the_mount\>" && error
2662         cleanup_test32_mount
2663 }
2664 run_test 32q "stat follows mountpoints in Lustre (should return error)"
2665
2666 test_32r() {
2667         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2668         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2669         trap cleanup_test32_mount EXIT
2670         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2671         touch $DIR/$tdir/ext2-mountpoint/under_the_mount
2672         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint
2673         ls $DIR/$tdir/ext2-mountpoint | grep -q under_the_mount && error || true
2674         cleanup_test32_mount
2675 }
2676 run_test 32r "opendir follows mountpoints in Lustre (should return error)"
2677
2678 test_33aa() {
2679         rm -f $DIR/$tfile
2680         touch $DIR/$tfile
2681         chmod 444 $DIR/$tfile
2682         chown $RUNAS_ID $DIR/$tfile
2683         log 33_1
2684         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
2685         log 33_2
2686 }
2687 run_test 33aa "write file with mode 444 (should return error) ===="
2688
2689 test_33a() {
2690         rm -fr $DIR/d33
2691         test_mkdir -p $DIR/d33
2692         chown $RUNAS_ID $DIR/d33
2693         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/d33/f33|| error "create"
2694         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/d33/f33 && \
2695                 error "open RDWR" || true
2696 }
2697 run_test 33a "test open file(mode=0444) with O_RDWR (should return error)"
2698
2699 test_33b() {
2700         rm -fr $DIR/d33
2701         test_mkdir -p $DIR/d33
2702         chown $RUNAS_ID $DIR/d33
2703         $RUNAS $OPENFILE -f 1286739555 $DIR/d33/f33 || true
2704 }
2705 run_test 33b "test open file with malformed flags (No panic)"
2706
2707 test_33c() {
2708         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2709         local ostnum
2710         local ostname
2711         local write_bytes
2712         local all_zeros
2713
2714         remote_ost_nodsh && skip "remote OST with nodsh" && return
2715         all_zeros=:
2716         rm -fr $DIR/d33
2717         test_mkdir -p $DIR/d33
2718         # Read: 0, Write: 4, create/destroy: 2/0, stat: 1, punch: 0
2719
2720         sync
2721         for ostnum in $(seq $OSTCOUNT); do
2722                 # test-framework's OST numbering is one-based, while Lustre's
2723                 # is zero-based
2724                 ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2725                 # Parsing llobdstat's output sucks; we could grep the /proc
2726                 # path, but that's likely to not be as portable as using the
2727                 # llobdstat utility.  So we parse lctl output instead.
2728                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2729                         obdfilter/$ostname/stats |
2730                         awk '/^write_bytes/ {print $7}' )
2731                 echo "baseline_write_bytes@$OSTnum/$ostname=$write_bytes"
2732                 if (( ${write_bytes:-0} > 0 ))
2733                 then
2734                         all_zeros=false
2735                         break;
2736                 fi
2737         done
2738
2739         $all_zeros || return 0
2740
2741         # Write four bytes
2742         echo foo > $DIR/d33/bar
2743         # Really write them
2744         sync
2745
2746         # Total up write_bytes after writing.  We'd better find non-zeros.
2747         for ostnum in $(seq $OSTCOUNT); do
2748                 ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2749                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2750                         obdfilter/$ostname/stats |
2751                         awk '/^write_bytes/ {print $7}' )
2752                 echo "write_bytes@$OSTnum/$ostname=$write_bytes"
2753                 if (( ${write_bytes:-0} > 0 ))
2754                 then
2755                         all_zeros=false
2756                         break;
2757                 fi
2758         done
2759
2760         if $all_zeros
2761         then
2762                 for ostnum in $(seq $OSTCOUNT); do
2763                         ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2764                         echo "Check that write_bytes is present in obdfilter/*/stats:"
2765                         do_facet ost$ostnum lctl get_param -n \
2766                                 obdfilter/$ostname/stats
2767                 done
2768                 error "OST not keeping write_bytes stats (b22312)"
2769         fi
2770 }
2771 run_test 33c "test llobdstat and write_bytes"
2772
2773 test_33d() {
2774         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
2775         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2776         local MDTIDX=1
2777         local remote_dir=$DIR/$tdir/remote_dir
2778
2779         test_mkdir -p $DIR/$tdir
2780         $LFS mkdir -i $MDTIDX $remote_dir ||
2781                 error "create remote directory failed"
2782
2783         touch $remote_dir/$tfile
2784         chmod 444 $remote_dir/$tfile
2785         chown $RUNAS_ID $remote_dir/$tfile
2786
2787         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
2788
2789         chown $RUNAS_ID $remote_dir
2790         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 ||
2791                                         error "create" || true
2792         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 &&
2793                                     error "open RDWR" || true
2794         $RUNAS $OPENFILE -f 1286739555 $remote_dir/f33 || true
2795 }
2796 run_test 33d "openfile with 444 modes and malformed flags under remote dir"
2797
2798 test_33e() {
2799         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2800
2801         mkdir $DIR/$tdir
2802
2803         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2804         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
2805         mkdir $DIR/$tdir/local_dir
2806
2807         local s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
2808         local s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
2809         local l_mode=$(stat -c%f $DIR/$tdir/local_dir)
2810
2811         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
2812                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode"
2813
2814         rmdir $DIR/$tdir/* || error "rmdir failed"
2815
2816         umask 777
2817         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2818         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
2819         mkdir $DIR/$tdir/local_dir
2820
2821         s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
2822         s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
2823         l_mode=$(stat -c%f $DIR/$tdir/local_dir)
2824
2825         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
2826                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode 777"
2827
2828         rmdir $DIR/$tdir/* || error "rmdir(umask 777) failed"
2829
2830         umask 000
2831         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2832         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
2833         mkdir $DIR/$tdir/local_dir
2834
2835         s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
2836         s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
2837         l_mode=$(stat -c%f $DIR/$tdir/local_dir)
2838
2839         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
2840                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode 0"
2841 }
2842 run_test 33e "mkdir and striped directory should have same mode"
2843
2844 cleanup_33f() {
2845         trap 0
2846         do_facet $SINGLEMDS $LCTL set_param mdt.*.enable_remote_dir_gid=0
2847 }
2848
2849 test_33f() {
2850         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2851         remote_mds_nodsh && skip "remote MDS with nodsh" && return
2852
2853         mkdir $DIR/$tdir
2854         chmod go+rwx $DIR/$tdir
2855         do_facet $SINGLEMDS $LCTL set_param mdt.*.enable_remote_dir_gid=-1
2856         trap cleanup_33f EXIT
2857
2858         $RUNAS lfs mkdir -c$MDSCOUNT $DIR/$tdir/striped_dir ||
2859                 error "cannot create striped directory"
2860
2861         $RUNAS touch $DIR/$tdir/striped_dir/{0..16} ||
2862                 error "cannot create files in striped directory"
2863
2864         $RUNAS rm $DIR/$tdir/striped_dir/{0..16} ||
2865                 error "cannot remove files in striped directory"
2866
2867         $RUNAS rmdir $DIR/$tdir/striped_dir ||
2868                 error "cannot remove striped directory"
2869
2870         cleanup_33f
2871 }
2872 run_test 33f "nonroot user can create, access, and remove a striped directory"
2873
2874 test_33g() {
2875         mkdir -p $DIR/$tdir/dir2
2876
2877         local err=$($RUNAS mkdir $DIR/$tdir/dir2 2>&1)
2878         echo $err
2879         [[ $err =~ "exists" ]] || error "Not exists error"
2880 }
2881 run_test 33g "nonroot user create already existing root created file"
2882
2883 TEST_34_SIZE=${TEST_34_SIZE:-2000000000000}
2884 test_34a() {
2885         rm -f $DIR/f34
2886         $MCREATE $DIR/f34 || error
2887         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2888         $TRUNCATE $DIR/f34 $TEST_34_SIZE || error
2889         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2890         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2891 }
2892 run_test 34a "truncate file that has not been opened ==========="
2893
2894 test_34b() {
2895         [ ! -f $DIR/f34 ] && test_34a
2896         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2897         $OPENFILE -f O_RDONLY $DIR/f34
2898         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2899         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2900 }
2901 run_test 34b "O_RDONLY opening file doesn't create objects ====="
2902
2903 test_34c() {
2904         [ ! -f $DIR/f34 ] && test_34a
2905         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2906         $OPENFILE -f O_RDWR $DIR/f34
2907         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" && error
2908         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2909 }
2910 run_test 34c "O_RDWR opening file-with-size works =============="
2911
2912 test_34d() {
2913         [ ! -f $DIR/f34 ] && test_34a
2914         dd if=/dev/zero of=$DIR/f34 conv=notrunc bs=4k count=1 || error
2915         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2916         rm $DIR/f34
2917 }
2918 run_test 34d "write to sparse file ============================="
2919
2920 test_34e() {
2921         rm -f $DIR/f34e
2922         $MCREATE $DIR/f34e || error
2923         $TRUNCATE $DIR/f34e 1000 || error
2924         $CHECKSTAT -s 1000 $DIR/f34e || error
2925         $OPENFILE -f O_RDWR $DIR/f34e
2926         $CHECKSTAT -s 1000 $DIR/f34e || error
2927 }
2928 run_test 34e "create objects, some with size and some without =="
2929
2930 test_34f() { # bug 6242, 6243
2931         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2932         SIZE34F=48000
2933         rm -f $DIR/f34f
2934         $MCREATE $DIR/f34f || error
2935         $TRUNCATE $DIR/f34f $SIZE34F || error "truncating $DIR/f3f to $SIZE34F"
2936         dd if=$DIR/f34f of=$TMP/f34f
2937         $CHECKSTAT -s $SIZE34F $TMP/f34f || error "$TMP/f34f not $SIZE34F bytes"
2938         dd if=/dev/zero of=$TMP/f34fzero bs=$SIZE34F count=1
2939         cmp $DIR/f34f $TMP/f34fzero || error "$DIR/f34f not all zero"
2940         cmp $TMP/f34f $TMP/f34fzero || error "$TMP/f34f not all zero"
2941         rm $TMP/f34f $TMP/f34fzero $DIR/f34f
2942 }
2943 run_test 34f "read from a file with no objects until EOF ======="
2944
2945 test_34g() {
2946         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2947         dd if=/dev/zero of=$DIR/$tfile bs=1 count=100 seek=$TEST_34_SIZE || error
2948         $TRUNCATE $DIR/$tfile $((TEST_34_SIZE / 2))|| error
2949         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile || error "truncate failed"
2950         cancel_lru_locks osc
2951         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile || \
2952                 error "wrong size after lock cancel"
2953
2954         $TRUNCATE $DIR/$tfile $TEST_34_SIZE || error
2955         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile || \
2956                 error "expanding truncate failed"
2957         cancel_lru_locks osc
2958         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile || \
2959                 error "wrong expanded size after lock cancel"
2960 }
2961 run_test 34g "truncate long file ==============================="
2962
2963 test_34h() {
2964         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2965         local gid=10
2966         local sz=1000
2967
2968         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10 || error
2969         sync # Flush the cache so that multiop below does not block on cache
2970              # flush when getting the group lock
2971         $MULTIOP $DIR/$tfile OG${gid}T${sz}g${gid}c &
2972         MULTIPID=$!
2973
2974         # Since just timed wait is not good enough, let's do a sync write
2975         # that way we are sure enough time for a roundtrip + processing
2976         # passed + 2 seconds of extra margin.
2977         dd if=/dev/zero of=$DIR/${tfile}-1 bs=4096 oflag=direct count=1
2978         rm $DIR/${tfile}-1
2979         sleep 2
2980
2981         if [[ `ps h -o comm -p $MULTIPID` == "multiop" ]]; then
2982                 error "Multiop blocked on ftruncate, pid=$MULTIPID"
2983                 kill -9 $MULTIPID
2984         fi
2985         wait $MULTIPID
2986         local nsz=`stat -c %s $DIR/$tfile`
2987         [[ $nsz == $sz ]] || error "New size wrong $nsz != $sz"
2988 }
2989 run_test 34h "ftruncate file under grouplock should not block"
2990
2991 test_35a() {
2992         cp /bin/sh $DIR/f35a
2993         chmod 444 $DIR/f35a
2994         chown $RUNAS_ID $DIR/f35a
2995         $RUNAS $DIR/f35a && error || true
2996         rm $DIR/f35a
2997 }
2998 run_test 35a "exec file with mode 444 (should return and not leak) ====="
2999
3000 test_36a() {
3001         rm -f $DIR/f36
3002         utime $DIR/f36 || error
3003 }
3004 run_test 36a "MDS utime check (mknod, utime) ==================="
3005
3006 test_36b() {
3007         echo "" > $DIR/f36
3008         utime $DIR/f36 || error
3009 }
3010 run_test 36b "OST utime check (open, utime) ===================="
3011
3012 test_36c() {
3013         rm -f $DIR/d36/f36
3014         test_mkdir $DIR/d36
3015         chown $RUNAS_ID $DIR/d36
3016         $RUNAS utime $DIR/d36/f36 || error
3017 }
3018 run_test 36c "non-root MDS utime check (mknod, utime) =========="
3019
3020 test_36d() {
3021         [ ! -d $DIR/d36 ] && test_36c
3022         echo "" > $DIR/d36/f36
3023         $RUNAS utime $DIR/d36/f36 || error
3024 }
3025 run_test 36d "non-root OST utime check (open, utime) ==========="
3026
3027 test_36e() {
3028         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID -- skipping" && return
3029         test_mkdir -p $DIR/$tdir
3030         touch $DIR/$tdir/$tfile
3031         $RUNAS utime $DIR/$tdir/$tfile && \
3032                 error "utime worked, expected failure" || true
3033 }
3034 run_test 36e "utime on non-owned file (should return error) ===="
3035
3036 subr_36fh() {
3037         local fl="$1"
3038         local LANG_SAVE=$LANG
3039         local LC_LANG_SAVE=$LC_LANG
3040         export LANG=C LC_LANG=C # for date language
3041
3042         DATESTR="Dec 20  2000"
3043         test_mkdir -p $DIR/$tdir
3044         lctl set_param fail_loc=$fl
3045         date; date +%s
3046         cp /etc/hosts $DIR/$tdir/$tfile
3047         sync & # write RPC generated with "current" inode timestamp, but delayed
3048         sleep 1
3049         touch --date="$DATESTR" $DIR/$tdir/$tfile # setattr timestamp in past
3050         LS_BEFORE="`ls -l $DIR/$tdir/$tfile`" # old timestamp from client cache
3051         cancel_lru_locks osc
3052         LS_AFTER="`ls -l $DIR/$tdir/$tfile`"  # timestamp from OST object
3053         date; date +%s
3054         [ "$LS_BEFORE" != "$LS_AFTER" ] && \
3055                 echo "BEFORE: $LS_BEFORE" && \
3056                 echo "AFTER : $LS_AFTER" && \
3057                 echo "WANT  : $DATESTR" && \
3058                 error "$DIR/$tdir/$tfile timestamps changed" || true
3059
3060         export LANG=$LANG_SAVE LC_LANG=$LC_LANG_SAVE
3061 }
3062
3063 test_36f() {
3064         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3065         #define OBD_FAIL_OST_BRW_PAUSE_BULK 0x214
3066         subr_36fh "0x80000214"
3067 }
3068 run_test 36f "utime on file racing with OST BRW write =========="
3069
3070 test_36g() {
3071         remote_ost_nodsh && skip "remote OST with nodsh" && return
3072         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3073         local fmd_max_age
3074         local fmd_before
3075         local fmd_after
3076
3077         test_mkdir -p $DIR/$tdir
3078         fmd_max_age=$(do_facet ost1 \
3079                 "lctl get_param -n obdfilter.*.client_cache_seconds 2> /dev/null | \
3080                 head -n 1")
3081
3082         fmd_before=$(do_facet ost1 \
3083                 "awk '/ll_fmd_cache/ {print \\\$2}' /proc/slabinfo")
3084         touch $DIR/$tdir/$tfile
3085         sleep $((fmd_max_age + 12))
3086         fmd_after=$(do_facet ost1 \
3087                 "awk '/ll_fmd_cache/ {print \\\$2}' /proc/slabinfo")
3088
3089         echo "fmd_before: $fmd_before"
3090         echo "fmd_after: $fmd_after"
3091         [[ $fmd_after -gt $fmd_before ]] &&
3092                 echo "AFTER: $fmd_after > BEFORE: $fmd_before" &&
3093                 error "fmd didn't expire after ping" || true
3094 }
3095 run_test 36g "filter mod data cache expiry ====================="
3096
3097 test_36h() {
3098         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3099         #define OBD_FAIL_OST_BRW_PAUSE_BULK2 0x227
3100         subr_36fh "0x80000227"
3101 }
3102 run_test 36h "utime on file racing with OST BRW write =========="
3103
3104 test_36i() {
3105         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
3106
3107         test_mkdir $DIR/$tdir
3108         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir
3109
3110         local mtime=$(stat -c%Y $DIR/$tdir/striped_dir)
3111         local new_mtime=$((mtime + 200))
3112
3113         #change Modify time of striped dir
3114         touch -m -d @$new_mtime $DIR/$tdir/striped_dir ||
3115                         error "change mtime failed"
3116
3117         local got=$(stat -c%Y $DIR/$tdir/striped_dir)
3118
3119         [ "$new_mtime" = "$got" ] || error "expect $new_mtime got $got"
3120 }
3121 run_test 36i "change mtime on striped directory"
3122
3123 # test_37 - duplicate with tests 32q 32r
3124
3125 test_38() {
3126         local file=$DIR/$tfile
3127         touch $file
3128         openfile -f O_DIRECTORY $file
3129         local RC=$?
3130         local ENOTDIR=20
3131         [ $RC -eq 0 ] && error "opened file $file with O_DIRECTORY" || true
3132         [ $RC -eq $ENOTDIR ] || error "error $RC should be ENOTDIR ($ENOTDIR)"
3133 }
3134 run_test 38 "open a regular file with O_DIRECTORY should return -ENOTDIR ==="
3135
3136 test_39a() { # was test_39
3137         touch $DIR/$tfile
3138         touch $DIR/${tfile}2
3139 #       ls -l  $DIR/$tfile $DIR/${tfile}2
3140 #       ls -lu  $DIR/$tfile $DIR/${tfile}2
3141 #       ls -lc  $DIR/$tfile $DIR/${tfile}2
3142         sleep 2
3143         $OPENFILE -f O_CREAT:O_TRUNC:O_WRONLY $DIR/${tfile}2
3144         if [ ! $DIR/${tfile}2 -nt $DIR/$tfile ]; then
3145                 echo "mtime"
3146                 ls -l --full-time $DIR/$tfile $DIR/${tfile}2
3147                 echo "atime"
3148                 ls -lu --full-time $DIR/$tfile $DIR/${tfile}2
3149                 echo "ctime"
3150                 ls -lc --full-time $DIR/$tfile $DIR/${tfile}2
3151                 error "O_TRUNC didn't change timestamps"
3152         fi
3153 }
3154 run_test 39a "mtime changed on create ==========================="
3155
3156 test_39b() {
3157         test_mkdir -p -c1 $DIR/$tdir
3158         cp -p /etc/passwd $DIR/$tdir/fopen
3159         cp -p /etc/passwd $DIR/$tdir/flink
3160         cp -p /etc/passwd $DIR/$tdir/funlink
3161         cp -p /etc/passwd $DIR/$tdir/frename
3162         ln $DIR/$tdir/funlink $DIR/$tdir/funlink2
3163
3164         sleep 1
3165         echo "aaaaaa" >> $DIR/$tdir/fopen
3166         echo "aaaaaa" >> $DIR/$tdir/flink
3167         echo "aaaaaa" >> $DIR/$tdir/funlink
3168         echo "aaaaaa" >> $DIR/$tdir/frename
3169
3170         local open_new=`stat -c %Y $DIR/$tdir/fopen`
3171         local link_new=`stat -c %Y $DIR/$tdir/flink`
3172         local unlink_new=`stat -c %Y $DIR/$tdir/funlink`
3173         local rename_new=`stat -c %Y $DIR/$tdir/frename`
3174
3175         cat $DIR/$tdir/fopen > /dev/null
3176         ln $DIR/$tdir/flink $DIR/$tdir/flink2
3177         rm -f $DIR/$tdir/funlink2
3178         mv -f $DIR/$tdir/frename $DIR/$tdir/frename2
3179
3180         for (( i=0; i < 2; i++ )) ; do
3181                 local open_new2=`stat -c %Y $DIR/$tdir/fopen`
3182                 local link_new2=`stat -c %Y $DIR/$tdir/flink`
3183                 local unlink_new2=`stat -c %Y $DIR/$tdir/funlink`
3184                 local rename_new2=`stat -c %Y $DIR/$tdir/frename2`
3185
3186                 [ $open_new2 -eq $open_new ] || error "open file reverses mtime"
3187                 [ $link_new2 -eq $link_new ] || error "link file reverses mtime"
3188                 [ $unlink_new2 -eq $unlink_new ] || error "unlink file reverses mtime"
3189                 [ $rename_new2 -eq $rename_new ] || error "rename file reverses mtime"
3190
3191                 cancel_lru_locks osc
3192                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3193         done
3194 }
3195 run_test 39b "mtime change on open, link, unlink, rename  ======"
3196
3197 # this should be set to past
3198 TEST_39_MTIME=`date -d "1 year ago" +%s`
3199
3200 # bug 11063
3201 test_39c() {
3202         touch $DIR1/$tfile
3203         sleep 2
3204         local mtime0=`stat -c %Y $DIR1/$tfile`
3205
3206         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3207         local mtime1=`stat -c %Y $DIR1/$tfile`
3208         [ "$mtime1" = $TEST_39_MTIME ] || \
3209                 error "mtime is not set to past: $mtime1, should be $TEST_39_MTIME"
3210
3211         local d1=`date +%s`
3212         echo hello >> $DIR1/$tfile
3213         local d2=`date +%s`
3214         local mtime2=`stat -c %Y $DIR1/$tfile`
3215         [ "$mtime2" -ge "$d1" ] && [ "$mtime2" -le "$d2" ] || \
3216                 error "mtime is not updated on write: $d1 <= $mtime2 <= $d2"
3217
3218         mv $DIR1/$tfile $DIR1/$tfile-1
3219
3220         for (( i=0; i < 2; i++ )) ; do
3221                 local mtime3=`stat -c %Y $DIR1/$tfile-1`
3222                 [ "$mtime2" = "$mtime3" ] || \
3223                         error "mtime ($mtime2) changed (to $mtime3) on rename"
3224
3225                 cancel_lru_locks osc
3226                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3227         done
3228 }
3229 run_test 39c "mtime change on rename ==========================="
3230
3231 # bug 21114
3232 test_39d() {
3233         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3234         touch $DIR1/$tfile
3235
3236         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3237
3238         for (( i=0; i < 2; i++ )) ; do
3239                 local mtime=`stat -c %Y $DIR1/$tfile`
3240                 [ $mtime = $TEST_39_MTIME ] || \
3241                         error "mtime($mtime) is not set to $TEST_39_MTIME"
3242
3243                 cancel_lru_locks osc
3244                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3245         done
3246 }
3247 run_test 39d "create, utime, stat =============================="
3248
3249 # bug 21114
3250 test_39e() {
3251         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3252         touch $DIR1/$tfile
3253         local mtime1=`stat -c %Y $DIR1/$tfile`
3254
3255         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3256
3257         for (( i=0; i < 2; i++ )) ; do
3258                 local mtime2=`stat -c %Y $DIR1/$tfile`
3259                 [ $mtime2 = $TEST_39_MTIME ] || \
3260                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
3261
3262                 cancel_lru_locks osc
3263                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3264         done
3265 }
3266 run_test 39e "create, stat, utime, stat ========================"
3267
3268 # bug 21114
3269 test_39f() {
3270         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3271         touch $DIR1/$tfile
3272         mtime1=`stat -c %Y $DIR1/$tfile`
3273
3274         sleep 2
3275         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3276
3277         for (( i=0; i < 2; i++ )) ; do
3278                 local mtime2=`stat -c %Y $DIR1/$tfile`
3279                 [ $mtime2 = $TEST_39_MTIME ] || \
3280                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
3281
3282                 cancel_lru_locks osc
3283                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3284         done
3285 }
3286 run_test 39f "create, stat, sleep, utime, stat ================="
3287
3288 # bug 11063
3289 test_39g() {
3290         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3291         echo hello >> $DIR1/$tfile
3292         local mtime1=`stat -c %Y $DIR1/$tfile`
3293
3294         sleep 2
3295         chmod o+r $DIR1/$tfile
3296
3297         for (( i=0; i < 2; i++ )) ; do
3298                 local mtime2=`stat -c %Y $DIR1/$tfile`
3299                 [ "$mtime1" = "$mtime2" ] || \
3300                         error "lost mtime: $mtime2, should be $mtime1"
3301
3302                 cancel_lru_locks osc
3303                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3304         done
3305 }
3306 run_test 39g "write, chmod, stat ==============================="
3307
3308 # bug 11063
3309 test_39h() {
3310         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3311         touch $DIR1/$tfile
3312         sleep 1
3313
3314         local d1=`date`
3315         echo hello >> $DIR1/$tfile
3316         local mtime1=`stat -c %Y $DIR1/$tfile`
3317
3318         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3319         local d2=`date`
3320         if [ "$d1" != "$d2" ]; then
3321                 echo "write and touch not within one second"
3322         else
3323                 for (( i=0; i < 2; i++ )) ; do
3324                         local mtime2=`stat -c %Y $DIR1/$tfile`
3325                         [ "$mtime2" = $TEST_39_MTIME ] || \
3326                                 error "lost mtime: $mtime2, should be $TEST_39_MTIME"
3327
3328                         cancel_lru_locks osc
3329                         if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3330                 done
3331         fi
3332 }
3333 run_test 39h "write, utime within one second, stat ============="
3334
3335 test_39i() {
3336         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3337         touch $DIR1/$tfile
3338         sleep 1
3339
3340         echo hello >> $DIR1/$tfile
3341         local mtime1=`stat -c %Y $DIR1/$tfile`
3342
3343         mv $DIR1/$tfile $DIR1/$tfile-1
3344
3345         for (( i=0; i < 2; i++ )) ; do
3346                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
3347
3348                 [ "$mtime1" = "$mtime2" ] || \
3349                         error "lost mtime: $mtime2, should be $mtime1"
3350
3351                 cancel_lru_locks osc
3352                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3353         done
3354 }
3355 run_test 39i "write, rename, stat =============================="
3356
3357 test_39j() {
3358         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3359         start_full_debug_logging
3360         touch $DIR1/$tfile
3361         sleep 1
3362
3363         #define OBD_FAIL_OSC_DELAY_SETTIME       0x412
3364         lctl set_param fail_loc=0x80000412
3365         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c ||
3366                 error "multiop failed"
3367         local multipid=$!
3368         local mtime1=`stat -c %Y $DIR1/$tfile`
3369
3370         mv $DIR1/$tfile $DIR1/$tfile-1
3371
3372         kill -USR1 $multipid
3373         wait $multipid || error "multiop close failed"
3374
3375         for (( i=0; i < 2; i++ )) ; do
3376                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
3377                 [ "$mtime1" = "$mtime2" ] ||
3378                         error "mtime is lost on close: $mtime2, " \
3379                               "should be $mtime1"
3380
3381                 cancel_lru_locks osc
3382                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3383         done
3384         lctl set_param fail_loc=0
3385         stop_full_debug_logging
3386 }
3387 run_test 39j "write, rename, close, stat ======================="
3388
3389 test_39k() {
3390         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3391         touch $DIR1/$tfile
3392         sleep 1
3393
3394         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c || error "multiop failed"
3395         local multipid=$!
3396         local mtime1=`stat -c %Y $DIR1/$tfile`
3397
3398         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3399
3400         kill -USR1 $multipid
3401         wait $multipid || error "multiop close failed"
3402
3403         for (( i=0; i < 2; i++ )) ; do
3404                 local mtime2=`stat -c %Y $DIR1/$tfile`
3405
3406                 [ "$mtime2" = $TEST_39_MTIME ] || \
3407                         error "mtime is lost on close: $mtime2, should be $TEST_39_MTIME"
3408
3409                 cancel_lru_locks osc
3410                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3411         done
3412 }
3413 run_test 39k "write, utime, close, stat ========================"
3414
3415 # this should be set to future
3416 TEST_39_ATIME=`date -d "1 year" +%s`
3417
3418 test_39l() {
3419         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3420         remote_mds_nodsh && skip "remote MDS with nodsh" && return
3421         local atime_diff=$(do_facet $SINGLEMDS \
3422                                 lctl get_param -n mdd.*MDT0000*.atime_diff)
3423         rm -rf $DIR/$tdir
3424         mkdir -p $DIR/$tdir
3425
3426         # test setting directory atime to future
3427         touch -a -d @$TEST_39_ATIME $DIR/$tdir
3428         local atime=$(stat -c %X $DIR/$tdir)
3429         [ "$atime" = $TEST_39_ATIME ] ||
3430                 error "atime is not set to future: $atime, $TEST_39_ATIME"
3431
3432         # test setting directory atime from future to now
3433         local now=$(date +%s)
3434         touch -a -d @$now $DIR/$tdir
3435
3436         atime=$(stat -c %X $DIR/$tdir)
3437         [ "$atime" -eq "$now"  ] ||
3438                 error "atime is not updated from future: $atime, $now"
3439
3440         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=2
3441         sleep 3
3442
3443         # test setting directory atime when now > dir atime + atime_diff
3444         local d1=$(date +%s)
3445         ls $DIR/$tdir
3446         local d2=$(date +%s)
3447         cancel_lru_locks mdc
3448         atime=$(stat -c %X $DIR/$tdir)
3449         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] ||
3450                 error "atime is not updated  : $atime, should be $d2"
3451
3452         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=60
3453         sleep 3
3454
3455         # test not setting directory atime when now < dir atime + atime_diff
3456         ls $DIR/$tdir
3457         cancel_lru_locks mdc
3458         atime=$(stat -c %X $DIR/$tdir)
3459         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] ||
3460                 error "atime is updated to $atime, should remain $d1<atime<$d2"
3461
3462         do_facet $SINGLEMDS \
3463                 lctl set_param -n mdd.*MDT0000*.atime_diff=$atime_diff
3464 }
3465 run_test 39l "directory atime update ==========================="
3466
3467 test_39m() {
3468         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3469         touch $DIR1/$tfile
3470         sleep 2
3471         local far_past_mtime=$(date -d "May 29 1953" +%s)
3472         local far_past_atime=$(date -d "Dec 17 1903" +%s)
3473
3474         touch -m -d @$far_past_mtime $DIR1/$tfile
3475         touch -a -d @$far_past_atime $DIR1/$tfile
3476
3477         for (( i=0; i < 2; i++ )) ; do
3478                 local timestamps=$(stat -c "%X %Y" $DIR1/$tfile)
3479                 [ "$timestamps" = "$far_past_atime $far_past_mtime" ] || \
3480                         error "atime or mtime set incorrectly"
3481
3482                 cancel_lru_locks osc
3483                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3484         done
3485 }
3486 run_test 39m "test atime and mtime before 1970"
3487
3488 test_39n() { # LU-3832
3489         remote_mds_nodsh && skip "remote MDS with nodsh" && return
3490         local atime_diff=$(do_facet $SINGLEMDS \
3491                 lctl get_param -n mdd.*MDT0000*.atime_diff)
3492         local atime0
3493         local atime1
3494         local atime2
3495
3496         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=1
3497
3498         rm -rf $DIR/$tfile
3499         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 status=noxfer
3500         atime0=$(stat -c %X $DIR/$tfile)
3501
3502         sleep 5
3503         $MULTIOP $DIR/$tfile oO_RDONLY:O_NOATIME:r4096c
3504         atime1=$(stat -c %X $DIR/$tfile)
3505
3506         sleep 5
3507         cancel_lru_locks mdc
3508         cancel_lru_locks osc
3509         $MULTIOP $DIR/$tfile oO_RDONLY:O_NOATIME:r4096c
3510         atime2=$(stat -c %X $DIR/$tfile)
3511
3512         do_facet $SINGLEMDS \
3513                 lctl set_param -n mdd.*MDT0000*.atime_diff=$atime_diff
3514
3515         [ "$atime0" -eq "$atime1" ] || error "atime0 $atime0 != atime1 $atime1"
3516         [ "$atime1" -eq "$atime2" ] || error "atime0 $atime0 != atime1 $atime1"
3517 }
3518 run_test 39n "check that O_NOATIME is honored"
3519
3520 test_39o() {
3521         TESTDIR=$DIR/$tdir/$tfile
3522         [ -e $TESTDIR ] && rm -rf $TESTDIR
3523         mkdir -p $TESTDIR
3524         cd $TESTDIR
3525         links1=2
3526         ls
3527         mkdir a b
3528         ls
3529         links2=$(stat -c %h .)
3530         [ $(($links1 + 2)) != $links2 ] &&
3531                 error "wrong links count $(($links1 + 2)) != $links2"
3532         rmdir b
3533         links3=$(stat -c %h .)
3534         [ $(($links1 + 1)) != $links3 ] &&
3535                 error "wrong links count $links1 != $links3"
3536         return 0
3537 }
3538 run_test 39o "directory cached attributes updated after create ========"
3539
3540 test_39p() {
3541         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
3542         local MDTIDX=1
3543         TESTDIR=$DIR/$tdir/$tfile
3544         [ -e $TESTDIR ] && rm -rf $TESTDIR
3545         test_mkdir -p $TESTDIR
3546         cd $TESTDIR
3547         links1=2
3548         ls
3549         $LFS mkdir -i $MDTIDX $TESTDIR/remote_dir1
3550         $LFS mkdir -i $MDTIDX $TESTDIR/remote_dir2
3551         ls
3552         links2=$(stat -c %h .)
3553         [ $(($links1 + 2)) != $links2 ] &&
3554                 error "wrong links count $(($links1 + 2)) != $links2"
3555         rmdir remote_dir2
3556         links3=$(stat -c %h .)
3557         [ $(($links1 + 1)) != $links3 ] &&
3558                 error "wrong links count $links1 != $links3"
3559         return 0
3560 }
3561 run_test 39p "remote directory cached attributes updated after create ========"
3562
3563
3564 test_39q() { # LU-8041
3565         local testdir=$DIR/$tdir
3566         mkdir -p $testdir
3567         multiop_bg_pause $testdir D_c || error "multiop failed"
3568         local multipid=$!
3569         cancel_lru_locks mdc
3570         kill -USR1 $multipid
3571         local atime=$(stat -c %X $testdir)
3572         [ "$atime" -ne 0 ] || error "atime is zero"
3573 }
3574 run_test 39q "close won't zero out atime"
3575
3576 test_40() {
3577         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
3578         $RUNAS $OPENFILE -f O_WRONLY:O_TRUNC $DIR/$tfile &&
3579                 error "openfile O_WRONLY:O_TRUNC $tfile failed"
3580         $CHECKSTAT -t file -s 4096 $DIR/$tfile ||
3581                 error "$tfile is not 4096 bytes in size"
3582 }
3583 run_test 40 "failed open(O_TRUNC) doesn't truncate ============="
3584
3585 test_41() {
3586         # bug 1553
3587         small_write $DIR/f41 18
3588 }
3589 run_test 41 "test small file write + fstat ====================="
3590
3591 count_ost_writes() {
3592         lctl get_param -n osc.*.stats |
3593                 awk -vwrites=0 '/ost_write/ { writes += $2 } \
3594                         END { printf("%0.0f", writes) }'
3595 }
3596
3597 # decent default
3598 WRITEBACK_SAVE=500
3599 DIRTY_RATIO_SAVE=40
3600 MAX_DIRTY_RATIO=50
3601 BG_DIRTY_RATIO_SAVE=10
3602 MAX_BG_DIRTY_RATIO=25
3603
3604 start_writeback() {
3605         trap 0
3606         # in 2.6, restore /proc/sys/vm/dirty_writeback_centisecs,
3607         # dirty_ratio, dirty_background_ratio
3608         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
3609                 sysctl -w vm.dirty_writeback_centisecs=$WRITEBACK_SAVE
3610                 sysctl -w vm.dirty_background_ratio=$BG_DIRTY_RATIO_SAVE
3611                 sysctl -w vm.dirty_ratio=$DIRTY_RATIO_SAVE
3612         else
3613                 # if file not here, we are a 2.4 kernel
3614                 kill -CONT `pidof kupdated`
3615         fi
3616 }
3617
3618 stop_writeback() {
3619         # setup the trap first, so someone cannot exit the test at the
3620         # exact wrong time and mess up a machine
3621         trap start_writeback EXIT
3622         # in 2.6, save and 0 /proc/sys/vm/dirty_writeback_centisecs
3623         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
3624                 WRITEBACK_SAVE=`sysctl -n vm.dirty_writeback_centisecs`
3625                 sysctl -w vm.dirty_writeback_centisecs=0
3626                 sysctl -w vm.dirty_writeback_centisecs=0
3627                 # save and increase /proc/sys/vm/dirty_ratio
3628                 DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_ratio`
3629                 sysctl -w vm.dirty_ratio=$MAX_DIRTY_RATIO
3630                 # save and increase /proc/sys/vm/dirty_background_ratio
3631                 BG_DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_background_ratio`
3632                 sysctl -w vm.dirty_background_ratio=$MAX_BG_DIRTY_RATIO
3633         else
3634                 # if file not here, we are a 2.4 kernel
3635                 kill -STOP `pidof kupdated`
3636         fi
3637 }
3638
3639 # ensure that all stripes have some grant before we test client-side cache
3640 setup_test42() {
3641         for i in `seq -f $DIR/f42-%g 1 $OSTCOUNT`; do
3642                 dd if=/dev/zero of=$i bs=4k count=1
3643                 rm $i
3644         done
3645 }
3646
3647 # Tests 42* verify that our behaviour is correct WRT caching, file closure,
3648 # file truncation, and file removal.
3649 test_42a() {
3650         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3651         setup_test42
3652         cancel_lru_locks osc
3653         stop_writeback
3654         sync; sleep 1; sync # just to be safe
3655         BEFOREWRITES=`count_ost_writes`
3656         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur_grant_bytes | grep "[0-9]"
3657         dd if=/dev/zero of=$DIR/f42a bs=1024 count=100
3658         AFTERWRITES=`count_ost_writes`
3659         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
3660                 error "$BEFOREWRITES < $AFTERWRITES"
3661         start_writeback
3662 }
3663 run_test 42a "ensure that we don't flush on close"
3664
3665 test_42b() {
3666         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3667         setup_test42
3668         cancel_lru_locks osc
3669         stop_writeback
3670         sync
3671         dd if=/dev/zero of=$DIR/f42b bs=1024 count=100
3672         BEFOREWRITES=$(count_ost_writes)
3673         $MUNLINK $DIR/f42b || error "$MUNLINK $DIR/f42b: $?"
3674         AFTERWRITES=$(count_ost_writes)
3675         if [[ $BEFOREWRITES -lt $AFTERWRITES ]]; then
3676                 error "$BEFOREWRITES < $AFTERWRITES on unlink"
3677         fi
3678         BEFOREWRITES=$(count_ost_writes)
3679         sync || error "sync: $?"
3680         AFTERWRITES=$(count_ost_writes)
3681         if [[ $BEFOREWRITES -lt $AFTERWRITES ]]; then
3682                 error "$BEFOREWRITES < $AFTERWRITES on sync"
3683         fi
3684         dmesg | grep 'error from obd_brw_async' && error 'error writing back'
3685         start_writeback
3686         return 0
3687 }
3688 run_test 42b "test destroy of file with cached dirty data ======"
3689
3690 # if these tests just want to test the effect of truncation,
3691 # they have to be very careful.  consider:
3692 # - the first open gets a {0,EOF}PR lock
3693 # - the first write conflicts and gets a {0, count-1}PW
3694 # - the rest of the writes are under {count,EOF}PW
3695 # - the open for truncate tries to match a {0,EOF}PR
3696 #   for the filesize and cancels the PWs.
3697 # any number of fixes (don't get {0,EOF} on open, match
3698 # composite locks, do smarter file size management) fix
3699 # this, but for now we want these tests to verify that
3700 # the cancellation with truncate intent works, so we
3701 # start the file with a full-file pw lock to match against
3702 # until the truncate.
3703 trunc_test() {
3704         test=$1
3705         file=$DIR/$test
3706         offset=$2
3707         cancel_lru_locks osc
3708         stop_writeback
3709         # prime the file with 0,EOF PW to match
3710         touch $file
3711         $TRUNCATE $file 0
3712         sync; sync
3713         # now the real test..
3714         dd if=/dev/zero of=$file bs=1024 count=100
3715         BEFOREWRITES=`count_ost_writes`
3716         $TRUNCATE $file $offset
3717         cancel_lru_locks osc
3718         AFTERWRITES=`count_ost_writes`
3719         start_writeback
3720 }
3721
3722 test_42c() {
3723         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3724         trunc_test 42c 1024
3725         [ $BEFOREWRITES -eq $AFTERWRITES ] && \
3726             error "beforewrites $BEFOREWRITES == afterwrites $AFTERWRITES on truncate"
3727         rm $file
3728 }
3729 run_test 42c "test partial truncate of file with cached dirty data"
3730
3731 test_42d() {
3732         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3733         trunc_test 42d 0
3734         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
3735             error "beforewrites $BEFOREWRITES != afterwrites $AFTERWRITES on truncate"
3736         rm $file
3737 }
3738 run_test 42d "test complete truncate of file with cached dirty data"
3739
3740 test_42e() { # bug22074
3741         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3742         local TDIR=$DIR/${tdir}e
3743         local pagesz=$(page_size)
3744         local pages=16 # hardcoded 16 pages, don't change it.
3745         local files=$((OSTCOUNT * 500)) # hopefully 500 files on each OST
3746         local proc_osc0="osc.${FSNAME}-OST0000-osc-[^MDT]*"
3747         local max_dirty_mb
3748         local warmup_files
3749
3750         test_mkdir -p $DIR/${tdir}e
3751         $SETSTRIPE -c 1 $TDIR
3752         createmany -o $TDIR/f $files
3753
3754         max_dirty_mb=$($LCTL get_param -n $proc_osc0/max_dirty_mb)
3755
3756         # we assume that with $OSTCOUNT files, at least one of them will
3757         # be allocated on OST0.
3758         warmup_files=$((OSTCOUNT * max_dirty_mb))
3759         createmany -o $TDIR/w $warmup_files
3760
3761         # write a large amount of data into one file and sync, to get good
3762         # avail_grant number from OST.
3763         for ((i=0; i<$warmup_files; i++)); do
3764                 idx=$($GETSTRIPE -i $TDIR/w$i)
3765                 [ $idx -ne 0 ] && continue
3766                 dd if=/dev/zero of=$TDIR/w$i bs="$max_dirty_mb"M count=1
3767                 break
3768         done
3769         [[ $i -gt $warmup_files ]] && error "OST0 is still cold"
3770         sync
3771         $LCTL get_param $proc_osc0/cur_dirty_bytes
3772         $LCTL get_param $proc_osc0/cur_grant_bytes
3773
3774         # create as much dirty pages as we can while not to trigger the actual
3775         # RPCs directly. but depends on the env, VFS may trigger flush during this
3776         # period, hopefully we are good.
3777         for ((i=0; i<$warmup_files; i++)); do
3778                 idx=$($GETSTRIPE -i $TDIR/w$i)
3779                 [ $idx -ne 0 ] && continue
3780                 dd if=/dev/zero of=$TDIR/w$i bs=1M count=1 2>/dev/null
3781         done
3782         $LCTL get_param $proc_osc0/cur_dirty_bytes
3783         $LCTL get_param $proc_osc0/cur_grant_bytes
3784
3785         # perform the real test
3786         $LCTL set_param $proc_osc0/rpc_stats 0
3787         for ((;i<$files; i++)); do
3788                 [ $($GETSTRIPE -i $TDIR/f$i) -eq 0 ] || continue
3789                 dd if=/dev/zero of=$TDIR/f$i bs=$pagesz count=$pages 2>/dev/null
3790         done
3791         sync
3792         $LCTL get_param $proc_osc0/rpc_stats
3793
3794         local percent=0
3795         local have_ppr=false
3796         $LCTL get_param $proc_osc0/rpc_stats |
3797                 while read PPR RRPC RPCT RCUM BAR WRPC WPCT WCUM; do
3798                         # skip lines until we are at the RPC histogram data
3799                         [ "$PPR" == "pages" ] && have_ppr=true && continue
3800                         $have_ppr || continue
3801
3802                         # we only want the percent stat for < 16 pages
3803                         [[ $(echo $PPR | tr -d ':') -ge $pages ]] && break
3804
3805                         percent=$((percent + WPCT))
3806                         if [[ $percent -gt 15 ]]; then
3807                                 error "less than 16-pages write RPCs" \
3808                                       "$percent% > 15%"
3809                                 break
3810                         fi
3811                 done
3812         rm -rf $TDIR
3813 }
3814 run_test 42e "verify sub-RPC writes are not done synchronously"
3815
3816 test_43A() { # was test_43
3817         test_mkdir -p $DIR/$tdir
3818         cp -p /bin/ls $DIR/$tdir/$tfile
3819         $MULTIOP $DIR/$tdir/$tfile Ow_c &
3820         pid=$!
3821         # give multiop a chance to open
3822         sleep 1
3823
3824         $DIR/$tdir/$tfile && error "execute $DIR/$tdir/$tfile succeeded" || true
3825         kill -USR1 $pid
3826 }
3827 run_test 43A "execution of file opened for write should return -ETXTBSY"
3828
3829 test_43a() {
3830         test_mkdir $DIR/$tdir
3831         cp -p $(which $MULTIOP) $DIR/$tdir/multiop ||
3832                 cp -p multiop $DIR/$tdir/multiop
3833         MULTIOP_PROG=$DIR/$tdir/multiop multiop_bg_pause $TMP/$tfile.junk O_c ||
3834                 error "multiop open $TMP/$tfile.junk failed"
3835         MULTIOP_PID=$!
3836         $MULTIOP $DIR/$tdir/multiop Oc && error "expected error, got success"
3837         kill -USR1 $MULTIOP_PID || error "kill -USR1 PID $MULTIOP_PID failed"
3838         wait $MULTIOP_PID || error "wait PID $MULTIOP_PID failed"
3839 }
3840 run_test 43a "open(RDWR) of file being executed should return -ETXTBSY"
3841
3842 test_43b() {
3843         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3844         test_mkdir $DIR/$tdir
3845         cp -p $(which $MULTIOP) $DIR/$tdir/multiop ||
3846                 cp -p multiop $DIR/$tdir/multiop
3847         MULTIOP_PROG=$DIR/$tdir/multiop multiop_bg_pause $TMP/$tfile.junk O_c ||
3848                 error "multiop open $TMP/$tfile.junk failed"
3849         MULTIOP_PID=$!
3850         $TRUNCATE $DIR/$tdir/multiop 0 && error "expected error, got success"
3851         kill -USR1 $MULTIOP_PID || error "kill -USR1 PID $MULTIOP_PID failed"
3852         wait $MULTIOP_PID || error "wait PID $MULTIOP_PID failed"
3853 }
3854 run_test 43b "truncate of file being executed should return -ETXTBSY"
3855
3856 test_43c() {
3857         local testdir="$DIR/$tdir"
3858         test_mkdir $testdir
3859         cp $SHELL $testdir/
3860         ( cd $(dirname $SHELL) && md5sum $(basename $SHELL) ) |
3861                 ( cd $testdir && md5sum -c )
3862 }
3863 run_test 43c "md5sum of copy into lustre"
3864
3865 test_44A() { # was test_44
3866         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping 2-stripe test" && return
3867         dd if=/dev/zero of=$DIR/f1 bs=4k count=1 seek=1023
3868         dd if=$DIR/f1 bs=4k count=1 > /dev/null
3869 }
3870 run_test 44A "zero length read from a sparse stripe"
3871
3872 test_44a() {
3873         local nstripe=$($LCTL lov_getconfig $DIR | grep default_stripe_count: |
3874                 awk '{ print $2 }')
3875         [ -z "$nstripe" ] && skip "can't get stripe info" && return
3876         [[ $nstripe -gt $OSTCOUNT ]] &&
3877             skip "Wrong default_stripe_count: $nstripe (OSTCOUNT: $OSTCOUNT)" &&
3878             return
3879         local stride=$($LCTL lov_getconfig $DIR | grep default_stripe_size: |
3880                 awk '{ print $2 }')
3881         if [[ $nstripe -eq 0 || $nstripe -eq -1 ]]; then
3882                 nstripe=$($LCTL lov_getconfig $DIR | grep obd_count: |
3883                         awk '{ print $2 }')
3884         fi
3885
3886         OFFSETS="0 $((stride/2)) $((stride-1))"
3887         for offset in $OFFSETS; do
3888                 for i in $(seq 0 $((nstripe-1))); do
3889                         local GLOBALOFFSETS=""
3890                         # size in Bytes
3891                         local size=$((((i + 2 * $nstripe )*$stride + $offset)))
3892                         local myfn=$DIR/d44a-$size
3893                         echo "--------writing $myfn at $size"
3894                         ll_sparseness_write $myfn $size ||
3895                                 error "ll_sparseness_write"
3896                         GLOBALOFFSETS="$GLOBALOFFSETS $size"
3897                         ll_sparseness_verify $myfn $GLOBALOFFSETS ||
3898                                 error "ll_sparseness_verify $GLOBALOFFSETS"
3899
3900                         for j in $(seq 0 $((nstripe-1))); do
3901                                 # size in Bytes
3902                                 size=$((((j + $nstripe )*$stride + $offset)))
3903                                 ll_sparseness_write $myfn $size ||
3904                                         error "ll_sparseness_write"
3905                                 GLOBALOFFSETS="$GLOBALOFFSETS $size"
3906                         done
3907                         ll_sparseness_verify $myfn $GLOBALOFFSETS ||
3908                                 error "ll_sparseness_verify $GLOBALOFFSETS"
3909                         rm -f $myfn
3910                 done
3911         done
3912 }
3913 run_test 44a "test sparse pwrite ==============================="
3914
3915 dirty_osc_total() {
3916         tot=0
3917         for d in `lctl get_param -n osc.*.cur_dirty_bytes`; do
3918                 tot=$(($tot + $d))
3919         done
3920         echo $tot
3921 }
3922 do_dirty_record() {
3923         before=`dirty_osc_total`
3924         echo executing "\"$*\""
3925         eval $*
3926         after=`dirty_osc_total`
3927         echo before $before, after $after
3928 }
3929 test_45() {
3930         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3931         f="$DIR/f45"
3932         # Obtain grants from OST if it supports it
3933         echo blah > ${f}_grant
3934         stop_writeback
3935         sync
3936         do_dirty_record "echo blah > $f"
3937         [[ $before -eq $after ]] && error "write wasn't cached"
3938         do_dirty_record "> $f"
3939         [[ $before -gt $after ]] || error "truncate 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 "sync"
3943         [[ $before -gt $after ]] || error "writeback didn't lower dirty count"
3944         do_dirty_record "echo blah > $f"
3945         [[ $before -eq $after ]] && error "write wasn't cached"
3946         do_dirty_record "cancel_lru_locks osc"
3947         [[ $before -gt $after ]] ||
3948                 error "lock cancellation didn't lower dirty count"
3949         start_writeback
3950 }
3951 run_test 45 "osc io page accounting ============================"
3952
3953 # in a 2 stripe file (lov.sh), page 1023 maps to page 511 in its object.  this
3954 # test tickles a bug where re-dirtying a page was failing to be mapped to the
3955 # objects offset and an assert hit when an rpc was built with 1023's mapped
3956 # offset 511 and 511's raw 511 offset. it also found general redirtying bugs.
3957 test_46() {
3958         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3959         f="$DIR/f46"
3960         stop_writeback
3961         sync
3962         dd if=/dev/zero of=$f bs=`page_size` seek=511 count=1
3963         sync
3964         dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=1023 count=1
3965         dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=511 count=1
3966         sync
3967         start_writeback
3968 }
3969 run_test 46 "dirtying a previously written page ================"
3970
3971 # test_47 is removed "Device nodes check" is moved to test_28
3972
3973 test_48a() { # bug 2399
3974         [ $(facet_fstype $SINGLEMDS) = "zfs" ] &&
3975         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.63) ] &&
3976                 skip "MDS prior to 2.3.63 handle ZFS dir .. incorrectly" &&
3977                 return
3978         test_mkdir $DIR/$tdir
3979         cd $DIR/$tdir
3980         mv $DIR/$tdir $DIR/$tdir.new || error "move directory failed"
3981         test_mkdir $DIR/$tdir || error "recreate directory failed"
3982         touch foo || error "'touch foo' failed after recreating cwd"
3983         test_mkdir bar || error "'mkdir foo' failed after recreating cwd"
3984         touch .foo || error "'touch .foo' failed after recreating cwd"
3985         test_mkdir .bar || error "'mkdir .foo' failed after recreating cwd"
3986         ls . > /dev/null || error "'ls .' failed after recreating cwd"
3987         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
3988         cd . || error "'cd .' failed after recreating cwd"
3989         test_mkdir . && error "'mkdir .' worked after recreating cwd"
3990         rmdir . && error "'rmdir .' worked after recreating cwd"
3991         ln -s . baz || error "'ln -s .' failed after recreating cwd"
3992         cd .. || error "'cd ..' failed after recreating cwd"
3993 }
3994 run_test 48a "Access renamed working dir (should return errors)="
3995
3996 test_48b() { # bug 2399
3997         rm -rf $DIR/$tdir
3998         test_mkdir $DIR/$tdir
3999         cd $DIR/$tdir
4000         rmdir $DIR/$tdir || error "remove cwd $DIR/$tdir failed"
4001         touch foo && error "'touch foo' worked after removing cwd"
4002         test_mkdir foo && error "'mkdir foo' worked after removing cwd"
4003         touch .foo && error "'touch .foo' worked after removing cwd"
4004         test_mkdir .foo && error "'mkdir .foo' worked after removing cwd"
4005         ls . > /dev/null && error "'ls .' worked after removing cwd"
4006         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
4007         test_mkdir . && error "'mkdir .' worked after removing cwd"
4008         rmdir . && error "'rmdir .' worked after removing cwd"
4009         ln -s . foo && error "'ln -s .' worked after removing cwd"
4010         cd .. || echo "'cd ..' failed after removing cwd `pwd`"  #bug 3517
4011 }
4012 run_test 48b "Access removed working dir (should return errors)="
4013
4014 test_48c() { # bug 2350
4015         #lctl set_param debug=-1
4016         #set -vx
4017         rm -rf $DIR/$tdir
4018         test_mkdir -p $DIR/$tdir/dir
4019         cd $DIR/$tdir/dir
4020         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
4021         $TRACE touch foo && error "touch foo worked after removing cwd"
4022         $TRACE test_mkdir foo && error "'mkdir foo' worked after removing cwd"
4023         touch .foo && error "touch .foo worked after removing cwd"
4024         test_mkdir .foo && error "mkdir .foo worked after removing cwd"
4025         $TRACE ls . && error "'ls .' worked after removing cwd"
4026         $TRACE ls .. || error "'ls ..' failed after removing cwd"
4027         $TRACE test_mkdir . && error "'mkdir .' worked after removing cwd"
4028         $TRACE rmdir . && error "'rmdir .' worked after removing cwd"
4029         $TRACE ln -s . foo && error "'ln -s .' worked after removing cwd"
4030         $TRACE cd .. || echo "'cd ..' failed after removing cwd `pwd`" #bug 3415
4031 }
4032 run_test 48c "Access removed working subdir (should return errors)"
4033
4034 test_48d() { # bug 2350
4035         #lctl set_param debug=-1
4036         #set -vx
4037         rm -rf $DIR/$tdir
4038         test_mkdir -p $DIR/$tdir/dir
4039         cd $DIR/$tdir/dir
4040         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
4041         $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
4042         $TRACE touch foo && error "'touch foo' worked after removing parent"
4043         $TRACE test_mkdir foo && error "mkdir foo worked after removing parent"
4044         touch .foo && error "'touch .foo' worked after removing parent"
4045         test_mkdir .foo && error "mkdir .foo worked after removing parent"
4046         $TRACE ls . && error "'ls .' worked after removing parent"
4047         $TRACE ls .. && error "'ls ..' worked after removing parent"
4048         $TRACE test_mkdir . && error "'mkdir .' worked after removing parent"
4049         $TRACE rmdir . && error "'rmdir .' worked after removing parent"
4050         $TRACE ln -s . foo && error "'ln -s .' worked after removing parent"
4051         true
4052 }
4053 run_test 48d "Access removed parent subdir (should return errors)"
4054
4055 test_48e() { # bug 4134
4056         #lctl set_param debug=-1
4057         #set -vx
4058         rm -rf $DIR/$tdir
4059         test_mkdir -p $DIR/$tdir/dir
4060         cd $DIR/$tdir/dir
4061         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
4062         $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
4063         $TRACE touch $DIR/$tdir || error "'touch $DIR/$tdir' failed"
4064         $TRACE chmod +x $DIR/$tdir || error "'chmod +x $DIR/$tdir' failed"
4065         # On a buggy kernel addition of "touch foo" after cd .. will
4066         # produce kernel oops in lookup_hash_it
4067         touch ../foo && error "'cd ..' worked after recreate parent"
4068         cd $DIR
4069         $TRACE rm $DIR/$tdir || error "rm '$DIR/$tdir' failed"
4070 }
4071 run_test 48e "Access to recreated parent subdir (should return errors)"
4072
4073 test_49() { # LU-1030
4074         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4075         remote_ost_nodsh && skip "remote OST with nodsh" && return
4076         # get ost1 size - lustre-OST0000
4077         ost1_size=$(do_facet ost1 $LFS df | grep ${ost1_svc} |
4078                 awk '{ print $4 }')
4079         # write 800M at maximum
4080         [[ $ost1_size -lt 2 ]] && ost1_size=2
4081         [[ $ost1_size -gt 819200 ]] && ost1_size=819200
4082
4083         $SETSTRIPE -c 1 -i 0 $DIR/$tfile
4084         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((ost1_size >> 2)) &
4085         local dd_pid=$!
4086
4087         # change max_pages_per_rpc while writing the file
4088         local osc1_mppc=osc.$(get_osc_import_name client ost1).max_pages_per_rpc
4089         local orig_mppc=$($LCTL get_param -n $osc1_mppc)
4090         # loop until dd process exits
4091         while ps ax -opid | grep -wq $dd_pid; do
4092                 $LCTL set_param $osc1_mppc=$((RANDOM % 256 + 1))
4093                 sleep $((RANDOM % 5 + 1))
4094         done
4095         # restore original max_pages_per_rpc
4096         $LCTL set_param $osc1_mppc=$orig_mppc
4097         rm $DIR/$tfile || error "rm $DIR/$tfile failed"
4098 }
4099 run_test 49 "Change max_pages_per_rpc won't break osc extent"
4100
4101 test_50() {
4102         # bug 1485
4103         test_mkdir $DIR/$tdir
4104         cd $DIR/$tdir
4105         ls /proc/$$/cwd || error "ls /proc/$$/cwd failed"
4106 }
4107 run_test 50 "special situations: /proc symlinks  ==============="
4108
4109 test_51a() {    # was test_51
4110         # bug 1516 - create an empty entry right after ".." then split dir
4111         test_mkdir -c1 $DIR/$tdir
4112         touch $DIR/$tdir/foo
4113         $MCREATE $DIR/$tdir/bar
4114         rm $DIR/$tdir/foo
4115         createmany -m $DIR/$tdir/longfile 201
4116         FNUM=202
4117         while [[ $(ls -sd $DIR/$tdir | awk '{ print $1 }') -eq 4 ]]; do
4118                 $MCREATE $DIR/$tdir/longfile$FNUM
4119                 FNUM=$(($FNUM + 1))
4120                 echo -n "+"
4121         done
4122         echo
4123         ls -l $DIR/$tdir > /dev/null || error "ls -l $DIR/$tdir failed"
4124 }
4125 run_test 51a "special situations: split htree with empty entry =="
4126
4127 cleanup_print_lfs_df () {
4128         trap 0
4129         $LFS df
4130         $LFS df -i
4131 }
4132
4133 test_51b() {
4134         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4135         local dir=$DIR/$tdir
4136
4137         local nrdirs=$((65536 + 100))
4138
4139         # cleanup the directory
4140         rm -fr $dir
4141
4142         test_mkdir -p -c1 $dir
4143
4144         $LFS df
4145         $LFS df -i
4146         local mdtidx=$(printf "%04x" $($LFS getstripe -M $dir))
4147         local numfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.filesfree)
4148         [[ $numfree -lt $nrdirs ]] &&
4149                 skip "not enough free inodes ($numfree) on MDT$mdtidx" &&
4150                 return
4151
4152         # need to check free space for the directories as well
4153         local blkfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.kbytesavail)
4154         numfree=$(( blkfree / $(fs_inode_ksize) ))
4155         [[ $numfree -lt $nrdirs ]] && skip "not enough blocks ($numfree)" &&
4156                 return
4157
4158         trap cleanup_print_lfsdf EXIT
4159
4160         # create files
4161         createmany -d $dir/d $nrdirs ||
4162                 error "failed to create $nrdirs subdirs in MDT$mdtidx:$dir"
4163
4164         # really created :
4165         nrdirs=$(ls -U $dir | wc -l)
4166
4167         # unlink all but 100 subdirectories, then check it still works
4168         local left=100
4169         local delete=$((nrdirs - left))
4170
4171         $LFS df
4172         $LFS df -i
4173
4174         # for ldiskfs the nlink count should be 1, but this is OSD specific
4175         # and so this is listed for informational purposes only
4176         echo "nlink before: $(stat -c %h $dir), created before: $nrdirs"
4177         unlinkmany -d $dir/d $delete ||
4178                 error "unlink of first $delete subdirs failed"
4179
4180         echo "nlink between: $(stat -c %h $dir)"
4181         local found=$(ls -U $dir | wc -l)
4182         [ $found -ne $left ] &&
4183                 error "can't find subdirs: found only $found, expected $left"
4184
4185         unlinkmany -d $dir/d $delete $left ||
4186                 error "unlink of second $left subdirs failed"
4187         # regardless of whether the backing filesystem tracks nlink accurately
4188         # or not, the nlink count shouldn't be more than "." and ".." here
4189         local after=$(stat -c %h $dir)
4190         [[ $after -gt 2 ]] && error "nlink after: $after > 2" ||
4191                 echo "nlink after: $after"
4192
4193         cleanup_print_lfs_df
4194 }
4195 run_test 51b "exceed 64k subdirectory nlink limit on create, verify unlink"
4196
4197 test_51d() {
4198         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4199         [[ $OSTCOUNT -lt 3 ]] &&
4200                 skip_env "skipping test with few OSTs" && return
4201         test_mkdir -p $DIR/$tdir
4202         createmany -o $DIR/$tdir/t- 1000
4203         $GETSTRIPE $DIR/$tdir > $TMP/$tfile
4204         for N in $(seq 0 $((OSTCOUNT - 1))); do
4205                 OBJS[$N]=$(awk -vobjs=0 '($1 == '$N') { objs += 1 } \
4206                         END { printf("%0.0f", objs) }' $TMP/$tfile)
4207                 OBJS0[$N]=$(grep -A 1 idx $TMP/$tfile | awk -vobjs=0 \
4208                         '($1 == '$N') { objs += 1 } \
4209                         END { printf("%0.0f", objs) }')
4210                 log "OST$N has ${OBJS[$N]} objects, ${OBJS0[$N]} are index 0"
4211         done
4212         unlinkmany $DIR/$tdir/t- 1000
4213
4214         NLAST=0
4215         for N in $(seq 1 $((OSTCOUNT - 1))); do
4216                 [[ ${OBJS[$N]} -lt $((${OBJS[$NLAST]} - 20)) ]] &&
4217                         error "OST $N has less objects vs OST $NLAST" \
4218                               " (${OBJS[$N]} < ${OBJS[$NLAST]}"
4219                 [[ ${OBJS[$N]} -gt $((${OBJS[$NLAST]} + 20)) ]] &&
4220                         error "OST $N has less objects vs OST $NLAST" \
4221                               " (${OBJS[$N]} < ${OBJS[$NLAST]}"
4222
4223                 [[ ${OBJS0[$N]} -lt $((${OBJS0[$NLAST]} - 20)) ]] &&
4224                         error "OST $N has less #0 objects vs OST $NLAST" \
4225                               " (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
4226                 [[ ${OBJS0[$N]} -gt $((${OBJS0[$NLAST]} + 20)) ]] &&
4227                         error "OST $N has less #0 objects vs OST $NLAST" \
4228                               " (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
4229                 NLAST=$N
4230         done
4231         rm -f $TMP/$tfile
4232 }
4233 run_test 51d "check object distribution"
4234
4235 test_51e() {
4236         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
4237                 skip "Only applicable to ldiskfs-based MDTs"
4238                 return
4239         fi
4240
4241         test_mkdir -c1 $DIR/$tdir       || error "create $tdir failed"
4242         test_mkdir -c1 $DIR/$tdir/d0    || error "create d0 failed"
4243
4244         touch $DIR/$tdir/d0/foo
4245         createmany -l $DIR/$tdir/d0/foo $DIR/$tdir/d0/f- 65001 &&
4246                 error "file exceed 65000 nlink limit!"
4247         unlinkmany $DIR/$tdir/d0/f- 65001
4248         return 0
4249 }
4250 run_test 51e "check file nlink limit"
4251
4252 test_51f() {
4253         test_mkdir $DIR/$tdir
4254
4255         local max=100000
4256         local ulimit_old=$(ulimit -n)
4257         local spare=20 # number of spare fd's for scripts/libraries, etc.
4258         local mdt=$(lfs getstripe -M $DIR/$tdir)
4259         local numfree=$(lfs df -i $DIR/$tdir | awk '/MDT:'$mdt'/ { print $4 }')
4260
4261         echo "MDT$mdt numfree=$numfree, max=$max"
4262         [[ $numfree -gt $max ]] && numfree=$max || numfree=$((numfree * 7 / 8))
4263         if [ $((numfree + spare)) -gt $ulimit_old ]; then
4264                 while ! ulimit -n $((numfree + spare)); do
4265                         numfree=$((numfree * 3 / 4))
4266                 done
4267                 echo "changed ulimit from $ulimit_old to $((numfree + spare))"
4268         else
4269                 echo "left ulimit at $ulimit_old"
4270         fi
4271
4272         createmany -o -k -t 120 $DIR/$tdir/f $numfree ||
4273                 error "create+open $numfree files in $DIR/$tdir failed"
4274         ulimit -n $ulimit_old
4275
4276         # if createmany exits at 120s there will be fewer than $numfree files
4277         unlinkmany $DIR/$tdir/f $numfree || true
4278 }
4279 run_test 51f "check many open files limit"
4280
4281 test_52a() {
4282         [ -f $DIR/$tdir/foo ] && chattr -a $DIR/$tdir/foo
4283         test_mkdir -p $DIR/$tdir
4284         touch $DIR/$tdir/foo
4285         chattr +a $DIR/$tdir/foo || error "chattr +a failed"
4286         echo bar >> $DIR/$tdir/foo || error "append bar failed"
4287         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
4288         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
4289         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
4290                                         error "link worked"
4291         echo foo >> $DIR/$tdir/foo || error "append foo failed"
4292         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
4293         lsattr $DIR/$tdir/foo | egrep -q "^-+a[-e]+ $DIR/$tdir/foo" ||
4294                                                      error "lsattr"
4295         chattr -a $DIR/$tdir/foo || error "chattr -a failed"
4296         cp -r $DIR/$tdir $TMP/
4297         rm -fr $DIR/$tdir $TMP/$tdir || error "cleanup rm failed"
4298 }
4299 run_test 52a "append-only flag test (should return errors)"
4300
4301 test_52b() {
4302         [ -f $DIR/$tdir/foo ] && chattr -i $DIR/$tdir/foo
4303         test_mkdir -p $DIR/$tdir
4304         touch $DIR/$tdir/foo
4305         chattr +i $DIR/$tdir/foo || error "chattr +i failed"
4306         cat test > $DIR/$tdir/foo && error "cat test worked"
4307         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
4308         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
4309         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
4310                                         error "link worked"
4311         echo foo >> $DIR/$tdir/foo && error "echo worked"
4312         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
4313         [ -f $DIR/$tdir/foo ] || error "$tdir/foo is not a file"
4314         [ -f $DIR/$tdir/foo_ren ] && error "$tdir/foo_ren is not a file"
4315         lsattr $DIR/$tdir/foo | egrep -q "^-+i[-e]+ $DIR/$tdir/foo" ||
4316                                                         error "lsattr"
4317         chattr -i $DIR/$tdir/foo || error "chattr failed"
4318
4319         rm -fr $DIR/$tdir || error "unable to remove $DIR/$tdir"
4320 }
4321 run_test 52b "immutable flag test (should return errors) ======="
4322
4323 test_53() {
4324         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4325         remote_mds_nodsh && skip "remote MDS with nodsh" && return
4326         remote_ost_nodsh && skip "remote OST with nodsh" && return
4327
4328         local param
4329         local param_seq
4330         local ostname
4331         local mds_last
4332         local mds_last_seq
4333         local ost_last
4334         local ost_last_seq
4335         local ost_last_id
4336         local ostnum
4337         local node
4338         local found=false
4339         local support_last_seq=true
4340
4341         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.60) ]] ||
4342                 support_last_seq=false
4343
4344         # only test MDT0000
4345         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS)
4346         local value
4347         for value in $(do_facet $SINGLEMDS \
4348                        $LCTL get_param osc.$mdtosc.prealloc_last_id) ; do
4349                 param=$(echo ${value[0]} | cut -d "=" -f1)
4350                 ostname=$(echo $param | cut -d "." -f2 | cut -d - -f 1-2)
4351
4352                 if $support_last_seq; then
4353                         param_seq=$(echo $param |
4354                                 sed -e s/prealloc_last_id/prealloc_last_seq/g)
4355                         mds_last_seq=$(do_facet $SINGLEMDS \
4356                                        $LCTL get_param -n $param_seq)
4357                 fi
4358                 mds_last=$(do_facet $SINGLEMDS $LCTL get_param -n $param)
4359
4360                 ostnum=$(index_from_ostuuid ${ostname}_UUID)
4361                 node=$(facet_active_host ost$((ostnum+1)))
4362                 param="obdfilter.$ostname.last_id"
4363                 for ost_last in $(do_node $node $LCTL get_param -n $param) ; do
4364                         echo "$ostname.last_id=$ost_last; MDS.last_id=$mds_last"
4365                         ost_last_id=$ost_last
4366
4367                         if $support_last_seq; then
4368                                 ost_last_id=$(echo $ost_last |
4369                                               awk -F':' '{print $2}' |
4370                                               sed -e "s/^0x//g")
4371                                 ost_last_seq=$(echo $ost_last |
4372                                                awk -F':' '{print $1}')
4373                                 [[ $ost_last_seq = $mds_last_seq ]] || continue
4374                         fi
4375
4376                         if [[ $ost_last_id != $mds_last ]]; then
4377                                 error "$ost_last_id != $mds_last"
4378                         else
4379                                 found=true
4380                                 break
4381                         fi
4382                 done
4383         done
4384         $found || error "can not match last_seq/last_id for $mdtosc"
4385         return 0
4386 }
4387 run_test 53 "verify that MDS and OSTs agree on pre-creation ===="
4388
4389 test_54a() {
4390         perl -MSocket -e ';' || { skip "no Socket perl module installed" && return; }
4391
4392         $SOCKETSERVER $DIR/socket ||
4393                 error "$SOCKETSERVER $DIR/socket failed: $?"
4394         $SOCKETCLIENT $DIR/socket ||
4395                 error "$SOCKETCLIENT $DIR/socket failed: $?"
4396         $MUNLINK $DIR/socket || error "$MUNLINK $DIR/socket failed: $?"
4397 }
4398 run_test 54a "unix domain socket test =========================="
4399
4400 test_54b() {
4401         f="$DIR/f54b"
4402         mknod $f c 1 3
4403         chmod 0666 $f
4404         dd if=/dev/zero of=$f bs=$(page_size) count=1
4405 }
4406 run_test 54b "char device works in lustre ======================"
4407
4408 find_loop_dev() {
4409         [ -b /dev/loop/0 ] && LOOPBASE=/dev/loop/
4410         [ -b /dev/loop0 ] && LOOPBASE=/dev/loop
4411         [ -z "$LOOPBASE" ] && echo "/dev/loop/0 and /dev/loop0 gone?" && return
4412
4413         for i in $(seq 3 7); do
4414                 losetup $LOOPBASE$i > /dev/null 2>&1 && continue
4415                 LOOPDEV=$LOOPBASE$i
4416                 LOOPNUM=$i
4417                 break
4418         done
4419 }
4420
4421 cleanup_54c() {
4422         local rc=0
4423         loopdev="$DIR/loop54c"
4424
4425         trap 0
4426         $UMOUNT $DIR/$tdir || rc=$?
4427         losetup -d $loopdev || true
4428         losetup -d $LOOPDEV || true
4429         rm -rf $loopdev $DIR/$tfile $DIR/$tdir
4430         return $rc
4431 }
4432
4433 test_54c() {
4434         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4435         loopdev="$DIR/loop54c"
4436
4437         find_loop_dev
4438         [ -z "$LOOPNUM" ] && echo "couldn't find empty loop device" && return
4439         trap cleanup_54c EXIT
4440         mknod $loopdev b 7 $LOOPNUM
4441         echo "make a loop file system with $DIR/$tfile on $loopdev ($LOOPNUM)."
4442         dd if=/dev/zero of=$DIR/$tfile bs=$(get_page_size client) seek=1024 count=1 > /dev/null
4443         losetup $loopdev $DIR/$tfile ||
4444                 error "can't set up $loopdev for $DIR/$tfile"
4445         mkfs.ext2 $loopdev || error "mke2fs on $loopdev"
4446         test_mkdir -p $DIR/$tdir
4447         mount -t ext2 $loopdev $DIR/$tdir ||
4448                 error "error mounting $loopdev on $DIR/$tdir"
4449         dd if=/dev/zero of=$DIR/$tdir/tmp bs=$(get_page_size client) count=30 ||
4450                 error "dd write"
4451         df $DIR/$tdir
4452         dd if=$DIR/$tdir/tmp of=/dev/zero bs=$(get_page_size client) count=30 ||
4453                 error "dd read"
4454         cleanup_54c
4455 }
4456 run_test 54c "block device works in lustre ====================="
4457
4458 test_54d() {
4459         f="$DIR/f54d"
4460         string="aaaaaa"
4461         mknod $f p
4462         [ "$string" = $(echo $string > $f | cat $f) ] || error "$f != $string"
4463 }
4464 run_test 54d "fifo device works in lustre ======================"
4465
4466 test_54e() {
4467         f="$DIR/f54e"
4468         string="aaaaaa"
4469         cp -aL /dev/console $f
4470         echo $string > $f || error "echo $string to $f failed"
4471 }
4472 run_test 54e "console/tty device works in lustre ======================"
4473
4474 #The test_55 used to be iopen test and it was removed by bz#24037.
4475 #run_test 55 "check iopen_connect_dentry() ======================"
4476
4477 test_56a() {    # was test_56
4478         rm -rf $DIR/$tdir
4479         $SETSTRIPE -d $DIR
4480         test_mkdir -p $DIR/$tdir/dir
4481         NUMFILES=3
4482         NUMFILESx2=$(($NUMFILES * 2))
4483         for i in $(seq 1 $NUMFILES); do
4484                 touch $DIR/$tdir/file$i
4485                 touch $DIR/$tdir/dir/file$i
4486         done
4487
4488         # test lfs getstripe with --recursive
4489         FILENUM=$($GETSTRIPE --recursive $DIR/$tdir | grep -c obdidx)
4490         [[ $FILENUM -eq $NUMFILESx2 ]] ||
4491                 error "$GETSTRIPE --recursive: found $FILENUM, not $NUMFILESx2"
4492         FILENUM=$($GETSTRIPE $DIR/$tdir | grep -c obdidx)
4493         [[ $FILENUM -eq $NUMFILES ]] ||
4494                 error "$GETSTRIPE $DIR/$tdir: found $FILENUM, not $NUMFILES"
4495         echo "$GETSTRIPE --recursive passed."
4496
4497         # test lfs getstripe with file instead of dir
4498         FILENUM=$($GETSTRIPE $DIR/$tdir/file1 | grep -c obdidx)
4499         [[ $FILENUM -eq 1 ]] ||
4500                 error "$GETSTRIPE $DIR/$tdir/file1: found $FILENUM, not 1"
4501         echo "$GETSTRIPE file1 passed."
4502
4503         #test lfs getstripe with --verbose
4504         [[ $($GETSTRIPE --verbose $DIR/$tdir |
4505                 grep -c lmm_magic) -eq $NUMFILES ]] ||
4506                 error "$GETSTRIPE --verbose $DIR/$tdir: want $NUMFILES"
4507         [[ $($GETSTRIPE $DIR/$tdir | grep -c lmm_magic) -eq 0 ]] ||
4508                 error "$GETSTRIPE $DIR/$tdir: showed lmm_magic"
4509
4510         #test lfs getstripe with -v prints lmm_fid
4511         [[ $($GETSTRIPE -v $DIR/$tdir | grep -c lmm_fid) -eq $NUMFILES ]] ||
4512                 error "$GETSTRIPE -v $DIR/$tdir: want $NUMFILES lmm_fid: lines"
4513         [[ $($GETSTRIPE $DIR/$tdir | grep -c lmm_fid) -eq 0 ]] ||
4514                 error "$GETSTRIPE $DIR/$tdir: showed lmm_fid"
4515         echo "$GETSTRIPE --verbose passed."
4516
4517         #check for FID information
4518         local fid1=$($GETSTRIPE --fid $DIR/$tdir/file1)
4519         local fid2=$($GETSTRIPE --verbose $DIR/$tdir/file1 |
4520                        awk '/lmm_fid: / { print $2 }')
4521         local fid3=$($LFS path2fid $DIR/$tdir/file1)
4522         [ "$fid1" != "$fid2" ] &&
4523                 error "getstripe --fid $fid1 != getstripe --verbose $fid2"
4524         [ "$fid1" != "$fid3" ] &&
4525                 error "getstripe --fid $fid1 != lfs path2fid $fid3"
4526         echo "$GETSTRIPE --fid passed."
4527
4528         #test lfs getstripe with --obd
4529         $GETSTRIPE --obd wrong_uuid $DIR/$tdir 2>&1 |
4530                 grep -q "unknown obduuid" ||
4531                 error "$GETSTRIPE --obd wrong_uuid should return error message"
4532
4533         [[ $OSTCOUNT -lt 2 ]] &&
4534                 skip_env "skipping other $GETSTRIPE --obd test" && return
4535
4536         OSTIDX=1
4537         OBDUUID=$(ostuuid_from_index $OSTIDX)
4538         FILENUM=$($GETSTRIPE -ir $DIR/$tdir | grep "^$OSTIDX\$" | wc -l)
4539         FOUND=$($GETSTRIPE -r --obd $OBDUUID $DIR/$tdir | grep obdidx | wc -l)
4540         [[ $FOUND -eq $FILENUM ]] ||
4541                 error "$GETSTRIPE --obd wrong: found $FOUND, expected $FILENUM"
4542         [[ $($GETSTRIPE -r -v --obd $OBDUUID $DIR/$tdir |
4543                 sed '/^[         ]*'${OSTIDX}'[  ]/d' |
4544                 sed -n '/^[      ]*[0-9][0-9]*[  ]/p' | wc -l) -eq 0 ]] ||
4545                 error "$GETSTRIPE --obd: should not show file on other obd"
4546         echo "$GETSTRIPE --obd passed"
4547 }
4548 run_test 56a "check $GETSTRIPE"
4549
4550 test_56b() {
4551         test_mkdir $DIR/$tdir
4552         NUMDIRS=3
4553         for i in $(seq 1 $NUMDIRS); do
4554                 test_mkdir $DIR/$tdir/dir$i
4555         done
4556
4557         # test lfs getdirstripe default mode is non-recursion, which is
4558         # different from lfs getstripe
4559         dircnt=$($LFS getdirstripe $DIR/$tdir | grep -c lmv_stripe_count)
4560         [[ $dircnt -eq 1 ]] ||
4561                 error "$LFS getdirstripe: found $dircnt, not 1"
4562         dircnt=$($LFS getdirstripe --recursive $DIR/$tdir |
4563                 grep -c lmv_stripe_count)
4564         [[ $dircnt -eq $((NUMDIRS + 1)) ]] ||
4565                 error "$LFS getdirstripe --recursive: found $dircnt, \
4566                         not $((NUMDIRS + 1))"
4567 }
4568 run_test 56b "check $LFS getdirstripe"
4569
4570 test_56c() {
4571         local ost_idx=0
4572         local ost_name=$(ostname_from_index $ost_idx)
4573
4574         local old_status=$(ost_dev_status $ost_idx)
4575         [[ -z "$old_status" ]] ||
4576                 { skip_env "OST $ost_name is in $old_status status"; return 0; }
4577
4578         do_facet ost1 $LCTL set_param -n obdfilter.$ost_name.degraded=1
4579         sleep_maxage
4580
4581         local new_status=$(ost_dev_status $ost_idx)
4582         [[ "$new_status" = "D" ]] ||
4583                 error "OST $ost_name is in status of '$new_status', not 'D'"
4584
4585         do_facet ost1 $LCTL set_param -n obdfilter.$ost_name.degraded=0
4586         sleep_maxage
4587
4588         new_status=$(ost_dev_status $ost_idx)
4589         [[ -z "$new_status" ]] ||
4590                 error "OST $ost_name is in status of '$new_status', not ''"
4591 }
4592 run_test 56c "check 'lfs df' showing device status"
4593
4594 NUMFILES=3
4595 NUMDIRS=3
4596 setup_56() {
4597         local LOCAL_NUMFILES="$1"
4598         local LOCAL_NUMDIRS="$2"
4599         local MKDIR_PARAMS="$3"
4600         local DIR_STRIPE_PARAMS="$4"
4601
4602         if [ ! -d "$TDIR" ] ; then
4603                 test_mkdir -p $DIR_STRIPE_PARAMS $TDIR
4604                 [ "$MKDIR_PARAMS" ] && $SETSTRIPE $MKDIR_PARAMS $TDIR
4605                 for i in `seq 1 $LOCAL_NUMFILES` ; do
4606                         touch $TDIR/file$i
4607                 done
4608                 for i in `seq 1 $LOCAL_NUMDIRS` ; do
4609                         test_mkdir $DIR_STRIPE_PARAMS $TDIR/dir$i
4610                         for j in `seq 1 $LOCAL_NUMFILES` ; do
4611                                 touch $TDIR/dir$i/file$j
4612                         done
4613                 done
4614         fi
4615 }
4616
4617 setup_56_special() {
4618         LOCAL_NUMFILES=$1
4619         LOCAL_NUMDIRS=$2
4620         setup_56 $1 $2
4621         if [ ! -e "$TDIR/loop1b" ] ; then
4622                 for i in `seq 1 $LOCAL_NUMFILES` ; do
4623                         mknod $TDIR/loop${i}b b 7 $i
4624                         mknod $TDIR/null${i}c c 1 3
4625                         ln -s $TDIR/file1 $TDIR/link${i}l
4626                 done
4627                 for i in `seq 1 $LOCAL_NUMDIRS` ; do
4628                         mknod $TDIR/dir$i/loop${i}b b 7 $i
4629                         mknod $TDIR/dir$i/null${i}c c 1 3
4630                         ln -s $TDIR/dir$i/file1 $TDIR/dir$i/link${i}l
4631                 done
4632         fi
4633 }
4634
4635 test_56g() {
4636         $SETSTRIPE -d $DIR
4637
4638         TDIR=$DIR/${tdir}g
4639         setup_56 $NUMFILES $NUMDIRS
4640
4641         EXPECTED=$(($NUMDIRS + 2))
4642         # test lfs find with -name
4643         for i in $(seq 1 $NUMFILES) ; do
4644                 NUMS=$($LFIND -name "*$i" $TDIR | wc -l)
4645                 [ $NUMS -eq $EXPECTED ] ||
4646                         error "lfs find -name \"*$i\" $TDIR wrong: "\
4647                               "found $NUMS, expected $EXPECTED"
4648         done
4649 }
4650 run_test 56g "check lfs find -name ============================="
4651
4652 test_56h() {
4653         $SETSTRIPE -d $DIR
4654
4655         TDIR=$DIR/${tdir}g
4656         setup_56 $NUMFILES $NUMDIRS
4657
4658         EXPECTED=$(((NUMDIRS + 1) * (NUMFILES - 1) + NUMFILES))
4659         # test lfs find with ! -name
4660         for i in $(seq 1 $NUMFILES) ; do
4661                 NUMS=$($LFIND ! -name "*$i" $TDIR | wc -l)
4662                 [ $NUMS -eq $EXPECTED ] ||
4663                         error "lfs find ! -name \"*$i\" $TDIR wrong: "\
4664                               "found $NUMS, expected $EXPECTED"
4665         done
4666 }
4667 run_test 56h "check lfs find ! -name ============================="
4668
4669 test_56i() {
4670        tdir=${tdir}i
4671        test_mkdir -p $DIR/$tdir
4672        UUID=$(ostuuid_from_index 0 $DIR/$tdir)
4673        CMD="$LFIND -ost $UUID $DIR/$tdir"
4674        OUT=$($CMD)
4675        [ -z "$OUT" ] || error "\"$CMD\" returned directory '$OUT'"
4676 }
4677 run_test 56i "check 'lfs find -ost UUID' skips directories ======="
4678
4679 test_56j() {
4680         TDIR=$DIR/${tdir}g
4681         setup_56_special $NUMFILES $NUMDIRS
4682
4683         EXPECTED=$((NUMDIRS + 1))
4684         CMD="$LFIND -type d $TDIR"
4685         NUMS=$($CMD | wc -l)
4686         [ $NUMS -eq $EXPECTED ] ||
4687                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4688 }
4689 run_test 56j "check lfs find -type d ============================="
4690
4691 test_56k() {
4692         TDIR=$DIR/${tdir}g
4693         setup_56_special $NUMFILES $NUMDIRS
4694
4695         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4696         CMD="$LFIND -type f $TDIR"
4697         NUMS=$($CMD | wc -l)
4698         [ $NUMS -eq $EXPECTED ] ||
4699                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4700 }
4701 run_test 56k "check lfs find -type f ============================="
4702
4703 test_56l() {
4704         TDIR=$DIR/${tdir}g
4705         setup_56_special $NUMFILES $NUMDIRS
4706
4707         EXPECTED=$((NUMDIRS + NUMFILES))
4708         CMD="$LFIND -type b $TDIR"
4709         NUMS=$($CMD | wc -l)
4710         [ $NUMS -eq $EXPECTED ] ||
4711                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4712 }
4713 run_test 56l "check lfs find -type b ============================="
4714
4715 test_56m() {
4716         TDIR=$DIR/${tdir}g
4717         setup_56_special $NUMFILES $NUMDIRS
4718
4719         EXPECTED=$((NUMDIRS + NUMFILES))
4720         CMD="$LFIND -type c $TDIR"
4721         NUMS=$($CMD | wc -l)
4722         [ $NUMS -eq $EXPECTED ] ||
4723                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4724 }
4725 run_test 56m "check lfs find -type c ============================="
4726
4727 test_56n() {
4728         TDIR=$DIR/${tdir}g
4729         setup_56_special $NUMFILES $NUMDIRS
4730
4731         EXPECTED=$((NUMDIRS + NUMFILES))
4732         CMD="$LFIND -type l $TDIR"
4733         NUMS=$($CMD | wc -l)
4734         [ $NUMS -eq $EXPECTED ] ||
4735                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4736 }
4737 run_test 56n "check lfs find -type l ============================="
4738
4739 test_56o() {
4740         TDIR=$DIR/${tdir}o
4741         setup_56 $NUMFILES $NUMDIRS
4742         utime $TDIR/file1 > /dev/null || error "utime (1)"
4743         utime $TDIR/file2 > /dev/null || error "utime (2)"
4744         utime $TDIR/dir1 > /dev/null || error "utime (3)"
4745         utime $TDIR/dir2 > /dev/null || error "utime (4)"
4746         utime $TDIR/dir1/file1 > /dev/null || error "utime (5)"
4747         dd if=/dev/zero count=1 >> $TDIR/dir1/file1 && sync
4748
4749         EXPECTED=4
4750         NUMS=`$LFIND -mtime +0 $TDIR | wc -l`
4751         [ $NUMS -eq $EXPECTED ] || \
4752                 error "lfs find -mtime +0 $TDIR wrong: found $NUMS, expected $EXPECTED"
4753
4754         EXPECTED=12
4755         CMD="$LFIND -mtime 0 $TDIR"
4756         NUMS=$($CMD | wc -l)
4757         [ $NUMS -eq $EXPECTED ] ||
4758                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4759 }
4760 run_test 56o "check lfs find -mtime for old files =========================="
4761
4762 test_56p() {
4763         [ $RUNAS_ID -eq $UID ] &&
4764                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
4765
4766         TDIR=$DIR/${tdir}p
4767         setup_56 $NUMFILES $NUMDIRS
4768
4769         chown $RUNAS_ID $TDIR/file* || error "chown $DIR/${tdir}g/file$i failed"
4770         EXPECTED=$NUMFILES
4771         CMD="$LFIND -uid $RUNAS_ID $TDIR"
4772         NUMS=$($CMD | wc -l)
4773         [ $NUMS -eq $EXPECTED ] || \
4774                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4775
4776         EXPECTED=$(((NUMFILES + 1) * NUMDIRS + 1))
4777         CMD="$LFIND ! -uid $RUNAS_ID $TDIR"
4778         NUMS=$($CMD | wc -l)
4779         [ $NUMS -eq $EXPECTED ] || \
4780                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4781 }
4782 run_test 56p "check lfs find -uid and ! -uid ==============================="
4783
4784 test_56q() {
4785         [ $RUNAS_ID -eq $UID ] &&
4786                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
4787
4788         TDIR=$DIR/${tdir}q
4789         setup_56 $NUMFILES $NUMDIRS
4790
4791         chgrp $RUNAS_GID $TDIR/file* || error "chown $TDIR/file$i failed"
4792
4793         EXPECTED=$NUMFILES
4794         CMD="$LFIND -gid $RUNAS_GID $TDIR"
4795         NUMS=$($CMD | wc -l)
4796         [ $NUMS -eq $EXPECTED ] ||
4797                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4798
4799         EXPECTED=$(( ($NUMFILES+1) * $NUMDIRS + 1))
4800         CMD="$LFIND ! -gid $RUNAS_GID $TDIR"
4801         NUMS=$($CMD | wc -l)
4802         [ $NUMS -eq $EXPECTED ] ||
4803                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4804 }
4805 run_test 56q "check lfs find -gid and ! -gid ==============================="
4806
4807 test_56r() {
4808         TDIR=$DIR/${tdir}r
4809         setup_56 $NUMFILES $NUMDIRS
4810
4811         EXPECTED=12
4812         CMD="$LFIND -size 0 -type f $TDIR"
4813         NUMS=$($CMD | wc -l)
4814         [ $NUMS -eq $EXPECTED ] ||
4815                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4816         EXPECTED=0
4817         CMD="$LFIND ! -size 0 -type f $TDIR"
4818         NUMS=$($CMD | wc -l)
4819         [ $NUMS -eq $EXPECTED ] ||
4820                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4821         echo "test" > $TDIR/$tfile
4822         echo "test2" > $TDIR/$tfile.2 && sync
4823         EXPECTED=1
4824         CMD="$LFIND -size 5 -type f $TDIR"
4825         NUMS=$($CMD | wc -l)
4826         [ $NUMS -eq $EXPECTED ] ||
4827                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4828         EXPECTED=1
4829         CMD="$LFIND -size +5 -type f $TDIR"
4830         NUMS=$($CMD | wc -l)
4831         [ $NUMS -eq $EXPECTED ] ||
4832                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4833         EXPECTED=2
4834         CMD="$LFIND -size +0 -type f $TDIR"
4835         NUMS=$($CMD | wc -l)
4836         [ $NUMS -eq $EXPECTED ] ||
4837                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4838         EXPECTED=2
4839         CMD="$LFIND ! -size -5 -type f $TDIR"
4840         NUMS=$($CMD | wc -l)
4841         [ $NUMS -eq $EXPECTED ] ||
4842                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4843         EXPECTED=12
4844         CMD="$LFIND -size -5 -type f $TDIR"
4845         NUMS=$($CMD | wc -l)
4846         [ $NUMS -eq $EXPECTED ] ||
4847                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4848 }
4849 run_test 56r "check lfs find -size works =========================="
4850
4851 test_56s() { # LU-611
4852         TDIR=$DIR/${tdir}s
4853
4854         #LU-9369
4855         setup_56 0 $NUMDIRS
4856         for i in $(seq 1 $NUMDIRS); do
4857                 $SETSTRIPE -c $((OSTCOUNT + 1)) $TDIR/dir$i/$tfile
4858         done
4859         EXPECTED=$NUMDIRS
4860         CMD="$LFIND -c $OSTCOUNT $TDIR"
4861         NUMS=$($CMD | wc -l)
4862         [ $NUMS -eq $EXPECTED ] || {
4863                 $GETSTRIPE -R $TDIR
4864                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4865         }
4866         rm -rf $TDIR
4867
4868         setup_56 $NUMFILES $NUMDIRS "-c $OSTCOUNT"
4869         if [[ $OSTCOUNT -gt 1 ]]; then
4870                 $SETSTRIPE -c 1 $TDIR/$tfile.{0,1,2,3}
4871                 ONESTRIPE=4
4872                 EXTRA=4
4873         else
4874                 ONESTRIPE=$(((NUMDIRS + 1) * NUMFILES))
4875                 EXTRA=0
4876         fi
4877
4878         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4879         CMD="$LFIND -stripe-count $OSTCOUNT -type f $TDIR"
4880         NUMS=$($CMD | wc -l)
4881         [ $NUMS -eq $EXPECTED ] || {
4882                 $GETSTRIPE -R $TDIR
4883                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4884         }
4885
4886         EXPECTED=$(((NUMDIRS + 1) * NUMFILES + EXTRA))
4887         CMD="$LFIND -stripe-count +0 -type f $TDIR"
4888         NUMS=$($CMD | wc -l)
4889         [ $NUMS -eq $EXPECTED ] || {
4890                 $GETSTRIPE -R $TDIR
4891                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4892         }
4893
4894         EXPECTED=$ONESTRIPE
4895         CMD="$LFIND -stripe-count 1 -type f $TDIR"
4896         NUMS=$($CMD | wc -l)
4897         [ $NUMS -eq $EXPECTED ] || {
4898                 $GETSTRIPE -R $TDIR
4899                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4900         }
4901
4902         CMD="$LFIND -stripe-count -2 -type f $TDIR"
4903         NUMS=$($CMD | wc -l)
4904         [ $NUMS -eq $EXPECTED ] || {
4905                 $GETSTRIPE -R $TDIR
4906                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4907         }
4908
4909         EXPECTED=0
4910         CMD="$LFIND -stripe-count $((OSTCOUNT + 1)) -type f $TDIR"
4911         NUMS=$($CMD | wc -l)
4912         [ $NUMS -eq $EXPECTED ] || {
4913                 $GETSTRIPE -R $TDIR
4914                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4915         }
4916 }
4917 run_test 56s "check lfs find -stripe-count works"
4918
4919 test_56t() { # LU-611
4920         TDIR=$DIR/${tdir}t
4921
4922         #LU-9369
4923         setup_56 0 $NUMDIRS
4924         for i in $(seq 1 $NUMDIRS); do
4925                 $SETSTRIPE -S 4M $TDIR/dir$i/$tfile
4926         done
4927         EXPECTED=$NUMDIRS
4928         CMD="$LFIND -S 4M $TDIR"
4929         NUMS=$($CMD | wc -l)
4930         [ $NUMS -eq $EXPECTED ] || {
4931                 $GETSTRIPE -R $TDIR
4932                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4933         }
4934         rm -rf $TDIR
4935
4936         setup_56 $NUMFILES $NUMDIRS "--stripe-size 512k"
4937
4938         $SETSTRIPE -S 256k $TDIR/$tfile.{0,1,2,3}
4939
4940         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4941         CMD="$LFIND -stripe-size 512k -type f $TDIR"
4942         NUMS=$($CMD | wc -l)
4943         [ $NUMS -eq $EXPECTED ] ||
4944                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4945
4946         CMD="$LFIND -stripe-size +320k -type f $TDIR"
4947         NUMS=$($CMD | wc -l)
4948         [ $NUMS -eq $EXPECTED ] ||
4949                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4950
4951         EXPECTED=$(((NUMDIRS + 1) * NUMFILES + 4))
4952         CMD="$LFIND -stripe-size +200k -type f $TDIR"
4953         NUMS=$($CMD | wc -l)
4954         [ $NUMS -eq $EXPECTED ] ||
4955                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4956
4957         CMD="$LFIND -stripe-size -640k -type f $TDIR"
4958         NUMS=$($CMD | wc -l)
4959         [ $NUMS -eq $EXPECTED ] ||
4960                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4961
4962         EXPECTED=4
4963         CMD="$LFIND -stripe-size 256k -type f $TDIR"
4964         NUMS=$($CMD | wc -l)
4965         [ $NUMS -eq $EXPECTED ] ||
4966                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4967
4968         CMD="$LFIND -stripe-size -320k -type f $TDIR"
4969         NUMS=$($CMD | wc -l)
4970         [ $NUMS -eq $EXPECTED ] ||
4971                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4972
4973         EXPECTED=0
4974         CMD="$LFIND -stripe-size 1024k -type f $TDIR"
4975         NUMS=$($CMD | wc -l)
4976         [ $NUMS -eq $EXPECTED ] ||
4977                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4978 }
4979 run_test 56t "check lfs find -stripe-size works"
4980
4981 test_56u() { # LU-611
4982         TDIR=$DIR/${tdir}u
4983         setup_56 $NUMFILES $NUMDIRS "-i 0"
4984
4985         if [[ $OSTCOUNT -gt 1 ]]; then
4986                 $SETSTRIPE -i 1 $TDIR/$tfile.{0,1,2,3}
4987                 ONESTRIPE=4
4988         else
4989                 ONESTRIPE=0
4990         fi
4991
4992         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4993         CMD="$LFIND -stripe-index 0 -type f $TDIR"
4994         NUMS=$($CMD | wc -l)
4995         [ $NUMS -eq $EXPECTED ] ||
4996                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4997
4998         EXPECTED=$ONESTRIPE
4999         CMD="$LFIND -stripe-index 1 -type f $TDIR"
5000         NUMS=$($CMD | wc -l)
5001         [ $NUMS -eq $EXPECTED ] ||
5002                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
5003
5004         CMD="$LFIND ! -stripe-index 0 -type f $TDIR"
5005         NUMS=$($CMD | wc -l)
5006         [ $NUMS -eq $EXPECTED ] ||
5007                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
5008
5009         EXPECTED=0
5010         # This should produce an error and not return any files
5011         CMD="$LFIND -stripe-index $OSTCOUNT -type f $TDIR"
5012         NUMS=$($CMD 2>/dev/null | wc -l)
5013         [ $NUMS -eq $EXPECTED ] ||
5014                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
5015
5016         if [[ $OSTCOUNT -gt 1 ]]; then
5017                 EXPECTED=$(((NUMDIRS + 1) * NUMFILES + ONESTRIPE))
5018                 CMD="$LFIND -stripe-index 0,1 -type f $TDIR"
5019                 NUMS=$($CMD | wc -l)
5020                 [ $NUMS -eq $EXPECTED ] ||
5021                         error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
5022         fi
5023 }
5024 run_test 56u "check lfs find -stripe-index works"
5025
5026 test_56v() {
5027     local MDT_IDX=0
5028
5029     TDIR=$DIR/${tdir}v
5030     rm -rf $TDIR
5031     setup_56 $NUMFILES $NUMDIRS
5032
5033     UUID=$(mdtuuid_from_index $MDT_IDX $TDIR)
5034     [ -z "$UUID" ] && error "mdtuuid_from_index cannot find MDT index $MDT_IDX"
5035
5036     for file in $($LFIND -mdt $UUID $TDIR); do
5037         file_mdt_idx=$($GETSTRIPE -M $file)
5038         [ $file_mdt_idx -eq $MDT_IDX ] ||
5039             error "'lfind -mdt $UUID' != 'getstripe -M' ($file_mdt_idx)"
5040     done
5041 }
5042 run_test 56v "check 'lfs find -mdt match with lfs getstripe -M' ======="
5043
5044 test_56w() {
5045         [[ $OSTCOUNT -lt 2 ]] && skip_env "$OSTCOUNT < 2 OSTs -- skipping" &&
5046                 return
5047         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5048         TDIR=$DIR/${tdir}w
5049
5050         rm -rf $TDIR || error "remove $TDIR failed"
5051         setup_56 $NUMFILES $NUMDIRS "-c $OSTCOUNT" "-c1"
5052
5053         local stripe_size
5054         stripe_size=$($GETSTRIPE -S -d $TDIR) ||
5055                 error "$GETSTRIPE -S -d $TDIR failed"
5056         stripe_size=${stripe_size%% *}
5057
5058         local file_size=$((stripe_size * OSTCOUNT))
5059         local file_num=$((NUMDIRS * NUMFILES + NUMFILES))
5060         local required_space=$((file_num * file_size))
5061
5062         local free_space=$($LCTL get_param -n lov.$FSNAME-clilov-*.kbytesavail |
5063                            head -n1)
5064         [[ $free_space -le $((required_space / 1024)) ]] &&
5065                 skip_env "need $required_space bytes, have $free_space KB" &&
5066                 return
5067
5068         local dd_bs=65536
5069         local dd_count=$((file_size / dd_bs))
5070
5071         # write data into the files
5072         local i
5073         local j
5074         local file
5075         for i in $(seq 1 $NUMFILES); do
5076                 file=$TDIR/file$i
5077                 yes | dd bs=$dd_bs count=$dd_count of=$file &>/dev/null ||
5078                         error "write data into $file failed"
5079         done
5080         for i in $(seq 1 $NUMDIRS); do
5081                 for j in $(seq 1 $NUMFILES); do
5082                         file=$TDIR/dir$i/file$j
5083                         yes|dd bs=$dd_bs count=$dd_count of=$file &>/dev/null ||
5084                                 error "write data into $file failed"
5085                 done
5086         done
5087
5088         # $LFS_MIGRATE will fail if hard link migration is unsupported
5089         if [[ $(lustre_version_code mds1) -gt $(version_code 2.5.55) ]]; then
5090                 createmany -l$TDIR/dir1/file1 $TDIR/dir1/link 200 ||
5091                         error "creating links to $TDIR/dir1/file1 failed"
5092         fi
5093
5094         local expected=-1
5095         [[ $OSTCOUNT -gt 1 ]] && expected=$((OSTCOUNT - 1))
5096
5097         # lfs_migrate file
5098         local cmd="$LFS_MIGRATE -y -c $expected $TDIR/file1"
5099         echo "$cmd"
5100         eval $cmd || error "$cmd failed"
5101
5102         check_stripe_count $TDIR/file1 $expected
5103
5104         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.90) ];
5105         then
5106                 # lfs_migrate file onto OST 0 if it is on OST 1, or onto
5107                 # OST 1 if it is on OST 0. This file is small enough to
5108                 # be on only one stripe.
5109                 file=$TDIR/migr_1_ost
5110                 dd bs=$dd_bs count=1 if=/dev/urandom of=$file >/dev/null 2>&1 ||
5111                         error "write data into $file failed"
5112                 local obdidx=$($LFS getstripe -i $file)
5113                 local oldmd5=$(md5sum $file)
5114                 local newobdidx=0
5115                 [[ $obdidx -eq 0 ]] && newobdidx=1
5116                 cmd="$LFS migrate -i $newobdidx $file"
5117                 echo $cmd
5118                 eval $cmd || error "$cmd failed"
5119                 local realobdix=$($LFS getstripe -i $file)
5120                 local newmd5=$(md5sum $file)
5121                 [[ $newobdidx -ne $realobdix ]] &&
5122                         error "new OST is different (was=$obdidx, wanted=$newobdidx, got=$realobdix)"
5123                 [[ "$oldmd5" != "$newmd5" ]] &&
5124                         error "md5sum differ: $oldmd5, $newmd5"
5125         fi
5126
5127     # lfs_migrate dir
5128     cmd="$LFS_MIGRATE -y -c $expected $TDIR/dir1"
5129     echo "$cmd"
5130     eval $cmd || error "$cmd failed"
5131
5132     for j in $(seq 1 $NUMFILES); do
5133         check_stripe_count $TDIR/dir1/file$j $expected
5134     done
5135
5136     # lfs_migrate works with lfs find
5137     cmd="$LFIND -stripe_count $OSTCOUNT -type f $TDIR |
5138          $LFS_MIGRATE -y -c $expected"
5139     echo "$cmd"
5140     eval $cmd || error "$cmd failed"
5141
5142     for i in $(seq 2 $NUMFILES); do
5143         check_stripe_count $TDIR/file$i $expected
5144     done
5145     for i in $(seq 2 $NUMDIRS); do
5146         for j in $(seq 1 $NUMFILES); do
5147             check_stripe_count $TDIR/dir$i/file$j $expected
5148         done
5149     done
5150 }
5151 run_test 56w "check lfs_migrate -c stripe_count works"
5152
5153 test_56x() {
5154         check_swap_layouts_support && return 0
5155         [[ $OSTCOUNT -lt 2 ]] &&
5156                 skip_env "need 2 OST, skipping test" && return
5157
5158         local dir0=$DIR/$tdir/$testnum
5159         test_mkdir -p $dir0 || error "creating dir $dir0"
5160
5161         local ref1=/etc/passwd
5162         local file1=$dir0/file1
5163
5164         $SETSTRIPE -c 2 $file1
5165         cp $ref1 $file1
5166         $LFS migrate -c 1 $file1 || error "migrate failed rc = $?"
5167         stripe=$($GETSTRIPE -c $file1)
5168         [[ $stripe == 1 ]] || error "stripe of $file1 is $stripe != 1"
5169         cmp $file1 $ref1 || error "content mismatch $file1 differs from $ref1"
5170
5171         # clean up
5172         rm -f $file1
5173 }
5174 run_test 56x "lfs migration support"
5175
5176 test_56xa() {
5177         check_swap_layouts_support && return 0
5178         [[ $OSTCOUNT -lt 2 ]] &&
5179                 skip_env "need 2 OST, skipping test" && return
5180
5181         local dir0=$DIR/$tdir/$testnum
5182         test_mkdir -p $dir0 || error "creating dir $dir0"
5183
5184         local ref1=/etc/passwd
5185         local file1=$dir0/file1
5186
5187         $SETSTRIPE -c 2 $file1
5188         cp $ref1 $file1
5189         $LFS migrate --block -c 1 $file1 || error "migrate failed rc = $?"
5190         local stripe=$($GETSTRIPE -c $file1)
5191         [[ $stripe == 1 ]] || error "stripe of $file1 is $stripe != 1"
5192         cmp $file1 $ref1 || error "content mismatch $file1 differs from $ref1"
5193
5194         # clean up
5195         rm -f $file1
5196 }
5197 run_test 56xa "lfs migration --block support"
5198
5199 test_56y() {
5200         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.53) ] &&
5201                 skip "No HSM $(lustre_build_version $SINGLEMDS) MDS < 2.4.53" &&
5202                 return
5203
5204         local res=""
5205         local dir0=$DIR/$tdir/$testnum
5206         test_mkdir -p $dir0 || error "creating dir $dir0"
5207         local f1=$dir0/file1
5208         local f2=$dir0/file2
5209
5210         touch $f1 || error "creating std file $f1"
5211         $MULTIOP $f2 H2c || error "creating released file $f2"
5212
5213         # a directory can be raid0, so ask only for files
5214         res=$($LFIND $dir0 -L raid0 -type f | wc -l)
5215         [[ $res == 2 ]] || error "search raid0: found $res files != 2"
5216
5217         res=$($LFIND $dir0 \! -L raid0 -type f | wc -l)
5218         [[ $res == 0 ]] || error "search !raid0: found $res files != 0"
5219
5220         # only files can be released, so no need to force file search
5221         res=$($LFIND $dir0 -L released)
5222         [[ $res == $f2 ]] || error "search released: found $res != $f2"
5223
5224         res=$($LFIND $dir0 \! -L released)
5225         [[ $res == $f1 ]] || error "search !released: found $res != $f1"
5226
5227 }
5228 run_test 56y "lfs find -L raid0|released"
5229
5230 test_56z() { # LU-4824
5231         # This checks to make sure 'lfs find' continues after errors
5232         # There are two classes of errors that should be caught:
5233         # - If multiple paths are provided, all should be searched even if one
5234         #   errors out
5235         # - If errors are encountered during the search, it should not terminate
5236         #   early
5237         local i
5238         test_mkdir $DIR/$tdir
5239         for i in d{0..9}; do
5240                 test_mkdir $DIR/$tdir/$i
5241         done
5242         touch $DIR/$tdir/d{0..9}/$tfile
5243         $LFS find $DIR/non_existent_dir $DIR/$tdir &&
5244                 error "$LFS find did not return an error"
5245         # Make a directory unsearchable. This should NOT be the last entry in
5246         # directory order.  Arbitrarily pick the 6th entry
5247         chmod 700 $($LFS find $DIR/$tdir -type d | sed '6!d')
5248         local count=$($RUNAS $LFS find $DIR/non_existent $DIR/$tdir | wc -l)
5249         # The user should be able to see 10 directories and 9 files
5250         [ $count == 19 ] || error "$LFS find did not continue after error"
5251 }
5252 run_test 56z "lfs find should continue after an error"
5253
5254 test_56aa() { # LU-5937
5255         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
5256
5257         mkdir $DIR/$tdir
5258         $LFS setdirstripe -c$MDSCOUNT $DIR/$tdir/striped_dir
5259
5260         createmany -o $DIR/$tdir/striped_dir/${tfile}- 1024
5261         local dirs=$(lfs find --size +8k $DIR/$tdir/)
5262
5263         [ -n "$dirs" ] || error "lfs find --size wrong under striped dir"
5264 }
5265 run_test 56aa "lfs find --size under striped dir"
5266
5267 test_57a() {
5268         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5269         # note test will not do anything if MDS is not local
5270         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
5271                 skip "Only applicable to ldiskfs-based MDTs"
5272                 return
5273         fi
5274
5275         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5276         local MNTDEV="osd*.*MDT*.mntdev"
5277         DEV=$(do_facet $SINGLEMDS lctl get_param -n $MNTDEV)
5278         [ -z "$DEV" ] && error "can't access $MNTDEV"
5279         for DEV in $(do_facet $SINGLEMDS lctl get_param -n $MNTDEV); do
5280                 do_facet $SINGLEMDS $DUMPE2FS -h $DEV > $TMP/t57a.dump ||
5281                         error "can't access $DEV"
5282                 DEVISIZE=$(awk '/Inode size:/ { print $3 }' $TMP/t57a.dump)
5283                 [[ $DEVISIZE -gt 128 ]] || error "inode size $DEVISIZE"
5284                 rm $TMP/t57a.dump
5285         done
5286 }
5287 run_test 57a "verify MDS filesystem created with large inodes =="
5288
5289 test_57b() {
5290         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5291         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
5292                 skip "Only applicable to ldiskfs-based MDTs"
5293                 return
5294         fi
5295
5296         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5297         local dir=$DIR/$tdir
5298
5299         local FILECOUNT=100
5300         local FILE1=$dir/f1
5301         local FILEN=$dir/f$FILECOUNT
5302
5303         rm -rf $dir || error "removing $dir"
5304         test_mkdir -p -c1 $dir || error "creating $dir"
5305         local mdtidx=$($LFS getstripe -M $dir)
5306         local mdtname=MDT$(printf %04x $mdtidx)
5307         local facet=mds$((mdtidx + 1))
5308
5309         echo "mcreating $FILECOUNT files"
5310         createmany -m $dir/f 1 $FILECOUNT || \
5311                 error "creating files in $dir"
5312
5313         # verify that files do not have EAs yet
5314         $GETSTRIPE $FILE1 2>&1 | grep -q "no stripe" || error "$FILE1 has an EA"
5315         $GETSTRIPE $FILEN 2>&1 | grep -q "no stripe" || error "$FILEN has an EA"
5316
5317         sync
5318         sleep 1
5319         df $dir  #make sure we get new statfs data
5320         local MDSFREE=$(do_facet $facet \
5321                 lctl get_param -n osd*.*$mdtname.kbytesfree)
5322         local MDCFREE=$(lctl get_param -n mdc.*$mdtname-mdc-*.kbytesfree)
5323         echo "opening files to create objects/EAs"
5324         local FILE
5325         for FILE in `seq -f $dir/f%g 1 $FILECOUNT`; do
5326                 $OPENFILE -f O_RDWR $FILE > /dev/null 2>&1 || error "opening $FILE"
5327         done
5328
5329         # verify that files have EAs now
5330         $GETSTRIPE $FILE1 | grep -q "obdidx" || error "$FILE1 missing EA"
5331         $GETSTRIPE $FILEN | grep -q "obdidx" || error "$FILEN missing EA"
5332
5333         sleep 1  #make sure we get new statfs data
5334         df $dir
5335         local MDSFREE2=$(do_facet $facet \
5336                 lctl get_param -n osd*.*$mdtname.kbytesfree)
5337         local MDCFREE2=$(lctl get_param -n mdc.*$mdtname-mdc-*.kbytesfree)
5338         if [[ $MDCFREE2 -lt $((MDCFREE - 16)) ]]; then
5339                 if [ "$MDSFREE" != "$MDSFREE2" ]; then
5340                         error "MDC before $MDCFREE != after $MDCFREE2"
5341                 else
5342                         echo "MDC before $MDCFREE != after $MDCFREE2"
5343                         echo "unable to confirm if MDS has large inodes"
5344                 fi
5345         fi
5346         rm -rf $dir
5347 }
5348 run_test 57b "default LOV EAs are stored inside large inodes ==="
5349
5350 test_58() {
5351         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5352         [ -z "$(which wiretest 2>/dev/null)" ] &&
5353                         skip_env "could not find wiretest" && return
5354         wiretest
5355 }
5356 run_test 58 "verify cross-platform wire constants =============="
5357
5358 test_59() {
5359         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5360         echo "touch 130 files"
5361         createmany -o $DIR/f59- 130
5362         echo "rm 130 files"
5363         unlinkmany $DIR/f59- 130
5364         sync
5365         # wait for commitment of removal
5366         wait_delete_completed
5367 }
5368 run_test 59 "verify cancellation of llog records async ========="
5369
5370 TEST60_HEAD="test_60 run $RANDOM"
5371 test_60a() {
5372         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5373         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
5374         do_facet mgs "! which run-llog.sh &> /dev/null" &&
5375                 do_facet mgs "! ls run-llog.sh &> /dev/null" &&
5376                         skip_env "missing subtest run-llog.sh" && return
5377
5378         log "$TEST60_HEAD - from kernel mode"
5379         do_facet mgs "$LCTL set_param debug=warning; $LCTL dk > /dev/null"
5380         do_facet mgs sh run-llog.sh
5381         do_facet mgs $LCTL dk > $TMP/$tfile
5382
5383         # LU-6388: test llog_reader
5384         local llog_reader=$(do_facet mgs "which llog_reader 2> /dev/null")
5385         llog_reader=${llog_reader:-$LUSTRE/utils/llog_reader}
5386         [ -z $(do_facet mgs ls -d $llog_reader 2> /dev/null) ] &&
5387                         skip_env "missing llog_reader" && return
5388         local fstype=$(facet_fstype mgs)
5389         [ $fstype != ldiskfs -a $fstype != zfs ] &&
5390                 skip_env "Only for ldiskfs or zfs type mgs" && return
5391
5392         local mntpt=$(facet_mntpt mgs)
5393         local mgsdev=$(mgsdevname 1)
5394         local fid_list
5395         local fid
5396         local rec_list
5397         local rec
5398         local rec_type
5399         local obj_file
5400         local path
5401         local seq
5402         local oid
5403         local pass=true
5404
5405         #get fid and record list
5406         fid_list=($(awk '/9_sub.*record/ { print $NF }' /$TMP/$tfile |
5407                 tail -n 4))
5408         rec_list=($(awk '/9_sub.*record/ { print $((NF-3)) }' /$TMP/$tfile |
5409                 tail -n 4))
5410         #remount mgs as ldiskfs or zfs type
5411         stop mgs || error "stop mgs failed"
5412         mount_fstype mgs || error "remount mgs failed"
5413         for ((i = 0; i < ${#fid_list[@]}; i++)); do
5414                 fid=${fid_list[i]}
5415                 rec=${rec_list[i]}
5416                 seq=$(echo $fid | awk -F ':' '{ print $1 }' | sed -e "s/^0x//g")
5417                 oid=$(echo $fid | awk -F ':' '{ print $2 }' | sed -e "s/^0x//g")
5418                 oid=$((16#$oid))
5419
5420                 case $fstype in
5421                         ldiskfs )
5422                                 obj_file=$mntpt/O/$seq/d$((oid%32))/$oid ;;
5423                         zfs )
5424                                 obj_file=$mntpt/oi.$(($((16#$seq))&127))/$fid ;;
5425                 esac
5426                 echo "obj_file is $obj_file"
5427                 do_facet mgs $llog_reader $obj_file
5428
5429                 rec_type=$(do_facet mgs $llog_reader $obj_file | grep "type=" |
5430                         awk '{ print $3 }' | sed -e "s/^type=//g")
5431                 if [ $rec_type != $rec ]; then
5432                         echo "FAILED test_60a wrong record type $rec_type," \
5433                               "should be $rec"
5434                         pass=false
5435                         break
5436                 fi
5437
5438                 #check obj path if record type is LLOG_LOGID_MAGIC
5439                 if [ "$rec" == "1064553b" ]; then
5440                         path=$(do_facet mgs $llog_reader $obj_file |
5441                                 grep "path=" | awk '{ print $NF }' |
5442                                 sed -e "s/^path=//g")
5443                         if [ $obj_file != $mntpt/$path ]; then
5444                                 echo "FAILED test_60a wrong obj path" \
5445                                       "$montpt/$path, should be $obj_file"
5446                                 pass=false
5447                                 break
5448                         fi
5449                 fi
5450         done
5451         rm -f $TMP/$tfile
5452         #restart mgs before "error", otherwise it will block the next test
5453         stop mgs || error "stop mgs failed"
5454         start mgs $(mgsdevname) $MGS_MOUNT_OPTS || error "start mgs failed"
5455         $pass || error "test failed, see FAILED test_60a messages for specifics"
5456 }
5457 run_test 60a "llog_test run from kernel module and test llog_reader"
5458
5459 test_60aa() {
5460         # test old logid format
5461         if [ $(lustre_version_code mgs) -le $(version_code 3.1.53) ]; then
5462                 do_facet mgs $LCTL dl | grep MGS
5463                 do_facet mgs "$LCTL --device %MGS llog_print \\\\\\\$$FSNAME-client" ||
5464                         error "old llog_print failed"
5465         fi
5466
5467         # test new logid format
5468         if [ $(lustre_version_code mgs) -ge $(version_code 2.9.53) ]; then
5469                 do_facet mgs "$LCTL --device MGS llog_print $FSNAME-client" ||
5470                         error "new llog_print failed"
5471         fi
5472 }
5473 run_test 60aa "llog_print works with FIDs and simple names"
5474
5475 test_60b() { # bug 6411
5476         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5477         dmesg > $DIR/$tfile
5478         LLOG_COUNT=$(dmesg | awk "/$TEST60_HEAD/ { marker = 1; from_marker = 0; }
5479                                 /llog.test/ {
5480                                         if (marker)
5481                                                 from_marker++
5482                                         from_begin++
5483                                 }
5484                                 END {
5485                                         if (marker)
5486                                                 print from_marker
5487                                         else
5488                                                 print from_begin
5489                                 }")
5490         [[ $LLOG_COUNT -gt 100 ]] &&
5491                 error "CDEBUG_LIMIT not limiting messages ($LLOG_COUNT)" || true
5492 }
5493 run_test 60b "limit repeated messages from CERROR/CWARN ========"
5494
5495 test_60c() {
5496         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5497         echo "create 5000 files"
5498         createmany -o $DIR/f60c- 5000
5499 #define OBD_FAIL_MDS_LLOG_CREATE_FAILED  0x137
5500         lctl set_param fail_loc=0x80000137
5501         unlinkmany $DIR/f60c- 5000
5502         lctl set_param fail_loc=0
5503 }
5504 run_test 60c "unlink file when mds full"
5505
5506 test_60d() {
5507         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5508         SAVEPRINTK=$(lctl get_param -n printk)
5509
5510         # verify "lctl mark" is even working"
5511         MESSAGE="test message ID $RANDOM $$"
5512         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
5513         dmesg | grep -q "$MESSAGE" || error "didn't find debug marker in log"
5514
5515         lctl set_param printk=0 || error "set lnet.printk failed"
5516         lctl get_param -n printk | grep emerg || error "lnet.printk dropped emerg"
5517         MESSAGE="new test message ID $RANDOM $$"
5518         # Assume here that libcfs_debug_mark_buffer() uses D_WARNING
5519         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
5520         dmesg | grep -q "$MESSAGE" && error "D_WARNING wasn't masked" || true
5521
5522         lctl set_param -n printk="$SAVEPRINTK"
5523 }
5524 run_test 60d "test printk console message masking"
5525
5526 test_60e() {
5527         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5528         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5529         touch $DIR/$tfile
5530 #define OBD_FAIL_MDS_LLOG_CREATE_FAILED2  0x15b
5531         do_facet mds1 lctl set_param fail_loc=0x15b
5532         rm $DIR/$tfile
5533 }
5534 run_test 60e "no space while new llog is being created"
5535
5536 test_61() {
5537         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5538         f="$DIR/f61"
5539         dd if=/dev/zero of=$f bs=$(page_size) count=1 || error "dd $f failed"
5540         cancel_lru_locks osc
5541         $MULTIOP $f OSMWUc || error "$MULTIOP $f failed"
5542         sync
5543 }
5544 run_test 61 "mmap() writes don't make sync hang ================"
5545
5546 # bug 2330 - insufficient obd_match error checking causes LBUG
5547 test_62() {
5548         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5549         f="$DIR/f62"
5550         echo foo > $f
5551         cancel_lru_locks osc
5552         lctl set_param fail_loc=0x405
5553         cat $f && error "cat succeeded, expect -EIO"
5554         lctl set_param fail_loc=0
5555 }
5556 # This test is now irrelevant (as of bug 10718 inclusion), we no longer
5557 # match every page all of the time.
5558 #run_test 62 "verify obd_match failure doesn't LBUG (should -EIO)"
5559
5560 # bug 2319 - oig_wait() interrupted causes crash because of invalid waitq.
5561 # Though this test is irrelevant anymore, it helped to reveal some
5562 # other grant bugs (LU-4482), let's keep it.
5563 test_63a() {   # was test_63
5564         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5565         MAX_DIRTY_MB=`lctl get_param -n osc.*.max_dirty_mb | head -n 1`
5566         for i in `seq 10` ; do
5567                 dd if=/dev/zero of=$DIR/f63 bs=8k &
5568                 sleep 5
5569                 kill $!
5570                 sleep 1
5571         done
5572
5573         rm -f $DIR/f63 || true
5574 }
5575 run_test 63a "Verify oig_wait interruption does not crash ======="
5576
5577 # bug 2248 - async write errors didn't return to application on sync
5578 # bug 3677 - async write errors left page locked
5579 test_63b() {
5580         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5581         debugsave
5582         lctl set_param debug=-1
5583
5584         # ensure we have a grant to do async writes
5585         dd if=/dev/zero of=$DIR/$tfile bs=4k count=1
5586         rm $DIR/$tfile
5587
5588         sync    # sync lest earlier test intercept the fail_loc
5589
5590         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
5591         lctl set_param fail_loc=0x80000406
5592         $MULTIOP $DIR/$tfile Owy && \
5593                 error "sync didn't return ENOMEM"
5594         sync; sleep 2; sync     # do a real sync this time to flush page
5595         lctl get_param -n llite.*.dump_page_cache | grep locked && \
5596                 error "locked page left in cache after async error" || true
5597         debugrestore
5598 }
5599 run_test 63b "async write errors should be returned to fsync ==="
5600
5601 test_64a () {
5602         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5603         df $DIR
5604         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur* | grep "[0-9]"
5605 }
5606 run_test 64a "verify filter grant calculations (in kernel) ====="
5607
5608 test_64b () {
5609         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5610         sh oos.sh $MOUNT || error "oos.sh failed: $?"
5611 }
5612 run_test 64b "check out-of-space detection on client ==========="
5613
5614 test_64c() {
5615         $LCTL set_param osc.*OST0000-osc-[^mM]*.cur_grant_bytes=0
5616 }
5617 run_test 64c "verify grant shrink ========================------"
5618
5619 # bug 1414 - set/get directories' stripe info
5620 test_65a() {
5621         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5622         test_mkdir -p $DIR/$tdir
5623         touch $DIR/$tdir/f1
5624         $LVERIFY $DIR/$tdir $DIR/$tdir/f1 || error "lverify failed"
5625 }
5626 run_test 65a "directory with no stripe info ===================="
5627
5628 test_65b() {
5629         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5630         test_mkdir -p $DIR/$tdir
5631         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
5632
5633         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
5634                                                 error "setstripe"
5635         touch $DIR/$tdir/f2
5636         $LVERIFY $DIR/$tdir $DIR/$tdir/f2 || error "lverify failed"
5637 }
5638 run_test 65b "directory setstripe -S stripe_size*2 -i 0 -c 1"
5639
5640 test_65c() {
5641         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5642         if [[ $OSTCOUNT -gt 1 ]]; then
5643                 test_mkdir -p $DIR/$tdir
5644                 local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
5645
5646                 $SETSTRIPE -S $(($STRIPESIZE * 4)) -i 1 \
5647                         -c $(($OSTCOUNT - 1)) $DIR/$tdir || error "setstripe"
5648                 touch $DIR/$tdir/f3
5649                 $LVERIFY $DIR/$tdir $DIR/$tdir/f3 || error "lverify failed"
5650         fi
5651 }
5652 run_test 65c "directory setstripe -S stripe_size*4 -i 1 -c $((OSTCOUNT-1))"
5653
5654 test_65d() {
5655         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5656         test_mkdir -p $DIR/$tdir
5657         local STRIPECOUNT=$($GETSTRIPE -c $DIR/$tdir)
5658         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
5659
5660         if [[ $STRIPECOUNT -le 0 ]]; then
5661                 sc=1
5662         elif [[ $STRIPECOUNT -gt 2000 ]]; then
5663 #LOV_MAX_STRIPE_COUNT is 2000
5664                 [[ $OSTCOUNT -gt 2000 ]] && sc=2000 || sc=$(($OSTCOUNT - 1))
5665         else
5666                 sc=$(($STRIPECOUNT - 1))
5667         fi
5668         $SETSTRIPE -S $STRIPESIZE -c $sc $DIR/$tdir || error "setstripe"
5669         touch $DIR/$tdir/f4 $DIR/$tdir/f5
5670         $LVERIFY $DIR/$tdir $DIR/$tdir/f4 $DIR/$tdir/f5 ||
5671                 error "lverify failed"
5672 }
5673 run_test 65d "directory setstripe -S stripe_size -c stripe_count"
5674
5675 test_65e() {
5676         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5677         test_mkdir -p $DIR/$tdir
5678
5679         $SETSTRIPE $DIR/$tdir || error "setstripe"
5680         $GETSTRIPE -v $DIR/$tdir | grep "Default" ||
5681                                         error "no stripe info failed"
5682         touch $DIR/$tdir/f6
5683         $LVERIFY $DIR/$tdir $DIR/$tdir/f6 || error "lverify failed"
5684 }
5685 run_test 65e "directory setstripe defaults ======================="
5686
5687 test_65f() {
5688         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5689         test_mkdir -p $DIR/${tdir}f
5690         $RUNAS $SETSTRIPE $DIR/${tdir}f && error "setstripe succeeded" || true
5691 }
5692 run_test 65f "dir setstripe permission (should return error) ==="
5693
5694 test_65g() {
5695         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5696         test_mkdir -p $DIR/$tdir
5697         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
5698
5699         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
5700                                                         error "setstripe"
5701         $SETSTRIPE -d $DIR/$tdir || error "setstripe"
5702         $GETSTRIPE -v $DIR/$tdir | grep "Default" ||
5703                 error "delete default stripe failed"
5704 }
5705 run_test 65g "directory setstripe -d ==========================="
5706
5707 test_65h() {
5708         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5709         test_mkdir -p $DIR/$tdir
5710         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
5711
5712         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
5713                                                         error "setstripe"
5714         test_mkdir -p $DIR/$tdir/dd1
5715         [ $($GETSTRIPE -c $DIR/$tdir) == $($GETSTRIPE -c $DIR/$tdir/dd1) ] ||
5716                 error "stripe info inherit failed"
5717 }
5718 run_test 65h "directory stripe info inherit ===================="
5719
5720 test_65i() { # bug6367
5721         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5722         $SETSTRIPE -S 65536 -c -1 $MOUNT
5723 }
5724 run_test 65i "set non-default striping on root directory (bug 6367)="
5725
5726 test_65ia() { # bug12836
5727         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5728         $GETSTRIPE $MOUNT || error "getstripe $MOUNT failed"
5729 }
5730 run_test 65ia "getstripe on -1 default directory striping"
5731
5732 test_65ib() { # bug12836
5733         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5734         $GETSTRIPE -v $MOUNT || error "getstripe -v $MOUNT failed"
5735 }
5736 run_test 65ib "getstripe -v on -1 default directory striping"
5737
5738 test_65ic() { # bug12836
5739         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5740         $LFS find -mtime -1 $MOUNT > /dev/null || error "find $MOUNT failed"
5741 }
5742 run_test 65ic "new find on -1 default directory striping"
5743
5744 test_65j() { # bug6367
5745         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5746         sync; sleep 1
5747         # if we aren't already remounting for each test, do so for this test
5748         if [ "$CLEANUP" = ":" -a "$I_MOUNTED" = "yes" ]; then
5749                 cleanup || error "failed to unmount"
5750                 setup
5751         fi
5752         $SETSTRIPE -d $MOUNT || error "setstripe failed"
5753 }
5754 run_test 65j "set default striping on root directory (bug 6367)="
5755
5756 test_65k() { # bug11679
5757         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5758         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
5759         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5760
5761         local disable_precreate=true
5762         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.8.54) ] &&
5763                 disable_precreate=false
5764
5765         echo "Check OST status: "
5766         local MDS_OSCS=$(do_facet $SINGLEMDS lctl dl |
5767                 awk '/[oO][sS][cC].*md[ts]/ { print $4 }')
5768
5769         for OSC in $MDS_OSCS; do
5770                 echo $OSC "is active"
5771                 do_facet $SINGLEMDS lctl --device %$OSC activate
5772         done
5773
5774         for INACTIVE_OSC in $MDS_OSCS; do
5775                 local ost=$(osc_to_ost $INACTIVE_OSC)
5776                 local ostnum=$(do_facet $SINGLEMDS lctl get_param -n \
5777                                lov.*md*.target_obd |
5778                                awk -F: /$ost/'{ print $1 }' | head -n 1)
5779
5780                 mkdir -p $DIR/$tdir
5781                 $SETSTRIPE -i $ostnum -c 1 $DIR/$tdir
5782                 createmany -o $DIR/$tdir/$tfile.$ostnum. 1000
5783
5784                 echo "Deactivate: " $INACTIVE_OSC
5785                 do_facet $SINGLEMDS lctl --device %$INACTIVE_OSC deactivate
5786
5787                 local count=$(do_facet $SINGLEMDS "lctl get_param -n \
5788                               osp.$ost*MDT0000.create_count")
5789                 local max_count=$(do_facet $SINGLEMDS "lctl get_param -n \
5790                                   osp.$ost*MDT0000.max_create_count")
5791                 $disable_precreate &&
5792                         do_facet $SINGLEMDS "lctl set_param -n \
5793                                 osp.$ost*MDT0000.max_create_count=0"
5794
5795                 for idx in $(seq 0 $((OSTCOUNT - 1))); do
5796                         [ -f $DIR/$tdir/$idx ] && continue
5797                         echo "$SETSTRIPE -i $idx -c 1 $DIR/$tdir/$idx"
5798                         $SETSTRIPE -i $idx -c 1 $DIR/$tdir/$idx ||
5799                                 error "setstripe $idx should succeed"
5800                         rm -f $DIR/$tdir/$idx || error "rm $idx failed"
5801                 done
5802                 unlinkmany $DIR/$tdir/$tfile.$ostnum. 1000
5803                 rmdir $DIR/$tdir
5804
5805                 do_facet $SINGLEMDS "lctl set_param -n \
5806                         osp.$ost*MDT0000.max_create_count=$max_count"
5807                 do_facet $SINGLEMDS "lctl set_param -n \
5808                         osp.$ost*MDT0000.create_count=$count"
5809                 do_facet $SINGLEMDS lctl --device  %$INACTIVE_OSC activate
5810                 echo $INACTIVE_OSC "is Activate"
5811
5812                 wait_osc_import_state mds ost$ostnum FULL
5813         done
5814 }
5815 run_test 65k "validate manual striping works properly with deactivated OSCs"
5816
5817 test_65l() { # bug 12836
5818         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5819         test_mkdir -p $DIR/$tdir/test_dir
5820         $SETSTRIPE -c -1 $DIR/$tdir/test_dir
5821         $LFS find -mtime -1 $DIR/$tdir >/dev/null
5822 }
5823 run_test 65l "lfs find on -1 stripe dir ========================"
5824
5825 test_65m() {
5826         $RUNAS $SETSTRIPE -c 2 $MOUNT && error "setstripe should fail"
5827         true
5828 }
5829 run_test 65m "normal user can't set filesystem default stripe"
5830
5831 # bug 2543 - update blocks count on client
5832 test_66() {
5833         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5834         COUNT=${COUNT:-8}
5835         dd if=/dev/zero of=$DIR/f66 bs=1k count=$COUNT
5836         sync; sync_all_data; sync; sync_all_data
5837         cancel_lru_locks osc
5838         BLOCKS=`ls -s $DIR/f66 | awk '{ print $1 }'`
5839         [ $BLOCKS -ge $COUNT ] || error "$DIR/f66 blocks $BLOCKS < $COUNT"
5840 }
5841 run_test 66 "update inode blocks count on client ==============="
5842
5843 meminfo() {
5844         awk '($1 == "'$1':") { print $2 }' /proc/meminfo
5845 }
5846
5847 swap_used() {
5848         swapon -s | awk '($1 == "'$1'") { print $4 }'
5849 }
5850
5851 # bug5265, obdfilter oa2dentry return -ENOENT
5852 # #define OBD_FAIL_SRV_ENOENT 0x217
5853 test_69() {
5854         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5855         remote_ost_nodsh && skip "remote OST with nodsh" && return
5856
5857         f="$DIR/$tfile"
5858         $SETSTRIPE -c 1 -i 0 $f
5859
5860         $DIRECTIO write ${f}.2 0 1 || error "directio write error"
5861
5862         do_facet ost1 lctl set_param fail_loc=0x217
5863         $TRUNCATE $f 1 # vmtruncate() will ignore truncate() error.
5864         $DIRECTIO write $f 0 2 && error "write succeeded, expect -ENOENT"
5865
5866         do_facet ost1 lctl set_param fail_loc=0
5867         $DIRECTIO write $f 0 2 || error "write error"
5868
5869         cancel_lru_locks osc
5870         $DIRECTIO read $f 0 1 || error "read error"
5871
5872         do_facet ost1 lctl set_param fail_loc=0x217
5873         $DIRECTIO read $f 1 1 && error "read succeeded, expect -ENOENT"
5874
5875         do_facet ost1 lctl set_param fail_loc=0
5876         rm -f $f
5877 }
5878 run_test 69 "verify oa2dentry return -ENOENT doesn't LBUG ======"
5879
5880 test_71() {
5881         test_mkdir -p $DIR/$tdir
5882         $LFS setdirstripe -D -c$MDSCOUNT $DIR/$tdir
5883         sh rundbench -C -D $DIR/$tdir 2 || error "dbench failed!"
5884 }
5885 run_test 71 "Running dbench on lustre (don't segment fault) ===="
5886
5887 test_72a() { # bug 5695 - Test that on 2.6 remove_suid works properly
5888         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5889         [ "$RUNAS_ID" = "$UID" ] &&
5890                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
5891
5892         # Check that testing environment is properly set up. Skip if not
5893         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_GID $RUNAS || {
5894                 skip_env "User $RUNAS_ID does not exist - skipping"
5895                 return 0
5896         }
5897         touch $DIR/$tfile
5898         chmod 777 $DIR/$tfile
5899         chmod ug+s $DIR/$tfile
5900         $RUNAS dd if=/dev/zero of=$DIR/$tfile bs=512 count=1 ||
5901                 error "$RUNAS dd $DIR/$tfile failed"
5902         # See if we are still setuid/sgid
5903         test -u $DIR/$tfile -o -g $DIR/$tfile &&
5904                 error "S/gid is not dropped on write"
5905         # Now test that MDS is updated too
5906         cancel_lru_locks mdc
5907         test -u $DIR/$tfile -o -g $DIR/$tfile &&
5908                 error "S/gid is not dropped on MDS"
5909         rm -f $DIR/$tfile
5910 }
5911 run_test 72a "Test that remove suid works properly (bug5695) ===="
5912
5913 test_72b() { # bug 24226 -- keep mode setting when size is not changing
5914         local perm
5915
5916         [ "$RUNAS_ID" = "$UID" ] && \
5917                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
5918         [ "$RUNAS_ID" -eq 0 ] && \
5919                 skip_env "RUNAS_ID = 0 -- skipping" && return
5920
5921         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5922         # Check that testing environment is properly set up. Skip if not
5923         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_ID $RUNAS || {
5924                 skip_env "User $RUNAS_ID does not exist - skipping"
5925                 return 0
5926         }
5927         touch $DIR/${tfile}-f{g,u}
5928         test_mkdir $DIR/${tfile}-dg
5929         test_mkdir $DIR/${tfile}-du
5930         chmod 770 $DIR/${tfile}-{f,d}{g,u}
5931         chmod g+s $DIR/${tfile}-{f,d}g
5932         chmod u+s $DIR/${tfile}-{f,d}u
5933         for perm in 777 2777 4777; do
5934                 $RUNAS chmod $perm $DIR/${tfile}-fg && error "S/gid file allowed improper chmod to $perm"
5935                 $RUNAS chmod $perm $DIR/${tfile}-fu && error "S/uid file allowed improper chmod to $perm"
5936                 $RUNAS chmod $perm $DIR/${tfile}-dg && error "S/gid dir allowed improper chmod to $perm"
5937                 $RUNAS chmod $perm $DIR/${tfile}-du && error "S/uid dir allowed improper chmod to $perm"
5938         done
5939         true
5940 }
5941 run_test 72b "Test that we keep mode setting if without file data changed (bug 24226)"
5942
5943 # bug 3462 - multiple simultaneous MDC requests
5944 test_73() {
5945         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5946         test_mkdir $DIR/d73-1
5947         test_mkdir $DIR/d73-2
5948         multiop_bg_pause $DIR/d73-1/f73-1 O_c || return 1
5949         pid1=$!
5950
5951         lctl set_param fail_loc=0x80000129
5952         $MULTIOP $DIR/d73-1/f73-2 Oc &
5953         sleep 1
5954         lctl set_param fail_loc=0
5955
5956         $MULTIOP $DIR/d73-2/f73-3 Oc &
5957         pid3=$!
5958
5959         kill -USR1 $pid1
5960         wait $pid1 || return 1
5961
5962         sleep 25
5963
5964         $CHECKSTAT -t file $DIR/d73-1/f73-1 || return 4
5965         $CHECKSTAT -t file $DIR/d73-1/f73-2 || return 5
5966         $CHECKSTAT -t file $DIR/d73-2/f73-3 || return 6
5967
5968         rm -rf $DIR/d73-*
5969 }
5970 run_test 73 "multiple MDC requests (should not deadlock)"
5971
5972 test_74a() { # bug 6149, 6184
5973         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5974         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
5975         #
5976         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
5977         # will spin in a tight reconnection loop
5978         touch $DIR/f74a
5979         $LCTL set_param fail_loc=0x8000030e
5980         # get any lock that won't be difficult - lookup works.
5981         ls $DIR/f74a
5982         $LCTL set_param fail_loc=0
5983         rm -f $DIR/f74a
5984         true
5985 }
5986 run_test 74a "ldlm_enqueue freed-export error path, ls (shouldn't LBUG)"
5987
5988 test_74b() { # bug 13310
5989         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5990         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
5991         #
5992         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
5993         # will spin in a tight reconnection loop
5994         $LCTL set_param fail_loc=0x8000030e
5995         # get a "difficult" lock
5996         touch $DIR/f74b
5997         $LCTL set_param fail_loc=0
5998         rm -f $DIR/f74b
5999         true
6000 }
6001 run_test 74b "ldlm_enqueue freed-export error path, touch (shouldn't LBUG)"
6002
6003 test_74c() {
6004         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6005         #define OBD_FAIL_LDLM_NEW_LOCK
6006         $LCTL set_param fail_loc=0x319
6007         touch $DIR/$tfile && error "touch successful"
6008         $LCTL set_param fail_loc=0
6009         true
6010 }
6011 run_test 74c "ldlm_lock_create error path, (shouldn't LBUG)"
6012
6013 num_inodes() {
6014         awk '/lustre_inode_cache/ {print $2; exit}' /proc/slabinfo
6015 }
6016
6017 get_inode_slab_tunables() {
6018         awk '/lustre_inode_cache/ {print $9," ",$10," ",$11; exit}' /proc/slabinfo
6019 }
6020
6021 set_inode_slab_tunables() {
6022         echo "lustre_inode_cache $1" > /proc/slabinfo
6023 }
6024
6025 test_76() { # Now for bug 20433, added originally in bug 1443
6026         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6027         local SLAB_SETTINGS=$(get_inode_slab_tunables)
6028         local CPUS=$(getconf _NPROCESSORS_ONLN 2>/dev/null)
6029         # we cannot set limit below 1 which means 1 inode in each
6030         # per-cpu cache is still allowed
6031         set_inode_slab_tunables "1 1 0"
6032         cancel_lru_locks osc
6033         BEFORE_INODES=$(num_inodes)
6034         echo "before inodes: $BEFORE_INODES"
6035         local COUNT=1000
6036         [ "$SLOW" = "no" ] && COUNT=100
6037         for i in $(seq $COUNT); do
6038                 touch $DIR/$tfile
6039                 rm -f $DIR/$tfile
6040         done
6041         cancel_lru_locks osc
6042         AFTER_INODES=$(num_inodes)
6043         echo "after inodes: $AFTER_INODES"
6044         local wait=0
6045         while [[ $((AFTER_INODES-1*${CPUS:-1})) -gt $BEFORE_INODES ]]; do
6046                 sleep 2
6047                 AFTER_INODES=$(num_inodes)
6048                 wait=$((wait+2))
6049                 echo "wait $wait seconds inodes: $AFTER_INODES"
6050                 if [ $wait -gt 30 ]; then
6051                         error "inode slab grew from $BEFORE_INODES to $AFTER_INODES"
6052                 fi
6053         done
6054         set_inode_slab_tunables "$SLAB_SETTINGS"
6055 }
6056 run_test 76 "confirm clients recycle inodes properly ===="
6057
6058
6059 export ORIG_CSUM=""
6060 set_checksums()
6061 {
6062         # Note: in sptlrpc modes which enable its own bulk checksum, the
6063         # original crc32_le bulk checksum will be automatically disabled,
6064         # and the OBD_FAIL_OSC_CHECKSUM_SEND/OBD_FAIL_OSC_CHECKSUM_RECEIVE
6065         # will be checked by sptlrpc code against sptlrpc bulk checksum.
6066         # In this case set_checksums() will not be no-op, because sptlrpc
6067         # bulk checksum will be enabled all through the test.
6068
6069         [ "$ORIG_CSUM" ] || ORIG_CSUM=`lctl get_param -n osc.*.checksums | head -n1`
6070         lctl set_param -n osc.*.checksums $1
6071         return 0
6072 }
6073
6074 export ORIG_CSUM_TYPE="`lctl get_param -n osc.*osc-[^mM]*.checksum_type |
6075                         sed 's/.*\[\(.*\)\].*/\1/g' | head -n1`"
6076 CKSUM_TYPES=${CKSUM_TYPES:-"crc32 adler"}
6077 [ "$ORIG_CSUM_TYPE" = "crc32c" ] && CKSUM_TYPES="$CKSUM_TYPES crc32c"
6078 set_checksum_type()
6079 {
6080         lctl set_param -n osc.*osc-[^mM]*.checksum_type $1
6081         log "set checksum type to $1"
6082         return 0
6083 }
6084 F77_TMP=$TMP/f77-temp
6085 F77SZ=8
6086 setup_f77() {
6087         dd if=/dev/urandom of=$F77_TMP bs=1M count=$F77SZ || \
6088                 error "error writing to $F77_TMP"
6089 }
6090
6091 test_77a() { # bug 10889
6092         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6093         $GSS && skip "could not run with gss" && return
6094         [ ! -f $F77_TMP ] && setup_f77
6095         set_checksums 1
6096         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ || error "dd error"
6097         set_checksums 0
6098         rm -f $DIR/$tfile
6099 }
6100 run_test 77a "normal checksum read/write operation"
6101
6102 test_77b() { # bug 10889
6103         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6104         $GSS && skip "could not run with gss" && return
6105         [ ! -f $F77_TMP ] && setup_f77
6106         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
6107         $LCTL set_param fail_loc=0x80000409
6108         set_checksums 1
6109
6110         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ conv=sync ||
6111                 error "dd error: $?"
6112         $LCTL set_param fail_loc=0
6113
6114         for algo in $CKSUM_TYPES; do
6115                 cancel_lru_locks osc
6116                 set_checksum_type $algo
6117                 #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
6118                 $LCTL set_param fail_loc=0x80000408
6119                 cmp $F77_TMP $DIR/$tfile || error "file compare failed"
6120                 $LCTL set_param fail_loc=0
6121         done
6122         set_checksums 0
6123         set_checksum_type $ORIG_CSUM_TYPE
6124         rm -f $DIR/$tfile
6125 }
6126 run_test 77b "checksum error on client write, read"
6127
6128 cleanup_77c() {
6129         trap 0
6130         set_checksums 0
6131         $LCTL set_param osc.*osc-[^mM]*.checksum_dump=0
6132         $check_ost &&
6133                 do_facet ost1 $LCTL set_param obdfilter.*-OST*.checksum_dump=0
6134         [ -n $osc_file_prefix ] && rm -f ${osc_file_prefix}*
6135         $check_ost && [ -n $ost_file_prefix ] &&
6136                 do_facet ost1 rm -f ${ost_file_prefix}\*
6137 }
6138
6139 test_77c() {
6140         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6141         $GSS && skip "could not run with gss" && return
6142
6143         local bad1
6144         local osc_file_prefix
6145         local osc_file
6146         local check_ost=false
6147         local ost_file_prefix
6148         local ost_file
6149         local orig_cksum
6150         local dump_cksum
6151         local fid
6152
6153         # ensure corruption will occur on first OSS/OST
6154         $LFS setstripe -i 0 $DIR/$tfile
6155
6156         [ ! -f $F77_TMP ] && setup_f77
6157         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ conv=sync ||
6158                 error "dd write error: $?"
6159         fid=$($LFS path2fid $DIR/$tfile)
6160
6161         if [ $(lustre_version_code ost1) -ge $(version_code 2.9.57) ]
6162         then
6163                 check_ost=true
6164                 ost_file_prefix=$(do_facet ost1 $LCTL get_param -n debug_path)
6165                 ost_file_prefix=${ost_file_prefix}-checksum_dump-ost-\\${fid}
6166         else
6167                 echo "OSS do not support bulk pages dump upon error"
6168         fi
6169
6170         osc_file_prefix=$($LCTL get_param -n debug_path)
6171         osc_file_prefix=${osc_file_prefix}-checksum_dump-osc-\\${fid}
6172
6173         trap cleanup_77c EXIT
6174
6175         set_checksums 1
6176         # enable bulk pages dump upon error on Client
6177         $LCTL set_param osc.*osc-[^mM]*.checksum_dump=1
6178         # enable bulk pages dump upon error on OSS
6179         $check_ost &&
6180                 do_facet ost1 $LCTL set_param obdfilter.*-OST*.checksum_dump=1
6181
6182         # flush Client cache to allow next read to reach OSS
6183         cancel_lru_locks osc
6184
6185         #define OBD_FAIL_OSC_CHECKSUM_RECEIVE       0x408
6186         $LCTL set_param fail_loc=0x80000408
6187         dd if=$DIR/$tfile of=/dev/null bs=1M || error "dd read error: $?"
6188         $LCTL set_param fail_loc=0
6189
6190         rm -f $DIR/$tfile
6191
6192         # check cksum dump on Client
6193         osc_file=$(ls ${osc_file_prefix}*)
6194         [ -n "$osc_file" ] || error "no checksum dump file on Client"
6195         # OBD_FAIL_OSC_CHECKSUM_RECEIVE corrupts with "bad1" at start of file
6196         bad1=$(dd if=$osc_file bs=1 count=4 2>/dev/null) || error "dd error: $?"
6197         [ $bad1 == "bad1" ] || error "unexpected corrupt pattern"
6198         orig_cksum=$(dd if=$F77_TMP bs=1 skip=4 count=1048572 2>/dev/null |
6199                      cksum)
6200         dump_cksum=$(dd if=$osc_file bs=1 skip=4 2>/dev/null | cksum)
6201         [[ "$orig_cksum" == "$dump_cksum" ]] ||
6202                 error "dump content does not match on Client"
6203
6204         $check_ost || skip "No need to check cksum dump on OSS"
6205
6206         # check cksum dump on OSS
6207         ost_file=$(do_facet ost1 ls ${ost_file_prefix}\*)
6208         [ -n "$ost_file" ] || error "no checksum dump file on OSS"
6209         orig_cksum=$(dd if=$F77_TMP bs=1048576 count=1 2>/dev/null | cksum)
6210         dump_cksum=$(do_facet ost1 dd if=$ost_file 2>/dev/null \| cksum)
6211         [[ "$orig_cksum" == "$dump_cksum" ]] ||
6212                 error "dump content does not match on OSS"
6213
6214         cleanup_77c
6215 }
6216 run_test 77c "checksum error on client read with debug"
6217
6218 test_77d() { # bug 10889
6219         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6220         $GSS && skip "could not run with gss" && return
6221         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
6222         $LCTL set_param fail_loc=0x80000409
6223         set_checksums 1
6224         $DIRECTIO write $DIR/$tfile 0 $F77SZ $((1024 * 1024)) ||
6225                 error "direct write: rc=$?"
6226         $LCTL set_param fail_loc=0
6227         set_checksums 0
6228
6229         #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
6230         $LCTL set_param fail_loc=0x80000408
6231         set_checksums 1
6232         cancel_lru_locks osc
6233         $DIRECTIO read $DIR/$tfile 0 $F77SZ $((1024 * 1024)) ||
6234                 error "direct read: rc=$?"
6235         $LCTL set_param fail_loc=0
6236         set_checksums 0
6237 }
6238 run_test 77d "checksum error on OST direct write, read"
6239
6240 test_77f() { # bug 10889
6241         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6242         $GSS && skip "could not run with gss" && return
6243         set_checksums 1
6244         for algo in $CKSUM_TYPES; do
6245                 cancel_lru_locks osc
6246                 set_checksum_type $algo
6247                 #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
6248                 $LCTL set_param fail_loc=0x409
6249                 $DIRECTIO write $DIR/$tfile 0 $F77SZ $((1024 * 1024)) &&
6250                         error "direct write succeeded"
6251                 $LCTL set_param fail_loc=0
6252         done
6253         set_checksum_type $ORIG_CSUM_TYPE
6254         set_checksums 0
6255 }
6256 run_test 77f "repeat checksum error on write (expect error)"
6257
6258 test_77g() { # bug 10889
6259         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6260         $GSS && skip "could not run with gss" && return
6261         remote_ost_nodsh && skip "remote OST with nodsh" && return
6262
6263         [ ! -f $F77_TMP ] && setup_f77
6264
6265         $SETSTRIPE -c 1 -i 0 $DIR/$tfile
6266         #define OBD_FAIL_OST_CHECKSUM_RECEIVE       0x21a
6267         do_facet ost1 lctl set_param fail_loc=0x8000021a
6268         set_checksums 1
6269         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ ||
6270                 error "write error: rc=$?"
6271         do_facet ost1 lctl set_param fail_loc=0
6272         set_checksums 0
6273
6274         cancel_lru_locks osc
6275         #define OBD_FAIL_OST_CHECKSUM_SEND          0x21b
6276         do_facet ost1 lctl set_param fail_loc=0x8000021b
6277         set_checksums 1
6278         cmp $F77_TMP $DIR/$tfile || error "file compare failed"
6279         do_facet ost1 lctl set_param fail_loc=0
6280         set_checksums 0
6281 }
6282 run_test 77g "checksum error on OST write, read"
6283
6284 test_77j() { # bug 13805
6285         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6286         $GSS && skip "could not run with gss" && return
6287         #define OBD_FAIL_OSC_CKSUM_ADLER_ONLY    0x40c
6288         lctl set_param fail_loc=0x40c
6289         remount_client $MOUNT
6290         lctl set_param fail_loc=0
6291         # wait async osc connect to finish and reflect updated state value
6292         local i
6293         for (( i=0; i < OSTCOUNT; i++ )) ; do
6294                 wait_osc_import_state client ost$((i+1)) FULL
6295         done
6296
6297         for VALUE in $(lctl get_param osc.*osc-[^mM]*.checksum_type); do
6298                 PARAM=$(echo ${VALUE[0]} | cut -d "=" -f1)
6299                 algo=$(lctl get_param -n $PARAM | sed 's/.*\[\(.*\)\].*/\1/g')
6300                 [ "$algo" = "adler" ] || error "algo set to $algo instead of adler"
6301         done
6302         remount_client $MOUNT
6303 }
6304 run_test 77j "client only supporting ADLER32"
6305
6306 [ "$ORIG_CSUM" ] && set_checksums $ORIG_CSUM || true
6307 rm -f $F77_TMP
6308 unset F77_TMP
6309
6310 cleanup_test_78() {
6311         trap 0
6312         rm -f $DIR/$tfile
6313 }
6314
6315 test_78() { # bug 10901
6316         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6317         remote_ost || { skip_env "local OST" && return; }
6318
6319         NSEQ=5
6320         F78SIZE=$(($(awk '/MemFree:/ { print $2 }' /proc/meminfo) / 1024))
6321         echo "MemFree: $F78SIZE, Max file size: $MAXFREE"
6322         MEMTOTAL=$(($(awk '/MemTotal:/ { print $2 }' /proc/meminfo) / 1024))
6323         echo "MemTotal: $MEMTOTAL"
6324
6325         # reserve 256MB of memory for the kernel and other running processes,
6326         # and then take 1/2 of the remaining memory for the read/write buffers.
6327         if [ $MEMTOTAL -gt 512 ] ;then
6328                 MEMTOTAL=$(((MEMTOTAL - 256 ) / 2))
6329         else
6330                 # for those poor memory-starved high-end clusters...
6331                 MEMTOTAL=$((MEMTOTAL / 2))
6332         fi
6333         echo "Mem to use for directio: $MEMTOTAL"
6334
6335         [[ $F78SIZE -gt $MEMTOTAL ]] && F78SIZE=$MEMTOTAL
6336         [[ $F78SIZE -gt 512 ]] && F78SIZE=512
6337         [[ $F78SIZE -gt $((MAXFREE / 1024)) ]] && F78SIZE=$((MAXFREE / 1024))
6338         SMALLESTOST=$($LFS df $DIR | grep OST | awk '{ print $4 }' | sort -n |
6339                 head -n1)
6340         echo "Smallest OST: $SMALLESTOST"
6341         [[ $SMALLESTOST -lt 10240 ]] &&
6342                 skip "too small OSTSIZE, useless to run large O_DIRECT test" && return 0
6343
6344         trap cleanup_test_78 EXIT
6345
6346         [[ $F78SIZE -gt $((SMALLESTOST * $OSTCOUNT / 1024 - 80)) ]] &&
6347                 F78SIZE=$((SMALLESTOST * $OSTCOUNT / 1024 - 80))
6348
6349         [ "$SLOW" = "no" ] && NSEQ=1 && [ $F78SIZE -gt 32 ] && F78SIZE=32
6350         echo "File size: $F78SIZE"
6351         $SETSTRIPE -c $OSTCOUNT $DIR/$tfile || error "setstripe failed"
6352         for i in $(seq 1 $NSEQ); do
6353                 FSIZE=$(($F78SIZE / ($NSEQ - $i + 1)))
6354                 echo directIO rdwr round $i of $NSEQ
6355                 $DIRECTIO rdwr $DIR/$tfile 0 $FSIZE 1048576||error "rdwr failed"
6356         done
6357
6358         cleanup_test_78
6359 }
6360 run_test 78 "handle large O_DIRECT writes correctly ============"
6361
6362 test_79() { # bug 12743
6363         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6364         wait_delete_completed
6365
6366         BKTOTAL=$(calc_osc_kbytes kbytestotal)
6367         BKFREE=$(calc_osc_kbytes kbytesfree)
6368         BKAVAIL=$(calc_osc_kbytes kbytesavail)
6369
6370         STRING=`df -P $MOUNT | tail -n 1 | awk '{print $2","$3","$4}'`
6371         DFTOTAL=`echo $STRING | cut -d, -f1`
6372         DFUSED=`echo $STRING  | cut -d, -f2`
6373         DFAVAIL=`echo $STRING | cut -d, -f3`
6374         DFFREE=$(($DFTOTAL - $DFUSED))
6375
6376         ALLOWANCE=$((64 * $OSTCOUNT))
6377
6378         if [ $DFTOTAL -lt $(($BKTOTAL - $ALLOWANCE)) ] ||
6379            [ $DFTOTAL -gt $(($BKTOTAL + $ALLOWANCE)) ] ; then
6380                 error "df total($DFTOTAL) mismatch OST total($BKTOTAL)"
6381         fi
6382         if [ $DFFREE -lt $(($BKFREE - $ALLOWANCE)) ] ||
6383            [ $DFFREE -gt $(($BKFREE + $ALLOWANCE)) ] ; then
6384                 error "df free($DFFREE) mismatch OST free($BKFREE)"
6385         fi
6386         if [ $DFAVAIL -lt $(($BKAVAIL - $ALLOWANCE)) ] ||
6387            [ $DFAVAIL -gt $(($BKAVAIL + $ALLOWANCE)) ] ; then
6388                 error "df avail($DFAVAIL) mismatch OST avail($BKAVAIL)"
6389         fi
6390 }
6391 run_test 79 "df report consistency check ======================="
6392
6393 test_80() { # bug 10718
6394         remote_ost_nodsh && skip "remote OST with nodsh" && return
6395         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6396         # relax strong synchronous semantics for slow backends like ZFS
6397         local soc="obdfilter.*.sync_on_lock_cancel"
6398         local soc_old=$(do_facet ost1 lctl get_param -n $soc | head -n1)
6399         local hosts=
6400         if [ "$soc_old" != "never" -a "$(facet_fstype ost1)" != "ldiskfs" ]; then
6401                 hosts=$(for host in $(seq -f "ost%g" 1 $OSTCOUNT); do
6402                           facet_active_host $host; done | sort -u)
6403                 do_nodes $hosts lctl set_param $soc=never
6404         fi
6405
6406         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1M
6407         sync; sleep 1; sync
6408         local BEFORE=`date +%s`
6409         cancel_lru_locks osc
6410         local AFTER=`date +%s`
6411         local DIFF=$((AFTER-BEFORE))
6412         if [ $DIFF -gt 1 ] ; then
6413                 error "elapsed for 1M@1T = $DIFF"
6414         fi
6415
6416         [ -n "$hosts" ] && do_nodes $hosts lctl set_param $soc=$soc_old
6417
6418         rm -f $DIR/$tfile
6419 }
6420 run_test 80 "Page eviction is equally fast at high offsets too  ===="
6421
6422 test_81a() { # LU-456
6423         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6424         remote_ost_nodsh && skip "remote OST with nodsh" && return
6425         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
6426         # MUST OR with the OBD_FAIL_ONCE (0x80000000)
6427         do_facet ost1 lctl set_param fail_loc=0x80000228
6428
6429         # write should trigger a retry and success
6430         $SETSTRIPE -i 0 -c 1 $DIR/$tfile
6431         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6432         RC=$?
6433         if [ $RC -ne 0 ] ; then
6434                 error "write should success, but failed for $RC"
6435         fi
6436 }
6437 run_test 81a "OST should retry write when get -ENOSPC ==============="
6438
6439 test_81b() { # LU-456
6440         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6441         remote_ost_nodsh && skip "remote OST with nodsh" && return
6442         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
6443         # Don't OR with the OBD_FAIL_ONCE (0x80000000)
6444         do_facet ost1 lctl set_param fail_loc=0x228
6445
6446         # write should retry several times and return -ENOSPC finally
6447         $SETSTRIPE -i 0 -c 1 $DIR/$tfile
6448         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6449         RC=$?
6450         ENOSPC=28
6451         if [ $RC -ne $ENOSPC ] ; then
6452                 error "dd should fail for -ENOSPC, but succeed."
6453         fi
6454 }
6455 run_test 81b "OST should return -ENOSPC when retry still fails ======="
6456
6457 test_82() { # LU-1031
6458         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10
6459         local gid1=14091995
6460         local gid2=16022000
6461
6462         multiop_bg_pause $DIR/$tfile OG${gid1}_g${gid1}c || return 1
6463         local MULTIPID1=$!
6464         multiop_bg_pause $DIR/$tfile O_G${gid2}r10g${gid2}c || return 2
6465         local MULTIPID2=$!
6466         kill -USR1 $MULTIPID2
6467         sleep 2
6468         if [[ `ps h -o comm -p $MULTIPID2` == "" ]]; then
6469                 error "First grouplock does not block second one"
6470         else
6471                 echo "Second grouplock blocks first one"
6472         fi
6473         kill -USR1 $MULTIPID1
6474         wait $MULTIPID1
6475         wait $MULTIPID2
6476 }
6477 run_test 82 "Basic grouplock test ==============================="
6478
6479 test_83() {
6480         local sfile="/boot/System.map-$(uname -r)"
6481         # define OBD_FAIL_LLITE_PTASK_IO_FAIL 0x140d
6482         $LCTL set_param fail_loc=0x140d
6483         cp $sfile $DIR/$tfile || error "write failed"
6484         diff -c $sfile $DIR/$tfile || error "files are different"
6485         $LCTL set_param fail_loc=0
6486         rm -f $DIR/$tfile
6487 }
6488 run_test 83 "Short write in ptask ==============================="
6489
6490 test_99a() {
6491         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" &&
6492                 return
6493         test_mkdir -p $DIR/d99cvsroot
6494         chown $RUNAS_ID $DIR/d99cvsroot
6495         local oldPWD=$PWD       # bug 13584, use $TMP as working dir
6496         cd $TMP
6497
6498         $RUNAS cvs -d $DIR/d99cvsroot init || error "cvs init failed"
6499         cd $oldPWD
6500 }
6501 run_test 99a "cvs init ========================================="
6502
6503 test_99b() {
6504         [ -z "$(which cvs 2>/dev/null)" ] &&
6505                 skip_env "could not find cvs" && return
6506         [ ! -d $DIR/d99cvsroot ] && test_99a
6507         cd /etc/init.d
6508         # some versions of cvs import exit(1) when asked to import links or
6509         # files they can't read.  ignore those files.
6510         TOIGNORE=$(find . -type l -printf '-I %f\n' -o \
6511                         ! -perm /4 -printf '-I %f\n')
6512         $RUNAS cvs -d $DIR/d99cvsroot import -m "nomesg" $TOIGNORE \
6513                 d99reposname vtag rtag
6514 }
6515 run_test 99b "cvs import ======================================="
6516
6517 test_99c() {
6518         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
6519         [ ! -d $DIR/d99cvsroot ] && test_99b
6520         cd $DIR
6521         test_mkdir -p $DIR/d99reposname
6522         chown $RUNAS_ID $DIR/d99reposname
6523         $RUNAS cvs -d $DIR/d99cvsroot co d99reposname
6524 }
6525 run_test 99c "cvs checkout ====================================="
6526
6527 test_99d() {
6528         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
6529         [ ! -d $DIR/d99cvsroot ] && test_99c
6530         cd $DIR/d99reposname
6531         $RUNAS touch foo99
6532         $RUNAS cvs add -m 'addmsg' foo99
6533 }
6534 run_test 99d "cvs add =========================================="
6535
6536 test_99e() {
6537         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
6538         [ ! -d $DIR/d99cvsroot ] && test_99c
6539         cd $DIR/d99reposname
6540         $RUNAS cvs update
6541 }
6542 run_test 99e "cvs update ======================================="
6543
6544 test_99f() {
6545         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
6546         [ ! -d $DIR/d99cvsroot ] && test_99d
6547         cd $DIR/d99reposname
6548         $RUNAS cvs commit -m 'nomsg' foo99
6549     rm -fr $DIR/d99cvsroot
6550 }
6551 run_test 99f "cvs commit ======================================="
6552
6553 test_100() {
6554         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6555         [[ "$NETTYPE" =~ tcp ]] ||
6556                 { skip "TCP secure port test, not useful for NETTYPE=$NETTYPE" &&
6557                         return ; }
6558
6559         remote_ost_nodsh && skip "remote OST with nodsh" && return
6560         remote_mds_nodsh && skip "remote MDS with nodsh" && return
6561         remote_servers ||
6562                 { skip "useless for local single node setup" && return; }
6563
6564         netstat -tna | ( rc=1; while read PROT SND RCV LOCAL REMOTE STAT; do
6565                 [ "$PROT" != "tcp" ] && continue
6566                 RPORT=$(echo $REMOTE | cut -d: -f2)
6567                 [ "$RPORT" != "$ACCEPTOR_PORT" ] && continue
6568
6569                 rc=0
6570                 LPORT=`echo $LOCAL | cut -d: -f2`
6571                 if [ $LPORT -ge 1024 ]; then
6572                         echo "bad: $PROT $SND $RCV $LOCAL $REMOTE $STAT"
6573                         netstat -tna
6574                         error_exit "local: $LPORT > 1024, remote: $RPORT"
6575                 fi
6576         done
6577         [ "$rc" = 0 ] || error_exit "privileged port not found" )
6578 }
6579 run_test 100 "check local port using privileged port ==========="
6580
6581 function get_named_value()
6582 {
6583     local tag
6584
6585     tag=$1
6586     while read ;do
6587         line=$REPLY
6588         case $line in
6589         $tag*)
6590             echo $line | sed "s/^$tag[ ]*//"
6591             break
6592             ;;
6593         esac
6594     done
6595 }
6596
6597 export CACHE_MAX=$($LCTL get_param -n llite.*.max_cached_mb |
6598                    awk '/^max_cached_mb/ { print $2 }')
6599
6600 cleanup_101a() {
6601         $LCTL set_param -n llite.*.max_cached_mb $CACHE_MAX
6602         trap 0
6603 }
6604
6605 test_101a() {
6606         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6607         [ $MDSCOUNT -ge 2 ] && skip "skip now for >= 2 MDTs" && return #LU-4322
6608         local s
6609         local discard
6610         local nreads=10000
6611         local cache_limit=32
6612
6613         $LCTL set_param -n osc.*-osc*.rpc_stats 0
6614         trap cleanup_101a EXIT
6615         $LCTL set_param -n llite.*.read_ahead_stats 0
6616         $LCTL set_param -n llite.*.max_cached_mb $cache_limit
6617
6618         #
6619         # randomly read 10000 of 64K chunks from file 3x 32MB in size
6620         #
6621         echo "nreads: $nreads file size: $((cache_limit * 3))MB"
6622         $READS -f $DIR/$tfile -s$((cache_limit * 3192 * 1024)) -b65536 -C -n$nreads -t 180
6623
6624         discard=0
6625         for s in $($LCTL get_param -n llite.*.read_ahead_stats |
6626                 get_named_value 'read but discarded' | cut -d" " -f1); do
6627                         discard=$(($discard + $s))
6628         done
6629         cleanup_101a
6630
6631         if [[ $(($discard * 10)) -gt $nreads ]]; then
6632                 $LCTL get_param osc.*-osc*.rpc_stats
6633                 $LCTL get_param llite.*.read_ahead_stats
6634                 error "too many ($discard) discarded pages"
6635         fi
6636         rm -f $DIR/$tfile || true
6637 }
6638 run_test 101a "check read-ahead for random reads ================"
6639
6640 setup_test101bc() {
6641         test_mkdir -p $DIR/$tdir
6642         local STRIPE_SIZE=$1
6643         local FILE_LENGTH=$2
6644         STRIPE_OFFSET=0
6645
6646         local FILE_SIZE_MB=$((FILE_LENGTH / STRIPE_SIZE))
6647
6648         local list=$(comma_list $(osts_nodes))
6649         set_osd_param $list '' read_cache_enable 0
6650         set_osd_param $list '' writethrough_cache_enable 0
6651
6652         trap cleanup_test101bc EXIT
6653         # prepare the read-ahead file
6654         $SETSTRIPE -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $OSTCOUNT $DIR/$tfile
6655
6656         dd if=/dev/zero of=$DIR/$tfile bs=$STRIPE_SIZE \
6657                                 count=$FILE_SIZE_MB 2> /dev/null
6658
6659 }
6660
6661 cleanup_test101bc() {
6662         trap 0
6663         rm -rf $DIR/$tdir
6664         rm -f $DIR/$tfile
6665
6666         local list=$(comma_list $(osts_nodes))
6667         set_osd_param $list '' read_cache_enable 1
6668         set_osd_param $list '' writethrough_cache_enable 1
6669 }
6670
6671 calc_total() {
6672         awk 'BEGIN{total=0}; {total+=$1}; END{print total}'
6673 }
6674
6675 ra_check_101() {
6676         local READ_SIZE=$1
6677         local STRIPE_SIZE=$2
6678         local FILE_LENGTH=$3
6679         local RA_INC=1048576
6680         local STRIDE_LENGTH=$((STRIPE_SIZE/READ_SIZE))
6681         local discard_limit=$((((STRIDE_LENGTH - 1)*3/(STRIDE_LENGTH*OSTCOUNT))* \
6682                              (STRIDE_LENGTH*OSTCOUNT - STRIDE_LENGTH)))
6683         DISCARD=$($LCTL get_param -n llite.*.read_ahead_stats |
6684                         get_named_value 'read but discarded' |
6685                         cut -d" " -f1 | calc_total)
6686         if [[ $DISCARD -gt $discard_limit ]]; then
6687                 $LCTL get_param llite.*.read_ahead_stats
6688                 error "Too many ($DISCARD) discarded pages with size (${READ_SIZE})"
6689         else
6690                 echo "Read-ahead success for size ${READ_SIZE}"
6691         fi
6692 }
6693
6694 test_101b() {
6695         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6696         [[ $OSTCOUNT -lt 2 ]] &&
6697                 skip_env "skipping stride IO stride-ahead test" && return
6698         local STRIPE_SIZE=1048576
6699         local STRIDE_SIZE=$((STRIPE_SIZE*OSTCOUNT))
6700         if [ $SLOW == "yes" ]; then
6701                 local FILE_LENGTH=$((STRIDE_SIZE * 64))
6702         else
6703                 local FILE_LENGTH=$((STRIDE_SIZE * 8))
6704         fi
6705
6706         local ITERATION=$((FILE_LENGTH / STRIDE_SIZE))
6707
6708         # prepare the read-ahead file
6709         setup_test101bc $STRIPE_SIZE $FILE_LENGTH
6710         cancel_lru_locks osc
6711         for BIDX in 2 4 8 16 32 64 128 256
6712         do
6713                 local BSIZE=$((BIDX*4096))
6714                 local READ_COUNT=$((STRIPE_SIZE/BSIZE))
6715                 local STRIDE_LENGTH=$((STRIDE_SIZE/BSIZE))
6716                 local OFFSET=$((STRIPE_SIZE/BSIZE*(OSTCOUNT - 1)))
6717                 $LCTL set_param -n llite.*.read_ahead_stats 0
6718                 $READS -f $DIR/$tfile  -l $STRIDE_LENGTH -o $OFFSET \
6719                               -s $FILE_LENGTH -b $STRIPE_SIZE -a $READ_COUNT -n $ITERATION
6720                 cancel_lru_locks osc
6721                 ra_check_101 $BSIZE $STRIPE_SIZE $FILE_LENGTH
6722         done
6723         cleanup_test101bc
6724         true
6725 }
6726 run_test 101b "check stride-io mode read-ahead ================="
6727
6728 test_101c() {
6729         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6730         local STRIPE_SIZE=1048576
6731         local FILE_LENGTH=$((STRIPE_SIZE*100))
6732         local nreads=10000
6733         local osc_rpc_stats
6734
6735         setup_test101bc $STRIPE_SIZE $FILE_LENGTH
6736
6737         cancel_lru_locks osc
6738         $LCTL set_param osc.*.rpc_stats 0
6739         $READS -f $DIR/$tfile -s$FILE_LENGTH -b65536 -n$nreads -t 180
6740         for osc_rpc_stats in $($LCTL get_param -N osc.*.rpc_stats); do
6741                 local stats=$($LCTL get_param -n $osc_rpc_stats)
6742                 local lines=$(echo "$stats" | awk 'END {print NR;}')
6743                 local size
6744
6745                 if [ $lines -le 20 ]; then
6746                         continue
6747                 fi
6748                 for size in 1 2 4 8; do
6749                         local rpc=$(echo "$stats" |
6750                                     awk '($1 == "'$size':") {print $2; exit; }')
6751                         [ $rpc != 0 ] &&
6752                                 error "Small $((size*4))k read IO $rpc !"
6753                 done
6754                 echo "$osc_rpc_stats check passed!"
6755         done
6756         cleanup_test101bc
6757         true
6758 }
6759 run_test 101c "check stripe_size aligned read-ahead ================="
6760
6761 set_read_ahead() {
6762         $LCTL get_param -n llite.*.max_read_ahead_mb | head -n 1
6763         $LCTL set_param -n llite.*.max_read_ahead_mb $1 > /dev/null 2>&1
6764 }
6765
6766 test_101d() {
6767         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6768         local file=$DIR/$tfile
6769         local sz_MB=${FILESIZE_101d:-500}
6770         local ra_MB=${READAHEAD_MB:-40}
6771
6772         local free_MB=$(($(df -P $DIR | tail -n 1 | awk '{ print $4 }') / 1024))
6773         [ $free_MB -lt $sz_MB ] &&
6774                 skip "Need free space ${sz_MB}M, have ${free_MB}M" && return
6775
6776         echo "Create test file $file size ${sz_MB}M, ${free_MB}M free"
6777         $SETSTRIPE -c -1 $file || error "setstripe failed"
6778
6779         dd if=/dev/zero of=$file bs=1M count=$sz_MB || error "dd failed"
6780         echo Cancel LRU locks on lustre client to flush the client cache
6781         cancel_lru_locks osc
6782
6783         echo Disable read-ahead
6784         local old_READAHEAD=$(set_read_ahead 0)
6785
6786         echo Reading the test file $file with read-ahead disabled
6787         local raOFF=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$sz_MB")
6788
6789         echo Cancel LRU locks on lustre client to flush the client cache
6790         cancel_lru_locks osc
6791         echo Enable read-ahead with ${ra_MB}MB
6792         set_read_ahead $ra_MB
6793
6794         echo Reading the test file $file with read-ahead enabled
6795         local raON=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$sz_MB")
6796
6797         echo "read-ahead disabled time read $raOFF"
6798         echo "read-ahead enabled  time read $raON"
6799
6800         set_read_ahead $old_READAHEAD
6801         rm -f $file
6802         wait_delete_completed
6803
6804         [ $raOFF -le 1 -o $raON -lt $raOFF ] ||
6805                 error "readahead ${raON}s > no-readahead ${raOFF}s ${sz_MB}M"
6806 }
6807 run_test 101d "file read with and without read-ahead enabled"
6808
6809 test_101e() {
6810         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6811         local file=$DIR/$tfile
6812         local size_KB=500  #KB
6813         local count=100
6814         local bsize=1024
6815
6816         local free_KB=$(df -P $DIR | tail -n 1 | awk '{ print $4 }')
6817         local need_KB=$((count * size_KB))
6818         [[ $free_KB -le $need_KB ]] &&
6819                 skip_env "Need free space $need_KB, have $free_KB" && return
6820
6821         echo "Creating $count ${size_KB}K test files"
6822         for ((i = 0; i < $count; i++)); do
6823                 dd if=/dev/zero of=$file.$i bs=$bsize count=$size_KB 2>/dev/null
6824         done
6825
6826         echo "Cancel LRU locks on lustre client to flush the client cache"
6827         cancel_lru_locks osc
6828
6829         echo "Reset readahead stats"
6830         $LCTL set_param -n llite.*.read_ahead_stats 0
6831
6832         for ((i = 0; i < $count; i++)); do
6833                 dd if=$file.$i of=/dev/null bs=$bsize count=$size_KB 2>/dev/null
6834         done
6835
6836         local miss=$($LCTL get_param -n llite.*.read_ahead_stats |
6837                      get_named_value 'misses' | cut -d" " -f1 | calc_total)
6838
6839         for ((i = 0; i < $count; i++)); do
6840                 rm -rf $file.$i 2>/dev/null
6841         done
6842
6843         #10000 means 20% reads are missing in readahead
6844         [[ $miss -lt 10000 ]] ||  error "misses too much for small reads"
6845 }
6846 run_test 101e "check read-ahead for small read(1k) for small files(500k)"
6847
6848 test_101f() {
6849         which iozone || { skip "no iozone installed" && return; }
6850
6851         local old_debug=$($LCTL get_param debug)
6852         old_debug=${old_debug#*=}
6853         $LCTL set_param debug="reada mmap"
6854
6855         # create a test file
6856         iozone -i 0 -+n -r 1m -s 128m -w -f $DIR/$tfile > /dev/null 2>&1
6857
6858         echo Cancel LRU locks on lustre client to flush the client cache
6859         cancel_lru_locks osc
6860
6861         echo Reset readahead stats
6862         $LCTL set_param -n llite.*.read_ahead_stats 0
6863
6864         echo mmap read the file with small block size
6865         iozone -i 1 -u 1 -l 1 -+n -r 32k -s 128m -B -f $DIR/$tfile \
6866                 > /dev/null 2>&1
6867
6868         echo checking missing pages
6869         $LCTL get_param llite.*.read_ahead_stats
6870         local miss=$($LCTL get_param -n llite.*.read_ahead_stats |
6871                         get_named_value 'misses' | cut -d" " -f1 | calc_total)
6872
6873         $LCTL set_param debug="$old_debug"
6874         [ $miss -lt 3 ] || error "misses too much pages ('$miss')!"
6875         rm -f $DIR/$tfile
6876 }
6877 run_test 101f "check mmap read performance"
6878
6879 test_101g_brw_size_test() {
6880         local mb=$1
6881         local pages=$((mb * 1048576 / $(page_size)))
6882
6883         $LCTL set_param osc.*.max_pages_per_rpc=${mb}M ||
6884                 { error "unable to set max_pages_per_rpc=${mb}M"; return 1; }
6885         for mp in $($LCTL get_param -n osc.*.max_pages_per_rpc); do
6886                 [ $mp -ne $pages ] && error "max_pages_per_rpc $mp != $pages" &&
6887                         return 2
6888         done
6889
6890         $LCTL set_param -n osc.*.rpc_stats=0
6891
6892         # 10 RPCs should be enough for the test
6893         local count=10
6894         dd if=/dev/zero of=$DIR/$tfile bs=${mb}M count=$count ||
6895                 { error "dd write ${mb} MB blocks failed"; return 3; }
6896         cancel_lru_locks osc
6897         dd of=/dev/null if=$DIR/$tfile bs=${mb}M count=$count ||
6898                 { error "dd write ${mb} MB blocks failed"; return 4; }
6899
6900         # calculate number of full-sized read and write RPCs
6901         rpcs=($($LCTL get_param -n 'osc.*.rpc_stats' |
6902                 sed -n '/pages per rpc/,/^$/p' |
6903                 awk '/'$pages':/ { reads += $2; writes += $6 }; \
6904                 END { print reads,writes }'))
6905         [ ${rpcs[0]} -ne $count ] && error "${rpcs[0]} != $count read RPCs" &&
6906                 return 5
6907         [ ${rpcs[1]} -ne $count ] && error "${rpcs[1]} != $count write RPCs" &&
6908                 return 6
6909
6910         return 0
6911 }
6912
6913 test_101g() {
6914         local rpcs
6915         local osts=$(get_facets OST)
6916         local list=$(comma_list $(osts_nodes))
6917         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
6918         local brw_size="obdfilter.*.brw_size"
6919
6920         $LFS setstripe -i 0 -c 1 $DIR/$tfile
6921
6922         local orig_mb=$(do_facet ost1 $LCTL get_param -n $brw_size | head -n 1)
6923         if [ $(lustre_version_code ost1) -ge $(version_code 2.8.52) ]; then
6924                 [ $(lustre_version_code ost1) -ge $(version_code 2.9.52) ] &&
6925                         suffix="M"
6926                 if [[ $orig_mb -lt 16 ]]; then
6927                         save_lustre_params $osts "$brw_size" > $p
6928                         do_nodes $list $LCTL set_param -n $brw_size=16$suffix ||
6929                                 error "set 16MB RPC size failed"
6930
6931                         echo "remount client to enable new RPC size"
6932                         remount_client $MOUNT || error "remount_client failed"
6933                 fi
6934
6935                 test_101g_brw_size_test 16 || error "16MB RPC test failed"
6936                 # should be able to set brw_size=12, but no rpc_stats for that
6937                 test_101g_brw_size_test 8 || error "8MB RPC test failed"
6938         fi
6939
6940         test_101g_brw_size_test 4 || error "4MB RPC test failed"
6941
6942         if [[ $orig_mb -lt 16 ]]; then
6943                 restore_lustre_params < $p
6944                 remount_client $MOUNT || error "remount_client restore failed"
6945         fi
6946
6947         rm -f $p $DIR/$tfile
6948 }
6949 run_test 101g "Big bulk(4/16 MiB) readahead"
6950
6951 setup_test102() {
6952         test_mkdir -p $DIR/$tdir
6953         chown $RUNAS_ID $DIR/$tdir
6954         STRIPE_SIZE=65536
6955         STRIPE_OFFSET=1
6956         STRIPE_COUNT=$OSTCOUNT
6957         [[ $OSTCOUNT -gt 4 ]] && STRIPE_COUNT=4
6958
6959         trap cleanup_test102 EXIT
6960         cd $DIR
6961         $1 $SETSTRIPE -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $STRIPE_COUNT $tdir
6962         cd $DIR/$tdir
6963         for num in 1 2 3 4; do
6964                 for count in $(seq 1 $STRIPE_COUNT); do
6965                         for idx in $(seq 0 $[$STRIPE_COUNT - 1]); do
6966                                 local size=`expr $STRIPE_SIZE \* $num`
6967                                 local file=file"$num-$idx-$count"
6968                                 $1 $SETSTRIPE -S $size -i $idx -c $count $file
6969                         done
6970                 done
6971         done
6972
6973         cd $DIR
6974         $1 $TAR cf $TMP/f102.tar $tdir --xattrs
6975 }
6976
6977 cleanup_test102() {
6978         trap 0
6979         rm -f $TMP/f102.tar
6980         rm -rf $DIR/d0.sanity/d102
6981 }
6982
6983 test_102a() {
6984         local testfile=$DIR/$tfile
6985
6986         touch $testfile
6987
6988         [ "$UID" != 0 ] && skip_env "must run as root" && return
6989         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep xattr)" ] &&
6990                 skip_env "must have user_xattr" && return
6991
6992         [ -z "$(which setfattr 2>/dev/null)" ] &&
6993                 skip_env "could not find setfattr" && return
6994
6995         echo "set/get xattr..."
6996         setfattr -n trusted.name1 -v value1 $testfile ||
6997                 error "setfattr -n trusted.name1=value1 $testfile failed"
6998         getfattr -n trusted.name1 $testfile 2> /dev/null |
6999           grep "trusted.name1=.value1" ||
7000                 error "$testfile missing trusted.name1=value1"
7001
7002         setfattr -n user.author1 -v author1 $testfile ||
7003                 error "setfattr -n user.author1=author1 $testfile failed"
7004         getfattr -n user.author1 $testfile 2> /dev/null |
7005           grep "user.author1=.author1" ||
7006                 error "$testfile missing trusted.author1=author1"
7007
7008         echo "listxattr..."
7009         setfattr -n trusted.name2 -v value2 $testfile ||
7010                 error "$testfile unable to set trusted.name2"
7011         setfattr -n trusted.name3 -v value3 $testfile ||
7012                 error "$testfile unable to set trusted.name3"
7013         [ $(getfattr -d -m "^trusted" $testfile 2> /dev/null |
7014             grep "trusted.name" | wc -l) -eq 3 ] ||
7015                 error "$testfile missing 3 trusted.name xattrs"
7016
7017         setfattr -n user.author2 -v author2 $testfile ||
7018                 error "$testfile unable to set user.author2"
7019         setfattr -n user.author3 -v author3 $testfile ||
7020                 error "$testfile unable to set user.author3"
7021         [ $(getfattr -d -m "^user" $testfile 2> /dev/null |
7022             grep "user.author" | wc -l) -eq 3 ] ||
7023                 error "$testfile missing 3 user.author xattrs"
7024
7025         echo "remove xattr..."
7026         setfattr -x trusted.name1 $testfile ||
7027                 error "$testfile error deleting trusted.name1"
7028         getfattr -d -m trusted $testfile 2> /dev/null | grep "trusted.name1" &&
7029                 error "$testfile did not delete trusted.name1 xattr"
7030
7031         setfattr -x user.author1 $testfile ||
7032                 error "$testfile error deleting user.author1"
7033         echo "set lustre special xattr ..."
7034         $LFS setstripe -c1 $testfile
7035         local lovea=$(getfattr -n "trusted.lov" -e hex $testfile |
7036                 awk -F "=" '/trusted.lov/ { print $2 }' )
7037         setfattr -n "trusted.lov" -v $lovea $testfile ||
7038                 error "$testfile doesn't ignore setting trusted.lov again"
7039         setfattr -n "trusted.lov" -v "invalid_value" $testfile &&
7040                 error "$testfile allow setting invalid trusted.lov"
7041         rm -f $testfile
7042 }
7043 run_test 102a "user xattr test =================================="
7044
7045 test_102b() {
7046         [ -z "$(which setfattr 2>/dev/null)" ] &&
7047                 skip_env "could not find setfattr" && return
7048
7049         # b10930: get/set/list trusted.lov xattr
7050         echo "get/set/list trusted.lov xattr ..."
7051         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping 2-stripe test" && return
7052         local testfile=$DIR/$tfile
7053         $SETSTRIPE -S 65536 -i 1 -c $OSTCOUNT $testfile ||
7054                 error "setstripe failed"
7055         local STRIPECOUNT=$($GETSTRIPE -c $testfile) ||
7056                 error "getstripe failed"
7057         getfattr -d -m "^trusted" $testfile 2>/dev/null | grep "trusted.lov" ||
7058                 error "can't get trusted.lov from $testfile"
7059
7060         local testfile2=${testfile}2
7061         local value=$(getfattr -n trusted.lov $testfile 2>/dev/null |
7062                         grep "trusted.lov" | sed -e 's/[^=]\+=//')
7063
7064         $MCREATE $testfile2
7065         setfattr -n trusted.lov -v $value $testfile2
7066         local stripe_size=$($GETSTRIPE -S $testfile2)
7067         local stripe_count=$($GETSTRIPE -c $testfile2)
7068         [[ $stripe_size -eq 65536 ]] ||
7069                 error "stripe size $stripe_size != 65536"
7070         [[ $stripe_count -eq $STRIPECOUNT ]] ||
7071                 error "stripe count $stripe_count != $STRIPECOUNT"
7072         rm -f $DIR/$tfile
7073 }
7074 run_test 102b "getfattr/setfattr for trusted.lov EAs ============"
7075
7076 test_102c() {
7077         [ -z "$(which setfattr 2>/dev/null)" ] &&
7078                 skip_env "could not find setfattr" && return
7079
7080         # b10930: get/set/list lustre.lov xattr
7081         echo "get/set/list lustre.lov xattr ..."
7082         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping 2-stripe test" && return
7083         test_mkdir -p $DIR/$tdir
7084         chown $RUNAS_ID $DIR/$tdir
7085         local testfile=$DIR/$tdir/$tfile
7086         $RUNAS $SETSTRIPE -S 65536 -i 1 -c $OSTCOUNT $testfile ||
7087                 error "setstripe failed"
7088         local STRIPECOUNT=$($RUNAS $GETSTRIPE -c $testfile) ||
7089                 error "getstripe failed"
7090         $RUNAS getfattr -d -m "^lustre" $testfile 2> /dev/null | \
7091         grep "lustre.lov" || error "can't get lustre.lov from $testfile"
7092
7093         local testfile2=${testfile}2
7094         local value=`getfattr -n lustre.lov $testfile 2> /dev/null | \
7095                      grep "lustre.lov" |sed -e 's/[^=]\+=//'  `
7096
7097         $RUNAS $MCREATE $testfile2
7098         $RUNAS setfattr -n lustre.lov -v $value $testfile2
7099         local stripe_size=$($RUNAS $GETSTRIPE -S $testfile2)
7100         local stripe_count=$($RUNAS $GETSTRIPE -c $testfile2)
7101         [ $stripe_size -eq 65536 ] || error "stripe size $stripe_size != 65536"
7102         [ $stripe_count -eq $STRIPECOUNT ] ||
7103                 error "stripe count $stripe_count != $STRIPECOUNT"
7104 }
7105 run_test 102c "non-root getfattr/setfattr for lustre.lov EAs ==========="
7106
7107 compare_stripe_info1() {
7108         local stripe_index_all_zero=true
7109
7110         for num in 1 2 3 4; do
7111                 for count in $(seq 1 $STRIPE_COUNT); do
7112                         for offset in $(seq 0 $[$STRIPE_COUNT - 1]); do
7113                                 local size=$((STRIPE_SIZE * num))
7114                                 local file=file"$num-$offset-$count"
7115                                 stripe_size=$($LFS getstripe -S $PWD/$file)
7116                                 [[ $stripe_size -ne $size ]] &&
7117                                     error "$file: size $stripe_size != $size"
7118                                 stripe_count=$($LFS getstripe -c $PWD/$file)
7119                                 # allow fewer stripes to be created, ORI-601
7120                                 [[ $stripe_count -lt $(((3 * count + 3) / 4)) ]] &&
7121                                     error "$file: count $stripe_count != $count"
7122                                 stripe_index=$($LFS getstripe -i $PWD/$file)
7123                                 [[ $stripe_index -ne 0 ]] &&
7124                                         stripe_index_all_zero=false
7125                         done
7126                 done
7127         done
7128         $stripe_index_all_zero &&
7129                 error "all files are being extracted starting from OST index 0"
7130         return 0
7131 }
7132
7133 find_lustre_tar() {
7134         [ -n "$(which tar 2>/dev/null)" ] &&
7135                 strings $(which tar) | grep -q "lustre" && echo tar
7136 }
7137
7138 test_102d() {
7139         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7140         # b10930: tar test for trusted.lov xattr
7141         TAR=$(find_lustre_tar)
7142         [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
7143         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping N-stripe test" && return
7144         setup_test102
7145         test_mkdir -p $DIR/d102d
7146         $TAR xf $TMP/f102.tar -C $DIR/d102d --xattrs
7147         cd $DIR/d102d/$tdir
7148         compare_stripe_info1
7149 }
7150 run_test 102d "tar restore stripe info from tarfile,not keep osts ==========="
7151
7152 test_102f() {
7153         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7154         # b10930: tar test for trusted.lov xattr
7155         TAR=$(find_lustre_tar)
7156         [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
7157         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping N-stripe test" && return
7158         setup_test102
7159         test_mkdir -p $DIR/d102f
7160         cd $DIR
7161         $TAR cf - --xattrs $tdir | $TAR xf - --xattrs -C $DIR/d102f
7162         cd $DIR/d102f/$tdir
7163         compare_stripe_info1
7164 }
7165 run_test 102f "tar copy files, not keep osts ==========="
7166
7167 grow_xattr() {
7168         local xsize=${1:-1024}  # in bytes
7169         local file=$DIR/$tfile
7170
7171         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep xattr)" ] &&
7172                 skip "must have user_xattr" && return 0
7173         [ -z "$(which setfattr 2>/dev/null)" ] &&
7174                 skip_env "could not find setfattr" && return 0
7175         [ -z "$(which getfattr 2>/dev/null)" ] &&
7176                 skip_env "could not find getfattr" && return 0
7177
7178         touch $file
7179
7180         local value="$(generate_string $xsize)"
7181
7182         local xbig=trusted.big
7183         log "save $xbig on $file"
7184         setfattr -n $xbig -v $value $file ||
7185                 error "saving $xbig on $file failed"
7186
7187         local orig=$(get_xattr_value $xbig $file)
7188         [[ "$orig" != "$value" ]] && error "$xbig different after saving $xbig"
7189
7190         local xsml=trusted.sml
7191         log "save $xsml on $file"
7192         setfattr -n $xsml -v val $file || error "saving $xsml on $file failed"
7193
7194         local new=$(get_xattr_value $xbig $file)
7195         [[ "$new" != "$orig" ]] && error "$xbig different after saving $xsml"
7196
7197         log "grow $xsml on $file"
7198         setfattr -n $xsml -v "$value" $file ||
7199                 error "growing $xsml on $file failed"
7200
7201         new=$(get_xattr_value $xbig $file)
7202         [[ "$new" != "$orig" ]] && error "$xbig different after growing $xsml"
7203         log "$xbig still valid after growing $xsml"
7204
7205         rm -f $file
7206 }
7207
7208 test_102h() { # bug 15777
7209         grow_xattr 1024
7210 }
7211 run_test 102h "grow xattr from inside inode to external block"
7212
7213 test_102ha() {
7214         large_xattr_enabled || { skip "large_xattr disabled" && return; }
7215         grow_xattr $(max_xattr_size)
7216 }
7217 run_test 102ha "grow xattr from inside inode to external inode"
7218
7219 test_102i() { # bug 17038
7220         [ -z "$(which getfattr 2>/dev/null)" ] &&
7221                 skip "could not find getfattr" && return
7222         touch $DIR/$tfile
7223         ln -s $DIR/$tfile $DIR/${tfile}link
7224         getfattr -n trusted.lov $DIR/$tfile ||
7225                 error "lgetxattr on $DIR/$tfile failed"
7226         getfattr -h -n trusted.lov $DIR/${tfile}link 2>&1 |
7227                 grep -i "no such attr" ||
7228                 error "error for lgetxattr on $DIR/${tfile}link is not ENODATA"
7229         rm -f $DIR/$tfile $DIR/${tfile}link
7230 }
7231 run_test 102i "lgetxattr test on symbolic link ============"
7232
7233 test_102j() {
7234         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7235         TAR=$(find_lustre_tar)
7236         [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
7237         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping N-stripe test" && return
7238         setup_test102 "$RUNAS"
7239         test_mkdir -p $DIR/d102j
7240         chown $RUNAS_ID $DIR/d102j
7241         $RUNAS $TAR xf $TMP/f102.tar -C $DIR/d102j --xattrs
7242         cd $DIR/d102j/$tdir
7243         compare_stripe_info1 "$RUNAS"
7244 }
7245 run_test 102j "non-root tar restore stripe info from tarfile, not keep osts ==="
7246
7247 test_102k() {
7248         [ -z "$(which setfattr 2>/dev/null)" ] &&
7249                 skip "could not find setfattr" && return
7250         touch $DIR/$tfile
7251         # b22187 just check that does not crash for regular file.
7252         setfattr -n trusted.lov $DIR/$tfile
7253         # b22187 'setfattr -n trusted.lov' should work as remove LOV EA for directories
7254         local test_kdir=$DIR/d102k
7255         test_mkdir $test_kdir
7256         local default_size=`$GETSTRIPE -S $test_kdir`
7257         local default_count=`$GETSTRIPE -c $test_kdir`
7258         local default_offset=`$GETSTRIPE -i $test_kdir`
7259         $SETSTRIPE -S 65536 -i 0 -c $OSTCOUNT $test_kdir ||
7260                 error 'dir setstripe failed'
7261         setfattr -n trusted.lov $test_kdir
7262         local stripe_size=`$GETSTRIPE -S $test_kdir`
7263         local stripe_count=`$GETSTRIPE -c $test_kdir`
7264         local stripe_offset=`$GETSTRIPE -i $test_kdir`
7265         [ $stripe_size -eq $default_size ] ||
7266                 error "stripe size $stripe_size != $default_size"
7267         [ $stripe_count -eq $default_count ] ||
7268                 error "stripe count $stripe_count != $default_count"
7269         [ $stripe_offset -eq $default_offset ] ||
7270                 error "stripe offset $stripe_offset != $default_offset"
7271         rm -rf $DIR/$tfile $test_kdir
7272 }
7273 run_test 102k "setfattr without parameter of value shouldn't cause a crash"
7274
7275 test_102l() {
7276         [ -z "$(which getfattr 2>/dev/null)" ] &&
7277                 skip "could not find getfattr" && return
7278
7279         # LU-532 trusted. xattr is invisible to non-root
7280         local testfile=$DIR/$tfile
7281
7282         touch $testfile
7283
7284         echo "listxattr as user..."
7285         chown $RUNAS_ID $testfile
7286         $RUNAS getfattr -d -m '.*' $testfile 2>&1 |
7287             grep -q "trusted" &&
7288                 error "$testfile trusted xattrs are user visible"
7289
7290         return 0;
7291 }
7292 run_test 102l "listxattr size test =================================="
7293
7294 test_102m() { # LU-3403 llite: error of listxattr when buffer is small
7295         local path=$DIR/$tfile
7296         touch $path
7297
7298         listxattr_size_check $path || error "listattr_size_check $path failed"
7299 }
7300 run_test 102m "Ensure listxattr fails on small bufffer ========"
7301
7302 cleanup_test102
7303
7304 getxattr() { # getxattr path name
7305         # Return the base64 encoding of the value of xattr name on path.
7306         local path=$1
7307         local name=$2
7308
7309         # # getfattr --absolute-names --encoding=base64 --name=trusted.lov $path
7310         # file: $path
7311         # trusted.lov=0s0AvRCwEAAAAGAAAAAAAAAAAEAAACAAAAAAAQAAEAA...AAAAAAAAA=
7312         #
7313         # We print just 0s0AvRCwEAAAAGAAAAAAAAAAAEAAACAAAAAAAQAAEAA...AAAAAAAAA=
7314
7315         getfattr --absolute-names --encoding=base64 --name=$name $path |
7316                 awk -F= -v name=$name '$1 == name {
7317                         print substr($0, index($0, "=") + 1);
7318         }'
7319 }
7320
7321 test_102n() { # LU-4101 mdt: protect internal xattrs
7322         [ -z "$(which setfattr 2>/dev/null)" ] &&
7323                 skip "could not find setfattr" && return
7324         if [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.50) ]
7325         then
7326                 skip "MDT < 2.5.50 allows setxattr on internal trusted xattrs"
7327                 return
7328         fi
7329
7330         local file0=$DIR/$tfile.0
7331         local file1=$DIR/$tfile.1
7332         local xattr0=$TMP/$tfile.0
7333         local xattr1=$TMP/$tfile.1
7334         local namelist="lov lma lmv link fid version som hsm"
7335         local name
7336         local value
7337
7338         rm -rf $file0 $file1 $xattr0 $xattr1
7339         touch $file0 $file1
7340
7341         # Get 'before' xattrs of $file1.
7342         getfattr --absolute-names --dump --match=- $file1 > $xattr0
7343
7344         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.53) ] &&
7345                 namelist+=" lfsck_namespace"
7346         for name in $namelist; do
7347                 # Try to copy xattr from $file0 to $file1.
7348                 value=$(getxattr $file0 trusted.$name 2> /dev/null)
7349
7350                 setfattr --name=trusted.$name --value="$value" $file1 ||
7351                         error "setxattr 'trusted.$name' failed"
7352
7353                 # Try to set a garbage xattr.
7354                 value=0sVGhlIHF1aWNrIGJyb3duIGZveCBqdW1wcyBvdmVyIGl0c2VsZi4=
7355
7356                 if [[ x$name == "xlov" ]]; then
7357                         setfattr --name=trusted.lov --value="$value" $file1 &&
7358                         error "setxattr invalid 'trusted.lov' success"
7359                 else
7360                         setfattr --name=trusted.$name --value="$value" $file1 ||
7361                                 error "setxattr invalid 'trusted.$name' failed"
7362                 fi
7363
7364                 # Try to remove the xattr from $file1. We don't care if this
7365                 # appears to succeed or fail, we just don't want there to be
7366                 # any changes or crashes.
7367                 setfattr --remove=$trusted.$name $file1 2> /dev/null
7368         done
7369
7370         if [ $(lustre_version_code $SINGLEMDS) -gt $(version_code 2.6.50) ]
7371         then
7372                 name="lfsck_ns"
7373                 # Try to copy xattr from $file0 to $file1.
7374                 value=$(getxattr $file0 trusted.$name 2> /dev/null)
7375
7376                 setfattr --name=trusted.$name --value="$value" $file1 ||
7377                         error "setxattr 'trusted.$name' failed"
7378
7379                 # Try to set a garbage xattr.
7380                 value=0sVGhlIHF1aWNrIGJyb3duIGZveCBqdW1wcyBvdmVyIGl0c2VsZi4=
7381
7382                 setfattr --name=trusted.$name --value="$value" $file1 ||
7383                         error "setxattr 'trusted.$name' failed"
7384
7385                 # Try to remove the xattr from $file1. We don't care if this
7386                 # appears to succeed or fail, we just don't want there to be
7387                 # any changes or crashes.
7388                 setfattr --remove=$trusted.$name $file1 2> /dev/null
7389         fi
7390
7391         # Get 'after' xattrs of file1.
7392         getfattr --absolute-names --dump --match=- $file1 > $xattr1
7393
7394         if ! diff $xattr0 $xattr1; then
7395                 error "before and after xattrs of '$file1' differ"
7396         fi
7397
7398         rm -rf $file0 $file1 $xattr0 $xattr1
7399
7400         return 0
7401 }
7402 run_test 102n "silently ignore setxattr on internal trusted xattrs"
7403
7404 test_102p() { # LU-4703 setxattr did not check ownership
7405         local testfile=$DIR/$tfile
7406
7407         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.56) ] &&
7408                 skip "MDS needs to be at least 2.5.56" && return
7409
7410         touch $testfile
7411
7412         echo "setfacl as user..."
7413         $RUNAS setfacl -m "u:$RUNAS_ID:rwx" $testfile
7414         [ $? -ne 0 ] || error "setfacl by $RUNAS_ID was allowed on $testfile"
7415
7416         echo "setfattr as user..."
7417         setfacl -m "u:$RUNAS_ID:---" $testfile
7418         $RUNAS setfattr -x system.posix_acl_access $testfile
7419         [ $? -ne 0 ] || error "setfattr by $RUNAS_ID was allowed on $testfile"
7420 }
7421 run_test 102p "check setxattr(2) correctly fails without permission"
7422
7423 test_102q() {
7424         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.92) ] &&
7425                 skip "MDS needs to be at least 2.6.92" && return
7426         orphan_linkea_check $DIR/$tfile || error "orphan_linkea_check"
7427 }
7428 run_test 102q "flistxattr should not return trusted.link EAs for orphans"
7429
7430 test_102r() {
7431         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.93) ] &&
7432                 skip "MDS needs to be at least 2.6.93" && return
7433         touch $DIR/$tfile || error "touch"
7434         setfattr -n user.$(basename $tfile) $DIR/$tfile || error "setfattr"
7435         getfattr -n user.$(basename $tfile) $DIR/$tfile || error "getfattr"
7436         rm $DIR/$tfile || error "rm"
7437
7438         #normal directory
7439         mkdir -p $DIR/$tdir || error "mkdir"
7440         setfattr -n user.$(basename $tdir) $DIR/$tdir || error "setfattr dir"
7441         getfattr -n user.$(basename $tdir) $DIR/$tdir || error "getfattr dir"
7442         setfattr -x user.$(basename $tdir) $DIR/$tdir ||
7443                 error "$testfile error deleting user.author1"
7444         getfattr -d -m user.$(basename $tdir) 2> /dev/null |
7445                 grep "user.$(basename $tdir)" &&
7446                 error "$tdir did not delete user.$(basename $tdir)"
7447         rmdir $DIR/$tdir || error "rmdir"
7448
7449         #striped directory
7450         test_mkdir -p $DIR/$tdir || error "make striped dir"
7451         setfattr -n user.$(basename $tdir) $DIR/$tdir || error "setfattr dir"
7452         getfattr -n user.$(basename $tdir) $DIR/$tdir || error "getfattr dir"
7453         setfattr -x user.$(basename $tdir) $DIR/$tdir ||
7454                 error "$testfile error deleting user.author1"
7455         getfattr -d -m user.$(basename $tdir) 2> /dev/null |
7456                 grep "user.$(basename $tdir)" &&
7457                 error "$tdir did not delete user.$(basename $tdir)"
7458         rmdir $DIR/$tdir || error "rm striped dir"
7459 }
7460 run_test 102r "set EAs with empty values"
7461
7462 run_acl_subtest()
7463 {
7464     $LUSTRE/tests/acl/run $LUSTRE/tests/acl/$1.test
7465     return $?
7466 }
7467
7468 test_103a() {
7469         [ "$UID" != 0 ] && skip_env "must run as root" && return
7470         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl)" ] &&
7471                 skip "must have acl enabled" && return
7472         [ -z "$(which setfacl 2>/dev/null)" ] &&
7473                 skip_env "could not find setfacl" && return
7474         $GSS && skip "could not run under gss" && return
7475         remote_mds_nodsh && skip "remote MDS with nodsh" && return
7476
7477         gpasswd -a daemon bin                           # LU-5641
7478         do_facet $SINGLEMDS gpasswd -a daemon bin       # LU-5641
7479
7480         declare -a identity_old
7481
7482         for num in $(seq $MDSCOUNT); do
7483                 switch_identity $num true || identity_old[$num]=$?
7484         done
7485
7486         SAVE_UMASK=$(umask)
7487         umask 0022
7488         mkdir -p $DIR/$tdir
7489         cd $DIR/$tdir
7490
7491         echo "performing cp ..."
7492         run_acl_subtest cp || error "run_acl_subtest cp failed"
7493         echo "performing getfacl-noacl..."
7494         run_acl_subtest getfacl-noacl || error "getfacl-noacl test failed"
7495         echo "performing misc..."
7496         run_acl_subtest misc || error  "misc test failed"
7497         echo "performing permissions..."
7498         run_acl_subtest permissions || error "permissions failed"
7499         # LU-1482 mdd: Setting xattr are properly checked with and without ACLs
7500         if [ $(lustre_version_code $SINGLEMDS) -gt $(version_code 2.8.55) -o \
7501              \( $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6) -a \
7502              $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.5.29) \) ]
7503         then
7504                 echo "performing permissions xattr..."
7505                 run_acl_subtest permissions_xattr ||
7506                         error "permissions_xattr failed"
7507         fi
7508         echo "performing setfacl..."
7509         run_acl_subtest setfacl || error  "setfacl test failed"
7510
7511         # inheritance test got from HP
7512         echo "performing inheritance..."
7513         cp $LUSTRE/tests/acl/make-tree . || error "cannot copy make-tree"
7514         chmod +x make-tree || error "chmod +x failed"
7515         run_acl_subtest inheritance || error "inheritance test failed"
7516         rm -f make-tree
7517
7518         echo "LU-974 ignore umask when acl is enabled..."
7519         run_acl_subtest 974 || error "LU-974 umask test failed"
7520         if [ $MDSCOUNT -ge 2 ]; then
7521                 run_acl_subtest 974_remote ||
7522                         error "LU-974 umask test failed under remote dir"
7523         fi
7524
7525         echo "LU-2561 newly created file is same size as directory..."
7526         if [ $(facet_fstype $SINGLEMDS) != "zfs" ]; then
7527                 run_acl_subtest 2561 || error "LU-2561 test failed"
7528         else
7529                 run_acl_subtest 2561_zfs || error "LU-2561 zfs test failed"
7530         fi
7531
7532         run_acl_subtest 4924 || error "LU-4924 test failed"
7533
7534         cd $SAVE_PWD
7535         umask $SAVE_UMASK
7536
7537         for num in $(seq $MDSCOUNT); do
7538                 if [ "${identity_old[$num]}" = 1 ]; then
7539                         switch_identity $num false || identity_old[$num]=$?
7540                 fi
7541         done
7542 }
7543 run_test 103a "acl test ========================================="
7544
7545 test_103c() {
7546         mkdir -p $DIR/$tdir
7547         cp -rp $DIR/$tdir $DIR/$tdir.bak
7548
7549         [ -n "$(getfattr -d -m. $DIR/$tdir | grep posix_acl_default)" ] &&
7550                 error "$DIR/$tdir shouldn't contain default ACL"
7551         [ -n "$(getfattr -d -m. $DIR/$tdir.bak | grep posix_acl_default)" ] &&
7552                 error "$DIR/$tdir.bak shouldn't contain default ACL"
7553         true
7554 }
7555 run_test 103c "'cp -rp' won't set empty acl"
7556
7557 test_104a() {
7558         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7559         touch $DIR/$tfile
7560         lfs df || error "lfs df failed"
7561         lfs df -ih || error "lfs df -ih failed"
7562         lfs df -h $DIR || error "lfs df -h $DIR failed"
7563         lfs df -i $DIR || error "lfs df -i $DIR failed"
7564         lfs df $DIR/$tfile || error "lfs df $DIR/$tfile failed"
7565         lfs df -ih $DIR/$tfile || error "lfs df -ih $DIR/$tfile failed"
7566
7567         local OSC=$(lctl dl | grep OST0000-osc-[^M] | awk '{ print $4 }')
7568         lctl --device %$OSC deactivate
7569         lfs df || error "lfs df with deactivated OSC failed"
7570         lctl --device %$OSC activate
7571         # wait the osc back to normal
7572         wait_osc_import_state client ost FULL
7573
7574         lfs df || error "lfs df with reactivated OSC failed"
7575         rm -f $DIR/$tfile
7576 }
7577 run_test 104a "lfs df [-ih] [path] test ========================="
7578
7579 test_104b() {
7580         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7581         [ $RUNAS_ID -eq $UID ] &&
7582                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
7583         chmod 666 /dev/obd
7584         denied_cnt=$(($($RUNAS $LFS check servers 2>&1 |
7585                         grep "Permission denied" | wc -l)))
7586         if [ $denied_cnt -ne 0 ]; then
7587                 error "lfs check servers test failed"
7588         fi
7589 }
7590 run_test 104b "$RUNAS lfs check servers test ===================="
7591
7592 test_105a() {
7593         # doesn't work on 2.4 kernels
7594         touch $DIR/$tfile
7595         if $(flock_is_enabled); then
7596                 flocks_test 1 on -f $DIR/$tfile || error "fail flock on"
7597         else
7598                 flocks_test 1 off -f $DIR/$tfile || error "fail flock off"
7599         fi
7600         rm -f $DIR/$tfile
7601 }
7602 run_test 105a "flock when mounted without -o flock test ========"
7603
7604 test_105b() {
7605         touch $DIR/$tfile
7606         if $(flock_is_enabled); then
7607                 flocks_test 1 on -c $DIR/$tfile || error "fail flock on"
7608         else
7609                 flocks_test 1 off -c $DIR/$tfile || error "fail flock off"
7610         fi
7611         rm -f $DIR/$tfile
7612 }
7613 run_test 105b "fcntl when mounted without -o flock test ========"
7614
7615 test_105c() {
7616         touch $DIR/$tfile
7617         if $(flock_is_enabled); then
7618                 flocks_test 1 on -l $DIR/$tfile || error "fail flock on"
7619         else
7620                 flocks_test 1 off -l $DIR/$tfile || error "fail flock off"
7621         fi
7622         rm -f $DIR/$tfile
7623 }
7624 run_test 105c "lockf when mounted without -o flock test ========"
7625
7626 test_105d() { # bug 15924
7627         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7628         test_mkdir -p $DIR/$tdir
7629         flock_is_enabled || { skip "mount w/o flock enabled" && return; }
7630         #define OBD_FAIL_LDLM_CP_CB_WAIT  0x315
7631         $LCTL set_param fail_loc=0x80000315
7632         flocks_test 2 $DIR/$tdir
7633 }
7634 run_test 105d "flock race (should not freeze) ========"
7635
7636 test_105e() { # bug 22660 && 22040
7637         flock_is_enabled || { skip "mount w/o flock enabled" && return; }
7638         touch $DIR/$tfile
7639         flocks_test 3 $DIR/$tfile
7640 }
7641 run_test 105e "Two conflicting flocks from same process ======="
7642
7643 test_106() { #bug 10921
7644         test_mkdir -p $DIR/$tdir
7645         $DIR/$tdir && error "exec $DIR/$tdir succeeded"
7646         chmod 777 $DIR/$tdir || error "chmod $DIR/$tdir failed"
7647 }
7648 run_test 106 "attempt exec of dir followed by chown of that dir"
7649
7650 test_107() {
7651         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7652         CDIR=`pwd`
7653         cd $DIR
7654
7655         local file=core
7656         rm -f $file
7657
7658         local save_pattern=$(sysctl -n kernel.core_pattern)
7659         local save_uses_pid=$(sysctl -n kernel.core_uses_pid)
7660         sysctl -w kernel.core_pattern=$file
7661         sysctl -w kernel.core_uses_pid=0
7662
7663         ulimit -c unlimited
7664         sleep 60 &
7665         SLEEPPID=$!
7666
7667         sleep 1
7668
7669         kill -s 11 $SLEEPPID
7670         wait $SLEEPPID
7671         if [ -e $file ]; then
7672                 size=`stat -c%s $file`
7673                 [ $size -eq 0 ] && error "Fail to create core file $file"
7674         else
7675                 error "Fail to create core file $file"
7676         fi
7677         rm -f $file
7678         sysctl -w kernel.core_pattern=$save_pattern
7679         sysctl -w kernel.core_uses_pid=$save_uses_pid
7680         cd $CDIR
7681 }
7682 run_test 107 "Coredump on SIG"
7683
7684 test_110() {
7685         test_mkdir -p $DIR/$tdir
7686         test_mkdir $DIR/$tdir/$(str_repeat 'a' 255) ||
7687                 error "mkdir with 255 char failed"
7688         test_mkdir $DIR/$tdir/$(str_repeat 'b' 256) &&
7689                 error "mkdir with 256 char should fail, but did not"
7690         touch $DIR/$tdir/$(str_repeat 'x' 255) ||
7691                 error "create with 255 char failed"
7692         touch $DIR/$tdir/$(str_repeat 'y' 256) &&
7693                 error "create with 256 char should fail, but did not"
7694
7695         ls -l $DIR/$tdir
7696         rm -rf $DIR/$tdir
7697 }
7698 run_test 110 "filename length checking"
7699
7700 #
7701 # Purpose: To verify dynamic thread (OSS) creation.
7702 #
7703 test_115() {
7704         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7705         remote_ost_nodsh && skip "remote OST with nodsh" && return
7706
7707         # Lustre does not stop service threads once they are started.
7708         # Reset number of running threads to default.
7709         stopall
7710         setupall
7711
7712         local OSTIO_pre
7713         local save_params="$TMP/sanity-$TESTNAME.parameters"
7714
7715         # Get ll_ost_io count before I/O
7716         OSTIO_pre=$(do_facet ost1 \
7717                 "$LCTL get_param ost.OSS.ost_io.threads_started | cut -d= -f2")
7718         # Exit if lustre is not running (ll_ost_io not running).
7719         [ -z "$OSTIO_pre" ] && error "no OSS threads"
7720
7721         echo "Starting with $OSTIO_pre threads"
7722         local thread_max=$((OSTIO_pre * 2))
7723         local rpc_in_flight=$((thread_max * 2))
7724         # Number of I/O Process proposed to be started.
7725         local nfiles
7726         local facets=$(get_facets OST)
7727
7728         save_lustre_params client \
7729                 "osc.*OST*.max_rpcs_in_flight" > $save_params
7730         save_lustre_params $facets \
7731                 "ost.OSS.ost_io.threads_max" >> $save_params
7732
7733         # Set in_flight to $rpc_in_flight
7734         $LCTL set_param osc.*OST*.max_rpcs_in_flight=$rpc_in_flight ||
7735                 error "Failed to set max_rpcs_in_flight to $rpc_in_flight"
7736         nfiles=${rpc_in_flight}
7737         # Set ost thread_max to $thread_max
7738         do_facet ost1 \
7739                 "$LCTL set_param ost.OSS.ost_io.threads_max=$thread_max"
7740
7741         # 5 Minutes should be sufficient for max number of OSS
7742         # threads(thread_max) to be created.
7743         local timeout=300
7744
7745         # Start I/O.
7746         local WTL=${WTL:-"$LUSTRE/tests/write_time_limit"}
7747         mkdir -p $DIR/$tdir
7748         for i in $(seq $nfiles); do
7749                 local file=$DIR/$tdir/${tfile}-$i
7750                 $LFS setstripe -c -1 -i 0 $file
7751                 ($WTL $file $timeout)&
7752         done
7753
7754         # I/O Started - Wait for thread_started to reach thread_max or report
7755         # error if thread_started is more than thread_max.
7756         echo "Waiting for thread_started to reach thread_max"
7757         local thread_started=0
7758         local end_time=$((SECONDS + timeout))
7759
7760         while [ $SECONDS -le $end_time ] ; do
7761                 echo -n "."
7762                 # Get ost i/o thread_started count.
7763                 thread_started=$(do_facet ost1 \
7764                         "$LCTL get_param \
7765                         ost.OSS.ost_io.threads_started | cut -d= -f2")
7766                 # Break out if thread_started is equal/greater than thread_max
7767                 if [[ $thread_started -ge $thread_max ]]; then
7768                         echo ll_ost_io thread_started $thread_started, \
7769                                 equal/greater than thread_max $thread_max
7770                         break
7771                 fi
7772                 sleep 1
7773         done
7774
7775         # Cleanup - We have the numbers, Kill i/o jobs if running.
7776         jobcount=($(jobs -p))
7777         for i in $(seq 0 $((${#jobcount[@]}-1)))
7778         do
7779                 kill -9 ${jobcount[$i]}
7780                 if [ $? -ne 0 ] ; then
7781                         echo Warning: \
7782                         Failed to Kill \'WTL\(I/O\)\' with pid ${jobcount[$i]}
7783                 fi
7784         done
7785
7786         # Cleanup files left by WTL binary.
7787         for i in $(seq $nfiles); do
7788                 local file=$DIR/$tdir/${tfile}-$i
7789                 rm -rf $file
7790                 if [ $? -ne 0 ] ; then
7791                         echo "Warning: Failed to delete file $file"
7792                 fi
7793         done
7794
7795         restore_lustre_params <$save_params
7796         rm -f $save_params || echo "Warning: delete file '$save_params' failed"
7797
7798         # Error out if no new thread has started or Thread started is greater
7799         # than thread max.
7800         if [[ $thread_started -le $OSTIO_pre ||
7801                         $thread_started -gt $thread_max ]]; then
7802                 error "ll_ost_io: thread_started $thread_started" \
7803                       "OSTIO_pre $OSTIO_pre, thread_max $thread_max." \
7804                       "No new thread started or thread started greater " \
7805                       "than thread_max."
7806         fi
7807 }
7808 run_test 115 "verify dynamic thread creation===================="
7809
7810 free_min_max () {
7811         wait_delete_completed
7812         AVAIL=($(lctl get_param -n osc.*[oO][sS][cC]-[^M]*.kbytesavail))
7813         echo "OST kbytes available: ${AVAIL[@]}"
7814         MAXV=${AVAIL[0]}
7815         MAXI=0
7816         MINV=${AVAIL[0]}
7817         MINI=0
7818         for ((i = 0; i < ${#AVAIL[@]}; i++)); do
7819                 #echo OST $i: ${AVAIL[i]}kb
7820                 if [[ ${AVAIL[i]} -gt $MAXV ]]; then
7821                         MAXV=${AVAIL[i]}
7822                         MAXI=$i
7823                 fi
7824                 if [[ ${AVAIL[i]} -lt $MINV ]]; then
7825                         MINV=${AVAIL[i]}
7826                         MINI=$i
7827                 fi
7828         done
7829         echo "Min free space: OST $MINI: $MINV"
7830         echo "Max free space: OST $MAXI: $MAXV"
7831 }
7832
7833 test_116a() { # was previously test_116()
7834         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7835         remote_mds_nodsh && skip "remote MDS with nodsh" && return
7836
7837         [[ $OSTCOUNT -lt 2 ]] && skip_env "$OSTCOUNT < 2 OSTs" && return
7838
7839         echo -n "Free space priority "
7840         do_facet $SINGLEMDS lctl get_param -n lo*.*-mdtlov.qos_prio_free |
7841                 head -n1
7842         declare -a AVAIL
7843         free_min_max
7844
7845         [ $MINV -eq 0 ] && skip "no free space in OST$MINI, skip" && return
7846         [ $MINV -gt 10000000 ] && skip "too much free space in OST$MINI, skip" \
7847                 && return
7848         trap simple_cleanup_common EXIT
7849
7850
7851         # Check if we need to generate uneven OSTs
7852         test_mkdir -p $DIR/$tdir/OST${MINI}
7853         local FILL=$((MINV / 4))
7854         local DIFF=$((MAXV - MINV))
7855         local DIFF2=$((DIFF * 100 / MINV))
7856
7857         local threshold=$(do_facet $SINGLEMDS \
7858                 lctl get_param -n *.*MDT0000-mdtlov.qos_threshold_rr | head -n1)
7859         threshold=${threshold%%%}
7860         echo -n "Check for uneven OSTs: "
7861         echo -n "diff=${DIFF}KB (${DIFF2}%) must be > ${threshold}% ..."
7862
7863         if [[ $DIFF2 -gt $threshold ]]; then
7864                 echo "ok"
7865                 echo "Don't need to fill OST$MINI"
7866         else
7867                 # generate uneven OSTs. Write 2% over the QOS threshold value
7868                 echo "no"
7869                 DIFF=$((threshold - DIFF2 + 2))
7870                 DIFF2=$((MINV * DIFF / 100))
7871                 echo "Fill $DIFF% remaining space in OST$MINI with ${DIFF2}KB"
7872                 $SETSTRIPE -i $MINI -c 1 $DIR/$tdir/OST${MINI} ||
7873                         error "setstripe failed"
7874                 DIFF=$((DIFF2 / 2048))
7875                 i=0
7876                 while [ $i -lt $DIFF ]; do
7877                         i=$((i + 1))
7878                         dd if=/dev/zero of=$DIR/$tdir/OST${MINI}/$tfile-$i \
7879                                 bs=2M count=1 2>/dev/null
7880                         echo -n .
7881                 done
7882                 echo .
7883                 sync
7884                 sleep_maxage
7885                 free_min_max
7886         fi
7887
7888         DIFF=$((MAXV - MINV))
7889         DIFF2=$((DIFF * 100 / MINV))
7890         echo -n "diff=$DIFF=$DIFF2% must be > $threshold% for QOS mode..."
7891         if [ $DIFF2 -gt $threshold ]; then
7892                 echo "ok"
7893         else
7894                 echo "failed - QOS mode won't be used"
7895                 skip "QOS imbalance criteria not met"
7896                 simple_cleanup_common
7897                 return
7898         fi
7899
7900         MINI1=$MINI
7901         MINV1=$MINV
7902         MAXI1=$MAXI
7903         MAXV1=$MAXV
7904
7905         # now fill using QOS
7906         $SETSTRIPE -c 1 $DIR/$tdir
7907         FILL=$((FILL / 200))
7908         if [ $FILL -gt 600 ]; then
7909                 FILL=600
7910         fi
7911         echo "writing $FILL files to QOS-assigned OSTs"
7912         i=0
7913         while [ $i -lt $FILL ]; do
7914                 i=$((i + 1))
7915                 dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=200k \
7916                         count=1 2>/dev/null
7917                 echo -n .
7918         done
7919         echo "wrote $i 200k files"
7920         sync
7921         sleep_maxage
7922
7923         echo "Note: free space may not be updated, so measurements might be off"
7924         free_min_max
7925         DIFF2=$((MAXV - MINV))
7926         echo "free space delta: orig $DIFF final $DIFF2"
7927         [ $DIFF2 -gt $DIFF ] && echo "delta got worse!"
7928         DIFF=$((MINV1 - ${AVAIL[$MINI1]}))
7929         echo "Wrote ${DIFF}KB to smaller OST $MINI1"
7930         DIFF2=$((MAXV1 - ${AVAIL[$MAXI1]}))
7931         echo "Wrote ${DIFF2}KB to larger OST $MAXI1"
7932         if [[ $DIFF -gt 0 ]]; then
7933                 FILL=$((DIFF2 * 100 / DIFF - 100))
7934                 echo "Wrote ${FILL}% more data to larger OST $MAXI1"
7935         fi
7936
7937         # Figure out which files were written where
7938         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
7939                awk '/'$MINI1': / {print $2; exit}')
7940         echo $UUID
7941         MINC=$($GETSTRIPE --ost $UUID $DIR/$tdir | grep $DIR | wc -l)
7942         echo "$MINC files created on smaller OST $MINI1"
7943         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
7944                awk '/'$MAXI1': / {print $2; exit}')
7945         echo $UUID
7946         MAXC=$($GETSTRIPE --ost $UUID $DIR/$tdir | grep $DIR | wc -l)
7947         echo "$MAXC files created on larger OST $MAXI1"
7948         if [[ $MINC -gt 0 ]]; then
7949                 FILL=$((MAXC * 100 / MINC - 100))
7950                 echo "Wrote ${FILL}% more files to larger OST $MAXI1"
7951         fi
7952         [[ $MAXC -gt $MINC ]] ||
7953                 error_ignore LU-9 "stripe QOS didn't balance free space"
7954         simple_cleanup_common
7955 }
7956 run_test 116a "stripe QOS: free space balance ==================="
7957
7958 test_116b() { # LU-2093
7959         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7960         remote_mds_nodsh && skip "remote MDS with nodsh" && return
7961
7962 #define OBD_FAIL_MDS_OSC_CREATE_FAIL     0x147
7963         local old_rr=$(do_facet $SINGLEMDS lctl get_param -n \
7964                        lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr | head -1)
7965         [ -z "$old_rr" ] && skip "no QOS" && return 0
7966         do_facet $SINGLEMDS lctl set_param \
7967                 lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr=0
7968         mkdir -p $DIR/$tdir
7969         do_facet $SINGLEMDS lctl set_param fail_loc=0x147
7970         createmany -o $DIR/$tdir/f- 20 || error "can't create"
7971         do_facet $SINGLEMDS lctl set_param fail_loc=0
7972         rm -rf $DIR/$tdir
7973         do_facet $SINGLEMDS lctl set_param \
7974                 lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr=$old_rr
7975 }
7976 run_test 116b "QoS shouldn't LBUG if not enough OSTs found on the 2nd pass"
7977
7978 test_117() # bug 10891
7979 {
7980         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7981         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1
7982         #define OBD_FAIL_OST_SETATTR_CREDITS 0x21e
7983         lctl set_param fail_loc=0x21e
7984         > $DIR/$tfile || error "truncate failed"
7985         lctl set_param fail_loc=0
7986         echo "Truncate succeeded."
7987         rm -f $DIR/$tfile
7988 }
7989 run_test 117 "verify osd extend =========="
7990
7991 NO_SLOW_RESENDCOUNT=4
7992 export OLD_RESENDCOUNT=""
7993 set_resend_count () {
7994         local PROC_RESENDCOUNT="osc.${FSNAME}-OST*-osc-*.resend_count"
7995         OLD_RESENDCOUNT=$(lctl get_param -n $PROC_RESENDCOUNT | head -n1)
7996         lctl set_param -n $PROC_RESENDCOUNT $1
7997         echo resend_count is set to $(lctl get_param -n $PROC_RESENDCOUNT)
7998 }
7999
8000 # for reduce test_118* time (b=14842)
8001 [ "$SLOW" = "no" ] && set_resend_count $NO_SLOW_RESENDCOUNT
8002
8003 # Reset async IO behavior after error case
8004 reset_async() {
8005         FILE=$DIR/reset_async
8006
8007         # Ensure all OSCs are cleared
8008         $SETSTRIPE -c -1 $FILE
8009         dd if=/dev/zero of=$FILE bs=64k count=$OSTCOUNT
8010         sync
8011         rm $FILE
8012 }
8013
8014 test_118a() #bug 11710
8015 {
8016         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8017         reset_async
8018
8019         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
8020         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8021         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
8022
8023         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8024                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8025                 return 1;
8026         fi
8027         rm -f $DIR/$tfile
8028 }
8029 run_test 118a "verify O_SYNC works =========="
8030
8031 test_118b()
8032 {
8033         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8034         remote_ost_nodsh && skip "remote OST with nodsh" && return
8035
8036         reset_async
8037
8038         #define OBD_FAIL_SRV_ENOENT 0x217
8039         set_nodes_failloc "$(osts_nodes)" 0x217
8040         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
8041         RC=$?
8042         set_nodes_failloc "$(osts_nodes)" 0
8043         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8044         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8045                     grep -c writeback)
8046
8047         if [[ $RC -eq 0 ]]; then
8048                 error "Must return error due to dropped pages, rc=$RC"
8049                 return 1;
8050         fi
8051
8052         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8053                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8054                 return 1;
8055         fi
8056
8057         echo "Dirty pages not leaked on ENOENT"
8058
8059         # Due to the above error the OSC will issue all RPCs syncronously
8060         # until a subsequent RPC completes successfully without error.
8061         $MULTIOP $DIR/$tfile Ow4096yc
8062         rm -f $DIR/$tfile
8063
8064         return 0
8065 }
8066 run_test 118b "Reclaim dirty pages on fatal error =========="
8067
8068 test_118c()
8069 {
8070         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8071
8072         # for 118c, restore the original resend count, LU-1940
8073         [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] &&
8074                                 set_resend_count $OLD_RESENDCOUNT
8075         remote_ost_nodsh && skip "remote OST with nodsh" && return
8076
8077         reset_async
8078
8079         #define OBD_FAIL_OST_EROFS               0x216
8080         set_nodes_failloc "$(osts_nodes)" 0x216
8081
8082         # multiop should block due to fsync until pages are written
8083         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
8084         MULTIPID=$!
8085         sleep 1
8086
8087         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
8088                 error "Multiop failed to block on fsync, pid=$MULTIPID"
8089         fi
8090
8091         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8092                     grep -c writeback)
8093         if [[ $WRITEBACK -eq 0 ]]; then
8094                 error "No page in writeback, writeback=$WRITEBACK"
8095         fi
8096
8097         set_nodes_failloc "$(osts_nodes)" 0
8098         wait $MULTIPID
8099         RC=$?
8100         if [[ $RC -ne 0 ]]; then
8101                 error "Multiop fsync failed, rc=$RC"
8102         fi
8103
8104         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8105         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8106                     grep -c writeback)
8107         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8108                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8109         fi
8110
8111         rm -f $DIR/$tfile
8112         echo "Dirty pages flushed via fsync on EROFS"
8113         return 0
8114 }
8115 run_test 118c "Fsync blocks on EROFS until dirty pages are flushed =========="
8116
8117 # continue to use small resend count to reduce test_118* time (b=14842)
8118 [ "$SLOW" = "no" ] && set_resend_count $NO_SLOW_RESENDCOUNT
8119
8120 test_118d()
8121 {
8122         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8123         remote_ost_nodsh && skip "remote OST with nodsh" && return
8124
8125         reset_async
8126
8127         #define OBD_FAIL_OST_BRW_PAUSE_BULK
8128         set_nodes_failloc "$(osts_nodes)" 0x214
8129         # multiop should block due to fsync until pages are written
8130         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
8131         MULTIPID=$!
8132         sleep 1
8133
8134         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
8135                 error "Multiop failed to block on fsync, pid=$MULTIPID"
8136         fi
8137
8138         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8139                     grep -c writeback)
8140         if [[ $WRITEBACK -eq 0 ]]; then
8141                 error "No page in writeback, writeback=$WRITEBACK"
8142         fi
8143
8144         wait $MULTIPID || error "Multiop fsync failed, rc=$?"
8145         set_nodes_failloc "$(osts_nodes)" 0
8146
8147         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8148         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8149                     grep -c writeback)
8150         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8151                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8152         fi
8153
8154         rm -f $DIR/$tfile
8155         echo "Dirty pages gaurenteed flushed via fsync"
8156         return 0
8157 }
8158 run_test 118d "Fsync validation inject a delay of the bulk =========="
8159
8160 test_118f() {
8161         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8162         reset_async
8163
8164         #define OBD_FAIL_OSC_BRW_PREP_REQ2        0x40a
8165         lctl set_param fail_loc=0x8000040a
8166
8167         # Should simulate EINVAL error which is fatal
8168         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
8169         RC=$?
8170         if [[ $RC -eq 0 ]]; then
8171                 error "Must return error due to dropped pages, rc=$RC"
8172         fi
8173
8174         lctl set_param fail_loc=0x0
8175
8176         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
8177         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8178         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8179                     grep -c writeback)
8180         if [[ $LOCKED -ne 0 ]]; then
8181                 error "Locked pages remain in cache, locked=$LOCKED"
8182         fi
8183
8184         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8185                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8186         fi
8187
8188         rm -f $DIR/$tfile
8189         echo "No pages locked after fsync"
8190
8191         reset_async
8192         return 0
8193 }
8194 run_test 118f "Simulate unrecoverable OSC side error =========="
8195
8196 test_118g() {
8197         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8198         reset_async
8199
8200         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
8201         lctl set_param fail_loc=0x406
8202
8203         # simulate local -ENOMEM
8204         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
8205         RC=$?
8206
8207         lctl set_param fail_loc=0
8208         if [[ $RC -eq 0 ]]; then
8209                 error "Must return error due to dropped pages, rc=$RC"
8210         fi
8211
8212         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
8213         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8214         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8215                         grep -c writeback)
8216         if [[ $LOCKED -ne 0 ]]; then
8217                 error "Locked pages remain in cache, locked=$LOCKED"
8218         fi
8219
8220         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8221                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8222         fi
8223
8224         rm -f $DIR/$tfile
8225         echo "No pages locked after fsync"
8226
8227         reset_async
8228         return 0
8229 }
8230 run_test 118g "Don't stay in wait if we got local -ENOMEM  =========="
8231
8232 test_118h() {
8233         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8234         remote_ost_nodsh && skip "remote OST with nodsh" && return
8235
8236         reset_async
8237
8238         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
8239         set_nodes_failloc "$(osts_nodes)" 0x20e
8240         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
8241         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
8242         RC=$?
8243
8244         set_nodes_failloc "$(osts_nodes)" 0
8245         if [[ $RC -eq 0 ]]; then
8246                 error "Must return error due to dropped pages, rc=$RC"
8247         fi
8248
8249         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
8250         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8251         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8252                     grep -c writeback)
8253         if [[ $LOCKED -ne 0 ]]; then
8254                 error "Locked pages remain in cache, locked=$LOCKED"
8255         fi
8256
8257         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8258                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8259         fi
8260
8261         rm -f $DIR/$tfile
8262         echo "No pages locked after fsync"
8263
8264         return 0
8265 }
8266 run_test 118h "Verify timeout in handling recoverables errors  =========="
8267
8268 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
8269
8270 test_118i() {
8271         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8272         remote_ost_nodsh && skip "remote OST with nodsh" && return
8273
8274         reset_async
8275
8276         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
8277         set_nodes_failloc "$(osts_nodes)" 0x20e
8278
8279         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
8280         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
8281         PID=$!
8282         sleep 5
8283         set_nodes_failloc "$(osts_nodes)" 0
8284
8285         wait $PID
8286         RC=$?
8287         if [[ $RC -ne 0 ]]; then
8288                 error "got error, but should be not, rc=$RC"
8289         fi
8290
8291         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
8292         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8293         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
8294         if [[ $LOCKED -ne 0 ]]; then
8295                 error "Locked pages remain in cache, locked=$LOCKED"
8296         fi
8297
8298         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8299                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8300         fi
8301
8302         rm -f $DIR/$tfile
8303         echo "No pages locked after fsync"
8304
8305         return 0
8306 }
8307 run_test 118i "Fix error before timeout in recoverable error  =========="
8308
8309 [ "$SLOW" = "no" ] && set_resend_count 4
8310
8311 test_118j() {
8312         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8313         remote_ost_nodsh && skip "remote OST with nodsh" && return
8314
8315         reset_async
8316
8317         #define OBD_FAIL_OST_BRW_WRITE_BULK2     0x220
8318         set_nodes_failloc "$(osts_nodes)" 0x220
8319
8320         # return -EIO from OST
8321         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
8322         RC=$?
8323         set_nodes_failloc "$(osts_nodes)" 0x0
8324         if [[ $RC -eq 0 ]]; then
8325                 error "Must return error due to dropped pages, rc=$RC"
8326         fi
8327
8328         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
8329         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8330         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
8331         if [[ $LOCKED -ne 0 ]]; then
8332                 error "Locked pages remain in cache, locked=$LOCKED"
8333         fi
8334
8335         # in recoverable error on OST we want resend and stay until it finished
8336         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8337                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8338         fi
8339
8340         rm -f $DIR/$tfile
8341         echo "No pages locked after fsync"
8342
8343         return 0
8344 }
8345 run_test 118j "Simulate unrecoverable OST side error =========="
8346
8347 test_118k()
8348 {
8349         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8350         remote_ost_nodsh && skip "remote OSTs with nodsh" && return
8351
8352         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
8353         set_nodes_failloc "$(osts_nodes)" 0x20e
8354         test_mkdir -p $DIR/$tdir
8355
8356         for ((i=0;i<10;i++)); do
8357                 (dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=1M count=10 || \
8358                         error "dd to $DIR/$tdir/$tfile-$i failed" )&
8359                 SLEEPPID=$!
8360                 sleep 0.500s
8361                 kill $SLEEPPID
8362                 wait $SLEEPPID
8363         done
8364
8365         set_nodes_failloc "$(osts_nodes)" 0
8366         rm -rf $DIR/$tdir
8367 }
8368 run_test 118k "bio alloc -ENOMEM and IO TERM handling ========="
8369
8370 test_118l()
8371 {
8372         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8373         # LU-646
8374         test_mkdir -p $DIR/$tdir
8375         $MULTIOP $DIR/$tdir Dy || error "fsync dir failed"
8376         rm -rf $DIR/$tdir
8377 }
8378 run_test 118l "fsync dir ========="
8379
8380 test_118m() # LU-3066
8381 {
8382         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8383         test_mkdir -p $DIR/$tdir
8384         $MULTIOP $DIR/$tdir DY || error "fdatasync dir failed"
8385         rm -rf $DIR/$tdir
8386 }
8387 run_test 118m "fdatasync dir ========="
8388
8389 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
8390
8391 test_119a() # bug 11737
8392 {
8393         BSIZE=$((512 * 1024))
8394         directio write $DIR/$tfile 0 1 $BSIZE
8395         # We ask to read two blocks, which is more than a file size.
8396         # directio will indicate an error when requested and actual
8397         # sizes aren't equeal (a normal situation in this case) and
8398         # print actual read amount.
8399         NOB=`directio read $DIR/$tfile 0 2 $BSIZE | awk '/error/ {print $6}'`
8400         if [ "$NOB" != "$BSIZE" ]; then
8401                 error "read $NOB bytes instead of $BSIZE"
8402         fi
8403         rm -f $DIR/$tfile
8404 }
8405 run_test 119a "Short directIO read must return actual read amount"
8406
8407 test_119b() # bug 11737
8408 {
8409         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
8410
8411         $SETSTRIPE -c 2 $DIR/$tfile || error "setstripe failed"
8412         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1 || error "dd failed"
8413         sync
8414         $MULTIOP $DIR/$tfile oO_RDONLY:O_DIRECT:r$((2048 * 1024)) || \
8415                 error "direct read failed"
8416         rm -f $DIR/$tfile
8417 }
8418 run_test 119b "Sparse directIO read must return actual read amount"
8419
8420 test_119c() # bug 13099
8421 {
8422         BSIZE=1048576
8423         directio write $DIR/$tfile 3 1 $BSIZE || error "direct write failed"
8424         directio readhole $DIR/$tfile 0 2 $BSIZE || error "reading hole failed"
8425         rm -f $DIR/$tfile
8426 }
8427 run_test 119c "Testing for direct read hitting hole"
8428
8429 test_119d() # bug 15950
8430 {
8431         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8432         MAX_RPCS_IN_FLIGHT=`$LCTL get_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight`
8433         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight 1
8434         BSIZE=1048576
8435         $SETSTRIPE $DIR/$tfile -i 0 -c 1 || error "setstripe failed"
8436         $DIRECTIO write $DIR/$tfile 0 1 $BSIZE || error "first directio failed"
8437         #define OBD_FAIL_OSC_DIO_PAUSE           0x40d
8438         lctl set_param fail_loc=0x40d
8439         $DIRECTIO write $DIR/$tfile 1 4 $BSIZE &
8440         pid_dio=$!
8441         sleep 1
8442         cat $DIR/$tfile > /dev/null &
8443         lctl set_param fail_loc=0
8444         pid_reads=$!
8445         wait $pid_dio
8446         log "the DIO writes have completed, now wait for the reads (should not block very long)"
8447         sleep 2
8448         [ -n "`ps h -p $pid_reads -o comm`" ] && \
8449         error "the read rpcs have not completed in 2s"
8450         rm -f $DIR/$tfile
8451         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight $MAX_RPCS_IN_FLIGHT
8452 }
8453 run_test 119d "The DIO path should try to send a new rpc once one is completed"
8454
8455 test_120a() {
8456         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8457         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8458         test_mkdir -p $DIR/$tdir
8459         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
8460                skip "no early lock cancel on server" && return 0
8461
8462         lru_resize_disable mdc
8463         lru_resize_disable osc
8464         cancel_lru_locks mdc
8465         # asynchronous object destroy at MDT could cause bl ast to client
8466         cancel_lru_locks osc
8467
8468         stat $DIR/$tdir > /dev/null
8469         can1=$(do_facet $SINGLEMDS \
8470                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8471                awk '/ldlm_cancel/ {print $2}')
8472         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8473                awk '/ldlm_bl_callback/ {print $2}')
8474         test_mkdir -c1 $DIR/$tdir/d1
8475         can2=$(do_facet $SINGLEMDS \
8476                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8477                awk '/ldlm_cancel/ {print $2}')
8478         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8479                awk '/ldlm_bl_callback/ {print $2}')
8480         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
8481         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
8482         lru_resize_enable mdc
8483         lru_resize_enable osc
8484 }
8485 run_test 120a "Early Lock Cancel: mkdir test"
8486
8487 test_120b() {
8488         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8489         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8490         test_mkdir $DIR/$tdir
8491         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel)" ] && \
8492                skip "no early lock cancel on server" && return 0
8493         lru_resize_disable mdc
8494         lru_resize_disable osc
8495         cancel_lru_locks mdc
8496         stat $DIR/$tdir > /dev/null
8497         can1=$(do_facet $SINGLEMDS \
8498                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8499                awk '/ldlm_cancel/ {print $2}')
8500         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8501                awk '/ldlm_bl_callback/ {print $2}')
8502         touch $DIR/$tdir/f1
8503         can2=$(do_facet $SINGLEMDS \
8504                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8505                awk '/ldlm_cancel/ {print $2}')
8506         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8507                awk '/ldlm_bl_callback/ {print $2}')
8508         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
8509         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
8510         lru_resize_enable mdc
8511         lru_resize_enable osc
8512 }
8513 run_test 120b "Early Lock Cancel: create test"
8514
8515 test_120c() {
8516         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8517         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8518         test_mkdir -c1 $DIR/$tdir
8519         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel)" ] && \
8520                skip "no early lock cancel on server" && return 0
8521         lru_resize_disable mdc
8522         lru_resize_disable osc
8523         test_mkdir -p -c1 $DIR/$tdir/d1
8524         test_mkdir -p -c1 $DIR/$tdir/d2
8525         touch $DIR/$tdir/d1/f1
8526         cancel_lru_locks mdc
8527         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 > /dev/null
8528         can1=$(do_facet $SINGLEMDS \
8529                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8530                awk '/ldlm_cancel/ {print $2}')
8531         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8532                awk '/ldlm_bl_callback/ {print $2}')
8533         ln $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
8534         can2=$(do_facet $SINGLEMDS \
8535                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8536                awk '/ldlm_cancel/ {print $2}')
8537         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8538                awk '/ldlm_bl_callback/ {print $2}')
8539         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
8540         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
8541         lru_resize_enable mdc
8542         lru_resize_enable osc
8543 }
8544 run_test 120c "Early Lock Cancel: link test"
8545
8546 test_120d() {
8547         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8548         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8549         test_mkdir -p -c1 $DIR/$tdir
8550         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel)" ] && \
8551                skip "no early lock cancel on server" && return 0
8552         lru_resize_disable mdc
8553         lru_resize_disable osc
8554         touch $DIR/$tdir
8555         cancel_lru_locks mdc
8556         stat $DIR/$tdir > /dev/null
8557         can1=$(do_facet $SINGLEMDS \
8558                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8559                awk '/ldlm_cancel/ {print $2}')
8560         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8561                awk '/ldlm_bl_callback/ {print $2}')
8562         chmod a+x $DIR/$tdir
8563         can2=$(do_facet $SINGLEMDS \
8564                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8565                awk '/ldlm_cancel/ {print $2}')
8566         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8567                awk '/ldlm_bl_callback/ {print $2}')
8568         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
8569         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
8570         lru_resize_enable mdc
8571         lru_resize_enable osc
8572 }
8573 run_test 120d "Early Lock Cancel: setattr test"
8574
8575 test_120e() {
8576         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8577         ! $($LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_can) &&
8578                 skip "no early lock cancel on server" && return 0
8579         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8580         local dlmtrace_set=false
8581
8582         test_mkdir -p -c1 $DIR/$tdir
8583         lru_resize_disable mdc
8584         lru_resize_disable osc
8585         ! $LCTL get_param debug | grep -q dlmtrace &&
8586                 $LCTL set_param debug=+dlmtrace && dlmtrace_set=true
8587         dd if=/dev/zero of=$DIR/$tdir/f1 count=1
8588         cancel_lru_locks mdc
8589         cancel_lru_locks osc
8590         dd if=$DIR/$tdir/f1 of=/dev/null
8591         stat $DIR/$tdir $DIR/$tdir/f1 > /dev/null
8592         # XXX client can not do early lock cancel of OST lock
8593         # during unlink (LU-4206), so cancel osc lock now.
8594         sleep 2
8595         cancel_lru_locks osc
8596         can1=$(do_facet $SINGLEMDS \
8597                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8598                awk '/ldlm_cancel/ {print $2}')
8599         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8600                awk '/ldlm_bl_callback/ {print $2}')
8601         unlink $DIR/$tdir/f1
8602         sleep 5
8603         can2=$(do_facet $SINGLEMDS \
8604                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8605                awk '/ldlm_cancel/ {print $2}')
8606         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8607                awk '/ldlm_bl_callback/ {print $2}')
8608         [ $can1 -ne $can2 ] && error "$((can2 - can1)) cancel RPC occured" &&
8609                 $LCTL dk $TMP/cancel.debug.txt
8610         [ $blk1 -ne $blk2 ] && error "$((blk2 - blk1)) blocking RPC occured" &&
8611                 $LCTL dk $TMP/blocking.debug.txt
8612         $dlmtrace_set && $LCTL set_param debug=-dlmtrace
8613         lru_resize_enable mdc
8614         lru_resize_enable osc
8615 }
8616 run_test 120e "Early Lock Cancel: unlink test"
8617
8618 test_120f() {
8619         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8620         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
8621                skip "no early lock cancel on server" && return 0
8622         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8623         test_mkdir -p -c1 $DIR/$tdir
8624         lru_resize_disable mdc
8625         lru_resize_disable osc
8626         test_mkdir -p -c1 $DIR/$tdir/d1
8627         test_mkdir -p -c1 $DIR/$tdir/d2
8628         dd if=/dev/zero of=$DIR/$tdir/d1/f1 count=1
8629         dd if=/dev/zero of=$DIR/$tdir/d2/f2 count=1
8630         cancel_lru_locks mdc
8631         cancel_lru_locks osc
8632         dd if=$DIR/$tdir/d1/f1 of=/dev/null
8633         dd if=$DIR/$tdir/d2/f2 of=/dev/null
8634         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2 > /dev/null
8635         # XXX client can not do early lock cancel of OST lock
8636         # during rename (LU-4206), so cancel osc lock now.
8637         sleep 2
8638         cancel_lru_locks osc
8639         can1=$(do_facet $SINGLEMDS \
8640                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8641                awk '/ldlm_cancel/ {print $2}')
8642         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8643                awk '/ldlm_bl_callback/ {print $2}')
8644         mrename $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
8645         sleep 5
8646         can2=$(do_facet $SINGLEMDS \
8647                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8648                awk '/ldlm_cancel/ {print $2}')
8649         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8650                awk '/ldlm_bl_callback/ {print $2}')
8651         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
8652         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
8653         lru_resize_enable mdc
8654         lru_resize_enable osc
8655 }
8656 run_test 120f "Early Lock Cancel: rename test"
8657
8658 test_120g() {
8659         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8660         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
8661                skip "no early lock cancel on server" && return 0
8662         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8663         lru_resize_disable mdc
8664         lru_resize_disable osc
8665         count=10000
8666         echo create $count files
8667         test_mkdir -p $DIR/$tdir
8668         cancel_lru_locks mdc
8669         cancel_lru_locks osc
8670         t0=`date +%s`
8671
8672         can0=$(do_facet $SINGLEMDS \
8673                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8674                awk '/ldlm_cancel/ {print $2}')
8675         blk0=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8676                awk '/ldlm_bl_callback/ {print $2}')
8677         createmany -o $DIR/$tdir/f $count
8678         sync
8679         can1=$(do_facet $SINGLEMDS \
8680                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8681                awk '/ldlm_cancel/ {print $2}')
8682         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8683                awk '/ldlm_bl_callback/ {print $2}')
8684         t1=$(date +%s)
8685         echo total: $((can1-can0)) cancels, $((blk1-blk0)) blockings
8686         echo rm $count files
8687         rm -r $DIR/$tdir
8688         sync
8689         can2=$(do_facet $SINGLEMDS \
8690                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8691                awk '/ldlm_cancel/ {print $2}')
8692         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8693                awk '/ldlm_bl_callback/ {print $2}')
8694         t2=$(date +%s)
8695         echo total: $count removes in $((t2-t1))
8696         echo total: $((can2-can1)) cancels, $((blk2-blk1)) blockings
8697         sleep 2
8698         # wait for commitment of removal
8699         lru_resize_enable mdc
8700         lru_resize_enable osc
8701 }
8702 run_test 120g "Early Lock Cancel: performance test"
8703
8704 test_121() { #bug #10589
8705         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8706         rm -rf $DIR/$tfile
8707         writes=$(LANG=C dd if=/dev/zero of=$DIR/$tfile count=1 2>&1 | awk -F '+' '/out$/ {print $1}')
8708 #define OBD_FAIL_LDLM_CANCEL_RACE        0x310
8709         lctl set_param fail_loc=0x310
8710         cancel_lru_locks osc > /dev/null
8711         reads=$(LANG=C dd if=$DIR/$tfile of=/dev/null 2>&1 | awk -F '+' '/in$/ {print $1}')
8712         lctl set_param fail_loc=0
8713         [[ $reads -eq $writes ]] ||
8714                 error "read $reads blocks, must be $writes blocks"
8715 }
8716 run_test 121 "read cancel race ========="
8717
8718 test_123a() { # was test 123, statahead(bug 11401)
8719         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8720         SLOWOK=0
8721         if [ -z "$(grep "processor.*: 1" /proc/cpuinfo)" ]; then
8722             log "testing on UP system. Performance may be not as good as expected."
8723                         SLOWOK=1
8724         fi
8725
8726         rm -rf $DIR/$tdir
8727         test_mkdir -p $DIR/$tdir
8728         NUMFREE=$(df -i -P $DIR | tail -n 1 | awk '{ print $4 }')
8729         [[ $NUMFREE -gt 100000 ]] && NUMFREE=100000 || NUMFREE=$((NUMFREE-1000))
8730         MULT=10
8731         for ((i=100, j=0; i<=$NUMFREE; j=$i, i=$((i * MULT)) )); do
8732                 createmany -o $DIR/$tdir/$tfile $j $((i - j))
8733
8734                 max=`lctl get_param -n llite.*.statahead_max | head -n 1`
8735                 lctl set_param -n llite.*.statahead_max 0
8736                 lctl get_param llite.*.statahead_max
8737                 cancel_lru_locks mdc
8738                 cancel_lru_locks osc
8739                 stime=`date +%s`
8740                 time ls -l $DIR/$tdir | wc -l
8741                 etime=`date +%s`
8742                 delta=$((etime - stime))
8743                 log "ls $i files without statahead: $delta sec"
8744                 lctl set_param llite.*.statahead_max=$max
8745
8746                 swrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
8747                 lctl get_param -n llite.*.statahead_max | grep '[0-9]'
8748                 cancel_lru_locks mdc
8749                 cancel_lru_locks osc
8750                 stime=`date +%s`
8751                 time ls -l $DIR/$tdir | wc -l
8752                 etime=`date +%s`
8753                 delta_sa=$((etime - stime))
8754                 log "ls $i files with statahead: $delta_sa sec"
8755                 lctl get_param -n llite.*.statahead_stats
8756                 ewrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
8757
8758                 [[ $swrong -lt $ewrong ]] &&
8759                         log "statahead was stopped, maybe too many locks held!"
8760                 [[ $delta -eq 0 || $delta_sa -eq 0 ]] && continue
8761
8762                 if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
8763                     max=`lctl get_param -n llite.*.statahead_max | head -n 1`
8764                     lctl set_param -n llite.*.statahead_max 0
8765                     lctl get_param llite.*.statahead_max
8766                     cancel_lru_locks mdc
8767                     cancel_lru_locks osc
8768                     stime=`date +%s`
8769                     time ls -l $DIR/$tdir | wc -l
8770                     etime=`date +%s`
8771                     delta=$((etime - stime))
8772                     log "ls $i files again without statahead: $delta sec"
8773                     lctl set_param llite.*.statahead_max=$max
8774                     if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
8775                         if [  $SLOWOK -eq 0 ]; then
8776                                 error "ls $i files is slower with statahead!"
8777                         else
8778                                 log "ls $i files is slower with statahead!"
8779                         fi
8780                         break
8781                     fi
8782                 fi
8783
8784                 [ $delta -gt 20 ] && break
8785                 [ $delta -gt 8 ] && MULT=$((50 / delta))
8786                 [ "$SLOW" = "no" -a $delta -gt 5 ] && break
8787         done
8788         log "ls done"
8789
8790         stime=`date +%s`
8791         rm -r $DIR/$tdir
8792         sync
8793         etime=`date +%s`
8794         delta=$((etime - stime))
8795         log "rm -r $DIR/$tdir/: $delta seconds"
8796         log "rm done"
8797         lctl get_param -n llite.*.statahead_stats
8798 }
8799 run_test 123a "verify statahead work"
8800
8801 test_123b () { # statahead(bug 15027)
8802         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8803         test_mkdir -p $DIR/$tdir
8804         createmany -o $DIR/$tdir/$tfile-%d 1000
8805
8806         cancel_lru_locks mdc
8807         cancel_lru_locks osc
8808
8809 #define OBD_FAIL_MDC_GETATTR_ENQUEUE     0x803
8810         lctl set_param fail_loc=0x80000803
8811         ls -lR $DIR/$tdir > /dev/null
8812         log "ls done"
8813         lctl set_param fail_loc=0x0
8814         lctl get_param -n llite.*.statahead_stats
8815         rm -r $DIR/$tdir
8816         sync
8817
8818 }
8819 run_test 123b "not panic with network error in statahead enqueue (bug 15027)"
8820
8821 test_124a() {
8822         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8823         [ -z "$($LCTL get_param -n mdc.*.connect_flags | grep lru_resize)" ] &&
8824                 skip "no lru resize on server" && return 0
8825         local NR=2000
8826         test_mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
8827
8828         log "create $NR files at $DIR/$tdir"
8829         createmany -o $DIR/$tdir/f $NR ||
8830                 error "failed to create $NR files in $DIR/$tdir"
8831
8832         cancel_lru_locks mdc
8833         ls -l $DIR/$tdir > /dev/null
8834
8835         local NSDIR=""
8836         local LRU_SIZE=0
8837         for VALUE in $($LCTL get_param ldlm.namespaces.*mdc-*.lru_size); do
8838                 local PARAM=$(echo ${VALUE[0]} | cut -d "=" -f1)
8839                 LRU_SIZE=$($LCTL get_param -n $PARAM)
8840                 if [[ $LRU_SIZE -gt $(default_lru_size) ]]; then
8841                         NSDIR=$(echo $PARAM | cut -d "." -f1-3)
8842                         log "NSDIR=$NSDIR"
8843                         log "NS=$(basename $NSDIR)"
8844                         break
8845                 fi
8846         done
8847
8848         if [[ -z "$NSDIR" || $LRU_SIZE -lt $(default_lru_size) ]]; then
8849                 skip "Not enough cached locks created!"
8850                 return 0
8851         fi
8852         log "LRU=$LRU_SIZE"
8853
8854         local SLEEP=30
8855
8856         # We know that lru resize allows one client to hold $LIMIT locks
8857         # for 10h. After that locks begin to be killed by client.
8858         local MAX_HRS=10
8859         local LIMIT=$($LCTL get_param -n $NSDIR.pool.limit)
8860         log "LIMIT=$LIMIT"
8861         if [ $LIMIT -lt $LRU_SIZE ]; then
8862             skip "Limit is too small $LIMIT"
8863             return 0
8864         fi
8865
8866         # Make LVF so higher that sleeping for $SLEEP is enough to _start_
8867         # killing locks. Some time was spent for creating locks. This means
8868         # that up to the moment of sleep finish we must have killed some of
8869         # them (10-100 locks). This depends on how fast ther were created.
8870         # Many of them were touched in almost the same moment and thus will
8871         # be killed in groups.
8872         local LVF=$(($MAX_HRS * 60 * 60 / $SLEEP * $LIMIT / $LRU_SIZE))
8873
8874         # Use $LRU_SIZE_B here to take into account real number of locks
8875         # created in the case of CMD, LRU_SIZE_B != $NR in most of cases
8876         local LRU_SIZE_B=$LRU_SIZE
8877         log "LVF=$LVF"
8878         local OLD_LVF=$($LCTL get_param -n $NSDIR.pool.lock_volume_factor)
8879         log "OLD_LVF=$OLD_LVF"
8880         $LCTL set_param -n $NSDIR.pool.lock_volume_factor $LVF
8881
8882         # Let's make sure that we really have some margin. Client checks
8883         # cached locks every 10 sec.
8884         SLEEP=$((SLEEP+20))
8885         log "Sleep ${SLEEP} sec"
8886         local SEC=0
8887         while ((SEC<$SLEEP)); do
8888                 echo -n "..."
8889                 sleep 5
8890                 SEC=$((SEC+5))
8891                 LRU_SIZE=$($LCTL get_param -n $NSDIR/lru_size)
8892                 echo -n "$LRU_SIZE"
8893         done
8894         echo ""
8895         $LCTL set_param -n $NSDIR.pool.lock_volume_factor $OLD_LVF
8896         local LRU_SIZE_A=$($LCTL get_param -n $NSDIR.lru_size)
8897
8898         [[ $LRU_SIZE_B -gt $LRU_SIZE_A ]] || {
8899                 error "No locks dropped in ${SLEEP}s. LRU size: $LRU_SIZE_A"
8900                 unlinkmany $DIR/$tdir/f $NR
8901                 return
8902         }
8903
8904         log "Dropped "$((LRU_SIZE_B-LRU_SIZE_A))" locks in ${SLEEP}s"
8905         log "unlink $NR files at $DIR/$tdir"
8906         unlinkmany $DIR/$tdir/f $NR
8907 }
8908 run_test 124a "lru resize ======================================="
8909
8910 get_max_pool_limit()
8911 {
8912         local limit=$($LCTL get_param \
8913                       -n ldlm.namespaces.*-MDT0000-mdc-*.pool.limit)
8914         local max=0
8915         for l in $limit; do
8916                 if [[ $l -gt $max ]]; then
8917                         max=$l
8918                 fi
8919         done
8920         echo $max
8921 }
8922
8923 test_124b() {
8924         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8925         [ -z "$($LCTL get_param -n mdc.*.connect_flags | grep lru_resize)" ] &&
8926                 skip "no lru resize on server" && return 0
8927
8928         LIMIT=$(get_max_pool_limit)
8929
8930         NR=$(($(default_lru_size)*20))
8931         if [[ $NR -gt $LIMIT ]]; then
8932                 log "Limit lock number by $LIMIT locks"
8933                 NR=$LIMIT
8934         fi
8935
8936         IFree=$(mdsrate_inodes_available)
8937         if [ $IFree -lt $NR ]; then
8938                 log "Limit lock number by $IFree inodes"
8939                 NR=$IFree
8940         fi
8941
8942         lru_resize_disable mdc
8943         test_mkdir -p $DIR/$tdir/disable_lru_resize ||
8944                 error "failed to create $DIR/$tdir/disable_lru_resize"
8945
8946         createmany -o $DIR/$tdir/disable_lru_resize/f $NR
8947         log "doing ls -la $DIR/$tdir/disable_lru_resize 3 times"
8948         cancel_lru_locks mdc
8949         stime=`date +%s`
8950         PID=""
8951         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
8952         PID="$PID $!"
8953         sleep 2
8954         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
8955         PID="$PID $!"
8956         sleep 2
8957         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
8958         PID="$PID $!"
8959         wait $PID
8960         etime=`date +%s`
8961         nolruresize_delta=$((etime-stime))
8962         log "ls -la time: $nolruresize_delta seconds"
8963         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
8964         unlinkmany $DIR/$tdir/disable_lru_resize/f $NR
8965
8966         lru_resize_enable mdc
8967         test_mkdir -p $DIR/$tdir/enable_lru_resize ||
8968                 error "failed to create $DIR/$tdir/enable_lru_resize"
8969
8970         createmany -o $DIR/$tdir/enable_lru_resize/f $NR
8971         log "doing ls -la $DIR/$tdir/enable_lru_resize 3 times"
8972         cancel_lru_locks mdc
8973         stime=`date +%s`
8974         PID=""
8975         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
8976         PID="$PID $!"
8977         sleep 2
8978         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
8979         PID="$PID $!"
8980         sleep 2
8981         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
8982         PID="$PID $!"
8983         wait $PID
8984         etime=`date +%s`
8985         lruresize_delta=$((etime-stime))
8986         log "ls -la time: $lruresize_delta seconds"
8987         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
8988
8989         if [ $lruresize_delta -gt $nolruresize_delta ]; then
8990                 log "ls -la is $(((lruresize_delta - $nolruresize_delta) * 100 / $nolruresize_delta))% slower with lru resize enabled"
8991         elif [ $nolruresize_delta -gt $lruresize_delta ]; then
8992                 log "ls -la is $(((nolruresize_delta - $lruresize_delta) * 100 / $nolruresize_delta))% faster with lru resize enabled"
8993         else
8994                 log "lru resize performs the same with no lru resize"
8995         fi
8996         unlinkmany $DIR/$tdir/enable_lru_resize/f $NR
8997 }
8998 run_test 124b "lru resize (performance test) ======================="
8999
9000 test_124c() {
9001         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9002         [ -z "$($LCTL get_param -n mdc.*.connect_flags | grep lru_resize)" ] &&
9003                 skip "no lru resize on server" && return 0
9004
9005         # cache ununsed locks on client
9006         local nr=100
9007         cancel_lru_locks mdc
9008         test_mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
9009         createmany -o $DIR/$tdir/f $nr ||
9010                 error "failed to create $nr files in $DIR/$tdir"
9011         ls -l $DIR/$tdir > /dev/null
9012
9013         local nsdir="ldlm.namespaces.*-MDT0000-mdc-*"
9014         local unused=$($LCTL get_param -n $nsdir.lock_unused_count)
9015         local max_age=$($LCTL get_param -n $nsdir.lru_max_age)
9016         local recalc_p=$($LCTL get_param -n $nsdir.pool.recalc_period)
9017         echo "unused=$unused, max_age=$max_age, recalc_p=$recalc_p"
9018
9019         # set lru_max_age to 1 sec
9020         $LCTL set_param $nsdir.lru_max_age=1000 # jiffies
9021         echo "sleep $((recalc_p * 2)) seconds..."
9022         sleep $((recalc_p * 2))
9023
9024         local remaining=$($LCTL get_param -n $nsdir.lock_unused_count)
9025         # restore lru_max_age
9026         $LCTL set_param -n $nsdir.lru_max_age $max_age
9027         [ $remaining -eq 0 ] || error "$remaining locks are not canceled"
9028         unlinkmany $DIR/$tdir/f $nr
9029 }
9030 run_test 124c "LRUR cancel very aged locks"
9031
9032 test_125() { # 13358
9033         [ -z "$(lctl get_param -n llite.*.client_type | grep local)" ] && skip "must run as local client" && return
9034         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl)" ] && skip "must have acl enabled" && return
9035         [ -z "$(which setfacl)" ] && skip "must have setfacl tool" && return
9036         test_mkdir -p $DIR/d125 || error "mkdir failed"
9037         $SETSTRIPE -S 65536 -c -1 $DIR/d125 || error "setstripe failed"
9038         setfacl -R -m u:bin:rwx $DIR/d125 || error "setfacl $DIR/d125 failed"
9039         ls -ld $DIR/d125 || error "cannot access $DIR/d125"
9040 }
9041 run_test 125 "don't return EPROTO when a dir has a non-default striping and ACLs"
9042
9043 test_126() { # bug 12829/13455
9044         [ -z "$(lctl get_param -n llite.*.client_type | grep local)" ] && skip "must run as local client" && return
9045         [ "$UID" != 0 ] && skip_env "skipping $TESTNAME (must run as root)" && return
9046         $GSS && skip "must run as gss disabled" && return
9047
9048         $RUNAS -u 0 -g 1 touch $DIR/$tfile || error "touch failed"
9049         gid=`ls -n $DIR/$tfile | awk '{print $4}'`
9050         rm -f $DIR/$tfile
9051         [ $gid -eq "1" ] || error "gid is set to" $gid "instead of 1"
9052 }
9053 run_test 126 "check that the fsgid provided by the client is taken into account"
9054
9055 test_127a() { # bug 15521
9056         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9057         $SETSTRIPE -i 0 -c 1 $DIR/$tfile || error "setstripe failed"
9058         $LCTL set_param osc.*.stats=0
9059         FSIZE=$((2048 * 1024))
9060         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
9061         cancel_lru_locks osc
9062         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE
9063
9064         $LCTL get_param osc.*0000-osc-*.stats | grep samples > $DIR/${tfile}.tmp
9065         while read NAME COUNT SAMP UNIT MIN MAX SUM SUMSQ; do
9066                 echo "got $COUNT $NAME"
9067                 [ ! $MIN ] && error "Missing min value for $NAME proc entry"
9068                 eval $NAME=$COUNT || error "Wrong proc format"
9069
9070                 case $NAME in
9071                         read_bytes|write_bytes)
9072                         [ $MIN -lt 4096 ] && error "min is too small: $MIN"
9073                         [ $MIN -gt $FSIZE ] && error "min is too big: $MIN"
9074                         [ $MAX -lt 4096 ] && error "max is too small: $MAX"
9075                         [ $MAX -gt $FSIZE ] && error "max is too big: $MAX"
9076                         [ $SUM -ne $FSIZE ] && error "sum is wrong: $SUM"
9077                         [ $SUMSQ -lt $(((FSIZE /4096) * (4096 * 4096))) ] &&
9078                                 error "sumsquare is too small: $SUMSQ"
9079                         [ $SUMSQ -gt $((FSIZE * FSIZE)) ] &&
9080                                 error "sumsquare is too big: $SUMSQ"
9081                         ;;
9082                         *) ;;
9083                 esac
9084         done < $DIR/${tfile}.tmp
9085
9086         #check that we actually got some stats
9087         [ "$read_bytes" ] || error "Missing read_bytes stats"
9088         [ "$write_bytes" ] || error "Missing write_bytes stats"
9089         [ "$read_bytes" != 0 ] || error "no read done"
9090         [ "$write_bytes" != 0 ] || error "no write done"
9091 }
9092 run_test 127a "verify the client stats are sane"
9093
9094 test_127b() { # bug LU-333
9095         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9096         $LCTL set_param llite.*.stats=0
9097         FSIZE=65536 # sized fixed to match PAGE_SIZE for most clients
9098         # perform 2 reads and writes so MAX is different from SUM.
9099         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
9100         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
9101         cancel_lru_locks osc
9102         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE count=1
9103         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE count=1
9104
9105         $LCTL get_param llite.*.stats | grep samples > $TMP/${tfile}.tmp
9106         while read NAME COUNT SAMP UNIT MIN MAX SUM SUMSQ; do
9107                 echo "got $COUNT $NAME"
9108                 eval $NAME=$COUNT || error "Wrong proc format"
9109
9110         case $NAME in
9111                 read_bytes)
9112                         [ $COUNT -ne 2 ] && error "count is not 2: $COUNT"
9113                         [ $MIN -ne $FSIZE ] && error "min is not $FSIZE: $MIN"
9114                         [ $MAX -ne $FSIZE ] && error "max is incorrect: $MAX"
9115                         [ $SUM -ne $((FSIZE * 2)) ] && error "sum is wrong: $SUM"
9116                         ;;
9117                 write_bytes)
9118                         [ $COUNT -ne 2 ] && error "count is not 2: $COUNT"
9119                         [ $MIN -ne $FSIZE ] && error "min is not $FSIZE: $MIN"
9120                         [ $MAX -ne $FSIZE ] && error "max is incorrect: $MAX"
9121                         [ $SUM -ne $((FSIZE * 2)) ] && error "sum is wrong: $SUM"
9122                         ;;
9123                         *) ;;
9124                 esac
9125         done < $TMP/${tfile}.tmp
9126
9127         #check that we actually got some stats
9128         [ "$read_bytes" ] || error "Missing read_bytes stats"
9129         [ "$write_bytes" ] || error "Missing write_bytes stats"
9130         [ "$read_bytes" != 0 ] || error "no read done"
9131         [ "$write_bytes" != 0 ] || error "no write done"
9132
9133         rm -f $TMP/${tfile}.tmp
9134 }
9135 run_test 127b "verify the llite client stats are sane"
9136
9137 test_128() { # bug 15212
9138         touch $DIR/$tfile
9139         $LFS 2>&1 <<-EOF | tee $TMP/$tfile.log
9140                 find $DIR/$tfile
9141                 find $DIR/$tfile
9142         EOF
9143
9144         result=$(grep error $TMP/$tfile.log)
9145         rm -f $DIR/$tfile $TMP/$tfile.log
9146         [ -z "$result" ] ||
9147                 error "consecutive find's under interactive lfs failed"
9148 }
9149 run_test 128 "interactive lfs for 2 consecutive find's"
9150
9151 set_dir_limits () {
9152         local mntdev
9153         local canondev
9154         local node
9155
9156         local ldproc=/proc/fs/ldiskfs
9157         local facets=$(get_facets MDS)
9158
9159         for facet in ${facets//,/ }; do
9160                 canondev=$(ldiskfs_canon \
9161                            *.$(convert_facet2label $facet).mntdev $facet)
9162                 do_facet $facet "test -e $ldproc/$canondev/max_dir_size" ||
9163                         ldproc=/sys/fs/ldiskfs
9164                 do_facet $facet "echo $1 >$ldproc/$canondev/max_dir_size"
9165                 do_facet $facet "echo $2 >$ldproc/$canondev/warning_dir_size"
9166         done
9167 }
9168
9169 check_mds_dmesg() {
9170         local facets=$(get_facets MDS)
9171         for facet in ${facets//,/ }; do
9172                 do_facet $facet "dmesg | tail -3 | grep -q $1" && return 0
9173         done
9174         return 1
9175 }
9176
9177 test_129() {
9178         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.5.56) ]] ||
9179                 { skip "Need MDS version with at least 2.5.56"; return 0; }
9180
9181         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9182         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
9183                 skip "Only applicable to ldiskfs-based MDTs"
9184                 return
9185         fi
9186         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9187         local ENOSPC=28
9188         local EFBIG=27
9189         local has_warning=false
9190
9191         rm -rf $DIR/$tdir
9192         mkdir -p $DIR/$tdir
9193
9194         # block size of mds1
9195         local maxsize=$(($($LCTL get_param -n mdc.*MDT0000*.blocksize) * 5))
9196         set_dir_limits $maxsize $maxsize
9197         local dirsize=$(stat -c%s "$DIR/$tdir")
9198         local nfiles=0
9199         while [[ $dirsize -le $maxsize ]]; do
9200                 $MULTIOP $DIR/$tdir/file_base_$nfiles Oc
9201                 rc=$?
9202                 if ! $has_warning; then
9203                         check_mds_dmesg '"is approaching"' && has_warning=true
9204                 fi
9205                 # check two errors:
9206                 # ENOSPC for new ext4 max_dir_size (kernel commit df981d03ee)
9207                 # EFBIG for previous versions included in ldiskfs series
9208                 if [ $rc -eq $EFBIG -o $rc -eq $ENOSPC ]; then
9209                         set_dir_limits 0 0
9210                         echo "return code $rc received as expected"
9211
9212                         createmany -o $DIR/$tdir/file_extra_$nfiles. 5 ||
9213                                 error_exit "create failed w/o dir size limit"
9214
9215                         check_mds_dmesg '"has reached"' ||
9216                                 error_exit "reached message should be output"
9217
9218                         [ $has_warning -eq 0 ] &&
9219                                 error_exit "warning message should be output"
9220
9221                         dirsize=$(stat -c%s "$DIR/$tdir")
9222
9223                         [[ $dirsize -ge $maxsize ]] && return 0
9224                         error_exit "current dir size $dirsize, " \
9225                                    "previous limit $maxsize"
9226                 elif [ $rc -ne 0 ]; then
9227                         set_dir_limits 0 0
9228                         error_exit "return $rc received instead of expected " \
9229                                    "$EFBIG or $ENOSPC, files in dir $dirsize"
9230                 fi
9231                 nfiles=$((nfiles + 1))
9232                 dirsize=$(stat -c%s "$DIR/$tdir")
9233         done
9234
9235         set_dir_limits 0 0
9236         error "exceeded dir size limit $maxsize($MDSCOUNT) : $dirsize bytes"
9237 }
9238 run_test 129 "test directory size limit ========================"
9239
9240 OLDIFS="$IFS"
9241 cleanup_130() {
9242         trap 0
9243         IFS="$OLDIFS"
9244 }
9245
9246 test_130a() {
9247         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
9248         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP" &&
9249                 return
9250
9251         trap cleanup_130 EXIT RETURN
9252
9253         local fm_file=$DIR/$tfile
9254         $SETSTRIPE -S 65536 -c 1 $fm_file || error "setstripe on $fm_file"
9255         dd if=/dev/zero of=$fm_file bs=65536 count=1 ||
9256                 error "dd failed for $fm_file"
9257
9258         # LU-1795: test filefrag/FIEMAP once, even if unsupported
9259         filefrag -ves $fm_file
9260         RC=$?
9261         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
9262                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
9263         [ $RC != 0 ] && error "filefrag $fm_file failed"
9264
9265         filefrag_op=$(filefrag -ve $fm_file |
9266                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
9267         lun=$($GETSTRIPE -i $fm_file)
9268
9269         start_blk=`echo $filefrag_op | cut -d: -f2 | cut -d. -f1`
9270         IFS=$'\n'
9271         tot_len=0
9272         for line in $filefrag_op
9273         do
9274                 frag_lun=`echo $line | cut -d: -f5`
9275                 ext_len=`echo $line | cut -d: -f4`
9276                 if (( $frag_lun != $lun )); then
9277                         cleanup_130
9278                         error "FIEMAP on 1-stripe file($fm_file) failed"
9279                         return
9280                 fi
9281                 (( tot_len += ext_len ))
9282         done
9283
9284         if (( lun != frag_lun || start_blk != 0 || tot_len != 64 )); then
9285                 cleanup_130
9286                 error "FIEMAP on 1-stripe file($fm_file) failed;"
9287                 return
9288         fi
9289
9290         cleanup_130
9291
9292         echo "FIEMAP on single striped file succeeded"
9293 }
9294 run_test 130a "FIEMAP (1-stripe file)"
9295
9296 test_130b() {
9297         [ "$OSTCOUNT" -lt "2" ] &&
9298                 skip_env "skipping FIEMAP on $OSTCOUNT-stripe file" && return
9299
9300         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
9301         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP" &&
9302                 return
9303
9304         trap cleanup_130 EXIT RETURN
9305
9306         local fm_file=$DIR/$tfile
9307         $SETSTRIPE -S 65536 -c $OSTCOUNT $fm_file ||
9308                         error "setstripe on $fm_file"
9309         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
9310                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
9311
9312         dd if=/dev/zero of=$fm_file bs=1M count=$OSTCOUNT ||
9313                 error "dd failed on $fm_file"
9314
9315         filefrag -ves $fm_file || error "filefrag $fm_file failed"
9316         filefrag_op=$(filefrag -ve $fm_file |
9317                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
9318
9319         last_lun=$(echo $filefrag_op | cut -d: -f5 |
9320                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9321
9322         IFS=$'\n'
9323         tot_len=0
9324         num_luns=1
9325         for line in $filefrag_op
9326         do
9327                 frag_lun=$(echo $line | cut -d: -f5 |
9328                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9329                 ext_len=$(echo $line | cut -d: -f4)
9330                 if (( $frag_lun != $last_lun )); then
9331                         if (( tot_len != 1024 )); then
9332                                 cleanup_130
9333                                 error "FIEMAP on $fm_file failed; returned " \
9334                                 "len $tot_len for OST $last_lun instead of 1024"
9335                                 return
9336                         else
9337                                 (( num_luns += 1 ))
9338                                 tot_len=0
9339                         fi
9340                 fi
9341                 (( tot_len += ext_len ))
9342                 last_lun=$frag_lun
9343         done
9344         if (( num_luns != $OSTCOUNT || tot_len != 1024 )); then
9345                 cleanup_130
9346                 error "FIEMAP on $fm_file failed; returned wrong number of " \
9347                         "luns or wrong len for OST $last_lun"
9348                 return
9349         fi
9350
9351         cleanup_130
9352
9353         echo "FIEMAP on $OSTCOUNT-stripe file succeeded"
9354 }
9355 run_test 130b "FIEMAP ($OSTCOUNT-stripe file)"
9356
9357 test_130c() {
9358         [ "$OSTCOUNT" -lt "2" ] &&
9359                 skip_env "skipping FIEMAP on 2-stripe file" && return
9360
9361         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
9362         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" &&
9363                 return
9364
9365         trap cleanup_130 EXIT RETURN
9366
9367         local fm_file=$DIR/$tfile
9368         $SETSTRIPE -S 65536 -c 2 $fm_file || error "setstripe on $fm_file"
9369         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
9370                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
9371
9372         dd if=/dev/zero of=$fm_file seek=1 bs=1M count=1 ||
9373                         error "dd failed on $fm_file"
9374
9375         filefrag -ves $fm_file || error "filefrag $fm_file failed"
9376         filefrag_op=$(filefrag -ve $fm_file |
9377                 sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
9378
9379         last_lun=$(echo $filefrag_op | cut -d: -f5 |
9380                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9381
9382         IFS=$'\n'
9383         tot_len=0
9384         num_luns=1
9385         for line in $filefrag_op
9386         do
9387                 frag_lun=$(echo $line | cut -d: -f5 |
9388                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9389                 ext_len=$(echo $line | cut -d: -f4)
9390                 if (( $frag_lun != $last_lun )); then
9391                         logical=`echo $line | cut -d: -f2 | cut -d. -f1`
9392                         if (( logical != 512 )); then
9393                                 cleanup_130
9394                                 error "FIEMAP on $fm_file failed; returned " \
9395                                 "logical start for lun $logical instead of 512"
9396                                 return
9397                         fi
9398                         if (( tot_len != 512 )); then
9399                                 cleanup_130
9400                                 error "FIEMAP on $fm_file failed; returned " \
9401                                 "len $tot_len for OST $last_lun instead of 1024"
9402                                 return
9403                         else
9404                                 (( num_luns += 1 ))
9405                                 tot_len=0
9406                         fi
9407                 fi
9408                 (( tot_len += ext_len ))
9409                 last_lun=$frag_lun
9410         done
9411         if (( num_luns != 2 || tot_len != 512 )); then
9412                 cleanup_130
9413                 error "FIEMAP on $fm_file failed; returned wrong number of " \
9414                         "luns or wrong len for OST $last_lun"
9415                 return
9416         fi
9417
9418         cleanup_130
9419
9420         echo "FIEMAP on 2-stripe file with hole succeeded"
9421 }
9422 run_test 130c "FIEMAP (2-stripe file with hole)"
9423
9424 test_130d() {
9425         [ "$OSTCOUNT" -lt "3" ] &&
9426                 skip_env "skipping FIEMAP on N-stripe file test" && return
9427
9428         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
9429         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" &&
9430                 return
9431
9432         trap cleanup_130 EXIT RETURN
9433
9434         local fm_file=$DIR/$tfile
9435         $SETSTRIPE -S 65536 -c $OSTCOUNT $fm_file ||
9436                         error "setstripe on $fm_file"
9437         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
9438                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
9439
9440         local actual_stripecnt=$($GETSTRIPE -c $fm_file)
9441         dd if=/dev/zero of=$fm_file bs=1M count=$actual_stripecnt ||
9442                 error "dd failed on $fm_file"
9443
9444         filefrag -ves $fm_file || error "filefrag $fm_file failed"
9445         filefrag_op=$(filefrag -ve $fm_file |
9446                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
9447
9448         last_lun=$(echo $filefrag_op | cut -d: -f5 |
9449                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9450
9451         IFS=$'\n'
9452         tot_len=0
9453         num_luns=1
9454         for line in $filefrag_op
9455         do
9456                 frag_lun=$(echo $line | cut -d: -f5 |
9457                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9458                 ext_len=$(echo $line | cut -d: -f4)
9459                 if (( $frag_lun != $last_lun )); then
9460                         if (( tot_len != 1024 )); then
9461                                 cleanup_130
9462                                 error "FIEMAP on $fm_file failed; returned " \
9463                                 "len $tot_len for OST $last_lun instead of 1024"
9464                                 return
9465                         else
9466                                 (( num_luns += 1 ))
9467                                 tot_len=0
9468                         fi
9469                 fi
9470                 (( tot_len += ext_len ))
9471                 last_lun=$frag_lun
9472         done
9473         if (( num_luns != actual_stripecnt || tot_len != 1024 )); then
9474                 cleanup_130
9475                 error "FIEMAP on $fm_file failed; returned wrong number of " \
9476                         "luns or wrong len for OST $last_lun"
9477                 return
9478         fi
9479
9480         cleanup_130
9481
9482         echo "FIEMAP on N-stripe file succeeded"
9483 }
9484 run_test 130d "FIEMAP (N-stripe file)"
9485
9486 test_130e() {
9487         [ "$OSTCOUNT" -lt "2" ] &&
9488                 skip_env "skipping continuation FIEMAP test" && return
9489
9490         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
9491         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" && return
9492
9493         trap cleanup_130 EXIT RETURN
9494
9495         local fm_file=$DIR/$tfile
9496         $SETSTRIPE -S 131072 -c 2 $fm_file || error "setstripe on $fm_file"
9497         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
9498                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
9499
9500         NUM_BLKS=512
9501         EXPECTED_LEN=$(( (NUM_BLKS / 2) * 64 ))
9502         for ((i = 0; i < $NUM_BLKS; i++))
9503         do
9504                 dd if=/dev/zero of=$fm_file count=1 bs=64k seek=$((2*$i)) conv=notrunc > /dev/null 2>&1
9505         done
9506
9507         filefrag -ves $fm_file || error "filefrag $fm_file failed"
9508         filefrag_op=$(filefrag -ve $fm_file |
9509                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
9510
9511         last_lun=$(echo $filefrag_op | cut -d: -f5 |
9512                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9513
9514         IFS=$'\n'
9515         tot_len=0
9516         num_luns=1
9517         for line in $filefrag_op
9518         do
9519                 frag_lun=$(echo $line | cut -d: -f5 |
9520                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9521                 ext_len=$(echo $line | cut -d: -f4)
9522                 if (( $frag_lun != $last_lun )); then
9523                         if (( tot_len != $EXPECTED_LEN )); then
9524                                 cleanup_130
9525                                 error "FIEMAP on $fm_file failed; returned " \
9526                                 "len $tot_len for OST $last_lun instead " \
9527                                 "of $EXPECTED_LEN"
9528                                 return
9529                         else
9530                                 (( num_luns += 1 ))
9531                                 tot_len=0
9532                         fi
9533                 fi
9534                 (( tot_len += ext_len ))
9535                 last_lun=$frag_lun
9536         done
9537         if (( num_luns != 2 || tot_len != $EXPECTED_LEN )); then
9538                 cleanup_130
9539                 error "FIEMAP on $fm_file failed; returned wrong number " \
9540                         "of luns or wrong len for OST $last_lun"
9541                 return
9542         fi
9543
9544         cleanup_130
9545
9546         echo "FIEMAP with continuation calls succeeded"
9547 }
9548 run_test 130e "FIEMAP (test continuation FIEMAP calls)"
9549
9550 # Test for writev/readv
9551 test_131a() {
9552         rwv -f $DIR/$tfile -w -n 3 524288 1048576 1572864 ||
9553                 error "writev test failed"
9554         rwv -f $DIR/$tfile -r -v -n 2 1572864 1048576 ||
9555                 error "readv failed"
9556         rm -f $DIR/$tfile
9557 }
9558 run_test 131a "test iov's crossing stripe boundary for writev/readv"
9559
9560 test_131b() {
9561         local fsize=$((524288 + 1048576 + 1572864))
9562         rwv -f $DIR/$tfile -w -a -n 3 524288 1048576 1572864 &&
9563                 $CHECKSTAT -t file $DIR/$tfile -s $fsize ||
9564                         error "append writev test failed"
9565
9566         ((fsize += 1572864 + 1048576))
9567         rwv -f $DIR/$tfile -w -a -n 2 1572864 1048576 &&
9568                 $CHECKSTAT -t file $DIR/$tfile -s $fsize ||
9569                         error "append writev test failed"
9570         rm -f $DIR/$tfile
9571 }
9572 run_test 131b "test append writev"
9573
9574 test_131c() {
9575         rwv -f $DIR/$tfile -w -d -n 1 1048576 || return 0
9576         error "NOT PASS"
9577 }
9578 run_test 131c "test read/write on file w/o objects"
9579
9580 test_131d() {
9581         rwv -f $DIR/$tfile -w -n 1 1572864
9582         NOB=`rwv -f $DIR/$tfile -r -n 3 524288 524288 1048576 | awk '/error/ {print $6}'`
9583         if [ "$NOB" != 1572864 ]; then
9584                 error "Short read filed: read $NOB bytes instead of 1572864"
9585         fi
9586         rm -f $DIR/$tfile
9587 }
9588 run_test 131d "test short read"
9589
9590 test_131e() {
9591         rwv -f $DIR/$tfile -w -s 1048576 -n 1 1048576
9592         rwv -f $DIR/$tfile -r -z -s 0 -n 1 524288 || \
9593         error "read hitting hole failed"
9594         rm -f $DIR/$tfile
9595 }
9596 run_test 131e "test read hitting hole"
9597
9598 check_stats() {
9599         local facet=$1
9600         local op=$2
9601         local want=${3:-0}
9602         local res
9603
9604         case $facet in
9605         mds*) res=$(do_facet $facet \
9606                    $LCTL get_param mdt.$FSNAME-MDT0000.md_stats | grep "$op")
9607                  ;;
9608         ost*) res=$(do_facet $facet \
9609                    $LCTL get_param obdfilter.$FSNAME-OST0000.stats | grep "$op")
9610                  ;;
9611         *) error "Wrong facet '$facet'" ;;
9612         esac
9613         echo $res
9614         [ "$res" ] || error "The counter for $op on $facet was not incremented"
9615         # if the argument $3 is zero, it means any stat increment is ok.
9616         if [[ $want -gt 0 ]]; then
9617                 local count=$(echo $res | awk '{ print $2 }')
9618                 [[ $count -ne $want ]] &&
9619                         error "The $op counter on $facet is $count, not $want"
9620         fi
9621 }
9622
9623 test_133a() {
9624         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9625         remote_ost_nodsh && skip "remote OST with nodsh" && return
9626         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9627
9628         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
9629                 { skip "MDS doesn't support rename stats"; return; }
9630         local testdir=$DIR/${tdir}/stats_testdir
9631         mkdir -p $DIR/${tdir}
9632
9633         # clear stats.
9634         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
9635         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
9636
9637         # verify mdt stats first.
9638         mkdir ${testdir} || error "mkdir failed"
9639         check_stats $SINGLEMDS "mkdir" 1
9640         touch ${testdir}/${tfile} || error "touch failed"
9641         check_stats $SINGLEMDS "open" 1
9642         check_stats $SINGLEMDS "close" 1
9643         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.8.54) ] && {
9644                 mknod ${testdir}/${tfile}-pipe p || error "mknod failed"
9645                 check_stats $SINGLEMDS "mknod" 2
9646         }
9647         rm -f ${testdir}/${tfile}-pipe || error "pipe remove failed"
9648         check_stats $SINGLEMDS "unlink" 1
9649         rm -f ${testdir}/${tfile} || error "file remove failed"
9650         check_stats $SINGLEMDS "unlink" 2
9651
9652         # remove working dir and check mdt stats again.
9653         rmdir ${testdir} || error "rmdir failed"
9654         check_stats $SINGLEMDS "rmdir" 1
9655
9656         local testdir1=$DIR/${tdir}/stats_testdir1
9657         mkdir -p ${testdir}
9658         mkdir -p ${testdir1}
9659         touch ${testdir1}/test1
9660         mv ${testdir1}/test1 ${testdir} || error "file crossdir rename"
9661         check_stats $SINGLEMDS "crossdir_rename" 1
9662
9663         mv ${testdir}/test1 ${testdir}/test0 || error "file samedir rename"
9664         check_stats $SINGLEMDS "samedir_rename" 1
9665
9666         rm -rf $DIR/${tdir}
9667 }
9668 run_test 133a "Verifying MDT stats ========================================"
9669
9670 test_133b() {
9671         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9672         remote_ost_nodsh && skip "remote OST with nodsh" && return
9673         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9674         local testdir=$DIR/${tdir}/stats_testdir
9675         mkdir -p ${testdir} || error "mkdir failed"
9676         touch ${testdir}/${tfile} || error "touch failed"
9677         cancel_lru_locks mdc
9678
9679         # clear stats.
9680         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
9681         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
9682
9683         # extra mdt stats verification.
9684         chmod 444 ${testdir}/${tfile} || error "chmod failed"
9685         check_stats $SINGLEMDS "setattr" 1
9686         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
9687         if [ $(lustre_version_code $SINGLEMDS) -ne $(version_code 2.2.0) ]
9688         then            # LU-1740
9689                 ls -l ${testdir}/${tfile} > /dev/null|| error "ls failed"
9690                 check_stats $SINGLEMDS "getattr" 1
9691         fi
9692         $LFS df || error "lfs failed"
9693         check_stats $SINGLEMDS "statfs" 1
9694
9695         rm -rf $DIR/${tdir}
9696 }
9697 run_test 133b "Verifying extra MDT stats =================================="
9698
9699 test_133c() {
9700         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9701         remote_ost_nodsh && skip "remote OST with nodsh" && return
9702         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9703         local testdir=$DIR/${tdir}/stats_testdir
9704         test_mkdir -p ${testdir} || error "mkdir failed"
9705
9706         # verify obdfilter stats.
9707         $SETSTRIPE -c 1 -i 0 ${testdir}/${tfile}
9708         sync
9709         cancel_lru_locks osc
9710         wait_delete_completed
9711
9712         # clear stats.
9713         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
9714         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
9715
9716         dd if=/dev/zero of=${testdir}/${tfile} conv=notrunc bs=512k count=1 || error "dd failed"
9717         sync
9718         cancel_lru_locks osc
9719         check_stats ost1 "write" 1
9720
9721         dd if=${testdir}/${tfile} of=/dev/null bs=1k count=1 || error "dd failed"
9722         check_stats ost1 "read" 1
9723
9724         > ${testdir}/${tfile} || error "truncate failed"
9725         check_stats ost1 "punch" 1
9726
9727         rm -f ${testdir}/${tfile} || error "file remove failed"
9728         wait_delete_completed
9729         check_stats ost1 "destroy" 1
9730
9731         rm -rf $DIR/${tdir}
9732 }
9733 run_test 133c "Verifying OST stats ========================================"
9734
9735 order_2() {
9736         local value=$1
9737         local orig=$value
9738         local order=1
9739
9740         while [ $value -ge 2 ]; do
9741                 order=$((order*2))
9742                 value=$((value/2))
9743         done
9744
9745         if [ $orig -gt $order ]; then
9746                 order=$((order*2))
9747         fi
9748         echo $order
9749 }
9750
9751 size_in_KMGT() {
9752     local value=$1
9753     local size=('K' 'M' 'G' 'T');
9754     local i=0
9755     local size_string=$value
9756
9757     while [ $value -ge 1024 ]; do
9758         if [ $i -gt 3 ]; then
9759             #T is the biggest unit we get here, if that is bigger,
9760             #just return XXXT
9761             size_string=${value}T
9762             break
9763         fi
9764         value=$((value >> 10))
9765         if [ $value -lt 1024 ]; then
9766             size_string=${value}${size[$i]}
9767             break
9768         fi
9769         i=$((i + 1))
9770     done
9771
9772     echo $size_string
9773 }
9774
9775 get_rename_size() {
9776     local size=$1
9777     local context=${2:-.}
9778     local sample=$(do_facet $SINGLEMDS $LCTL get_param mdt.*.rename_stats |
9779                 grep -A1 $context |
9780                 awk '/ '${size}'/ {print $4}' | sed -e "s/,//g")
9781     echo $sample
9782 }
9783
9784 test_133d() {
9785         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9786         remote_ost_nodsh && skip "remote OST with nodsh" && return
9787         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9788         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
9789         { skip "MDS doesn't support rename stats"; return; }
9790
9791         local testdir1=$DIR/${tdir}/stats_testdir1
9792         local testdir2=$DIR/${tdir}/stats_testdir2
9793
9794         do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
9795
9796         mkdir -p ${testdir1} || error "mkdir failed"
9797         mkdir -p ${testdir2} || error "mkdir failed"
9798
9799         createmany -o $testdir1/test 512 || error "createmany failed"
9800
9801         # check samedir rename size
9802         mv ${testdir1}/test0 ${testdir1}/test_0
9803
9804         local testdir1_size=$(ls -l $DIR/${tdir} |
9805                 awk '/stats_testdir1/ {print $5}')
9806         local testdir2_size=$(ls -l $DIR/${tdir} |
9807                 awk '/stats_testdir2/ {print $5}')
9808
9809         testdir1_size=$(order_2 $testdir1_size)
9810         testdir2_size=$(order_2 $testdir2_size)
9811
9812         testdir1_size=$(size_in_KMGT $testdir1_size)
9813         testdir2_size=$(size_in_KMGT $testdir2_size)
9814
9815         echo "source rename dir size: ${testdir1_size}"
9816         echo "target rename dir size: ${testdir2_size}"
9817
9818         local cmd="do_facet $SINGLEMDS $LCTL get_param mdt.*.rename_stats"
9819         eval $cmd || error "$cmd failed"
9820         local samedir=$($cmd | grep 'same_dir')
9821         local same_sample=$(get_rename_size $testdir1_size)
9822         [ -z "$samedir" ] && error "samedir_rename_size count error"
9823         [[ $same_sample -eq 1 ]] ||
9824                 error "samedir_rename_size error $same_sample"
9825         echo "Check same dir rename stats success"
9826
9827         do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
9828
9829         # check crossdir rename size
9830         mv ${testdir1}/test_0 ${testdir2}/test_0
9831
9832         testdir1_size=$(ls -l $DIR/${tdir} |
9833                 awk '/stats_testdir1/ {print $5}')
9834         testdir2_size=$(ls -l $DIR/${tdir} |
9835                 awk '/stats_testdir2/ {print $5}')
9836
9837         testdir1_size=$(order_2 $testdir1_size)
9838         testdir2_size=$(order_2 $testdir2_size)
9839
9840         testdir1_size=$(size_in_KMGT $testdir1_size)
9841         testdir2_size=$(size_in_KMGT $testdir2_size)
9842
9843         echo "source rename dir size: ${testdir1_size}"
9844         echo "target rename dir size: ${testdir2_size}"
9845
9846         eval $cmd || error "$cmd failed"
9847         local crossdir=$($cmd | grep 'crossdir')
9848         local src_sample=$(get_rename_size $testdir1_size crossdir_src)
9849         local tgt_sample=$(get_rename_size $testdir2_size crossdir_tgt)
9850         [ -z "$crossdir" ] && error "crossdir_rename_size count error"
9851         [[ $src_sample -eq 1 ]] ||
9852                 error "crossdir_rename_size error $src_sample"
9853         [[ $tgt_sample -eq 1 ]] ||
9854                 error "crossdir_rename_size error $tgt_sample"
9855         echo "Check cross dir rename stats success"
9856         rm -rf $DIR/${tdir}
9857 }
9858 run_test 133d "Verifying rename_stats ========================================"
9859
9860 test_133e() {
9861         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9862         remote_ost_nodsh && skip "remote OST with nodsh" && return
9863         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9864         local testdir=$DIR/${tdir}/stats_testdir
9865         local ctr f0 f1 bs=32768 count=42 sum
9866
9867         mkdir -p ${testdir} || error "mkdir failed"
9868
9869         $SETSTRIPE -c 1 -i 0 ${testdir}/${tfile}
9870
9871         for ctr in {write,read}_bytes; do
9872                 sync
9873                 cancel_lru_locks osc
9874
9875                 do_facet ost1 $LCTL set_param -n \
9876                         "obdfilter.*.exports.clear=clear"
9877
9878                 if [ $ctr = write_bytes ]; then
9879                         f0=/dev/zero
9880                         f1=${testdir}/${tfile}
9881                 else
9882                         f0=${testdir}/${tfile}
9883                         f1=/dev/null
9884                 fi
9885
9886                 dd if=$f0 of=$f1 conv=notrunc bs=$bs count=$count || \
9887                         error "dd failed"
9888                 sync
9889                 cancel_lru_locks osc
9890
9891                 sum=$(do_facet ost1 $LCTL get_param \
9892                         "obdfilter.*.exports.*.stats" |
9893                         awk -v ctr=$ctr 'BEGIN { sum = 0 }
9894                                 $1 == ctr { sum += $7 }
9895                                 END { printf("%0.0f", sum) }')
9896
9897                 if ((sum != bs * count)); then
9898                         error "Bad $ctr sum, expected $((bs * count)), got $sum"
9899                 fi
9900         done
9901
9902         rm -rf $DIR/${tdir}
9903 }
9904 run_test 133e "Verifying OST {read,write}_bytes nid stats ================="
9905
9906 proc_regexp="/{proc,sys}/{fs,sys,kernel/debug}/{lustre,lnet}/"
9907
9908 test_133f() {
9909         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9910         remote_ost_nodsh && skip "remote OST with nodsh" && return
9911         # First without trusting modes.
9912         local proc_dirs=$(eval \ls -d $proc_regexp 2>/dev/null)
9913         echo "proc_dirs='$proc_dirs'"
9914         [ -n "$proc_dirs" ] || error "no proc_dirs on $HOSTNAME"
9915         find $proc_dirs -exec cat '{}' \; &> /dev/null
9916
9917         # Second verifying readability.
9918         $LCTL get_param -R '*' &> /dev/null || error "proc file read failed"
9919
9920         # eventually, this can also be replaced with "lctl get_param -R",
9921         # but not until that option is always available on the server
9922         local facet
9923         for facet in mds1 ost1; do
9924                 local facet_proc_dirs=$(do_facet $facet \
9925                                         \\\ls -d $proc_regexp 2>/dev/null)
9926                 echo "${facet}_proc_dirs='$facet_proc_dirs'"
9927                 [ -z "$facet_proc_dirs" ] && error "no proc_dirs on $facet"
9928                 do_facet $facet find $facet_proc_dirs \
9929                         ! -name req_history \
9930                         -exec cat '{}' \\\; &> /dev/null
9931
9932                 do_facet $facet find $facet_proc_dirs \
9933                         ! -name req_history \
9934                         -type f \
9935                         -exec cat '{}' \\\; &> /dev/null ||
9936                                 error "proc file read failed"
9937         done
9938 }
9939 run_test 133f "Check for LBUGs/Oopses/unreadable files in /proc"
9940
9941 test_133g() {
9942         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9943         remote_ost_nodsh && skip "remote OST with nodsh" && return
9944         # Second verifying writability.
9945         local proc_dirs=$(eval \ls -d $proc_regexp 2>/dev/null)
9946         echo "proc_dirs='$proc_dirs'"
9947         [ -n "$proc_dirs" ] || error "no proc_dirs on $HOSTNAME"
9948         find $proc_dirs \
9949                 -type f \
9950                 -not -name force_lbug \
9951                 -not -name changelog_mask \
9952                 -exec badarea_io '{}' \; &> /dev/null ||
9953                 error "find $proc_dirs failed"
9954
9955         local facet
9956         for facet in mds1 ost1; do
9957                 [ $(lustre_version_code $facet) -le $(version_code 2.5.54) ] &&
9958                         skip "Too old lustre on $facet" && continue
9959                 local facet_proc_dirs=$(do_facet $facet \
9960                                         \\\ls -d $proc_regexp 2> /dev/null)
9961                 echo "${facet}_proc_dirs='$facet_proc_dirs'"
9962                 [ -z "$facet_proc_dirs" ] && error "no proc_dirs on $facet"
9963                 do_facet $facet find $facet_proc_dirs \
9964                         -type f \
9965                         -not -name force_lbug \
9966                         -not -name changelog_mask \
9967                         -exec badarea_io '{}' \\\; &> /dev/null ||
9968                                 error "$facet find $facet_proc_dirs failed"
9969         done
9970
9971         # remount the FS in case writes/reads /proc break the FS
9972         cleanup || error "failed to unmount"
9973         setup || error "failed to setup"
9974         true
9975 }
9976 run_test 133g "Check for Oopses on bad io area writes/reads in /proc"
9977
9978 test_133h() {
9979         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9980         remote_ost_nodsh && skip "remote OST with nodsh" && return
9981         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.9.54) ]] &&
9982                 skip "Need MDS version at least 2.9.54" && return
9983
9984         local facet
9985         for facet in client mds1 ost1; do
9986                 local facet_proc_dirs=$(do_facet $facet \
9987                                         \\\ls -d $proc_regexp 2> /dev/null)
9988                 [ -z "$facet_proc_dirs" ] && error "no proc_dirs on $facet"
9989                 echo "${facet}_proc_dirs='$facet_proc_dirs'"
9990                 # Get the list of files that are missing the terminating newline
9991                 local missing=($(do_facet $facet \
9992                         find ${facet_proc_dirs} -type f \|              \
9993                                 while read F\; do                       \
9994                                         awk -v FS='\v' -v RS='\v\v'     \
9995                                         "'END { if(NR>0 &&              \
9996                                         \\\$NF !~ /.*\\\n\$/)           \
9997                                                 print FILENAME}'"       \
9998                                         '\$F'\;                         \
9999                                 done 2>/dev/null))
10000                 [ ${#missing[*]} -eq 0 ] ||
10001                         error "files do not end with newline: ${missing[*]}"
10002         done
10003 }
10004 run_test 133h "Proc files should end with newlines"
10005
10006 test_134a() {
10007         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10008         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.54) ]] &&
10009                 skip "Need MDS version at least 2.7.54" && return
10010
10011         mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
10012         cancel_lru_locks mdc
10013
10014         local nsdir="ldlm.namespaces.*-MDT0000-mdc-*"
10015         local unused=$($LCTL get_param -n $nsdir.lock_unused_count)
10016         [ $unused -eq 0 ] || error "$unused locks are not cleared"
10017
10018         local nr=1000
10019         createmany -o $DIR/$tdir/f $nr ||
10020                 error "failed to create $nr files in $DIR/$tdir"
10021         unused=$($LCTL get_param -n $nsdir.lock_unused_count)
10022
10023         #define OBD_FAIL_LDLM_WATERMARK_LOW     0x327
10024         do_facet mds1 $LCTL set_param fail_loc=0x327
10025         do_facet mds1 $LCTL set_param fail_val=500
10026         touch $DIR/$tdir/m
10027
10028         echo "sleep 10 seconds ..."
10029         sleep 10
10030         local lck_cnt=$($LCTL get_param -n $nsdir.lock_unused_count)
10031
10032         do_facet mds1 $LCTL set_param fail_loc=0
10033         do_facet mds1 $LCTL set_param fail_val=0
10034         [ $lck_cnt -lt $unused ] ||
10035                 error "No locks reclaimed, before:$unused, after:$lck_cnt"
10036
10037         rm $DIR/$tdir/m
10038         unlinkmany $DIR/$tdir/f $nr
10039 }
10040 run_test 134a "Server reclaims locks when reaching lock_reclaim_threshold"
10041
10042 test_134b() {
10043         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10044         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.54) ]] &&
10045                 skip "Need MDS version at least 2.7.54" && return
10046
10047         mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
10048         cancel_lru_locks mdc
10049
10050         local low_wm=$(do_facet mds1 $LCTL get_param -n \
10051                         ldlm.lock_reclaim_threshold_mb)
10052         # disable reclaim temporarily
10053         do_facet mds1 $LCTL set_param ldlm.lock_reclaim_threshold_mb=0
10054
10055         #define OBD_FAIL_LDLM_WATERMARK_HIGH     0x328
10056         do_facet mds1 $LCTL set_param fail_loc=0x328
10057         do_facet mds1 $LCTL set_param fail_val=500
10058
10059         $LCTL set_param debug=+trace
10060
10061         local nr=600
10062         createmany -o $DIR/$tdir/f $nr &
10063         local create_pid=$!
10064
10065         echo "Sleep $TIMEOUT seconds ..."
10066         sleep $TIMEOUT
10067         if ! ps -p $create_pid  > /dev/null 2>&1; then
10068                 do_facet mds1 $LCTL set_param fail_loc=0
10069                 do_facet mds1 $LCTL set_param fail_val=0
10070                 do_facet mds1 $LCTL set_param \
10071                         ldlm.lock_reclaim_threshold_mb=${low_wm}m
10072                 error "createmany finished incorrectly!"
10073         fi
10074         do_facet mds1 $LCTL set_param fail_loc=0
10075         do_facet mds1 $LCTL set_param fail_val=0
10076         do_facet mds1 $LCTL set_param ldlm.lock_reclaim_threshold_mb=${low_wm}m
10077         wait $create_pid || return 1
10078
10079         unlinkmany $DIR/$tdir/f $nr
10080 }
10081 run_test 134b "Server rejects lock request when reaching lock_limit_mb"
10082
10083 test_140() { #bug-17379
10084         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10085         test_mkdir -p $DIR/$tdir || error "Creating dir $DIR/$tdir"
10086         cd $DIR/$tdir || error "Changing to $DIR/$tdir"
10087         cp $(which stat) . || error "Copying stat to $DIR/$tdir"
10088
10089         # VFS limits max symlink depth to 5(4KSTACK) or 7(8KSTACK) or 8
10090         # For kernel > 3.5, bellow only tests consecutive symlink (MAX 40)
10091         local i=0
10092         while i=`expr $i + 1`; do
10093                 test_mkdir -p $i || error "Creating dir $i"
10094                 cd $i || error "Changing to $i"
10095                 ln -s ../stat stat || error "Creating stat symlink"
10096                 # Read the symlink until ELOOP present,
10097                 # not LBUGing the system is considered success,
10098                 # we didn't overrun the stack.
10099                 $OPENFILE -f O_RDONLY stat >/dev/null 2>&1; ret=$?
10100                 [ $ret -ne 0 ] && {
10101                         if [ $ret -eq 40 ]; then
10102                                 break  # -ELOOP
10103                         else
10104                                 error "Open stat symlink"
10105                                 return
10106                         fi
10107                 }
10108         done
10109         i=`expr $i - 1`
10110         echo "The symlink depth = $i"
10111         [ $i -eq 5 -o $i -eq 7 -o $i -eq 8 -o $i -eq 40 ] ||
10112                                         error "Invalid symlink depth"
10113
10114         # Test recursive symlink
10115         ln -s symlink_self symlink_self
10116         $OPENFILE -f O_RDONLY symlink_self >/dev/null 2>&1; ret=$?
10117         echo "open symlink_self returns $ret"
10118         [ $ret -eq 40 ] || error "recursive symlink doesn't return -ELOOP"
10119 }
10120 run_test 140 "Check reasonable stack depth (shouldn't LBUG) ===="
10121
10122 test_150() {
10123         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10124         local TF="$TMP/$tfile"
10125
10126         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
10127         cp $TF $DIR/$tfile
10128         cancel_lru_locks osc
10129         cmp $TF $DIR/$tfile || error "$TMP/$tfile $DIR/$tfile differ"
10130         remount_client $MOUNT
10131         df -P $MOUNT
10132         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (remount)"
10133
10134         $TRUNCATE $TF 6000
10135         $TRUNCATE $DIR/$tfile 6000
10136         cancel_lru_locks osc
10137         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (truncate1)"
10138
10139         echo "12345" >>$TF
10140         echo "12345" >>$DIR/$tfile
10141         cancel_lru_locks osc
10142         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append1)"
10143
10144         echo "12345" >>$TF
10145         echo "12345" >>$DIR/$tfile
10146         cancel_lru_locks osc
10147         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append2)"
10148
10149         rm -f $TF
10150         true
10151 }
10152 run_test 150 "truncate/append tests"
10153
10154 #LU-2902 roc_hit was not able to read all values from lproc
10155 function roc_hit_init() {
10156         local list=$(comma_list $(osts_nodes))
10157         local dir=$DIR/$tdir-check
10158         local file=$dir/file
10159         local BEFORE
10160         local AFTER
10161         local idx
10162
10163         test_mkdir -p $dir
10164         #use setstripe to do a write to every ost
10165         for i in $(seq 0 $((OSTCOUNT-1))); do
10166                 $SETSTRIPE -c 1 -i $i $dir || error "$SETSTRIPE $file failed"
10167                 dd if=/dev/urandom of=$file bs=4k count=4 2>&1 > /dev/null
10168                 idx=$(printf %04x $i)
10169                 BEFORE=$(get_osd_param $list *OST*$idx stats |
10170                         awk '$1 == "cache_access" {sum += $7}
10171                                 END { printf("%0.0f", sum) }')
10172
10173                 cancel_lru_locks osc
10174                 cat $file >/dev/null
10175
10176                 AFTER=$(get_osd_param $list *OST*$idx stats |
10177                         awk '$1 == "cache_access" {sum += $7}
10178                                 END { printf("%0.0f", sum) }')
10179
10180                 echo BEFORE:$BEFORE AFTER:$AFTER
10181                 if ! let "AFTER - BEFORE == 4"; then
10182                         rm -rf $dir
10183                         error "roc_hit is not safe to use"
10184                 fi
10185                 rm $file
10186         done
10187
10188         rm -rf $dir
10189 }
10190
10191 function roc_hit() {
10192         local list=$(comma_list $(osts_nodes))
10193         echo $(get_osd_param $list '' stats |
10194                 awk '$1 == "cache_hit" {sum += $7}
10195                         END { printf("%0.0f", sum) }')
10196 }
10197
10198 function set_cache() {
10199         local on=1
10200
10201         if [ "$2" == "off" ]; then
10202                 on=0;
10203         fi
10204         local list=$(comma_list $(osts_nodes))
10205         set_osd_param $list '' $1_cache_enable $on
10206
10207         cancel_lru_locks osc
10208 }
10209
10210 test_151() {
10211         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10212         remote_ost_nodsh && skip "remote OST with nodsh" && return
10213
10214         local CPAGES=3
10215         local list=$(comma_list $(osts_nodes))
10216
10217         # check whether obdfilter is cache capable at all
10218         if ! get_osd_param $list '' read_cache_enable >/dev/null; then
10219                 echo "not cache-capable obdfilter"
10220                 return 0
10221         fi
10222
10223         # check cache is enabled on all obdfilters
10224         if get_osd_param $list '' read_cache_enable | grep 0; then
10225                 echo "oss cache is disabled"
10226                 return 0
10227         fi
10228
10229         set_osd_param $list '' writethrough_cache_enable 1
10230
10231         # check write cache is enabled on all obdfilters
10232         if get_osd_param $list '' writethrough_cache_enable | grep 0; then
10233                 echo "oss write cache is NOT enabled"
10234                 return 0
10235         fi
10236
10237         roc_hit_init
10238
10239         #define OBD_FAIL_OBD_NO_LRU  0x609
10240         do_nodes $list $LCTL set_param fail_loc=0x609
10241
10242         # pages should be in the case right after write
10243         dd if=/dev/urandom of=$DIR/$tfile bs=4k count=$CPAGES ||
10244                 error "dd failed"
10245
10246         local BEFORE=$(roc_hit)
10247         cancel_lru_locks osc
10248         cat $DIR/$tfile >/dev/null
10249         local AFTER=$(roc_hit)
10250
10251         do_nodes $list $LCTL set_param fail_loc=0
10252
10253         if ! let "AFTER - BEFORE == CPAGES"; then
10254                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
10255         fi
10256
10257         # the following read invalidates the cache
10258         cancel_lru_locks osc
10259         set_osd_param $list '' read_cache_enable 0
10260         cat $DIR/$tfile >/dev/null
10261
10262         # now data shouldn't be found in the cache
10263         BEFORE=$(roc_hit)
10264         cancel_lru_locks osc
10265         cat $DIR/$tfile >/dev/null
10266         AFTER=$(roc_hit)
10267         if let "AFTER - BEFORE != 0"; then
10268                 error "IN CACHE: before: $BEFORE, after: $AFTER"
10269         fi
10270
10271         set_osd_param $list '' read_cache_enable 1
10272         rm -f $DIR/$tfile
10273 }
10274 run_test 151 "test cache on oss and controls ==============================="
10275
10276 test_152() {
10277         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10278         local TF="$TMP/$tfile"
10279
10280         # simulate ENOMEM during write
10281 #define OBD_FAIL_OST_NOMEM      0x226
10282         lctl set_param fail_loc=0x80000226
10283         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
10284         cp $TF $DIR/$tfile
10285         sync || error "sync failed"
10286         lctl set_param fail_loc=0
10287
10288         # discard client's cache
10289         cancel_lru_locks osc
10290
10291         # simulate ENOMEM during read
10292         lctl set_param fail_loc=0x80000226
10293         cmp $TF $DIR/$tfile || error "cmp failed"
10294         lctl set_param fail_loc=0
10295
10296         rm -f $TF
10297 }
10298 run_test 152 "test read/write with enomem ============================"
10299
10300 test_153() {
10301         $MULTIOP $DIR/$tfile Ow4096Ycu || error "multiop failed"
10302 }
10303 run_test 153 "test if fdatasync does not crash ======================="
10304
10305 dot_lustre_fid_permission_check() {
10306         local fid=$1
10307         local ffid=$MOUNT/.lustre/fid/$fid
10308         local test_dir=$2
10309
10310         echo "stat fid $fid"
10311         stat $ffid > /dev/null || error "stat $ffid failed."
10312         echo "touch fid $fid"
10313         touch $ffid || error "touch $ffid failed."
10314         echo "write to fid $fid"
10315         cat /etc/hosts > $ffid || error "write $ffid failed."
10316         echo "read fid $fid"
10317         diff /etc/hosts $ffid || error "read $ffid failed."
10318         echo "append write to fid $fid"
10319         cat /etc/hosts >> $ffid || error "append write $ffid failed."
10320         echo "rename fid $fid"
10321         mv $ffid $test_dir/$tfile.1 &&
10322                 error "rename $ffid to $tfile.1 should fail."
10323         touch $test_dir/$tfile.1
10324         mv $test_dir/$tfile.1 $ffid &&
10325                 error "rename $tfile.1 to $ffid should fail."
10326         rm -f $test_dir/$tfile.1
10327         echo "truncate fid $fid"
10328         $TRUNCATE $ffid 777 || error "truncate $ffid failed."
10329         if [ $MDSCOUNT -lt 2 ]; then #FIXME when cross-MDT hard link is working
10330                 echo "link fid $fid"
10331                 ln -f $ffid $test_dir/tfile.lnk || error "link $ffid failed."
10332         fi
10333         if [ -n $(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl) ]; then
10334                 echo "setfacl fid $fid"
10335                 setfacl -R -m u:bin:rwx $ffid || error "setfacl $ffid failed."
10336                 echo "getfacl fid $fid"
10337                 getfacl $ffid >/dev/null || error "getfacl $ffid failed."
10338         fi
10339         echo "unlink fid $fid"
10340         unlink $MOUNT/.lustre/fid/$fid && error "unlink $ffid should fail."
10341         echo "mknod fid $fid"
10342         mknod $ffid c 1 3 && error "mknod $ffid should fail."
10343
10344         fid=[0xf00000400:0x1:0x0]
10345         ffid=$MOUNT/.lustre/fid/$fid
10346
10347         echo "stat non-exist fid $fid"
10348         stat $ffid > /dev/null && error "stat non-exist $ffid should fail."
10349         echo "write to non-exist fid $fid"
10350         cat /etc/hosts > $ffid && error "write non-exist $ffid should fail."
10351         echo "link new fid $fid"
10352         ln $test_dir/$tfile $ffid && error "link $ffid should fail."
10353
10354         mkdir -p $test_dir/$tdir
10355         touch $test_dir/$tdir/$tfile
10356         fid=$($LFS path2fid $test_dir/$tdir)
10357         rc=$?
10358         [ $rc -ne 0 ] &&
10359                 error "error: could not get fid for $test_dir/$dir/$tfile."
10360
10361         ffid=$MOUNT/.lustre/fid/$fid
10362
10363         echo "ls $fid"
10364         ls $ffid > /dev/null || error "ls $ffid failed."
10365         echo "touch $fid/$tfile.1"
10366         touch $ffid/$tfile.1 || error "touch $ffid/$tfile.1 failed."
10367
10368         echo "touch $MOUNT/.lustre/fid/$tfile"
10369         touch $MOUNT/.lustre/fid/$tfile && \
10370                 error "touch $MOUNT/.lustre/fid/$tfile should fail."
10371
10372         echo "setxattr to $MOUNT/.lustre/fid"
10373         setfattr -n trusted.name1 -v value1 $MOUNT/.lustre/fid
10374
10375         echo "listxattr for $MOUNT/.lustre/fid"
10376         getfattr -d -m "^trusted" $MOUNT/.lustre/fid
10377
10378         echo "delxattr from $MOUNT/.lustre/fid"
10379         setfattr -x trusted.name1 $MOUNT/.lustre/fid
10380
10381         echo "touch invalid fid: $MOUNT/.lustre/fid/[0x200000400:0x2:0x3]"
10382         touch $MOUNT/.lustre/fid/[0x200000400:0x2:0x3] &&
10383                 error "touch invalid fid should fail."
10384
10385         echo "touch non-normal fid: $MOUNT/.lustre/fid/[0x1:0x2:0x0]"
10386         touch $MOUNT/.lustre/fid/[0x1:0x2:0x0] &&
10387                 error "touch non-normal fid should fail."
10388
10389         echo "rename $tdir to $MOUNT/.lustre/fid"
10390         mrename $test_dir/$tdir $MOUNT/.lustre/fid &&
10391                 error "rename to $MOUNT/.lustre/fid should fail."
10392
10393         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.51) ]
10394         then            # LU-3547
10395                 local old_obf_mode=$(stat --format="%a" $DIR/.lustre/fid)
10396                 local new_obf_mode=777
10397
10398                 echo "change mode of $DIR/.lustre/fid to $new_obf_mode"
10399                 chmod $new_obf_mode $DIR/.lustre/fid ||
10400                         error "chmod $new_obf_mode $DIR/.lustre/fid failed"
10401
10402                 local obf_mode=$(stat --format=%a $DIR/.lustre/fid)
10403                 [ $obf_mode -eq $new_obf_mode ] ||
10404                         error "stat $DIR/.lustre/fid returned wrong mode $obf_mode"
10405
10406                 echo "restore mode of $DIR/.lustre/fid to $old_obf_mode"
10407                 chmod $old_obf_mode $DIR/.lustre/fid ||
10408                         error "chmod $old_obf_mode $DIR/.lustre/fid failed"
10409         fi
10410
10411         $OPENFILE -f O_LOV_DELAY_CREATE:O_CREAT $test_dir/$tfile-2
10412         fid=$($LFS path2fid $test_dir/$tfile-2)
10413
10414         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.50) ]
10415         then # LU-5424
10416                 echo "cp /etc/passwd $MOUNT/.lustre/fid/$fid"
10417                 cp /etc/passwd $MOUNT/.lustre/fid/$fid ||
10418                         error "create lov data thru .lustre failed"
10419         fi
10420         echo "cp /etc/passwd $test_dir/$tfile-2"
10421         cp /etc/passwd $test_dir/$tfile-2 ||
10422                 error "copy to $test_dir/$tfile-2 failed."
10423         echo "diff /etc/passwd $MOUNT/.lustre/fid/$fid"
10424         diff /etc/passwd $MOUNT/.lustre/fid/$fid ||
10425                 error "diff /etc/passwd $MOUNT/.lustre/fid/$fid failed."
10426
10427         rm -rf $test_dir/tfile.lnk
10428         rm -rf $test_dir/$tfile-2
10429 }
10430
10431 test_154A() {
10432         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
10433                 skip "Need MDS version at least 2.4.1" && return
10434
10435         local tf=$DIR/$tfile
10436         touch $tf
10437
10438         local fid=$($LFS path2fid $tf)
10439         [ -z "$fid" ] && error "path2fid unable to get $tf FID"
10440
10441         # check that we get the same pathname back
10442         local found=$($LFS fid2path $MOUNT "$fid")
10443         [ -z "$found" ] && error "fid2path unable to get '$fid' path"
10444         [ "$found" == "$tf" ] ||
10445                 error "fid2path($fid=path2fid($tf)) = $found != $tf"
10446 }
10447 run_test 154A "lfs path2fid and fid2path basic checks"
10448
10449 test_154B() {
10450         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
10451                 skip "Need MDS version at least 2.4.1" && return
10452
10453         mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
10454         touch $DIR/$tdir/$tfile || error "touch $DIR/$tdir/$tfile failed"
10455         local linkea=$($LL_DECODE_LINKEA $DIR/$tdir/$tfile | grep 'pfid')
10456         [ -z "$linkea" ] && error "decode linkea $DIR/$tdir/$tfile failed"
10457
10458         local name=$(echo $linkea | awk '/pfid/ {print $5}' | sed -e "s/'//g")
10459         local PFID=$(echo $linkea | awk '/pfid/ {print $3}' | sed -e "s/,//g")
10460
10461         # check that we get the same pathname
10462         echo "PFID: $PFID, name: $name"
10463         local FOUND=$($LFS fid2path $MOUNT "$PFID")
10464         [ -z "$FOUND" ] && error "fid2path unable to get $PFID path"
10465         [ "$FOUND/$name" != "$DIR/$tdir/$tfile" ] &&
10466                 error "ll_decode_linkea has $FOUND/$name != $DIR/$tdir/$tfile"
10467
10468         rm -rf $DIR/$tdir || error "Can not delete directory $DIR/$tdir"
10469 }
10470 run_test 154B "verify the ll_decode_linkea tool"
10471
10472 test_154a() {
10473         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10474         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ]] ||
10475                 { skip "Need MDS version at least 2.2.51"; return 0; }
10476         [ -z "$(which setfacl)" ] && skip "must have setfacl tool" && return
10477         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
10478
10479         cp /etc/hosts $DIR/$tfile
10480
10481         fid=$($LFS path2fid $DIR/$tfile)
10482         rc=$?
10483         [ $rc -ne 0 ] && error "error: could not get fid for $DIR/$tfile."
10484
10485         dot_lustre_fid_permission_check "$fid" $DIR ||
10486                 error "dot lustre permission check $fid failed"
10487
10488         rm -rf $MOUNT/.lustre && error ".lustre is not allowed to be unlinked"
10489
10490         touch $MOUNT/.lustre/file &&
10491                 error "creation is not allowed under .lustre"
10492
10493         mkdir $MOUNT/.lustre/dir &&
10494                 error "mkdir is not allowed under .lustre"
10495
10496         rm -rf $DIR/$tfile
10497 }
10498 run_test 154a "Open-by-FID"
10499
10500 test_154b() {
10501         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10502         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ]] ||
10503                 { skip "Need MDS version at least 2.2.51"; return 0; }
10504         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
10505
10506         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
10507
10508         local remote_dir=$DIR/$tdir/remote_dir
10509         local MDTIDX=1
10510         local rc=0
10511
10512         mkdir -p $DIR/$tdir
10513         $LFS mkdir -i $MDTIDX $remote_dir ||
10514                 error "create remote directory failed"
10515
10516         cp /etc/hosts $remote_dir/$tfile
10517
10518         fid=$($LFS path2fid $remote_dir/$tfile)
10519         rc=$?
10520         [ $rc -ne 0 ] && error "error: could not get fid for $remote_dir/$tfile"
10521
10522         dot_lustre_fid_permission_check "$fid" $remote_dir ||
10523                 error "dot lustre permission check $fid failed"
10524         rm -rf $DIR/$tdir
10525 }
10526 run_test 154b "Open-by-FID for remote directory"
10527
10528 test_154c() {
10529         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
10530                 skip "Need MDS version at least 2.4.1" && return
10531
10532         touch $DIR/$tfile.1 $DIR/$tfile.2 $DIR/$tfile.3
10533         local FID1=$($LFS path2fid $DIR/$tfile.1)
10534         local FID2=$($LFS path2fid $DIR/$tfile.2)
10535         local FID3=$($LFS path2fid $DIR/$tfile.3)
10536
10537         local N=1
10538         $LFS path2fid $DIR/$tfile.[123] | while read PATHNAME FID; do
10539                 [ "$PATHNAME" = "$DIR/$tfile.$N:" ] ||
10540                         error "path2fid pathname $PATHNAME != $DIR/$tfile.$N:"
10541                 local want=FID$N
10542                 [ "$FID" = "${!want}" ] ||
10543                         error "path2fid $PATHNAME FID $FID != FID$N ${!want}"
10544                 N=$((N + 1))
10545         done
10546
10547         $LFS fid2path $MOUNT "$FID1" "$FID2" "$FID3" | while read PATHNAME;
10548         do
10549                 [ "$PATHNAME" = "$DIR/$tfile.$N" ] ||
10550                         error "fid2path pathname $PATHNAME != $DIR/$tfile.$N:"
10551                 N=$((N + 1))
10552         done
10553 }
10554 run_test 154c "lfs path2fid and fid2path multiple arguments"
10555
10556 test_154d() {
10557         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10558         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.53) ]] &&
10559                 skip "Need MDS version at least 2.5.53" && return
10560
10561         if remote_mds; then
10562                 nid=$($LCTL list_nids | sed  "s/\./\\\./g")
10563         else
10564                 nid="0@lo"
10565         fi
10566         local proc_ofile="mdt.*.exports.'$nid'.open_files"
10567         local fd
10568         local cmd
10569
10570         rm -f $DIR/$tfile
10571         touch $DIR/$tfile
10572
10573         local fid=$($LFS path2fid $DIR/$tfile)
10574         # Open the file
10575         fd=$(free_fd)
10576         cmd="exec $fd<$DIR/$tfile"
10577         eval $cmd
10578         local fid_list=$(do_facet $SINGLEMDS $LCTL get_param $proc_ofile)
10579         echo "$fid_list" | grep "$fid"
10580         rc=$?
10581
10582         cmd="exec $fd>/dev/null"
10583         eval $cmd
10584         if [ $rc -ne 0 ]; then
10585                 error "FID $fid not found in open files list $fid_list"
10586         fi
10587 }
10588 run_test 154d "Verify open file fid"
10589
10590 test_154e()
10591 {
10592         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.50) ]] &&
10593                 skip "Need MDS version at least 2.6.50" && return
10594
10595         if ls -a $MOUNT | grep -q '^\.lustre$'; then
10596                 error ".lustre returned by readdir"
10597         fi
10598 }
10599 run_test 154e ".lustre is not returned by readdir"
10600
10601 test_154f() {
10602         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
10603         # create parent directory on a single MDT to avoid cross-MDT hardlinks
10604         test_mkdir -p -c1 $DIR/$tdir/d
10605         # test dirs inherit from its stripe
10606         mkdir -p $DIR/$tdir/d/foo1 || error "mkdir error"
10607         mkdir -p $DIR/$tdir/d/foo2 || error "mkdir error"
10608         cp /etc/hosts $DIR/$tdir/d/foo1/$tfile
10609         ln $DIR/$tdir/d/foo1/$tfile $DIR/$tdir/d/foo2/link
10610         touch $DIR/f
10611
10612         # get fid of parents
10613         local FID0=$($LFS path2fid $DIR/$tdir/d)
10614         local FID1=$($LFS path2fid $DIR/$tdir/d/foo1)
10615         local FID2=$($LFS path2fid $DIR/$tdir/d/foo2)
10616         local FID3=$($LFS path2fid $DIR)
10617
10618         # check that path2fid --parents returns expected <parent_fid>/name
10619         # 1) test for a directory (single parent)
10620         local parent=$($LFS path2fid --parents $DIR/$tdir/d/foo1)
10621         [ "$parent" == "$FID0/foo1" ] ||
10622                 error "expected parent: $FID0/foo1, got: $parent"
10623
10624         # 2) test for a file with nlink > 1 (multiple parents)
10625         parent=$($LFS path2fid --parents $DIR/$tdir/d/foo1/$tfile)
10626         echo "$parent" | grep -F "$FID1/$tfile" ||
10627                 error "$FID1/$tfile not returned in parent list"
10628         echo "$parent" | grep -F "$FID2/link" ||
10629                 error "$FID2/link not returned in parent list"
10630
10631         # 3) get parent by fid
10632         local file_fid=$($LFS path2fid $DIR/$tdir/d/foo1/$tfile)
10633         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
10634         echo "$parent" | grep -F "$FID1/$tfile" ||
10635                 error "$FID1/$tfile not returned in parent list (by fid)"
10636         echo "$parent" | grep -F "$FID2/link" ||
10637                 error "$FID2/link not returned in parent list (by fid)"
10638
10639         # 4) test for entry in root directory
10640         parent=$($LFS path2fid --parents $DIR/f)
10641         echo "$parent" | grep -F "$FID3/f" ||
10642                 error "$FID3/f not returned in parent list"
10643
10644         # 5) test it on root directory
10645         [ -z "$($LFS path2fid --parents $MOUNT 2>/dev/null)" ] ||
10646                 error "$MOUNT should not have parents"
10647
10648         # enable xattr caching and check that linkea is correctly updated
10649         local save="$TMP/$TESTSUITE-$TESTNAME.parameters"
10650         save_lustre_params client "llite.*.xattr_cache" > $save
10651         lctl set_param llite.*.xattr_cache 1
10652
10653         # 6.1) linkea update on rename
10654         mv $DIR/$tdir/d/foo1/$tfile $DIR/$tdir/d/foo2/$tfile.moved
10655
10656         # get parents by fid
10657         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
10658         # foo1 should no longer be returned in parent list
10659         echo "$parent" | grep -F "$FID1" &&
10660                 error "$FID1 should no longer be in parent list"
10661         # the new path should appear
10662         echo "$parent" | grep -F "$FID2/$tfile.moved" ||
10663                 error "$FID2/$tfile.moved is not in parent list"
10664
10665         # 6.2) linkea update on unlink
10666         rm -f $DIR/$tdir/d/foo2/link
10667         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
10668         # foo2/link should no longer be returned in parent list
10669         echo "$parent" | grep -F "$FID2/link" &&
10670                 error "$FID2/link should no longer be in parent list"
10671         true
10672
10673         rm -f $DIR/f
10674         restore_lustre_params < $save
10675         rm -f $save
10676 }
10677 run_test 154f "get parent fids by reading link ea"
10678
10679 test_154g()
10680 {
10681         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.92) ]] ||
10682                 { skip "Need MDS version at least 2.6.92"; return 0; }
10683         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
10684
10685         mkdir -p $DIR/$tdir
10686         llapi_fid_test -d $DIR/$tdir
10687 }
10688 run_test 154g "various llapi FID tests"
10689
10690 test_155_small_load() {
10691     local temp=$TMP/$tfile
10692     local file=$DIR/$tfile
10693
10694     dd if=/dev/urandom of=$temp bs=6096 count=1 || \
10695         error "dd of=$temp bs=6096 count=1 failed"
10696     cp $temp $file
10697     cancel_lru_locks osc
10698     cmp $temp $file || error "$temp $file differ"
10699
10700     $TRUNCATE $temp 6000
10701     $TRUNCATE $file 6000
10702     cmp $temp $file || error "$temp $file differ (truncate1)"
10703
10704     echo "12345" >>$temp
10705     echo "12345" >>$file
10706     cmp $temp $file || error "$temp $file differ (append1)"
10707
10708     echo "12345" >>$temp
10709     echo "12345" >>$file
10710     cmp $temp $file || error "$temp $file differ (append2)"
10711
10712     rm -f $temp $file
10713     true
10714 }
10715
10716 test_155_big_load() {
10717     remote_ost_nodsh && skip "remote OST with nodsh" && return
10718     local temp=$TMP/$tfile
10719     local file=$DIR/$tfile
10720
10721     free_min_max
10722     local cache_size=$(do_facet ost$((MAXI+1)) \
10723         "awk '/cache/ {sum+=\\\$4} END {print sum}' /proc/cpuinfo")
10724     local large_file_size=$((cache_size * 2))
10725
10726     echo "OSS cache size: $cache_size KB"
10727     echo "Large file size: $large_file_size KB"
10728
10729     [ $MAXV -le $large_file_size ] && \
10730         skip_env "max available OST size needs > $large_file_size KB" && \
10731         return 0
10732
10733     $SETSTRIPE $file -c 1 -i $MAXI || error "$SETSTRIPE $file failed"
10734
10735     dd if=/dev/urandom of=$temp bs=$large_file_size count=1k || \
10736         error "dd of=$temp bs=$large_file_size count=1k failed"
10737     cp $temp $file
10738     ls -lh $temp $file
10739     cancel_lru_locks osc
10740     cmp $temp $file || error "$temp $file differ"
10741
10742     rm -f $temp $file
10743     true
10744 }
10745
10746 save_writethrough() {
10747         local facets=$(get_facets OST)
10748
10749         save_lustre_params $facets "obdfilter.*.writethrough_cache_enable" > $1
10750         save_lustre_params $facets "osd-*.*.writethrough_cache_enable" >> $1
10751 }
10752
10753 test_155a() {
10754         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10755         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10756         save_writethrough $p
10757
10758         set_cache read on
10759         set_cache writethrough on
10760         test_155_small_load
10761         restore_lustre_params < $p
10762         rm -f $p
10763 }
10764 run_test 155a "Verify small file correctness: read cache:on write_cache:on"
10765
10766 test_155b() {
10767         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10768         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10769         save_writethrough $p
10770
10771         set_cache read on
10772         set_cache writethrough off
10773         test_155_small_load
10774         restore_lustre_params < $p
10775         rm -f $p
10776 }
10777 run_test 155b "Verify small file correctness: read cache:on write_cache:off"
10778
10779 test_155c() {
10780         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10781         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10782         save_writethrough $p
10783
10784         set_cache read off
10785         set_cache writethrough on
10786         test_155_small_load
10787         restore_lustre_params < $p
10788         rm -f $p
10789 }
10790 run_test 155c "Verify small file correctness: read cache:off write_cache:on"
10791
10792 test_155d() {
10793         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10794         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10795         save_writethrough $p
10796
10797         set_cache read off
10798         set_cache writethrough off
10799         test_155_small_load
10800         restore_lustre_params < $p
10801         rm -f $p
10802 }
10803 run_test 155d "Verify small file correctness: read cache:off write_cache:off"
10804
10805 test_155e() {
10806         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10807         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10808         save_writethrough $p
10809
10810         set_cache read on
10811         set_cache writethrough on
10812         test_155_big_load
10813         restore_lustre_params < $p
10814         rm -f $p
10815 }
10816 run_test 155e "Verify big file correctness: read cache:on write_cache:on"
10817
10818 test_155f() {
10819         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10820         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10821         save_writethrough $p
10822
10823         set_cache read on
10824         set_cache writethrough off
10825         test_155_big_load
10826         restore_lustre_params < $p
10827         rm -f $p
10828 }
10829 run_test 155f "Verify big file correctness: read cache:on write_cache:off"
10830
10831 test_155g() {
10832         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10833         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10834         save_writethrough $p
10835
10836         set_cache read off
10837         set_cache writethrough on
10838         test_155_big_load
10839         restore_lustre_params < $p
10840         rm -f $p
10841 }
10842 run_test 155g "Verify big file correctness: read cache:off write_cache:on"
10843
10844 test_155h() {
10845         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10846         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10847         save_writethrough $p
10848
10849         set_cache read off
10850         set_cache writethrough off
10851         test_155_big_load
10852         restore_lustre_params < $p
10853         rm -f $p
10854 }
10855 run_test 155h "Verify big file correctness: read cache:off write_cache:off"
10856
10857 test_156() {
10858         remote_ost_nodsh && skip "remote OST with nodsh" && return
10859         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10860         local CPAGES=3
10861         local BEFORE
10862         local AFTER
10863         local file="$DIR/$tfile"
10864         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10865
10866         [ "$(facet_fstype ost1)" = "zfs" -a \
10867            $(lustre_version_code ost1 -lt $(version_code 2.6.93)) ] &&
10868                 skip "LU-1956/LU-2261: stats not implemented on OSD ZFS" &&
10869                 return
10870
10871         save_writethrough $p
10872         roc_hit_init
10873
10874         log "Turn on read and write cache"
10875         set_cache read on
10876         set_cache writethrough on
10877
10878         log "Write data and read it back."
10879         log "Read should be satisfied from the cache."
10880         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
10881         BEFORE=$(roc_hit)
10882         cancel_lru_locks osc
10883         cat $file >/dev/null
10884         AFTER=$(roc_hit)
10885         if ! let "AFTER - BEFORE == CPAGES"; then
10886                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
10887         else
10888                 log "cache hits:: before: $BEFORE, after: $AFTER"
10889         fi
10890
10891         log "Read again; it should be satisfied from the cache."
10892         BEFORE=$AFTER
10893         cancel_lru_locks osc
10894         cat $file >/dev/null
10895         AFTER=$(roc_hit)
10896         if ! let "AFTER - BEFORE == CPAGES"; then
10897                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
10898         else
10899                 log "cache hits:: before: $BEFORE, after: $AFTER"
10900         fi
10901
10902         log "Turn off the read cache and turn on the write cache"
10903         set_cache read off
10904         set_cache writethrough on
10905
10906         log "Read again; it should be satisfied from the cache."
10907         BEFORE=$(roc_hit)
10908         cancel_lru_locks osc
10909         cat $file >/dev/null
10910         AFTER=$(roc_hit)
10911         if ! let "AFTER - BEFORE == CPAGES"; then
10912                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
10913         else
10914                 log "cache hits:: before: $BEFORE, after: $AFTER"
10915         fi
10916
10917         log "Read again; it should not be satisfied from the cache."
10918         BEFORE=$AFTER
10919         cancel_lru_locks osc
10920         cat $file >/dev/null
10921         AFTER=$(roc_hit)
10922         if ! let "AFTER - BEFORE == 0"; then
10923                 error "IN CACHE: before: $BEFORE, after: $AFTER"
10924         else
10925                 log "cache hits:: before: $BEFORE, after: $AFTER"
10926         fi
10927
10928         log "Write data and read it back."
10929         log "Read should be satisfied from the cache."
10930         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
10931         BEFORE=$(roc_hit)
10932         cancel_lru_locks osc
10933         cat $file >/dev/null
10934         AFTER=$(roc_hit)
10935         if ! let "AFTER - BEFORE == CPAGES"; then
10936                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
10937         else
10938                 log "cache hits:: before: $BEFORE, after: $AFTER"
10939         fi
10940
10941         log "Read again; it should not be satisfied from the cache."
10942         BEFORE=$AFTER
10943         cancel_lru_locks osc
10944         cat $file >/dev/null
10945         AFTER=$(roc_hit)
10946         if ! let "AFTER - BEFORE == 0"; then
10947                 error "IN CACHE: before: $BEFORE, after: $AFTER"
10948         else
10949                 log "cache hits:: before: $BEFORE, after: $AFTER"
10950         fi
10951
10952         log "Turn off read and write cache"
10953         set_cache read off
10954         set_cache writethrough off
10955
10956         log "Write data and read it back"
10957         log "It should not be satisfied from the cache."
10958         rm -f $file
10959         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
10960         cancel_lru_locks osc
10961         BEFORE=$(roc_hit)
10962         cat $file >/dev/null
10963         AFTER=$(roc_hit)
10964         if ! let "AFTER - BEFORE == 0"; then
10965                 error_ignore bz20762 "IN CACHE: before: $BEFORE, after: $AFTER"
10966         else
10967                 log "cache hits:: before: $BEFORE, after: $AFTER"
10968         fi
10969
10970         log "Turn on the read cache and turn off the write cache"
10971         set_cache read on
10972         set_cache writethrough off
10973
10974         log "Write data and read it back"
10975         log "It should not be satisfied from the cache."
10976         rm -f $file
10977         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
10978         BEFORE=$(roc_hit)
10979         cancel_lru_locks osc
10980         cat $file >/dev/null
10981         AFTER=$(roc_hit)
10982         if ! let "AFTER - BEFORE == 0"; then
10983                 error_ignore bz20762 "IN CACHE: before: $BEFORE, after: $AFTER"
10984         else
10985                 log "cache hits:: before: $BEFORE, after: $AFTER"
10986         fi
10987
10988         log "Read again; it should be satisfied from the cache."
10989         BEFORE=$(roc_hit)
10990         cancel_lru_locks osc
10991         cat $file >/dev/null
10992         AFTER=$(roc_hit)
10993         if ! let "AFTER - BEFORE == CPAGES"; then
10994                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
10995         else
10996                 log "cache hits:: before: $BEFORE, after: $AFTER"
10997         fi
10998
10999         rm -f $file
11000         restore_lustre_params < $p
11001         rm -f $p
11002 }
11003 run_test 156 "Verification of tunables"
11004
11005 #Changelogs
11006 cleanup_changelog () {
11007         trap 0
11008         echo "Deregistering changelog client $CL_USER"
11009         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister $CL_USER
11010 }
11011
11012 err17935 () {
11013         if [[ $MDSCOUNT -gt 1 ]]; then
11014                 error_ignore bz17935 $*
11015         else
11016                 error $*
11017         fi
11018 }
11019
11020 changelog_chmask()
11021 {
11022         local CL_MASK_PARAM="mdd.$MDT0.changelog_mask"
11023
11024         MASK=$(do_facet $SINGLEMDS $LCTL get_param $CL_MASK_PARAM| grep -c "$1")
11025
11026         if [ $MASK -eq 1 ]; then
11027                 do_facet $SINGLEMDS $LCTL set_param $CL_MASK_PARAM="-$1"
11028         else
11029                 do_facet $SINGLEMDS $LCTL set_param $CL_MASK_PARAM="+$1"
11030         fi
11031 }
11032
11033 changelog_extract_field() {
11034         local mdt=$1
11035         local cltype=$2
11036         local file=$3
11037         local identifier=$4
11038
11039         $LFS changelog $mdt | gawk "/$cltype.*$file$/ {
11040                 print gensub(/^.* "$identifier'(\[[^\]]*\]).*$/,"\\1",1)}' |
11041                 tail -1
11042 }
11043
11044 test_160a() {
11045         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11046         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11047         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] ||
11048                 { skip "Need MDS version at least 2.2.0"; return; }
11049
11050         local CL_USERS="mdd.$MDT0.changelog_users"
11051         local GET_CL_USERS="do_facet $SINGLEMDS $LCTL get_param -n $CL_USERS"
11052         CL_USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
11053                 changelog_register -n)
11054         echo "Registered as changelog user $CL_USER"
11055         trap cleanup_changelog EXIT
11056         $GET_CL_USERS | grep -q $CL_USER ||
11057                 error "User $CL_USER not found in changelog_users"
11058
11059         # change something
11060         test_mkdir -p $DIR/$tdir/pics/2008/zachy
11061         touch $DIR/$tdir/pics/2008/zachy/timestamp
11062         cp /etc/hosts $DIR/$tdir/pics/2008/zachy/pic1.jpg
11063         mv $DIR/$tdir/pics/2008/zachy $DIR/$tdir/pics/zach
11064         ln $DIR/$tdir/pics/zach/pic1.jpg $DIR/$tdir/pics/2008/portland.jpg
11065         ln -s $DIR/$tdir/pics/2008/portland.jpg $DIR/$tdir/pics/desktop.jpg
11066         rm $DIR/$tdir/pics/desktop.jpg
11067
11068         $LFS changelog $MDT0 | tail -5
11069
11070         echo "verifying changelog mask"
11071         changelog_chmask "MKDIR"
11072         changelog_chmask "CLOSE"
11073
11074         test_mkdir -p $DIR/$tdir/pics/zach/sofia
11075         echo "zzzzzz" > $DIR/$tdir/pics/zach/file
11076
11077         changelog_chmask "MKDIR"
11078         changelog_chmask "CLOSE"
11079
11080         test_mkdir -p $DIR/$tdir/pics/2008/sofia
11081         echo "zzzzzz" > $DIR/$tdir/pics/zach/file
11082
11083         $LFS changelog $MDT0
11084         MKDIRS=$($LFS changelog $MDT0 | tail -5 | grep -c "MKDIR")
11085         CLOSES=$($LFS changelog $MDT0 | tail -5 | grep -c "CLOSE")
11086         [ $MKDIRS -eq 1 ] || err17935 "MKDIR changelog mask count $DIRS != 1"
11087         [ $CLOSES -eq 1 ] || err17935 "CLOSE changelog mask count $DIRS != 1"
11088
11089         # verify contents
11090         echo "verifying target fid"
11091         fidc=$(changelog_extract_field $MDT0 "CREAT" "timestamp" "t=")
11092         fidf=$($LFS path2fid $DIR/$tdir/pics/zach/timestamp)
11093         [ "$fidc" == "$fidf" ] ||
11094                 err17935 "fid in changelog $fidc != file fid $fidf"
11095         echo "verifying parent fid"
11096         fidc=$(changelog_extract_field $MDT0 "CREAT" "timestamp" "p=")
11097         fidf=$($LFS path2fid $DIR/$tdir/pics/zach)
11098         [ "$fidc" == "$fidf" ] ||
11099                 err17935 "pfid in changelog $fidc != dir fid $fidf"
11100
11101         USER_REC1=$($GET_CL_USERS | awk "\$1 == \"$CL_USER\" {print \$2}")
11102         $LFS changelog_clear $MDT0 $CL_USER $(($USER_REC1 + 5))
11103         USER_REC2=$($GET_CL_USERS | awk "\$1 == \"$CL_USER\" {print \$2}")
11104         echo "verifying user clear: $(( $USER_REC1 + 5 )) == $USER_REC2"
11105         [ $USER_REC2 == $(($USER_REC1 + 5)) ] ||
11106                 err17935 "user index expected $(($USER_REC1 + 5)) is $USER_REC2"
11107
11108         MIN_REC=$($GET_CL_USERS |
11109                 awk 'min == "" || $2 < min {min = $2}; END {print min}')
11110         FIRST_REC=$($LFS changelog $MDT0 | head -n1 | awk '{print $1}')
11111         echo "verifying min purge: $(( $MIN_REC + 1 )) == $FIRST_REC"
11112         [ $FIRST_REC == $(($MIN_REC + 1)) ] ||
11113                 err17935 "first index should be $(($MIN_REC + 1)) is $FIRST_REC"
11114
11115         # LU-3446 changelog index reset on MDT restart
11116         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
11117         CUR_REC1=$($GET_CL_USERS | head -n1 | cut -f3 -d' ')
11118         $LFS changelog_clear $MDT0 $CL_USER 0
11119         stop $SINGLEMDS || error "Fail to stop MDT."
11120         start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS || error "Fail to start MDT."
11121         CUR_REC2=$($GET_CL_USERS | head -n1 | cut -f3 -d' ')
11122         echo "verifying index survives MDT restart: $CUR_REC1 == $CUR_REC2"
11123         [ $CUR_REC1 == $CUR_REC2 ] ||
11124                 err17935 "current index should be $CUR_REC1 is $CUR_REC2"
11125
11126         echo "verifying user deregister"
11127         cleanup_changelog
11128         $GET_CL_USERS | grep -q $CL_USER &&
11129                 error "User $CL_USER still in changelog_users"
11130
11131         USERS=$(( $($GET_CL_USERS | wc -l) - 2 ))
11132         if [ $CL_USER -eq 0 ]; then
11133                 LAST_REC1=$($GET_CL_USERS | head -n1 | cut -f3 -d' ')
11134                 touch $DIR/$tdir/chloe
11135                 LAST_REC2=$($GET_CL_USERS | head -n1 | cut -f3 -d' ')
11136                 echo "verify changelogs are off: $LAST_REC1 == $LAST_REC2"
11137                 [ $LAST_REC1 == $LAST_REC2 ] || error "changelogs not off"
11138         else
11139                 echo "$CL_USER other changelog users; can't verify off"
11140         fi
11141 }
11142 run_test 160a "changelog sanity"
11143
11144 test_160b() { # LU-3587
11145         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11146         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11147         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] ||
11148                 { skip "Need MDS version at least 2.2.0"; return; }
11149
11150         local CL_USERS="mdd.$MDT0.changelog_users"
11151         local GET_CL_USERS="do_facet $SINGLEMDS $LCTL get_param -n $CL_USERS"
11152         CL_USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
11153                 changelog_register -n)
11154         echo "Registered as changelog user $CL_USER"
11155         trap cleanup_changelog EXIT
11156         $GET_CL_USERS | grep -q $CL_USER ||
11157                 error "User $CL_USER not found in changelog_users"
11158
11159         local LONGNAME1=$(str_repeat a 255)
11160         local LONGNAME2=$(str_repeat b 255)
11161
11162         cd $DIR
11163         echo "creating very long named file"
11164         touch $LONGNAME1 || error "create of $LONGNAME1 failed"
11165         echo "moving very long named file"
11166         mv $LONGNAME1 $LONGNAME2
11167
11168         $LFS changelog $MDT0 | grep RENME
11169         rm -f $LONGNAME2
11170         cleanup_changelog
11171 }
11172 run_test 160b "Verify that very long rename doesn't crash in changelog"
11173
11174 test_160c() {
11175         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11176
11177         local rc=0
11178         local server_version=$(lustre_version_code $SINGLEMDS)
11179
11180         [[ $server_version -gt $(version_code 2.5.57) ]] ||
11181                 [[ $server_version -gt $(version_code 2.5.1) &&
11182                    $server_version -lt $(version_code 2.5.50) ]] ||
11183                 { skip "Need MDS version at least 2.5.58 or 2.5.2+"; return; }
11184         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11185
11186         # Registration step
11187         CL_USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
11188                 changelog_register -n)
11189         trap cleanup_changelog EXIT
11190
11191         rm -rf $DIR/$tdir
11192         mkdir -p $DIR/$tdir
11193         $MCREATE $DIR/$tdir/foo_160c
11194         changelog_chmask "TRUNC"
11195         $TRUNCATE $DIR/$tdir/foo_160c 200
11196         changelog_chmask "TRUNC"
11197         $TRUNCATE $DIR/$tdir/foo_160c 199
11198         $LFS changelog $MDT0
11199         TRUNCS=$($LFS changelog $MDT0 | tail -5 | grep -c "TRUNC")
11200         [ $TRUNCS -eq 1 ] || err17935 "TRUNC changelog mask count $TRUNCS != 1"
11201         $LFS changelog_clear $MDT0 $CL_USER 0
11202
11203         # Deregistration step
11204         cleanup_changelog
11205 }
11206 run_test 160c "verify that changelog log catch the truncate event"
11207
11208 test_160d() {
11209         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11210         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
11211
11212         local server_version=$(lustre_version_code mds1)
11213         local CL_MASK_PARAM="mdd.$MDT0.changelog_mask"
11214
11215         [[ $server_version -ge $(version_code 2.7.60) ]] ||
11216                 { skip "Need MDS version at least 2.7.60+"; return; }
11217         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11218
11219         # Registration step
11220         CL_USER=$(do_facet mds1 $LCTL --device $MDT0 \
11221                 changelog_register -n)
11222
11223         trap cleanup_changelog EXIT
11224         mkdir -p $DIR/$tdir/migrate_dir
11225         $LFS changelog_clear $MDT0 $CL_USER 0
11226
11227         $LFS migrate -m 1 $DIR/$tdir/migrate_dir || error "migrate fails"
11228         $LFS changelog $MDT0
11229         MIGRATES=$($LFS changelog $MDT0 | tail -5 | grep -c "MIGRT")
11230         $LFS changelog_clear $MDT0 $CL_USER 0
11231         [ $MIGRATES -eq 1 ] ||
11232                 error "MIGRATE changelog mask count $MIGRATES != 1"
11233
11234         # Deregistration step
11235         cleanup_changelog
11236 }
11237 run_test 160d "verify that changelog log catch the migrate event"
11238
11239 test_160e() {
11240         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11241
11242         # Create a user
11243         CL_USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
11244                 changelog_register -n)
11245         echo "Registered as changelog user $CL_USER"
11246         trap cleanup_changelog EXIT
11247
11248         # Delete a future user (expect fail)
11249         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister cl77
11250         local rc=$?
11251
11252         if [ $rc -eq 0 ]; then
11253                 error "Deleted non-existant user cl77"
11254         elif [ $rc -ne 2 ]; then
11255                 error "changelog_deregister failed with $rc, " \
11256                         "expected 2 (ENOENT)"
11257         fi
11258
11259         # Clear to a bad index (1 billion should be safe)
11260         $LFS changelog_clear $MDT0 $CL_USER 1000000000
11261         rc=$?
11262
11263         if [ $rc -eq 0 ]; then
11264                 error "Successfully cleared to invalid CL index"
11265         elif [ $rc -ne 22 ]; then
11266                 error "changelog_clear failed with $rc, expected 22 (EINVAL)"
11267         fi
11268 }
11269 run_test 160e "changelog negative testing"
11270
11271 test_161a() {
11272         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11273         test_mkdir -p -c1 $DIR/$tdir
11274         cp /etc/hosts $DIR/$tdir/$tfile
11275         test_mkdir -c1 $DIR/$tdir/foo1
11276         test_mkdir -c1 $DIR/$tdir/foo2
11277         ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/sofia
11278         ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/zachary
11279         ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/luna
11280         ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/thor
11281         local FID=$($LFS path2fid $DIR/$tdir/$tfile | tr -d '[]')
11282         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
11283                 $LFS fid2path $DIR $FID
11284                 err17935 "bad link ea"
11285         fi
11286     # middle
11287     rm $DIR/$tdir/foo2/zachary
11288     # last
11289     rm $DIR/$tdir/foo2/thor
11290     # first
11291     rm $DIR/$tdir/$tfile
11292     # rename
11293     mv $DIR/$tdir/foo1/sofia $DIR/$tdir/foo2/maggie
11294     if [ "$($LFS fid2path $FSNAME --link 1 $FID)" != "$tdir/foo2/maggie" ]
11295         then
11296         $LFS fid2path $DIR $FID
11297         err17935 "bad link rename"
11298     fi
11299     rm $DIR/$tdir/foo2/maggie
11300
11301         # overflow the EA
11302         local longname=filename_avg_len_is_thirty_two_
11303         createmany -l$DIR/$tdir/foo1/luna $DIR/$tdir/foo2/$longname 1000 ||
11304                 error "failed to hardlink many files"
11305         links=$($LFS fid2path $DIR $FID | wc -l)
11306         echo -n "${links}/1000 links in link EA"
11307         [[ $links -gt 60 ]] ||
11308                 err17935 "expected at least 60 links in link EA"
11309         unlinkmany $DIR/$tdir/foo2/$longname 1000 ||
11310                 error "failed to unlink many hardlinks"
11311 }
11312 run_test 161a "link ea sanity"
11313
11314 test_161b() {
11315         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11316         [ $MDSCOUNT -lt 2 ] && skip "skipping remote directory test" && return
11317         local MDTIDX=1
11318         local remote_dir=$DIR/$tdir/remote_dir
11319
11320         mkdir -p $DIR/$tdir
11321         $LFS mkdir -i $MDTIDX $remote_dir ||
11322                 error "create remote directory failed"
11323
11324         cp /etc/hosts $remote_dir/$tfile
11325         mkdir -p $remote_dir/foo1
11326         mkdir -p $remote_dir/foo2
11327         ln $remote_dir/$tfile $remote_dir/foo1/sofia
11328         ln $remote_dir/$tfile $remote_dir/foo2/zachary
11329         ln $remote_dir/$tfile $remote_dir/foo1/luna
11330         ln $remote_dir/$tfile $remote_dir/foo2/thor
11331
11332         local FID=$($LFS path2fid $remote_dir/$tfile | tr -d '[' |
11333                      tr -d ']')
11334         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
11335                 $LFS fid2path $DIR $FID
11336                 err17935 "bad link ea"
11337         fi
11338         # middle
11339         rm $remote_dir/foo2/zachary
11340         # last
11341         rm $remote_dir/foo2/thor
11342         # first
11343         rm $remote_dir/$tfile
11344         # rename
11345         mv $remote_dir/foo1/sofia $remote_dir/foo2/maggie
11346         local link_path=$($LFS fid2path $FSNAME --link 1 $FID)
11347         if [ "$DIR/$link_path" != "$remote_dir/foo2/maggie" ]; then
11348                 $LFS fid2path $DIR $FID
11349                 err17935 "bad link rename"
11350         fi
11351         rm $remote_dir/foo2/maggie
11352
11353         # overflow the EA
11354         local longname=filename_avg_len_is_thirty_two_
11355         createmany -l$remote_dir/foo1/luna $remote_dir/foo2/$longname 1000 ||
11356                 error "failed to hardlink many files"
11357         links=$($LFS fid2path $DIR $FID | wc -l)
11358         echo -n "${links}/1000 links in link EA"
11359         [[ ${links} -gt 60 ]] ||
11360                 err17935 "expected at least 60 links in link EA"
11361         unlinkmany $remote_dir/foo2/$longname 1000 ||
11362         error "failed to unlink many hardlinks"
11363 }
11364 run_test 161b "link ea sanity under remote directory"
11365
11366 test_161c() {
11367         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11368         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11369         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.1.5) ]] &&
11370                 skip "Need MDS version at least 2.1.5" && return
11371
11372         # define CLF_RENAME_LAST 0x0001
11373         # rename overwrite a target having nlink = 1 (changelog flag 0x1)
11374         CL_USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
11375                 changelog_register -n)
11376
11377         trap cleanup_changelog EXIT
11378         rm -rf $DIR/$tdir
11379         mkdir -p $DIR/$tdir
11380         touch $DIR/$tdir/foo_161c
11381         touch $DIR/$tdir/bar_161c
11382         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/bar_161c
11383         $LFS changelog $MDT0 | grep RENME
11384         local flags=$($LFS changelog $MDT0 | grep RENME | tail -1 | \
11385                 cut -f5 -d' ')
11386         $LFS changelog_clear $MDT0 $CL_USER 0
11387         if [ x$flags != "x0x1" ]; then
11388                 error "flag $flags is not 0x1"
11389         fi
11390         echo "rename overwrite a target having nlink = 1," \
11391                 "changelog record has flags of $flags"
11392
11393         # rename overwrite a target having nlink > 1 (changelog flag 0x0)
11394         touch $DIR/$tdir/foo_161c
11395         touch $DIR/$tdir/bar_161c
11396         ln $DIR/$tdir/bar_161c $DIR/$tdir/foobar_161c
11397         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/bar_161c
11398         $LFS changelog $MDT0 | grep RENME
11399         flags=$($LFS changelog $MDT0 | grep RENME | tail -1 | cut -f5 -d' ')
11400         $LFS changelog_clear $MDT0 $CL_USER 0
11401         if [ x$flags != "x0x0" ]; then
11402                 error "flag $flags is not 0x0"
11403         fi
11404         echo "rename overwrite a target having nlink > 1," \
11405                 "changelog record has flags of $flags"
11406
11407         # rename doesn't overwrite a target (changelog flag 0x0)
11408         touch $DIR/$tdir/foo_161c
11409         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/foo2_161c
11410         $LFS changelog $MDT0 | grep RENME
11411         flags=$($LFS changelog $MDT0 | grep RENME | tail -1 | cut -f5 -d' ')
11412         $LFS changelog_clear $MDT0 $CL_USER 0
11413         if [ x$flags != "x0x0" ]; then
11414                 error "flag $flags is not 0x0"
11415         fi
11416         echo "rename doesn't overwrite a target," \
11417                 "changelog record has flags of $flags"
11418
11419         # define CLF_UNLINK_LAST 0x0001
11420         # unlink a file having nlink = 1 (changelog flag 0x1)
11421         rm -f $DIR/$tdir/foo2_161c
11422         $LFS changelog $MDT0 | grep UNLNK
11423         flags=$($LFS changelog $MDT0 | grep UNLNK | tail -1 | cut -f5 -d' ')
11424         $LFS changelog_clear $MDT0 $CL_USER 0
11425         if [ x$flags != "x0x1" ]; then
11426                 error "flag $flags is not 0x1"
11427         fi
11428         echo "unlink a file having nlink = 1," \
11429                 "changelog record has flags of $flags"
11430
11431         # unlink a file having nlink > 1 (changelog flag 0x0)
11432         ln -f $DIR/$tdir/bar_161c $DIR/$tdir/foobar_161c
11433         rm -f $DIR/$tdir/foobar_161c
11434         $LFS changelog $MDT0 | grep UNLNK
11435         flags=$($LFS changelog $MDT0 | grep UNLNK | tail -1 | cut -f5 -d' ')
11436         $LFS changelog_clear $MDT0 $CL_USER 0
11437         if [ x$flags != "x0x0" ]; then
11438                 error "flag $flags is not 0x0"
11439         fi
11440         echo "unlink a file having nlink > 1," \
11441                 "changelog record has flags of $flags"
11442         cleanup_changelog
11443 }
11444 run_test 161c "check CL_RENME[UNLINK] changelog record flags"
11445
11446 test_161d() {
11447         local user
11448         local pid
11449         local fid
11450
11451         # cleanup previous run
11452         rm -rf $DIR/$tdir/$tfile
11453
11454         user=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
11455                 changelog_register -n)
11456         [[ $? -eq 0 ]] || error "changelog_register failed"
11457
11458         # work in a standalone dir to avoid locking on $DIR/$MOUNT to
11459         # interfer with $MOUNT/.lustre/fid/ access
11460         mkdir $DIR/$tdir
11461         [[ $? -eq 0 ]] || error "mkdir failed"
11462
11463         #define OBD_FAIL_LLITE_CREATE_NODE_PAUSE 0x140c | OBD_FAIL_ONCE
11464         $LCTL set_param fail_loc=0x8000140c
11465         # 5s pause
11466         $LCTL set_param fail_val=5
11467
11468         # create file
11469         echo foofoo > $DIR/$tdir/$tfile &
11470         pid=$!
11471
11472         # wait for create to be delayed
11473         sleep 2
11474
11475         ps -p $pid
11476         [[ $? -eq 0 ]] || error "create should be blocked"
11477
11478         local tempfile=$(mktemp)
11479         fid=$(changelog_extract_field $MDT0 "CREAT" "$tfile" "t=")
11480         cat $MOUNT/.lustre/fid/$fid 2>/dev/null >$tempfile || error "cat failed"
11481         # some delay may occur during ChangeLog publishing and file read just
11482         # above, that could allow file write to happen finally
11483         [[ -s $tempfile ]] && echo "file should be empty"
11484
11485         $LCTL set_param fail_loc=0
11486
11487         wait $pid
11488         [[ $? -eq 0 ]] || error "create failed"
11489
11490         $LFS changelog_clear $MDT0 $user 0
11491         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister $user
11492 }
11493 run_test 161d "create with concurrent .lustre/fid access"
11494
11495 check_path() {
11496     local expected=$1
11497     shift
11498     local fid=$2
11499
11500     local path=$(${LFS} fid2path $*)
11501     # Remove the '//' indicating a remote directory
11502     path=$(echo $path | sed 's#//#/#g')
11503     RC=$?
11504
11505     if [ $RC -ne 0 ]; then
11506         err17935 "path looked up of $expected failed. Error $RC"
11507         return $RC
11508     elif [ "${path}" != "${expected}" ]; then
11509         err17935 "path looked up \"${path}\" instead of \"${expected}\""
11510         return 2
11511     fi
11512     echo "fid $fid resolves to path $path (expected $expected)"
11513 }
11514
11515 test_162a() { # was test_162
11516         # Make changes to filesystem
11517         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11518         test_mkdir -p -c1 $DIR/$tdir/d2
11519         touch $DIR/$tdir/d2/$tfile
11520         touch $DIR/$tdir/d2/x1
11521         touch $DIR/$tdir/d2/x2
11522         test_mkdir -p -c1 $DIR/$tdir/d2/a/b/c
11523         test_mkdir -p -c1 $DIR/$tdir/d2/p/q/r
11524         # regular file
11525         FID=$($LFS path2fid $DIR/$tdir/d2/$tfile | tr -d '[]')
11526         check_path "$tdir/d2/$tfile" $FSNAME $FID --link 0 ||
11527                 error "check path $tdir/d2/$tfile failed"
11528
11529         # softlink
11530         ln -s $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/slink
11531         FID=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink | tr -d '[]')
11532         check_path "$tdir/d2/p/q/r/slink" $FSNAME $FID --link 0 ||
11533                 error "check path $tdir/d2/p/q/r/slink failed"
11534
11535         # softlink to wrong file
11536         ln -s /this/is/garbage $DIR/$tdir/d2/p/q/r/slink.wrong
11537         FID=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink.wrong | tr -d '[]')
11538         check_path "$tdir/d2/p/q/r/slink.wrong" $FSNAME $FID --link 0 ||
11539                 error "check path $tdir/d2/p/q/r/slink.wrong failed"
11540
11541         # hardlink
11542         ln $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/hlink
11543         mv $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/a/b/c/new_file
11544         FID=$($LFS path2fid $DIR/$tdir/d2/a/b/c/new_file | tr -d '[]')
11545         # fid2path dir/fsname should both work
11546         check_path "$tdir/d2/a/b/c/new_file" $FSNAME $FID --link 1 ||
11547                 error "check path $tdir/d2/a/b/c/new_file failed"
11548         check_path "$DIR/$tdir/d2/p/q/r/hlink" $DIR $FID --link 0 ||
11549                 error "check path $DIR/$tdir/d2/p/q/r/hlink failed"
11550
11551         # hardlink count: check that there are 2 links
11552         # Doesnt work with CMD yet: 17935
11553         ${LFS} fid2path $DIR $FID | wc -l | grep -q 2 || \
11554                 err17935 "expected 2 links"
11555
11556         # hardlink indexing: remove the first link
11557         rm $DIR/$tdir/d2/p/q/r/hlink
11558         check_path "$tdir/d2/a/b/c/new_file" $FSNAME $FID --link 0 ||
11559                 error "check path $DIR/$tdir/d2/a/b/c/new_file failed"
11560
11561         return 0
11562 }
11563 run_test 162a "path lookup sanity"
11564
11565 test_162b() {
11566         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11567         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
11568
11569         mkdir $DIR/$tdir
11570         $LFS setdirstripe -i0 -c$MDSCOUNT -t all_char $DIR/$tdir/striped_dir ||
11571                                 error "create striped dir failed"
11572
11573         local FID=$($LFS getdirstripe $DIR/$tdir/striped_dir |
11574                                         tail -n 1 | awk '{print $2}')
11575         stat $MOUNT/.lustre/fid/$FID && error "sub_stripe can be accessed"
11576
11577         touch $DIR/$tdir/striped_dir/f{0..4} || error "touch f0..4 failed"
11578         mkdir $DIR/$tdir/striped_dir/d{0..4} || error "mkdir d0..4 failed"
11579
11580         # regular file
11581         for ((i=0;i<5;i++)); do
11582                 FID=$($LFS path2fid $DIR/$tdir/striped_dir/f$i | tr -d '[]') ||
11583                         error "get fid for f$i failed"
11584                 check_path "$tdir/striped_dir/f$i" $FSNAME $FID --link 0 ||
11585                         error "check path $tdir/striped_dir/f$i failed"
11586
11587                 FID=$($LFS path2fid $DIR/$tdir/striped_dir/d$i | tr -d '[]') ||
11588                         error "get fid for d$i failed"
11589                 check_path "$tdir/striped_dir/d$i" $FSNAME $FID --link 0 ||
11590                         error "check path $tdir/striped_dir/d$i failed"
11591         done
11592
11593         return 0
11594 }
11595 run_test 162b "striped directory path lookup sanity"
11596
11597 # LU-4239: Verify fid2path works with paths 100 or more directories deep
11598 test_162c() {
11599         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.51) ]] &&
11600                 skip "Need MDS version at least 2.7.51" && return
11601         test_mkdir $DIR/$tdir.local
11602         test_mkdir $DIR/$tdir.remote
11603         local lpath=$tdir.local
11604         local rpath=$tdir.remote
11605
11606         for ((i = 0; i <= 101; i++)); do
11607                 lpath="$lpath/$i"
11608                 mkdir $DIR/$lpath
11609                 FID=$($LFS path2fid $DIR/$lpath | tr -d '[]') ||
11610                         error "get fid for local directory $DIR/$lpath failed"
11611                 check_path "$DIR/$lpath" $MOUNT $FID --link 0 ||
11612                         error "check path for local directory $DIR/$lpath failed"
11613
11614                 rpath="$rpath/$i"
11615                 test_mkdir $DIR/$rpath
11616                 FID=$($LFS path2fid $DIR/$rpath | tr -d '[]') ||
11617                         error "get fid for remote directory $DIR/$rpath failed"
11618                 check_path "$DIR/$rpath" $MOUNT $FID --link 0 ||
11619                         error "check path for remote directory $DIR/$rpath failed"
11620         done
11621
11622         return 0
11623 }
11624 run_test 162c "fid2path works with paths 100 or more directories deep"
11625
11626 test_169() {
11627         # do directio so as not to populate the page cache
11628         log "creating a 10 Mb file"
11629         $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
11630         log "starting reads"
11631         dd if=$DIR/$tfile of=/dev/null bs=4096 &
11632         log "truncating the file"
11633         $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
11634         log "killing dd"
11635         kill %+ || true # reads might have finished
11636         echo "wait until dd is finished"
11637         wait
11638         log "removing the temporary file"
11639         rm -rf $DIR/$tfile || error "tmp file removal failed"
11640 }
11641 run_test 169 "parallel read and truncate should not deadlock"
11642
11643 test_170() {
11644         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11645         $LCTL clear     # bug 18514
11646         $LCTL debug_daemon start $TMP/${tfile}_log_good
11647         touch $DIR/$tfile
11648         $LCTL debug_daemon stop
11649         sed -e "s/^...../a/g" $TMP/${tfile}_log_good > $TMP/${tfile}_log_bad ||
11650                error "sed failed to read log_good"
11651
11652         $LCTL debug_daemon start $TMP/${tfile}_log_good
11653         rm -rf $DIR/$tfile
11654         $LCTL debug_daemon stop
11655
11656         $LCTL df $TMP/${tfile}_log_bad > $TMP/${tfile}_log_bad.out 2>&1 ||
11657                error "lctl df log_bad failed"
11658
11659         local bad_line=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
11660         local good_line1=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
11661
11662         $LCTL df $TMP/${tfile}_log_good > $TMP/${tfile}_log_good.out 2>&1
11663         local good_line2=$(tail -n 1 $TMP/${tfile}_log_good.out | awk '{print $5}')
11664
11665         [ "$bad_line" ] && [ "$good_line1" ] && [ "$good_line2" ] ||
11666                 error "bad_line good_line1 good_line2 are empty"
11667
11668         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
11669         cat $TMP/${tfile}_log_bad >> $TMP/${tfile}_logs_corrupt
11670         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
11671
11672         $LCTL df $TMP/${tfile}_logs_corrupt > $TMP/${tfile}_log_bad.out 2>&1
11673         local bad_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
11674         local good_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
11675
11676         [ "$bad_line_new" ] && [ "$good_line_new" ] ||
11677                 error "bad_line_new good_line_new are empty"
11678
11679         local expected_good=$((good_line1 + good_line2*2))
11680
11681         rm -f $TMP/${tfile}*
11682         # LU-231, short malformed line may not be counted into bad lines
11683         if [ $bad_line -ne $bad_line_new ] &&
11684                    [ $bad_line -ne $((bad_line_new - 1)) ]; then
11685                 error "expected $bad_line bad lines, but got $bad_line_new"
11686                 return 1
11687         fi
11688
11689         if [ $expected_good -ne $good_line_new ]; then
11690                 error "expected $expected_good good lines, but got $good_line_new"
11691                 return 2
11692         fi
11693         true
11694 }
11695 run_test 170 "test lctl df to handle corrupted log ====================="
11696
11697 test_171() { # bug20592
11698         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11699 #define OBD_FAIL_PTLRPC_DUMP_LOG         0x50e
11700         $LCTL set_param fail_loc=0x50e
11701         $LCTL set_param fail_val=3000
11702         multiop_bg_pause $DIR/$tfile O_s || true
11703         local MULTIPID=$!
11704         kill -USR1 $MULTIPID
11705         # cause log dump
11706         sleep 3
11707         wait $MULTIPID
11708         if dmesg | grep "recursive fault"; then
11709                 error "caught a recursive fault"
11710         fi
11711         $LCTL set_param fail_loc=0
11712         true
11713 }
11714 run_test 171 "test libcfs_debug_dumplog_thread stuck in do_exit() ======"
11715
11716 # it would be good to share it with obdfilter-survey/iokit-libecho code
11717 setup_obdecho_osc () {
11718         local rc=0
11719         local ost_nid=$1
11720         local obdfilter_name=$2
11721         echo "Creating new osc for $obdfilter_name on $ost_nid"
11722         # make sure we can find loopback nid
11723         $LCTL add_uuid $ost_nid $ost_nid >/dev/null 2>&1
11724
11725         [ $rc -eq 0 ] && { $LCTL attach osc ${obdfilter_name}_osc     \
11726                            ${obdfilter_name}_osc_UUID || rc=2; }
11727         [ $rc -eq 0 ] && { $LCTL --device ${obdfilter_name}_osc setup \
11728                            ${obdfilter_name}_UUID  $ost_nid || rc=3; }
11729         return $rc
11730 }
11731
11732 cleanup_obdecho_osc () {
11733         local obdfilter_name=$1
11734         $LCTL --device ${obdfilter_name}_osc cleanup >/dev/null
11735         $LCTL --device ${obdfilter_name}_osc detach  >/dev/null
11736         return 0
11737 }
11738
11739 obdecho_test() {
11740         local OBD=$1
11741         local node=$2
11742         local pages=${3:-64}
11743         local rc=0
11744         local id
11745
11746         local count=10
11747         local obd_size=$(get_obd_size $node $OBD)
11748         local page_size=$(get_page_size $node)
11749         if [[ -n "$obd_size" ]]; then
11750                 local new_count=$((obd_size / (pages * page_size / 1024)))
11751                 [[ $new_count -ge $count ]] || count=$new_count
11752         fi
11753
11754         do_facet $node "$LCTL attach echo_client ec ec_uuid" || rc=1
11755         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec setup $OBD" ||
11756                            rc=2; }
11757         if [ $rc -eq 0 ]; then
11758             id=$(do_facet $node "$LCTL --device ec create 1"  | awk '/object id/ {print $6}')
11759             [ ${PIPESTATUS[0]} -eq 0 -a -n "$id" ] || rc=3
11760         fi
11761         echo "New object id is $id"
11762         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec getattr $id" ||
11763                            rc=4; }
11764         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec "                 \
11765                            "test_brw $count w v $pages $id" || rc=4; }
11766         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec destroy $id 1" ||
11767                            rc=4; }
11768         [ $rc -eq 0 -o $rc -gt 2 ] && { do_facet $node "$LCTL --device ec "    \
11769                                         "cleanup" || rc=5; }
11770         [ $rc -eq 0 -o $rc -gt 1 ] && { do_facet $node "$LCTL --device ec "    \
11771                                         "detach" || rc=6; }
11772         [ $rc -ne 0 ] && echo "obecho_create_test failed: $rc"
11773         return $rc
11774 }
11775
11776 test_180a() {
11777         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11778         remote_ost_nodsh && skip "remote OST with nodsh" && return
11779         local rc=0
11780         local rmmod_local=0
11781
11782         if ! module_loaded obdecho; then
11783             load_module obdecho/obdecho
11784             rmmod_local=1
11785         fi
11786
11787         local osc=$($LCTL dl | grep -v mdt | awk '$3 == "osc" {print $4; exit}')
11788         local host=$(lctl get_param -n osc.$osc.import |
11789                              awk '/current_connection:/ {print $2}' )
11790         local target=$(lctl get_param -n osc.$osc.import |
11791                              awk '/target:/ {print $2}' )
11792         target=${target%_UUID}
11793
11794         [[ -n $target ]]  && { setup_obdecho_osc $host $target || rc=1; } || rc=1
11795         [ $rc -eq 0 ] && { obdecho_test ${target}_osc client || rc=2; }
11796         [[ -n $target ]] && cleanup_obdecho_osc $target
11797         [ $rmmod_local -eq 1 ] && rmmod obdecho
11798         return $rc
11799 }
11800 run_test 180a "test obdecho on osc"
11801
11802 test_180b() {
11803         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11804         remote_ost_nodsh && skip "remote OST with nodsh" && return
11805         local rc=0
11806         local rmmod_remote=0
11807
11808         do_rpc_nodes $(facet_active_host ost1) load_module obdecho/obdecho &&
11809                 rmmod_remote=true || error "failed to load module obdecho"
11810         target=$(do_facet ost1 $LCTL dl | awk '/obdfilter/ {print $4;exit}')
11811         [[ -n $target ]] && { obdecho_test $target ost1 || rc=1; }
11812         $rmmod_remote && do_facet ost1 "rmmod obdecho"
11813         return $rc
11814 }
11815 run_test 180b "test obdecho directly on obdfilter"
11816
11817 test_180c() { # LU-2598
11818         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11819         remote_ost_nodsh && skip "remote OST with nodsh" && return
11820         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.0) ]] &&
11821                 skip "Need MDS version at least 2.4.0" && return
11822
11823         local rc=0
11824         local rmmod_remote=false
11825         local pages=16384 # 64MB bulk I/O RPC size
11826         local target
11827
11828         do_rpc_nodes $(facet_active_host ost1) load_module obdecho/obdecho &&
11829                 rmmod_remote=true || error "failed to load module obdecho"
11830
11831         target=$(do_facet ost1 $LCTL dl | awk '/obdfilter/ { print $4 }' |
11832                 head -n1)
11833         if [ -n "$target" ]; then
11834                 obdecho_test "$target" ost1 "$pages" || rc=${PIPESTATUS[0]}
11835         else
11836                 echo "there is no obdfilter target on ost1"
11837                 rc=2
11838         fi
11839         $rmmod_remote && do_facet ost1 "rmmod obdecho" || true
11840         return $rc
11841 }
11842 run_test 180c "test huge bulk I/O size on obdfilter, don't LASSERT"
11843
11844 test_181() { # bug 22177
11845         test_mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
11846         # create enough files to index the directory
11847         createmany -o $DIR/$tdir/foobar 4000
11848         # print attributes for debug purpose
11849         lsattr -d .
11850         # open dir
11851         multiop_bg_pause $DIR/$tdir D_Sc || return 1
11852         MULTIPID=$!
11853         # remove the files & current working dir
11854         unlinkmany $DIR/$tdir/foobar 4000
11855         rmdir $DIR/$tdir
11856         kill -USR1 $MULTIPID
11857         wait $MULTIPID
11858         stat $DIR/$tdir && error "open-unlinked dir was not removed!"
11859         return 0
11860 }
11861 run_test 181 "Test open-unlinked dir ========================"
11862
11863 test_182() {
11864         local fcount=1000
11865         local tcount=10
11866
11867         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
11868
11869         $LCTL set_param mdc.*.rpc_stats=clear
11870
11871         for (( i = 0; i < $tcount; i++ )) ; do
11872                 mkdir $DIR/$tdir/$i
11873         done
11874
11875         for (( i = 0; i < $tcount; i++ )) ; do
11876                 createmany -o $DIR/$tdir/$i/f- $fcount &
11877         done
11878         wait
11879
11880         for (( i = 0; i < $tcount; i++ )) ; do
11881                 unlinkmany $DIR/$tdir/$i/f- $fcount &
11882         done
11883         wait
11884
11885         $LCTL get_param mdc.*.rpc_stats
11886
11887         rm -rf $DIR/$tdir
11888 }
11889 run_test 182 "Test parallel modify metadata operations ================"
11890
11891 test_183() { # LU-2275
11892         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11893         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.56) ]] &&
11894                 skip "Need MDS version at least 2.3.56" && return
11895
11896         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11897         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
11898         echo aaa > $DIR/$tdir/$tfile
11899
11900 #define OBD_FAIL_MDS_NEGATIVE_POSITIVE  0x148
11901         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x148
11902
11903         ls -l $DIR/$tdir && error "ls succeeded, should have failed"
11904         cat $DIR/$tdir/$tfile && error "cat succeeded, should have failed"
11905
11906         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
11907
11908         # Flush negative dentry cache
11909         touch $DIR/$tdir/$tfile
11910
11911         # We are not checking for any leaked references here, they'll
11912         # become evident next time we do cleanup with module unload.
11913         rm -rf $DIR/$tdir
11914 }
11915 run_test 183 "No crash or request leak in case of strange dispositions ========"
11916
11917 # test suite 184 is for LU-2016, LU-2017
11918 test_184a() {
11919         check_swap_layouts_support && return 0
11920
11921         dir0=$DIR/$tdir/$testnum
11922         test_mkdir -p -c1 $dir0 || error "creating dir $dir0"
11923         ref1=/etc/passwd
11924         ref2=/etc/group
11925         file1=$dir0/f1
11926         file2=$dir0/f2
11927         $SETSTRIPE -c1 $file1
11928         cp $ref1 $file1
11929         $SETSTRIPE -c2 $file2
11930         cp $ref2 $file2
11931         gen1=$($GETSTRIPE -g $file1)
11932         gen2=$($GETSTRIPE -g $file2)
11933
11934         $LFS swap_layouts $file1 $file2 || error "swap of file layout failed"
11935         gen=$($GETSTRIPE -g $file1)
11936         [[ $gen1 != $gen ]] ||
11937                 "Layout generation on $file1 does not change"
11938         gen=$($GETSTRIPE -g $file2)
11939         [[ $gen2 != $gen ]] ||
11940                 "Layout generation on $file2 does not change"
11941
11942         cmp $ref1 $file2 || error "content compare failed ($ref1 != $file2)"
11943         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
11944 }
11945 run_test 184a "Basic layout swap"
11946
11947 test_184b() {
11948         check_swap_layouts_support && return 0
11949
11950         dir0=$DIR/$tdir/$testnum
11951         mkdir -p $dir0 || error "creating dir $dir0"
11952         file1=$dir0/f1
11953         file2=$dir0/f2
11954         file3=$dir0/f3
11955         dir1=$dir0/d1
11956         dir2=$dir0/d2
11957         mkdir $dir1 $dir2
11958         $SETSTRIPE -c1 $file1
11959         $SETSTRIPE -c2 $file2
11960         $SETSTRIPE -c1 $file3
11961         chown $RUNAS_ID $file3
11962         gen1=$($GETSTRIPE -g $file1)
11963         gen2=$($GETSTRIPE -g $file2)
11964
11965         $LFS swap_layouts $dir1 $dir2 &&
11966                 error "swap of directories layouts should fail"
11967         $LFS swap_layouts $dir1 $file1 &&
11968                 error "swap of directory and file layouts should fail"
11969         $RUNAS $LFS swap_layouts $file1 $file2 &&
11970                 error "swap of file we cannot write should fail"
11971         $LFS swap_layouts $file1 $file3 &&
11972                 error "swap of file with different owner should fail"
11973         /bin/true # to clear error code
11974 }
11975 run_test 184b "Forbidden layout swap (will generate errors)"
11976
11977 test_184c() {
11978         local cmpn_arg=$(cmp -n 2>&1 | grep "invalid option")
11979         [ -n "$cmpn_arg" ] && skip_env "cmp does not support -n" && return
11980         check_swap_layouts_support && return 0
11981
11982         local dir0=$DIR/$tdir/$testnum
11983         mkdir -p $dir0 || error "creating dir $dir0"
11984
11985         local ref1=$dir0/ref1
11986         local ref2=$dir0/ref2
11987         local file1=$dir0/file1
11988         local file2=$dir0/file2
11989         # create a file large enough for the concurrent test
11990         dd if=/dev/urandom of=$ref1 bs=1M count=$((RANDOM % 50 + 20))
11991         dd if=/dev/urandom of=$ref2 bs=1M count=$((RANDOM % 50 + 20))
11992         echo "ref file size: ref1($(stat -c %s $ref1))," \
11993              "ref2($(stat -c %s $ref2))"
11994
11995         cp $ref2 $file2
11996         dd if=$ref1 of=$file1 bs=16k &
11997         local DD_PID=$!
11998
11999         # Make sure dd starts to copy file
12000         while [ ! -f $file1 ]; do sleep 0.1; done
12001
12002         $LFS swap_layouts $file1 $file2
12003         local rc=$?
12004         wait $DD_PID
12005         [[ $? == 0 ]] || error "concurrent write on $file1 failed"
12006         [[ $rc == 0 ]] || error "swap of $file1 and $file2 failed"
12007
12008         # how many bytes copied before swapping layout
12009         local copied=$(stat -c %s $file2)
12010         local remaining=$(stat -c %s $ref1)
12011         remaining=$((remaining - copied))
12012         echo "Copied $copied bytes before swapping layout..."
12013
12014         cmp -n $copied $file1 $ref2 | grep differ &&
12015                 error "Content mismatch [0, $copied) of ref2 and file1"
12016         cmp -n $copied $file2 $ref1 ||
12017                 error "Content mismatch [0, $copied) of ref1 and file2"
12018         cmp -i $copied:$copied -n $remaining $file1 $ref1 ||
12019                 error "Content mismatch [$copied, EOF) of ref1 and file1"
12020
12021         # clean up
12022         rm -f $ref1 $ref2 $file1 $file2
12023 }
12024 run_test 184c "Concurrent write and layout swap"
12025
12026 test_184d() {
12027         check_swap_layouts_support && return 0
12028         [ -z "$(which getfattr 2>/dev/null)" ] &&
12029                 skip "no getfattr command" && return 0
12030
12031         local file1=$DIR/$tdir/$tfile-1
12032         local file2=$DIR/$tdir/$tfile-2
12033         local file3=$DIR/$tdir/$tfile-3
12034         local lovea1
12035         local lovea2
12036
12037         mkdir -p $DIR/$tdir
12038         touch $file1 || error "create $file1 failed"
12039         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file2 ||
12040                 error "create $file2 failed"
12041         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file3 ||
12042                 error "create $file3 failed"
12043         lovea1=$(get_layout_param $file1)
12044
12045         $LFS swap_layouts $file2 $file3 ||
12046                 error "swap $file2 $file3 layouts failed"
12047         $LFS swap_layouts $file1 $file2 ||
12048                 error "swap $file1 $file2 layouts failed"
12049
12050         lovea2=$(get_layout_param $file2)
12051         echo "$lovea1"
12052         echo "$lovea2"
12053         [ "$lovea1" == "$lovea2" ] || error "lovea $lovea1 != $lovea2"
12054
12055         lovea1=$(getfattr -n trusted.lov $file1 | grep ^trusted)
12056         [[ -z "$lovea1" ]] || error "$file1 shouldn't have lovea"
12057 }
12058 run_test 184d "allow stripeless layouts swap"
12059
12060 test_184e() {
12061         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.94) ]] ||
12062                 { skip "Need MDS version at least 2.6.94"; return 0; }
12063         check_swap_layouts_support && return 0
12064         [ -z "$(which getfattr 2>/dev/null)" ] &&
12065                 skip "no getfattr command" && return 0
12066
12067         local file1=$DIR/$tdir/$tfile-1
12068         local file2=$DIR/$tdir/$tfile-2
12069         local file3=$DIR/$tdir/$tfile-3
12070         local lovea
12071
12072         mkdir -p $DIR/$tdir
12073         touch $file1 || error "create $file1 failed"
12074         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file2 ||
12075                 error "create $file2 failed"
12076         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file3 ||
12077                 error "create $file3 failed"
12078
12079         $LFS swap_layouts $file1 $file2 ||
12080                 error "swap $file1 $file2 layouts failed"
12081
12082         lovea=$(getfattr -n trusted.lov $file1 | grep ^trusted)
12083         [[ -z "$lovea" ]] || error "$file1 shouldn't have lovea"
12084
12085         echo 123 > $file1 || error "Should be able to write into $file1"
12086
12087         $LFS swap_layouts $file1 $file3 ||
12088                 error "swap $file1 $file3 layouts failed"
12089
12090         echo 123 > $file1 || error "Should be able to write into $file1"
12091
12092         rm -rf $file1 $file2 $file3
12093 }
12094 run_test 184e "Recreate layout after stripeless layout swaps"
12095
12096 test_185() { # LU-2441
12097         # LU-3553 - no volatile file support in old servers
12098         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.60) ]] ||
12099                 { skip "Need MDS version at least 2.3.60"; return 0; }
12100
12101         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
12102         touch $DIR/$tdir/spoo
12103         local mtime1=$(stat -c "%Y" $DIR/$tdir)
12104         local fid=$($MULTIOP $DIR/$tdir VFw4096c) ||
12105                 error "cannot create/write a volatile file"
12106         [ "$FILESET" == "" ] &&
12107         $CHECKSTAT -t file $MOUNT/.lustre/fid/$fid 2>/dev/null &&
12108                 error "FID is still valid after close"
12109
12110         multiop_bg_pause $DIR/$tdir vVw4096_c
12111         local multi_pid=$!
12112
12113         local OLD_IFS=$IFS
12114         IFS=":"
12115         local fidv=($fid)
12116         IFS=$OLD_IFS
12117         # assume that the next FID for this client is sequential, since stdout
12118         # is unfortunately eaten by multiop_bg_pause
12119         local n=$((${fidv[1]} + 1))
12120         local next_fid="${fidv[0]}:$(printf "0x%x" $n):${fidv[2]}"
12121         if [ "$FILESET" == "" ]; then
12122                 $CHECKSTAT -t file $MOUNT/.lustre/fid/$next_fid ||
12123                         error "FID is missing before close"
12124         fi
12125         kill -USR1 $multi_pid
12126         # 1 second delay, so if mtime change we will see it
12127         sleep 1
12128         local mtime2=$(stat -c "%Y" $DIR/$tdir)
12129         [[ $mtime1 == $mtime2 ]] || error "mtime has changed"
12130 }
12131 run_test 185 "Volatile file support"
12132
12133 test_187a() {
12134         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12135         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.0) ] &&
12136                 skip "Need MDS version at least 2.3.0" && return
12137
12138         local dir0=$DIR/$tdir/$testnum
12139         mkdir -p $dir0 || error "creating dir $dir0"
12140
12141         local file=$dir0/file1
12142         dd if=/dev/urandom of=$file count=10 bs=1M conv=fsync
12143         local dv1=$($LFS data_version $file)
12144         dd if=/dev/urandom of=$file seek=10 count=1 bs=1M conv=fsync
12145         local dv2=$($LFS data_version $file)
12146         [[ $dv1 != $dv2 ]] ||
12147                 error "data version did not change on write $dv1 == $dv2"
12148
12149         # clean up
12150         rm -f $file1
12151 }
12152 run_test 187a "Test data version change"
12153
12154 test_187b() {
12155         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12156         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.0) ] &&
12157                 skip "Need MDS version at least 2.3.0" && return
12158
12159         local dir0=$DIR/$tdir/$testnum
12160         mkdir -p $dir0 || error "creating dir $dir0"
12161
12162         declare -a DV=$($MULTIOP $dir0 Vw1000xYw1000xY | cut -f3 -d" ")
12163         [[ ${DV[0]} != ${DV[1]} ]] ||
12164                 error "data version did not change on write"\
12165                       " ${DV[0]} == ${DV[1]}"
12166
12167         # clean up
12168         rm -f $file1
12169 }
12170 run_test 187b "Test data version change on volatile file"
12171
12172 test_200() {
12173         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12174         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
12175         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
12176
12177         local POOL=${POOL:-cea1}
12178         local POOL_ROOT=${POOL_ROOT:-$DIR/d200.pools}
12179         local POOL_DIR_NAME=${POOL_DIR_NAME:-dir_tst}
12180         # Pool OST targets
12181         local first_ost=0
12182         local last_ost=$(($OSTCOUNT - 1))
12183         local ost_step=2
12184         local ost_list=$(seq $first_ost $ost_step $last_ost)
12185         local ost_range="$first_ost $last_ost $ost_step"
12186         local test_path=$POOL_ROOT/$POOL_DIR_NAME
12187         local file_dir=$POOL_ROOT/file_tst
12188         local subdir=$test_path/subdir
12189
12190         local rc=0
12191         while : ; do
12192                 # former test_200a test_200b
12193                 pool_add $POOL                          || { rc=$? ; break; }
12194                 pool_add_targets  $POOL $ost_range      || { rc=$? ; break; }
12195                 # former test_200c test_200d
12196                 mkdir -p $test_path
12197                 pool_set_dir      $POOL $test_path      || { rc=$? ; break; }
12198                 pool_check_dir    $POOL $test_path      || { rc=$? ; break; }
12199                 mkdir -p $subdir
12200                 pool_check_dir    $POOL $subdir         || { rc=$? ; break; }
12201                 pool_dir_rel_path $POOL $POOL_DIR_NAME $POOL_ROOT \
12202                                                         || { rc=$? ; break; }
12203                 # former test_200e test_200f
12204                 local files=$((OSTCOUNT*3))
12205                 pool_alloc_files  $POOL $test_path $files "$ost_list" \
12206                                                         || { rc=$? ; break; }
12207                 pool_create_files $POOL $file_dir $files "$ost_list" \
12208                                                         || { rc=$? ; break; }
12209                 # former test_200g test_200h
12210                 pool_lfs_df $POOL                       || { rc=$? ; break; }
12211                 pool_file_rel_path $POOL $test_path     || { rc=$? ; break; }
12212
12213                 # former test_201a test_201b test_201c
12214                 pool_remove_first_target $POOL          || { rc=$? ; break; }
12215
12216                 local f=$test_path/$tfile
12217                 pool_remove_all_targets $POOL $f        || { rc=$? ; break; }
12218                 pool_remove $POOL $f                    || { rc=$? ; break; }
12219                 break
12220         done
12221
12222         destroy_test_pools
12223         return $rc
12224 }
12225 run_test 200 "OST pools"
12226
12227 # usage: default_attr <count | size | offset>
12228 default_attr() {
12229         $LCTL get_param -n lov.$FSNAME-clilov-\*.stripe${1}
12230 }
12231
12232 # usage: check_default_stripe_attr
12233 check_default_stripe_attr() {
12234         ACTUAL=$($GETSTRIPE $* $DIR/$tdir)
12235         case $1 in
12236         --stripe-count|-c)
12237                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr count);;
12238         --stripe-size|-S)
12239                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr size);;
12240         --stripe-index|-i)
12241                 EXPECTED=-1;;
12242         *)
12243                 error "unknown getstripe attr '$1'"
12244         esac
12245
12246         [ $ACTUAL != $EXPECTED ] &&
12247                 error "$DIR/$tdir has $1 '$ACTUAL', not '$EXPECTED'"
12248 }
12249
12250 test_204a() {
12251         test_mkdir -p $DIR/$tdir
12252         $SETSTRIPE --stripe-count 0 --stripe-size 0 --stripe-index -1 $DIR/$tdir
12253
12254         check_default_stripe_attr --stripe-count
12255         check_default_stripe_attr --stripe-size
12256         check_default_stripe_attr --stripe-index
12257
12258         return 0
12259 }
12260 run_test 204a "Print default stripe attributes ================="
12261
12262 test_204b() {
12263         test_mkdir -p $DIR/$tdir
12264         $SETSTRIPE --stripe-count 1 $DIR/$tdir
12265
12266         check_default_stripe_attr --stripe-size
12267         check_default_stripe_attr --stripe-index
12268
12269         return 0
12270 }
12271 run_test 204b "Print default stripe size and offset  ==========="
12272
12273 test_204c() {
12274         test_mkdir -p $DIR/$tdir
12275         $SETSTRIPE --stripe-size 65536 $DIR/$tdir
12276
12277         check_default_stripe_attr --stripe-count
12278         check_default_stripe_attr --stripe-index
12279
12280         return 0
12281 }
12282 run_test 204c "Print default stripe count and offset ==========="
12283
12284 test_204d() {
12285         test_mkdir -p $DIR/$tdir
12286         $SETSTRIPE --stripe-index 0 $DIR/$tdir
12287
12288         check_default_stripe_attr --stripe-count
12289         check_default_stripe_attr --stripe-size
12290
12291         return 0
12292 }
12293 run_test 204d "Print default stripe count and size ============="
12294
12295 test_204e() {
12296         test_mkdir -p $DIR/$tdir
12297         $SETSTRIPE -d $DIR/$tdir
12298
12299         check_default_stripe_attr --stripe-count --raw
12300         check_default_stripe_attr --stripe-size --raw
12301         check_default_stripe_attr --stripe-index --raw
12302
12303         return 0
12304 }
12305 run_test 204e "Print raw stripe attributes ================="
12306
12307 test_204f() {
12308         test_mkdir -p $DIR/$tdir
12309         $SETSTRIPE --stripe-count 1 $DIR/$tdir
12310
12311         check_default_stripe_attr --stripe-size --raw
12312         check_default_stripe_attr --stripe-index --raw
12313
12314         return 0
12315 }
12316 run_test 204f "Print raw stripe size and offset  ==========="
12317
12318 test_204g() {
12319         test_mkdir -p $DIR/$tdir
12320         $SETSTRIPE --stripe-size 65536 $DIR/$tdir
12321
12322         check_default_stripe_attr --stripe-count --raw
12323         check_default_stripe_attr --stripe-index --raw
12324
12325         return 0
12326 }
12327 run_test 204g "Print raw stripe count and offset ==========="
12328
12329 test_204h() {
12330         test_mkdir -p $DIR/$tdir
12331         $SETSTRIPE --stripe-index 0 $DIR/$tdir
12332
12333         check_default_stripe_attr --stripe-count --raw
12334         check_default_stripe_attr --stripe-size --raw
12335
12336         return 0
12337 }
12338 run_test 204h "Print raw stripe count and size ============="
12339
12340 # Figure out which job scheduler is being used, if any,
12341 # or use a fake one
12342 if [ -n "$SLURM_JOB_ID" ]; then # SLURM
12343         JOBENV=SLURM_JOB_ID
12344 elif [ -n "$LSB_JOBID" ]; then # Load Sharing Facility
12345         JOBENV=LSB_JOBID
12346 elif [ -n "$PBS_JOBID" ]; then # PBS/Maui/Moab
12347         JOBENV=PBS_JOBID
12348 elif [ -n "$LOADL_STEPID" ]; then # LoadLeveller
12349         JOBENV=LOADL_STEP_ID
12350 elif [ -n "$JOB_ID" ]; then # Sun Grid Engine
12351         JOBENV=JOB_ID
12352 else
12353         $LCTL list_param jobid_name > /dev/null 2>&1
12354         if [ $? -eq 0 ]; then
12355                 JOBENV=nodelocal
12356         else
12357                 JOBENV=FAKE_JOBID
12358         fi
12359 fi
12360
12361 verify_jobstats() {
12362         local cmd=($1)
12363         shift
12364         local facets="$@"
12365
12366 # we don't really need to clear the stats for this test to work, since each
12367 # command has a unique jobid, but it makes debugging easier if needed.
12368 #       for facet in $facets; do
12369 #               local dev=$(convert_facet2label $facet)
12370 #               # clear old jobstats
12371 #               do_facet $facet lctl set_param *.$dev.job_stats="clear"
12372 #       done
12373
12374         # use a new JobID for each test, or we might see an old one
12375         [ "$JOBENV" = "FAKE_JOBID" ] &&
12376                 FAKE_JOBID=id.$testnum.$(basename ${cmd[0]}).$RANDOM
12377
12378         JOBVAL=${!JOBENV}
12379
12380         [ "$JOBENV" = "nodelocal" ] && {
12381                 FAKE_JOBID=id.$testnum.$(basename ${cmd[0]}).$RANDOM
12382                 $LCTL set_param jobid_name=$FAKE_JOBID
12383                 JOBVAL=$FAKE_JOBID
12384         }
12385
12386         log "Test: ${cmd[*]}"
12387         log "Using JobID environment variable $JOBENV=$JOBVAL"
12388
12389         if [ $JOBENV = "FAKE_JOBID" ]; then
12390                 FAKE_JOBID=$JOBVAL ${cmd[*]}
12391         else
12392                 ${cmd[*]}
12393         fi
12394
12395         # all files are created on OST0000
12396         for facet in $facets; do
12397                 local stats="*.$(convert_facet2label $facet).job_stats"
12398                 if [ $(do_facet $facet lctl get_param $stats |
12399                        grep -c $JOBVAL) -ne 1 ]; then
12400                         do_facet $facet lctl get_param $stats
12401                         error "No jobstats for $JOBVAL found on $facet::$stats"
12402                 fi
12403         done
12404 }
12405
12406 jobstats_set() {
12407         trap 0
12408         NEW_JOBENV=${1:-$OLD_JOBENV}
12409         do_facet mgs $LCTL conf_param $FSNAME.sys.jobid_var=$NEW_JOBENV
12410         wait_update $HOSTNAME "$LCTL get_param -n jobid_var" $NEW_JOBENV
12411 }
12412
12413 cleanup_205() {
12414         trap 0
12415         do_facet $SINGLEMDS \
12416                 $LCTL set_param mdt.*.job_cleanup_interval=$OLD_INTERVAL
12417         [ $OLD_JOBENV != $JOBENV ] && jobstats_set $OLD_JOBENV
12418         cleanup_changelog
12419 }
12420
12421 test_205() { # Job stats
12422         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.7.1) ]] ||
12423                 { skip "Need MDS version with at least 2.7.1"; return 0; }
12424
12425         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12426         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
12427         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12428         remote_ost_nodsh && skip "remote OST with nodsh" && return
12429
12430         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep jobstats)" ] &&
12431                 skip "Server doesn't support jobstats" && return 0
12432         [[ $JOBID_VAR = disable ]] && skip "jobstats is disabled" && return
12433
12434         OLD_JOBENV=$($LCTL get_param -n jobid_var)
12435         if [ $OLD_JOBENV != $JOBENV ]; then
12436                 jobstats_set $JOBENV
12437                 trap cleanup_205 EXIT
12438         fi
12439
12440         CL_USER=$(do_facet $SINGLEMDS lctl --device $MDT0 changelog_register -n)
12441         echo "Registered as changelog user $CL_USER"
12442
12443         OLD_INTERVAL=$(do_facet $SINGLEMDS \
12444                        lctl get_param -n mdt.*.job_cleanup_interval)
12445         local interval_new=5
12446         do_facet $SINGLEMDS \
12447                 $LCTL set_param mdt.*.job_cleanup_interval=$interval_new
12448         local start=$SECONDS
12449
12450         local cmd
12451         # mkdir
12452         cmd="mkdir $DIR/$tdir"
12453         verify_jobstats "$cmd" "$SINGLEMDS"
12454         # rmdir
12455         cmd="rmdir $DIR/$tdir"
12456         verify_jobstats "$cmd" "$SINGLEMDS"
12457         # mkdir on secondary MDT
12458         if [ $MDSCOUNT -gt 1 ]; then
12459                 cmd="lfs mkdir -i 1 $DIR/$tdir.remote"
12460                 verify_jobstats "$cmd" "mds2"
12461         fi
12462         # mknod
12463         cmd="mknod $DIR/$tfile c 1 3"
12464         verify_jobstats "$cmd" "$SINGLEMDS"
12465         # unlink
12466         cmd="rm -f $DIR/$tfile"
12467         verify_jobstats "$cmd" "$SINGLEMDS"
12468         # create all files on OST0000 so verify_jobstats can find OST stats
12469         # open & close
12470         cmd="$SETSTRIPE -i 0 -c 1 $DIR/$tfile"
12471         verify_jobstats "$cmd" "$SINGLEMDS"
12472         # setattr
12473         cmd="touch $DIR/$tfile"
12474         verify_jobstats "$cmd" "$SINGLEMDS ost1"
12475         # write
12476         cmd="dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 oflag=sync"
12477         verify_jobstats "$cmd" "ost1"
12478         # read
12479         cancel_lru_locks osc
12480         cmd="dd if=$DIR/$tfile of=/dev/null bs=1M count=1 iflag=direct"
12481         verify_jobstats "$cmd" "ost1"
12482         # truncate
12483         cmd="$TRUNCATE $DIR/$tfile 0"
12484         verify_jobstats "$cmd" "$SINGLEMDS ost1"
12485         # rename
12486         cmd="mv -f $DIR/$tfile $DIR/$tdir.rename"
12487         verify_jobstats "$cmd" "$SINGLEMDS"
12488         # jobstats expiry - sleep until old stats should be expired
12489         local left=$((interval_new + 5 - (SECONDS - start)))
12490         [ $left -ge 0 ] && wait_update_facet $SINGLEMDS \
12491                 "lctl get_param *.*.job_stats | grep -c 'job_id.*mkdir'" \
12492                         "0" $left
12493         cmd="mkdir $DIR/$tdir.expire"
12494         verify_jobstats "$cmd" "$SINGLEMDS"
12495         [ $(do_facet $SINGLEMDS lctl get_param *.*.job_stats |
12496             grep -c "job_id.*mkdir") -gt 1 ] && error "old jobstats not expired"
12497
12498         # Ensure that jobid are present in changelog (if supported by MDS)
12499         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.52) ]
12500         then
12501                 $LFS changelog $MDT0 | tail -9
12502                 jobids=$($LFS changelog $MDT0 | tail -9 | grep -c "j=")
12503                 [ $jobids -eq 9 ] ||
12504                         error "Wrong changelog jobid count $jobids != 9"
12505
12506                 # LU-5862
12507                 JOBENV="disable"
12508                 jobstats_set $JOBENV
12509                 touch $DIR/$tfile
12510                 $LFS changelog $MDT0 | tail -1
12511                 jobids=$($LFS changelog $MDT0 | tail -1 | grep -c "j=")
12512                 [ $jobids -eq 0 ] ||
12513                         error "Unexpected jobids when jobid_var=$JOBENV"
12514         fi
12515
12516         cleanup_205
12517 }
12518 run_test 205 "Verify job stats"
12519
12520 # LU-1480, LU-1773 and LU-1657
12521 test_206() {
12522         mkdir -p $DIR/$tdir
12523         $SETSTRIPE -c -1 $DIR/$tdir
12524 #define OBD_FAIL_LOV_INIT 0x1403
12525         $LCTL set_param fail_loc=0xa0001403
12526         $LCTL set_param fail_val=1
12527         touch $DIR/$tdir/$tfile || true
12528 }
12529 run_test 206 "fail lov_init_raid0() doesn't lbug"
12530
12531 test_207a() {
12532         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
12533         local fsz=`stat -c %s $DIR/$tfile`
12534         cancel_lru_locks mdc
12535
12536         # do not return layout in getattr intent
12537 #define OBD_FAIL_MDS_NO_LL_GETATTR 0x170
12538         $LCTL set_param fail_loc=0x170
12539         local sz=`stat -c %s $DIR/$tfile`
12540
12541         [ $fsz -eq $sz ] || error "file size expected $fsz, actual $sz"
12542
12543         rm -rf $DIR/$tfile
12544 }
12545 run_test 207a "can refresh layout at glimpse"
12546
12547 test_207b() {
12548         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
12549         local cksum=`md5sum $DIR/$tfile`
12550         local fsz=`stat -c %s $DIR/$tfile`
12551         cancel_lru_locks mdc
12552         cancel_lru_locks osc
12553
12554         # do not return layout in getattr intent
12555 #define OBD_FAIL_MDS_NO_LL_OPEN 0x171
12556         $LCTL set_param fail_loc=0x171
12557
12558         # it will refresh layout after the file is opened but before read issues
12559         echo checksum is "$cksum"
12560         echo "$cksum" |md5sum -c --quiet || error "file differs"
12561
12562         rm -rf $DIR/$tfile
12563 }
12564 run_test 207b "can refresh layout at open"
12565
12566 test_208() {
12567         # FIXME: in this test suite, only RD lease is used. This is okay
12568         # for now as only exclusive open is supported. After generic lease
12569         # is done, this test suite should be revised. - Jinshan
12570
12571         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12572         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.4.52) ]] ||
12573                 { skip "Need MDS version at least 2.4.52"; return 0; }
12574
12575         echo "==== test 1: verify get lease work"
12576         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:eRE+eU || error "get lease error"
12577
12578         echo "==== test 2: verify lease can be broken by upcoming open"
12579         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E-eUc &
12580         local PID=$!
12581         sleep 1
12582
12583         $MULTIOP $DIR/$tfile oO_RDONLY:c
12584         kill -USR1 $PID && wait $PID || error "break lease error"
12585
12586         echo "==== test 3: verify lease can't be granted if an open already exists"
12587         $MULTIOP $DIR/$tfile oO_RDONLY:_c &
12588         local PID=$!
12589         sleep 1
12590
12591         $MULTIOP $DIR/$tfile oO_RDONLY:eReUc && error "apply lease should fail"
12592         kill -USR1 $PID && wait $PID || error "open file error"
12593
12594         echo "==== test 4: lease can sustain over recovery"
12595         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E+eUc &
12596         PID=$!
12597         sleep 1
12598
12599         fail mds1
12600
12601         kill -USR1 $PID && wait $PID || error "lease broken over recovery"
12602
12603         echo "==== test 5: lease broken can't be regained by replay"
12604         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E-eUc &
12605         PID=$!
12606         sleep 1
12607
12608         # open file to break lease and then recovery
12609         $MULTIOP $DIR/$tfile oO_RDWR:c || error "open file error"
12610         fail mds1
12611
12612         kill -USR1 $PID && wait $PID || error "lease not broken over recovery"
12613
12614         rm -f $DIR/$tfile
12615 }
12616 run_test 208 "Exclusive open"
12617
12618 test_209() {
12619         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep disp_stripe)" ] &&
12620                 skip_env "must have disp_stripe" && return
12621
12622         touch $DIR/$tfile
12623         sync; sleep 5; sync;
12624
12625         echo 3 > /proc/sys/vm/drop_caches
12626         req_before=$(awk '/ptlrpc_cache / { print $2 }' /proc/slabinfo)
12627
12628         # open/close 500 times
12629         for i in $(seq 500); do
12630                 cat $DIR/$tfile
12631         done
12632
12633         echo 3 > /proc/sys/vm/drop_caches
12634         req_after=$(awk '/ptlrpc_cache / { print $2 }' /proc/slabinfo)
12635
12636         echo "before: $req_before, after: $req_after"
12637         [ $((req_after - req_before)) -ge 300 ] &&
12638                 error "open/close requests are not freed"
12639         return 0
12640 }
12641 run_test 209 "read-only open/close requests should be freed promptly"
12642
12643 test_212() {
12644         size=`date +%s`
12645         size=$((size % 8192 + 1))
12646         dd if=/dev/urandom of=$DIR/f212 bs=1k count=$size
12647         sendfile $DIR/f212 $DIR/f212.xyz || error "sendfile wrong"
12648         rm -f $DIR/f212 $DIR/f212.xyz
12649 }
12650 run_test 212 "Sendfile test ============================================"
12651
12652 test_213() {
12653         dd if=/dev/zero of=$DIR/$tfile bs=4k count=4
12654         cancel_lru_locks osc
12655         lctl set_param fail_loc=0x8000040f
12656         # generate a read lock
12657         cat $DIR/$tfile > /dev/null
12658         # write to the file, it will try to cancel the above read lock.
12659         cat /etc/hosts >> $DIR/$tfile
12660 }
12661 run_test 213 "OSC lock completion and cancel race don't crash - bug 18829"
12662
12663 test_214() { # for bug 20133
12664         mkdir -p $DIR/$tdir/d214c || error "mkdir $DIR/$tdir/d214c failed"
12665         for (( i=0; i < 340; i++ )) ; do
12666                 touch $DIR/$tdir/d214c/a$i
12667         done
12668
12669         ls -l $DIR/$tdir || error "ls -l $DIR/d214p failed"
12670         mv $DIR/$tdir/d214c $DIR/ || error "mv $DIR/d214p/d214c $DIR/ failed"
12671         ls $DIR/d214c || error "ls $DIR/d214c failed"
12672         rm -rf $DIR/$tdir || error "rm -rf $DIR/d214* failed"
12673         rm -rf $DIR/d214* || error "rm -rf $DIR/d214* failed"
12674 }
12675 run_test 214 "hash-indexed directory test - bug 20133"
12676
12677 # having "abc" as 1st arg, creates $TMP/lnet_abc.out and $TMP/lnet_abc.sys
12678 create_lnet_proc_files() {
12679         lctl get_param -n $1 >$TMP/lnet_$1.out || error "cannot read lnet.$1"
12680         sysctl lnet.$1 >$TMP/lnet_$1.sys_tmp || error "cannot read lnet.$1"
12681
12682         sed "s/^lnet.$1\ =\ //g" "$TMP/lnet_$1.sys_tmp" >$TMP/lnet_$1.sys
12683         rm -f "$TMP/lnet_$1.sys_tmp"
12684 }
12685
12686 # counterpart of create_lnet_proc_files
12687 remove_lnet_proc_files() {
12688         rm -f $TMP/lnet_$1.out $TMP/lnet_$1.sys
12689 }
12690
12691 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
12692 # 3rd arg as regexp for body
12693 check_lnet_proc_stats() {
12694         local l=$(cat "$TMP/lnet_$1" |wc -l)
12695         [ $l = 1 ] || (cat "$TMP/lnet_$1" && error "$2 is not of 1 line: $l")
12696
12697         grep -E "$3" "$TMP/lnet_$1" || (cat "$TMP/lnet_$1" && error "$2 misformatted")
12698 }
12699
12700 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
12701 # 3rd arg as regexp for body, 4th arg as regexp for 1st line, 5th arg is
12702 # optional and can be regexp for 2nd line (lnet.routes case)
12703 check_lnet_proc_entry() {
12704         local blp=2          # blp stands for 'position of 1st line of body'
12705         [ -z "$5" ] || blp=3 # lnet.routes case
12706
12707         local l=$(cat "$TMP/lnet_$1" |wc -l)
12708         # subtracting one from $blp because the body can be empty
12709         [ "$l" -ge "$(($blp - 1))" ] || (cat "$TMP/lnet_$1" && error "$2 is too short: $l")
12710
12711         sed -n '1 p' "$TMP/lnet_$1" |grep -E "$4" >/dev/null ||
12712                 (cat "$TMP/lnet_$1" && error "1st line of $2 misformatted")
12713
12714         [ "$5" = "" ] || sed -n '2 p' "$TMP/lnet_$1" |grep -E "$5" >/dev/null ||
12715                 (cat "$TMP/lnet_$1" && error "2nd line of $2 misformatted")
12716
12717         # bail out if any unexpected line happened
12718         sed -n "$blp p" "$TMP/lnet_$1" | grep -Ev "$3"
12719         [ "$?" != 0 ] || error "$2 misformatted"
12720 }
12721
12722 test_215() { # for bugs 18102, 21079, 21517
12723         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12724         local N='(0|[1-9][0-9]*)'       # non-negative numeric
12725         local P='[1-9][0-9]*'           # positive numeric
12726         local I='(0|-?[1-9][0-9]*|NA)'  # any numeric (0 | >0 | <0) or NA if no value
12727         local NET='[a-z][a-z0-9]*'      # LNET net like o2ib2
12728         local ADDR='[0-9.]+'            # LNET addr like 10.0.0.1
12729         local NID="$ADDR@$NET"          # LNET nid like 10.0.0.1@o2ib2
12730
12731         local L1 # regexp for 1st line
12732         local L2 # regexp for 2nd line (optional)
12733         local BR # regexp for the rest (body)
12734
12735         # lnet.stats should look as 11 space-separated non-negative numerics
12736         BR="^$N $N $N $N $N $N $N $N $N $N $N$"
12737         create_lnet_proc_files "stats"
12738         check_lnet_proc_stats "stats.sys" "lnet.stats" "$BR"
12739         remove_lnet_proc_files "stats"
12740
12741         # lnet.routes should look like this:
12742         # Routing disabled/enabled
12743         # net hops priority state router
12744         # where net is a string like tcp0, hops > 0, priority >= 0,
12745         # state is up/down,
12746         # router is a string like 192.168.1.1@tcp2
12747         L1="^Routing (disabled|enabled)$"
12748         L2="^net +hops +priority +state +router$"
12749         BR="^$NET +$N +(0|1) +(up|down) +$NID$"
12750         create_lnet_proc_files "routes"
12751         check_lnet_proc_entry "routes.sys" "lnet.routes" "$BR" "$L1" "$L2"
12752         remove_lnet_proc_files "routes"
12753
12754         # lnet.routers should look like this:
12755         # ref rtr_ref alive_cnt state last_ping ping_sent deadline down_ni router
12756         # where ref > 0, rtr_ref > 0, alive_cnt >= 0, state is up/down,
12757         # last_ping >= 0, ping_sent is boolean (0/1), deadline and down_ni are
12758         # numeric (0 or >0 or <0), router is a string like 192.168.1.1@tcp2
12759         L1="^ref +rtr_ref +alive_cnt +state +last_ping +ping_sent +deadline +down_ni +router$"
12760         BR="^$P +$P +$N +(up|down) +$N +(0|1) +$I +$I +$NID$"
12761         create_lnet_proc_files "routers"
12762         check_lnet_proc_entry "routers.sys" "lnet.routers" "$BR" "$L1"
12763         remove_lnet_proc_files "routers"
12764
12765         # lnet.peers should look like this:
12766         # nid refs state last max rtr min tx min queue
12767         # where nid is a string like 192.168.1.1@tcp2, refs > 0,
12768         # state is up/down/NA, max >= 0. last, rtr, min, tx, min are
12769         # numeric (0 or >0 or <0), queue >= 0.
12770         L1="^nid +refs +state +last +max +rtr +min +tx +min +queue$"
12771         BR="^$NID +$P +(up|down|NA) +$I +$N +$I +$I +$I +$I +$N$"
12772         create_lnet_proc_files "peers"
12773         check_lnet_proc_entry "peers.sys" "lnet.peers" "$BR" "$L1"
12774         remove_lnet_proc_files "peers"
12775
12776         # lnet.buffers  should look like this:
12777         # pages count credits min
12778         # where pages >=0, count >=0, credits and min are numeric (0 or >0 or <0)
12779         L1="^pages +count +credits +min$"
12780         BR="^ +$N +$N +$I +$I$"
12781         create_lnet_proc_files "buffers"
12782         check_lnet_proc_entry "buffers.sys" "lnet.buffers" "$BR" "$L1"
12783         remove_lnet_proc_files "buffers"
12784
12785         # lnet.nis should look like this:
12786         # nid status alive refs peer rtr max tx min
12787         # where nid is a string like 192.168.1.1@tcp2, status is up/down,
12788         # alive is numeric (0 or >0 or <0), refs >= 0, peer >= 0,
12789         # rtr >= 0, max >=0, tx and min are numeric (0 or >0 or <0).
12790         L1="^nid +status +alive +refs +peer +rtr +max +tx +min$"
12791         BR="^$NID +(up|down) +$I +$N +$N +$N +$N +$I +$I$"
12792         create_lnet_proc_files "nis"
12793         check_lnet_proc_entry "nis.sys" "lnet.nis" "$BR" "$L1"
12794         remove_lnet_proc_files "nis"
12795
12796         # can we successfully write to lnet.stats?
12797         lctl set_param -n stats=0 || error "cannot write to lnet.stats"
12798         sysctl -w lnet.stats=0 || error "cannot write to lnet.stats"
12799 }
12800 run_test 215 "lnet exists and has proper content - bugs 18102, 21079, 21517"
12801
12802 test_216() { # bug 20317
12803         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12804         remote_ost_nodsh && skip "remote OST with nodsh" && return
12805
12806         local node
12807         local facets=$(get_facets OST)
12808         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
12809
12810         save_lustre_params client "osc.*.contention_seconds" > $p
12811         save_lustre_params $facets \
12812                 "ldlm.namespaces.filter-*.max_nolock_bytes" >> $p
12813         save_lustre_params $facets \
12814                 "ldlm.namespaces.filter-*.contended_locks" >> $p
12815         save_lustre_params $facets \
12816                 "ldlm.namespaces.filter-*.contention_seconds" >> $p
12817         clear_stats osc.*.osc_stats
12818
12819         # agressive lockless i/o settings
12820         do_nodes $(comma_list $(osts_nodes)) \
12821                 "lctl set_param -n ldlm.namespaces.*.max_nolock_bytes=2000000 \
12822                         ldlm.namespaces.filter-*.contended_locks=0 \
12823                         ldlm.namespaces.filter-*.contention_seconds=60"
12824         lctl set_param -n osc.*.contention_seconds=60
12825
12826         $DIRECTIO write $DIR/$tfile 0 10 4096
12827         $CHECKSTAT -s 40960 $DIR/$tfile
12828
12829         # disable lockless i/o
12830         do_nodes $(comma_list $(osts_nodes)) \
12831                 "lctl set_param -n ldlm.namespaces.filter-*.max_nolock_bytes=0 \
12832                         ldlm.namespaces.filter-*.contended_locks=32 \
12833                         ldlm.namespaces.filter-*.contention_seconds=0"
12834         lctl set_param -n osc.*.contention_seconds=0
12835         clear_stats osc.*.osc_stats
12836
12837         dd if=/dev/zero of=$DIR/$tfile count=0
12838         $CHECKSTAT -s 0 $DIR/$tfile
12839
12840         restore_lustre_params <$p
12841         rm -f $p
12842         rm $DIR/$tfile
12843 }
12844 run_test 216 "check lockless direct write updates file size and kms correctly"
12845
12846 test_217() { # bug 22430
12847         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12848         local node
12849         local nid
12850
12851         for node in $(nodes_list); do
12852                 nid=$(host_nids_address $node $NETTYPE)
12853                 if [[ $nid = *-* ]] ; then
12854                         echo "lctl ping $(h2nettype $nid)"
12855                         lctl ping $(h2nettype $nid)
12856                 else
12857                         echo "skipping $node (no hyphen detected)"
12858                 fi
12859         done
12860 }
12861 run_test 217 "check lctl ping for hostnames with hiphen ('-')"
12862
12863 test_218() {
12864        # do directio so as not to populate the page cache
12865        log "creating a 10 Mb file"
12866        $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
12867        log "starting reads"
12868        dd if=$DIR/$tfile of=/dev/null bs=4096 &
12869        log "truncating the file"
12870        $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
12871        log "killing dd"
12872        kill %+ || true # reads might have finished
12873        echo "wait until dd is finished"
12874        wait
12875        log "removing the temporary file"
12876        rm -rf $DIR/$tfile || error "tmp file removal failed"
12877 }
12878 run_test 218 "parallel read and truncate should not deadlock ======================="
12879
12880 test_219() {
12881         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12882         # write one partial page
12883         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1
12884         # set no grant so vvp_io_commit_write will do sync write
12885         $LCTL set_param fail_loc=0x411
12886         # write a full page at the end of file
12887         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=1 conv=notrunc
12888
12889         $LCTL set_param fail_loc=0
12890         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=3
12891         $LCTL set_param fail_loc=0x411
12892         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1 seek=2 conv=notrunc
12893
12894         # LU-4201
12895         dd if=/dev/zero of=$DIR/$tfile-2 bs=1024 count=1
12896         $CHECKSTAT -s 1024 $DIR/$tfile-2 || error "checkstat wrong size"
12897 }
12898 run_test 219 "LU-394: Write partial won't cause uncontiguous pages vec at LND"
12899
12900 test_220() { #LU-325
12901         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12902         remote_ost_nodsh && skip "remote OST with nodsh" && return
12903         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12904         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
12905         local OSTIDX=0
12906
12907         # create on MDT0000 so the last_id and next_id are correct
12908         mkdir $DIR/$tdir
12909         local OST=$($LFS df $DIR | awk '/OST:'$OSTIDX'/ { print $1 }')
12910         OST=${OST%_UUID}
12911
12912         # on the mdt's osc
12913         local mdtosc_proc1=$(get_mdtosc_proc_path $SINGLEMDS $OST)
12914         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
12915                         osc.$mdtosc_proc1.prealloc_last_id)
12916         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
12917                         osc.$mdtosc_proc1.prealloc_next_id)
12918
12919         $LFS df -i
12920
12921         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=-1
12922         #define OBD_FAIL_OST_ENOINO              0x229
12923         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0x229
12924         create_pool $FSNAME.$TESTNAME || return 1
12925         do_facet mgs $LCTL pool_add $FSNAME.$TESTNAME $OST || return 2
12926
12927         $SETSTRIPE $DIR/$tdir -i $OSTIDX -c 1 -p $FSNAME.$TESTNAME
12928
12929         MDSOBJS=$((last_id - next_id))
12930         echo "preallocated objects on MDS is $MDSOBJS" "($last_id - $next_id)"
12931
12932         blocks=$($LFS df $MOUNT | awk '($1 == '$OSTIDX') { print $4 }')
12933         echo "OST still has $count kbytes free"
12934
12935         echo "create $MDSOBJS files @next_id..."
12936         createmany -o $DIR/$tdir/f $MDSOBJS || return 3
12937
12938         local last_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
12939                         osc.$mdtosc_proc1.prealloc_last_id)
12940         local next_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
12941                         osc.$mdtosc_proc1.prealloc_next_id)
12942
12943         echo "after creation, last_id=$last_id2, next_id=$next_id2"
12944         $LFS df -i
12945
12946         echo "cleanup..."
12947
12948         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=0
12949         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0
12950
12951         do_facet mgs $LCTL pool_remove $FSNAME.$TESTNAME $OST || return 4
12952         do_facet mgs $LCTL pool_destroy $FSNAME.$TESTNAME || return 5
12953         echo "unlink $MDSOBJS files @$next_id..."
12954         unlinkmany $DIR/$tdir/f $MDSOBJS || return 6
12955 }
12956 run_test 220 "preallocated MDS objects still used if ENOSPC from OST"
12957
12958 test_221() {
12959         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12960         dd if=`which date` of=$MOUNT/date oflag=sync
12961         chmod +x $MOUNT/date
12962
12963         #define OBD_FAIL_LLITE_FAULT_TRUNC_RACE  0x1401
12964         $LCTL set_param fail_loc=0x80001401
12965
12966         $MOUNT/date > /dev/null
12967         rm -f $MOUNT/date
12968 }
12969 run_test 221 "make sure fault and truncate race to not cause OOM"
12970
12971 test_222a () {
12972         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12973        rm -rf $DIR/$tdir
12974        test_mkdir -p $DIR/$tdir
12975        $SETSTRIPE -c 1 -i 0 $DIR/$tdir
12976        createmany -o $DIR/$tdir/$tfile 10
12977        cancel_lru_locks mdc
12978        cancel_lru_locks osc
12979        #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
12980        $LCTL set_param fail_loc=0x31a
12981        ls -l $DIR/$tdir > /dev/null || error "AGL for ls failed"
12982        $LCTL set_param fail_loc=0
12983        rm -r $DIR/$tdir
12984 }
12985 run_test 222a "AGL for ls should not trigger CLIO lock failure ================"
12986
12987 test_222b () {
12988         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12989         rm -rf $DIR/$tdir
12990         test_mkdir -p $DIR/$tdir
12991         $SETSTRIPE -c 1 -i 0 $DIR/$tdir
12992         createmany -o $DIR/$tdir/$tfile 10
12993         cancel_lru_locks mdc
12994         cancel_lru_locks osc
12995         #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
12996         $LCTL set_param fail_loc=0x31a
12997         rm -r $DIR/$tdir || error "AGL for rmdir failed"
12998         $LCTL set_param fail_loc=0
12999 }
13000 run_test 222b "AGL for rmdir should not trigger CLIO lock failure ============="
13001
13002 test_223 () {
13003         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13004        rm -rf $DIR/$tdir
13005        test_mkdir -p $DIR/$tdir
13006        $SETSTRIPE -c 1 -i 0 $DIR/$tdir
13007        createmany -o $DIR/$tdir/$tfile 10
13008        cancel_lru_locks mdc
13009        cancel_lru_locks osc
13010        #define OBD_FAIL_LDLM_AGL_NOLOCK          0x31b
13011        $LCTL set_param fail_loc=0x31b
13012        ls -l $DIR/$tdir > /dev/null || error "reenqueue failed"
13013        $LCTL set_param fail_loc=0
13014        rm -r $DIR/$tdir
13015 }
13016 run_test 223 "osc reenqueue if without AGL lock granted ======================="
13017
13018 test_224a() { # LU-1039, MRP-303
13019         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13020         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB   0x508
13021         $LCTL set_param fail_loc=0x508
13022         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 conv=fsync
13023         $LCTL set_param fail_loc=0
13024         df $DIR
13025 }
13026 run_test 224a "Don't panic on bulk IO failure"
13027
13028 test_224b() { # LU-1039, MRP-303
13029         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13030         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
13031         cancel_lru_locks osc
13032         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB2   0x515
13033         $LCTL set_param fail_loc=0x515
13034         dd of=/dev/null if=$DIR/$tfile bs=4096 count=1
13035         $LCTL set_param fail_loc=0
13036         df $DIR
13037 }
13038 run_test 224b "Don't panic on bulk IO failure"
13039
13040 test_224c() { # LU-6441
13041         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13042         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13043
13044         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
13045         save_writethrough $p
13046         set_cache writethrough on
13047
13048         local pages_per_rpc=$($LCTL get_param \
13049                                 osc.*.max_pages_per_rpc)
13050         local at_max=$($LCTL get_param -n at_max)
13051         local timeout=$($LCTL get_param -n timeout)
13052         local test_at="$LCTL get_param -n at_max"
13053         local param_at="$FSNAME.sys.at_max"
13054         local test_timeout="$LCTL get_param -n timeout"
13055         local param_timeout="$FSNAME.sys.timeout"
13056
13057         $LCTL set_param -n osc.*.max_pages_per_rpc=1024
13058
13059         set_conf_param_and_check client "$test_at" "$param_at" 0 ||
13060                 error "conf_param at_max=0 failed"
13061         set_conf_param_and_check client "$test_timeout" "$param_timeout" 5 ||
13062                 error "conf_param timeout=5 failed"
13063
13064         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB3   0x520
13065         do_facet ost1 $LCTL set_param fail_loc=0x520
13066         $LFS setstripe -c 1 -i 0 $DIR/$tfile
13067         dd if=/dev/zero of=$DIR/$tfile bs=8MB count=1
13068         sync
13069         do_facet ost1 $LCTL set_param fail_loc=0
13070
13071         set_conf_param_and_check client "$test_at" "$param_at" $at_max ||
13072                 error "conf_param at_max=$at_max failed"
13073         set_conf_param_and_check client "$test_timeout" "$param_timeout" \
13074                 $timeout || error "conf_param timeout=$timeout failed"
13075
13076         $LCTL set_param -n $pages_per_rpc
13077         restore_lustre_params < $p
13078         rm -f $p
13079 }
13080 run_test 224c "Don't hang if one of md lost during large bulk RPC"
13081
13082 MDSSURVEY=${MDSSURVEY:-$(which mds-survey 2>/dev/null || true)}
13083 test_225a () {
13084         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13085         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13086         if [ -z ${MDSSURVEY} ]; then
13087               skip_env "mds-survey not found" && return
13088         fi
13089
13090         [ $MDSCOUNT -ge 2 ] &&
13091                 skip "skipping now for more than one MDT" && return
13092
13093        [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ] ||
13094             { skip "Need MDS version at least 2.2.51"; return; }
13095
13096        local mds=$(facet_host $SINGLEMDS)
13097        local target=$(do_nodes $mds 'lctl dl' | \
13098                       awk "{if (\$2 == \"UP\" && \$3 == \"mdt\") {print \$4}}")
13099
13100        local cmd1="file_count=1000 thrhi=4"
13101        local cmd2="dir_count=2 layer=mdd stripe_count=0"
13102        local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
13103        local cmd="$cmd1 $cmd2 $cmd3"
13104
13105        rm -f ${TMP}/mds_survey*
13106        echo + $cmd
13107        eval $cmd || error "mds-survey with zero-stripe failed"
13108        cat ${TMP}/mds_survey*
13109        rm -f ${TMP}/mds_survey*
13110 }
13111 run_test 225a "Metadata survey sanity with zero-stripe"
13112
13113 test_225b () {
13114         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13115         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13116         if [ -z ${MDSSURVEY} ]; then
13117               skip_env "mds-survey not found" && return
13118         fi
13119         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ] ||
13120             { skip "Need MDS version at least 2.2.51"; return; }
13121
13122         if [ $($LCTL dl | grep -c osc) -eq 0 ]; then
13123               skip_env "Need to mount OST to test" && return
13124         fi
13125
13126         [ $MDSCOUNT -ge 2 ] &&
13127                 skip "skipping now for more than one MDT" && return
13128        local mds=$(facet_host $SINGLEMDS)
13129        local target=$(do_nodes $mds 'lctl dl' | \
13130                       awk "{if (\$2 == \"UP\" && \$3 == \"mdt\") {print \$4}}")
13131
13132        local cmd1="file_count=1000 thrhi=4"
13133        local cmd2="dir_count=2 layer=mdd stripe_count=1"
13134        local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
13135        local cmd="$cmd1 $cmd2 $cmd3"
13136
13137        rm -f ${TMP}/mds_survey*
13138        echo + $cmd
13139        eval $cmd || error "mds-survey with stripe_count failed"
13140        cat ${TMP}/mds_survey*
13141        rm -f ${TMP}/mds_survey*
13142 }
13143 run_test 225b "Metadata survey sanity with stripe_count = 1"
13144
13145 mcreate_path2fid () {
13146         local mode=$1
13147         local major=$2
13148         local minor=$3
13149         local name=$4
13150         local desc=$5
13151         local path=$DIR/$tdir/$name
13152         local fid
13153         local rc
13154         local fid_path
13155
13156         $MCREATE --mode=$1 --major=$2 --minor=$3 $path ||
13157                 error "cannot create $desc"
13158
13159         fid=$($LFS path2fid $path | tr -d '[' | tr -d ']')
13160         rc=$?
13161         [ $rc -ne 0 ] && error "cannot get fid of a $desc"
13162
13163         fid_path=$($LFS fid2path $MOUNT $fid)
13164         rc=$?
13165         [ $rc -ne 0 ] && error "cannot get path of $desc by $DIR $path $fid"
13166
13167         [ "$path" == "$fid_path" ] ||
13168                 error "fid2path returned $fid_path, expected $path"
13169
13170         echo "pass with $path and $fid"
13171 }
13172
13173 test_226a () {
13174         rm -rf $DIR/$tdir
13175         mkdir -p $DIR/$tdir
13176
13177         mcreate_path2fid 0010666 0 0 fifo "FIFO"
13178         mcreate_path2fid 0020666 1 3 null "character special file (null)"
13179         mcreate_path2fid 0020666 1 255 none "character special file (no device)"
13180         mcreate_path2fid 0040666 0 0 dir "directory"
13181         mcreate_path2fid 0060666 7 0 loop0 "block special file (loop)"
13182         mcreate_path2fid 0100666 0 0 file "regular file"
13183         mcreate_path2fid 0120666 0 0 link "symbolic link"
13184         mcreate_path2fid 0140666 0 0 sock "socket"
13185 }
13186 run_test 226a "call path2fid and fid2path on files of all type"
13187
13188 test_226b () {
13189         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13190         rm -rf $DIR/$tdir
13191         local MDTIDX=1
13192
13193         mkdir -p $DIR/$tdir
13194         $LFS setdirstripe -i $MDTIDX $DIR/$tdir/remote_dir ||
13195                 error "create remote directory failed"
13196         mcreate_path2fid 0010666 0 0 "remote_dir/fifo" "FIFO"
13197         mcreate_path2fid 0020666 1 3 "remote_dir/null" \
13198                                 "character special file (null)"
13199         mcreate_path2fid 0020666 1 255 "remote_dir/none" \
13200                                 "character special file (no device)"
13201         mcreate_path2fid 0040666 0 0 "remote_dir/dir" "directory"
13202         mcreate_path2fid 0060666 7 0 "remote_dir/loop0" \
13203                                 "block special file (loop)"
13204         mcreate_path2fid 0100666 0 0 "remote_dir/file" "regular file"
13205         mcreate_path2fid 0120666 0 0 "remote_dir/link" "symbolic link"
13206         mcreate_path2fid 0140666 0 0 "remote_dir/sock" "socket"
13207 }
13208 run_test 226b "call path2fid and fid2path on files of all type under remote dir"
13209
13210 # LU-1299 Executing or running ldd on a truncated executable does not
13211 # cause an out-of-memory condition.
13212 test_227() {
13213         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13214         [ -z "$(which ldd)" ] && skip "should have ldd tool" && return
13215         dd if=$(which date) of=$MOUNT/date bs=1k count=1
13216         chmod +x $MOUNT/date
13217
13218         $MOUNT/date > /dev/null
13219         ldd $MOUNT/date > /dev/null
13220         rm -f $MOUNT/date
13221 }
13222 run_test 227 "running truncated executable does not cause OOM"
13223
13224 # LU-1512 try to reuse idle OI blocks
13225 test_228a() {
13226         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13227         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13228         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
13229                 skip "non-ldiskfs backend" && return
13230
13231         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
13232         local myDIR=$DIR/$tdir
13233
13234         mkdir -p $myDIR
13235         #define OBD_FAIL_SEQ_EXHAUST             0x1002
13236         $LCTL set_param fail_loc=0x80001002
13237         createmany -o $myDIR/t- 10000
13238         $LCTL set_param fail_loc=0
13239         # The guard is current the largest FID holder
13240         touch $myDIR/guard
13241         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
13242                     tr -d '[')
13243         local IDX=$(($SEQ % 64))
13244
13245         do_facet $SINGLEMDS sync
13246         # Make sure journal flushed.
13247         sleep 6
13248         local blk1=$(do_facet $SINGLEMDS \
13249                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
13250                      grep Blockcount | awk '{print $4}')
13251
13252         # Remove old files, some OI blocks will become idle.
13253         unlinkmany $myDIR/t- 10000
13254         # Create new files, idle OI blocks should be reused.
13255         createmany -o $myDIR/t- 2000
13256         do_facet $SINGLEMDS sync
13257         # Make sure journal flushed.
13258         sleep 6
13259         local blk2=$(do_facet $SINGLEMDS \
13260                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
13261                      grep Blockcount | awk '{print $4}')
13262
13263         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
13264 }
13265 run_test 228a "try to reuse idle OI blocks"
13266
13267 test_228b() {
13268         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13269         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13270         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
13271                 skip "non-ldiskfs backend" && return
13272
13273         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
13274         local myDIR=$DIR/$tdir
13275
13276         mkdir -p $myDIR
13277         #define OBD_FAIL_SEQ_EXHAUST             0x1002
13278         $LCTL set_param fail_loc=0x80001002
13279         createmany -o $myDIR/t- 10000
13280         $LCTL set_param fail_loc=0
13281         # The guard is current the largest FID holder
13282         touch $myDIR/guard
13283         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
13284                     tr -d '[')
13285         local IDX=$(($SEQ % 64))
13286
13287         do_facet $SINGLEMDS sync
13288         # Make sure journal flushed.
13289         sleep 6
13290         local blk1=$(do_facet $SINGLEMDS \
13291                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
13292                      grep Blockcount | awk '{print $4}')
13293
13294         # Remove old files, some OI blocks will become idle.
13295         unlinkmany $myDIR/t- 10000
13296
13297         # stop the MDT
13298         stop $SINGLEMDS || error "Fail to stop MDT."
13299         # remount the MDT
13300         start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS || error "Fail to start MDT."
13301
13302         df $MOUNT || error "Fail to df."
13303         # Create new files, idle OI blocks should be reused.
13304         createmany -o $myDIR/t- 2000
13305         do_facet $SINGLEMDS sync
13306         # Make sure journal flushed.
13307         sleep 6
13308         local blk2=$(do_facet $SINGLEMDS \
13309                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
13310                      grep Blockcount | awk '{print $4}')
13311
13312         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
13313 }
13314 run_test 228b "idle OI blocks can be reused after MDT restart"
13315
13316 #LU-1881
13317 test_228c() {
13318         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13319         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13320         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
13321                 skip "non-ldiskfs backend" && return
13322
13323         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
13324         local myDIR=$DIR/$tdir
13325
13326         mkdir -p $myDIR
13327         #define OBD_FAIL_SEQ_EXHAUST             0x1002
13328         $LCTL set_param fail_loc=0x80001002
13329         # 20000 files can guarantee there are index nodes in the OI file
13330         createmany -o $myDIR/t- 20000
13331         $LCTL set_param fail_loc=0
13332         # The guard is current the largest FID holder
13333         touch $myDIR/guard
13334         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
13335                     tr -d '[')
13336         local IDX=$(($SEQ % 64))
13337
13338         do_facet $SINGLEMDS sync
13339         # Make sure journal flushed.
13340         sleep 6
13341         local blk1=$(do_facet $SINGLEMDS \
13342                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
13343                      grep Blockcount | awk '{print $4}')
13344
13345         # Remove old files, some OI blocks will become idle.
13346         unlinkmany $myDIR/t- 20000
13347         rm -f $myDIR/guard
13348         # The OI file should become empty now
13349
13350         # Create new files, idle OI blocks should be reused.
13351         createmany -o $myDIR/t- 2000
13352         do_facet $SINGLEMDS sync
13353         # Make sure journal flushed.
13354         sleep 6
13355         local blk2=$(do_facet $SINGLEMDS \
13356                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
13357                      grep Blockcount | awk '{print $4}')
13358
13359         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
13360 }
13361 run_test 228c "NOT shrink the last entry in OI index node to recycle idle leaf"
13362
13363 test_229() { # LU-2482, LU-3448
13364         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.53) ] &&
13365                 skip "No HSM $(lustre_build_version $SINGLEMDS) MDS < 2.4.53" &&
13366                 return
13367         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13368         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
13369
13370         rm -f $DIR/$tfile
13371
13372         # Create a file with a released layout and stripe count 2.
13373         $MULTIOP $DIR/$tfile H2c ||
13374                 error "failed to create file with released layout"
13375
13376         $GETSTRIPE -v $DIR/$tfile
13377
13378         local pattern=$($GETSTRIPE -L $DIR/$tfile)
13379         [ X"$pattern" = X"80000001" ] || error "pattern error ($pattern)"
13380
13381         local stripe_count=$($GETSTRIPE -c $DIR/$tfile) || error "getstripe"
13382         [ $stripe_count -eq 2 ] || error "stripe count not 2 ($stripe_count)"
13383         stat $DIR/$tfile || error "failed to stat released file"
13384
13385         chown $RUNAS_ID $DIR/$tfile ||
13386                 error "chown $RUNAS_ID $DIR/$tfile failed"
13387
13388         chgrp $RUNAS_ID $DIR/$tfile ||
13389                 error "chgrp $RUNAS_ID $DIR/$tfile failed"
13390
13391         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
13392         rm $DIR/$tfile || error "failed to remove released file"
13393 }
13394 run_test 229 "getstripe/stat/rm/attr changes work on released files"
13395
13396 test_230a() {
13397         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13398         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13399         local MDTIDX=1
13400
13401         test_mkdir $DIR/$tdir
13402         test_mkdir -i0 -c1 $DIR/$tdir/test_230_local
13403         local mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230_local)
13404         [ $mdt_idx -ne 0 ] &&
13405                 error "create local directory on wrong MDT $mdt_idx"
13406
13407         $LFS mkdir -i $MDTIDX $DIR/$tdir/test_230 ||
13408                         error "create remote directory failed"
13409         local mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230)
13410         [ $mdt_idx -ne $MDTIDX ] &&
13411                 error "create remote directory on wrong MDT $mdt_idx"
13412
13413         createmany -o $DIR/$tdir/test_230/t- 10 ||
13414                 error "create files on remote directory failed"
13415         mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230/t-0)
13416         [ $mdt_idx -ne $MDTIDX ] && error "create files on wrong MDT $mdt_idx"
13417         rm -r $DIR/$tdir || error "unlink remote directory failed"
13418 }
13419 run_test 230a "Create remote directory and files under the remote directory"
13420
13421 test_230b() {
13422         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13423         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13424         local MDTIDX=1
13425         local mdt_index
13426         local i
13427         local file
13428         local pid
13429         local stripe_count
13430         local migrate_dir=$DIR/$tdir/migrate_dir
13431         local other_dir=$DIR/$tdir/other_dir
13432
13433         test_mkdir $DIR/$tdir
13434         test_mkdir -i0 -c1 $migrate_dir
13435         test_mkdir -i0 -c1 $other_dir
13436         for ((i=0; i<10; i++)); do
13437                 mkdir -p $migrate_dir/dir_${i}
13438                 createmany -o $migrate_dir/dir_${i}/f 10 ||
13439                         error "create files under remote dir failed $i"
13440         done
13441
13442         cp /etc/passwd $migrate_dir/$tfile
13443         cp /etc/passwd $other_dir/$tfile
13444         chattr +SAD $migrate_dir
13445         chattr +SAD $migrate_dir/$tfile
13446
13447         local old_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
13448         local old_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
13449         local old_dir_mode=$(stat -c%f $migrate_dir)
13450         local old_file_mode=$(stat -c%f $migrate_dir/$tfile)
13451
13452         mkdir -p $migrate_dir/dir_default_stripe2
13453         $SETSTRIPE -c 2 $migrate_dir/dir_default_stripe2
13454         $SETSTRIPE -c 2 $migrate_dir/${tfile}_stripe2
13455
13456         mkdir -p $other_dir
13457         ln $migrate_dir/$tfile $other_dir/luna
13458         ln $migrate_dir/$tfile $migrate_dir/sofia
13459         ln $other_dir/$tfile $migrate_dir/david
13460         ln -s $migrate_dir/$tfile $other_dir/zachary
13461         ln -s $migrate_dir/$tfile $migrate_dir/${tfile}_ln
13462         ln -s $other_dir/$tfile $migrate_dir/${tfile}_ln_other
13463
13464         $LFS migrate -m $MDTIDX $migrate_dir ||
13465                 error "fails on migrating remote dir to MDT1"
13466
13467         echo "migratate to MDT1, then checking.."
13468         for ((i = 0; i < 10; i++)); do
13469                 for file in $(find $migrate_dir/dir_${i}); do
13470                         mdt_index=$($LFS getstripe -M $file)
13471                         [ $mdt_index == $MDTIDX ] ||
13472                                 error "$file is not on MDT${MDTIDX}"
13473                 done
13474         done
13475
13476         # the multiple link file should still in MDT0
13477         mdt_index=$($LFS getstripe -M $migrate_dir/$tfile)
13478         [ $mdt_index == 0 ] ||
13479                 error "$file is not on MDT${MDTIDX}"
13480
13481         local new_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
13482         [ "$old_dir_flag" = "$new_dir_flag" ] ||
13483                 error " expect $old_dir_flag get $new_dir_flag"
13484
13485         local new_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
13486         [ "$old_file_flag" = "$new_file_flag" ] ||
13487                 error " expect $old_file_flag get $new_file_flag"
13488
13489         local new_dir_mode=$(stat -c%f $migrate_dir)
13490         [ "$old_dir_mode" = "$new_dir_mode" ] ||
13491                 error "expect mode $old_dir_mode get $new_dir_mode"
13492
13493         local new_file_mode=$(stat -c%f $migrate_dir/$tfile)
13494         [ "$old_file_mode" = "$new_file_mode" ] ||
13495                 error "expect mode $old_file_mode get $new_file_mode"
13496
13497         diff /etc/passwd $migrate_dir/$tfile ||
13498                 error "$tfile different after migration"
13499
13500         diff /etc/passwd $other_dir/luna ||
13501                 error "luna different after migration"
13502
13503         diff /etc/passwd $migrate_dir/sofia ||
13504                 error "sofia different after migration"
13505
13506         diff /etc/passwd $migrate_dir/david ||
13507                 error "david different after migration"
13508
13509         diff /etc/passwd $other_dir/zachary ||
13510                 error "zachary different after migration"
13511
13512         diff /etc/passwd $migrate_dir/${tfile}_ln ||
13513                 error "${tfile}_ln different after migration"
13514
13515         diff /etc/passwd $migrate_dir/${tfile}_ln_other ||
13516                 error "${tfile}_ln_other different after migration"
13517
13518         stripe_count=$($LFS getstripe -c $migrate_dir/dir_default_stripe2)
13519         [ $stripe_count = 2 ] ||
13520                 error "dir strpe_count $d != 2 after migration."
13521
13522         stripe_count=$($LFS getstripe -c $migrate_dir/${tfile}_stripe2)
13523         [ $stripe_count = 2 ] ||
13524                 error "file strpe_count $d != 2 after migration."
13525
13526         #migrate back to MDT0
13527         MDTIDX=0
13528
13529         $LFS migrate -m $MDTIDX $migrate_dir ||
13530                 error "fails on migrating remote dir to MDT0"
13531
13532         echo "migrate back to MDT0, checking.."
13533         for file in $(find $migrate_dir); do
13534                 mdt_index=$($LFS getstripe -M $file)
13535                 [ $mdt_index == $MDTIDX ] ||
13536                         error "$file is not on MDT${MDTIDX}"
13537         done
13538
13539         local new_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
13540         [ "$old_dir_flag" = "$new_dir_flag" ] ||
13541                 error " expect $old_dir_flag get $new_dir_flag"
13542
13543         local new_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
13544         [ "$old_file_flag" = "$new_file_flag" ] ||
13545                 error " expect $old_file_flag get $new_file_flag"
13546
13547         local new_dir_mode=$(stat -c%f $migrate_dir)
13548         [ "$old_dir_mode" = "$new_dir_mode" ] ||
13549                 error "expect mode $old_dir_mode get $new_dir_mode"
13550
13551         local new_file_mode=$(stat -c%f $migrate_dir/$tfile)
13552         [ "$old_file_mode" = "$new_file_mode" ] ||
13553                 error "expect mode $old_file_mode get $new_file_mode"
13554
13555         diff /etc/passwd ${migrate_dir}/$tfile ||
13556                 error "$tfile different after migration"
13557
13558         diff /etc/passwd ${other_dir}/luna ||
13559                 error "luna different after migration"
13560
13561         diff /etc/passwd ${migrate_dir}/sofia ||
13562                 error "sofia different after migration"
13563
13564         diff /etc/passwd ${other_dir}/zachary ||
13565                 error "zachary different after migration"
13566
13567         diff /etc/passwd $migrate_dir/${tfile}_ln ||
13568                 error "${tfile}_ln different after migration"
13569
13570         diff /etc/passwd $migrate_dir/${tfile}_ln_other ||
13571                 error "${tfile}_ln_other different after migration"
13572
13573         stripe_count=$($LFS getstripe -c ${migrate_dir}/dir_default_stripe2)
13574         [ $stripe_count = 2 ] ||
13575                 error "dir strpe_count $d != 2 after migration."
13576
13577         stripe_count=$($LFS getstripe -c ${migrate_dir}/${tfile}_stripe2)
13578         [ $stripe_count = 2 ] ||
13579                 error "file strpe_count $d != 2 after migration."
13580
13581         rm -rf $DIR/$tdir || error "rm dir failed after migration"
13582 }
13583 run_test 230b "migrate directory"
13584
13585 test_230c() {
13586         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13587         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13588         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13589         local MDTIDX=1
13590         local mdt_index
13591         local file
13592         local migrate_dir=$DIR/$tdir/migrate_dir
13593
13594         #If migrating directory fails in the middle, all entries of
13595         #the directory is still accessiable.
13596         test_mkdir $DIR/$tdir
13597         test_mkdir -i0 -c1 $migrate_dir
13598         stat $migrate_dir
13599         createmany -o $migrate_dir/f 10 ||
13600                 error "create files under ${migrate_dir} failed"
13601
13602         #failed after migrating 5 entries
13603         #OBD_FAIL_MIGRATE_ENTRIES       0x1801
13604         do_facet mds1 lctl set_param fail_loc=0x20001801
13605         do_facet mds1 lctl  set_param fail_val=5
13606         local t=$(ls $migrate_dir | wc -l)
13607         $LFS migrate --mdt-index $MDTIDX $migrate_dir &&
13608                 error "migrate should fail after 5 entries"
13609
13610         mkdir $migrate_dir/dir &&
13611                 error "mkdir succeeds under migrating directory"
13612         touch $migrate_dir/file &&
13613                 error "touch file succeeds under migrating directory"
13614
13615         local u=$(ls $migrate_dir | wc -l)
13616         [ "$u" == "$t" ] || error "$u != $t during migration"
13617
13618         for file in $(find $migrate_dir); do
13619                 stat $file || error "stat $file failed"
13620         done
13621
13622         do_facet mds1 lctl set_param fail_loc=0
13623         do_facet mds1 lctl set_param fail_val=0
13624
13625         $LFS migrate -m $MDTIDX $migrate_dir ||
13626                 error "migrate open files should failed with open files"
13627
13628         echo "Finish migration, then checking.."
13629         for file in $(find $migrate_dir); do
13630                 mdt_index=$($LFS getstripe -M $file)
13631                 [ $mdt_index == $MDTIDX ] ||
13632                         error "$file is not on MDT${MDTIDX}"
13633         done
13634
13635         rm -rf $DIR/$tdir || error "rm dir failed after migration"
13636 }
13637 run_test 230c "check directory accessiblity if migration is failed"
13638
13639 test_230d() {
13640         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13641         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13642         local MDTIDX=1
13643         local mdt_index
13644         local migrate_dir=$DIR/$tdir/migrate_dir
13645         local i
13646         local j
13647
13648         test_mkdir $DIR/$tdir
13649         test_mkdir -i0 -c1 $migrate_dir
13650
13651         for ((i=0; i<100; i++)); do
13652                 test_mkdir -i0 -c1 $migrate_dir/dir_${i}
13653                 createmany -o $migrate_dir/dir_${i}/f 100 ||
13654                         error "create files under remote dir failed $i"
13655         done
13656
13657         $LFS migrate -m $MDTIDX $migrate_dir ||
13658                 error "migrate remote dir error"
13659
13660         echo "Finish migration, then checking.."
13661         for file in $(find $migrate_dir); do
13662                 mdt_index=$($LFS getstripe -M $file)
13663                 [ $mdt_index == $MDTIDX ] ||
13664                         error "$file is not on MDT${MDTIDX}"
13665         done
13666
13667         rm -rf $DIR/$tdir || error "rm dir failed after migration"
13668 }
13669 run_test 230d "check migrate big directory"
13670
13671 test_230e() {
13672         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13673         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13674         local i
13675         local j
13676         local a_fid
13677         local b_fid
13678
13679         mkdir -p $DIR/$tdir
13680         mkdir $DIR/$tdir/migrate_dir
13681         mkdir $DIR/$tdir/other_dir
13682         touch $DIR/$tdir/migrate_dir/a
13683         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/b
13684         ls $DIR/$tdir/other_dir
13685
13686         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
13687                 error "migrate dir fails"
13688
13689         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir)
13690         [ $mdt_index == 1 ] || error "migrate_dir is not on MDT1"
13691
13692         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
13693         [ $mdt_index == 0 ] || error "a is not on MDT0"
13694
13695         $LFS migrate -m 1 $DIR/$tdir/other_dir ||
13696                 error "migrate dir fails"
13697
13698         mdt_index=$($LFS getstripe -M $DIR/$tdir/other_dir)
13699         [ $mdt_index == 1 ] || error "other_dir is not on MDT1"
13700
13701         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
13702         [ $mdt_index == 1 ] || error "a is not on MDT1"
13703
13704         mdt_index=$($LFS getstripe -M $DIR/$tdir/other_dir/b)
13705         [ $mdt_index == 1 ] || error "b is not on MDT1"
13706
13707         a_fid=$($LFS path2fid $DIR/$tdir/migrate_dir/a)
13708         b_fid=$($LFS path2fid $DIR/$tdir/other_dir/b)
13709
13710         [ "$a_fid" = "$b_fid" ] || error "different fid after migration"
13711
13712         rm -rf $DIR/$tdir || error "rm dir failed after migration"
13713 }
13714 run_test 230e "migrate mulitple local link files"
13715
13716 test_230f() {
13717         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13718         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13719         local a_fid
13720         local ln_fid
13721
13722         mkdir -p $DIR/$tdir
13723         mkdir $DIR/$tdir/migrate_dir
13724         $LFS mkdir -i1 $DIR/$tdir/other_dir
13725         touch $DIR/$tdir/migrate_dir/a
13726         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/ln1
13727         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/ln2
13728         ls $DIR/$tdir/other_dir
13729
13730         # a should be migrated to MDT1, since no other links on MDT0
13731         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
13732                 error "#1 migrate dir fails"
13733         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir)
13734         [ $mdt_index == 1 ] || error "migrate_dir is not on MDT1"
13735         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
13736         [ $mdt_index == 1 ] || error "a is not on MDT1"
13737
13738         # a should stay on MDT1, because it is a mulitple link file
13739         $LFS migrate -m 0 $DIR/$tdir/migrate_dir ||
13740                 error "#2 migrate dir fails"
13741         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
13742         [ $mdt_index == 1 ] || error "a is not on MDT1"
13743
13744         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
13745                 error "#3 migrate dir fails"
13746
13747         a_fid=$($LFS path2fid $DIR/$tdir/migrate_dir/a)
13748         ln_fid=$($LFS path2fid $DIR/$tdir/other_dir/ln1)
13749         [ "$a_fid" = "$ln_fid" ] || error "different fid after migrate to MDT1"
13750
13751         rm -rf $DIR/$tdir/other_dir/ln1 || error "unlink ln1 fails"
13752         rm -rf $DIR/$tdir/other_dir/ln2 || error "unlink ln2 fails"
13753
13754         # a should be migrated to MDT0, since no other links on MDT1
13755         $LFS migrate -m 0 $DIR/$tdir/migrate_dir ||
13756                 error "#4 migrate dir fails"
13757         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
13758         [ $mdt_index == 0 ] || error "a is not on MDT0"
13759
13760         rm -rf $DIR/$tdir || error "rm dir failed after migration"
13761 }
13762 run_test 230f "migrate mulitple remote link files"
13763
13764 test_230g() {
13765         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13766         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13767
13768         mkdir -p $DIR/$tdir/migrate_dir
13769
13770         $LFS migrate -m 1000 $DIR/$tdir/migrate_dir &&
13771                 error "migrating dir to non-exist MDT succeeds"
13772         true
13773 }
13774 run_test 230g "migrate dir to non-exist MDT"
13775
13776 test_230h() {
13777         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13778         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13779         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.64) ] &&
13780                 skip "Need MDS version at least 2.7.64" && return
13781         local mdt_index
13782
13783         mkdir -p $DIR/$tdir/migrate_dir
13784
13785         $LFS migrate -m1 $DIR &&
13786                 error "migrating mountpoint1 should fail"
13787
13788         $LFS migrate -m1 $DIR/$tdir/.. &&
13789                 error "migrating mountpoint2 should fail"
13790
13791         $LFS migrate -m1 $DIR/$tdir/migrate_dir/.. ||
13792                 error "migrating $tdir fail"
13793
13794         mdt_index=$($LFS getstripe -M $DIR/$tdir)
13795         [ $mdt_index == 1 ] || error "$mdt_index != 1 after migration"
13796
13797         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir)
13798         [ $mdt_index == 1 ] || error "$mdt_index != 1 after migration"
13799
13800 }
13801 run_test 230h "migrate .. and root"
13802
13803 test_230i() {
13804         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13805         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13806
13807         mkdir -p $DIR/$tdir/migrate_dir
13808
13809         $LFS migrate -m 1 $DIR/$tdir/migrate_dir/ ||
13810                 error "migration fails with a tailing slash"
13811
13812         $LFS migrate -m 0 $DIR/$tdir/migrate_dir// ||
13813                 error "migration fails with two tailing slashes"
13814 }
13815 run_test 230i "lfs migrate -m tolerates trailing slashes"
13816
13817 test_231a()
13818 {
13819         # For simplicity this test assumes that max_pages_per_rpc
13820         # is the same across all OSCs
13821         local max_pages=$($LCTL get_param -n osc.*.max_pages_per_rpc | head -n1)
13822         local bulk_size=$((max_pages * 4096))
13823         local brw_size=$(do_facet ost1 $LCTL get_param -n obdfilter.*.brw_size |
13824                                        head -n 1)
13825
13826         mkdir -p $DIR/$tdir
13827         $LFS setstripe -S ${brw_size}M $DIR/$tdir ||
13828                 error "failed to set stripe with -S ${brw_size}M option"
13829
13830         # clear the OSC stats
13831         $LCTL set_param osc.*.stats=0 &>/dev/null
13832         stop_writeback
13833
13834         # Client writes $bulk_size - there must be 1 rpc for $max_pages.
13835         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=$bulk_size count=1 \
13836                 oflag=direct &>/dev/null || error "dd failed"
13837
13838         sync; sleep 1; sync # just to be safe
13839         local nrpcs=$($LCTL get_param osc.*.stats |awk '/ost_write/ {print $2}')
13840         if [ x$nrpcs != "x1" ]; then
13841                 $LCTL get_param osc.*.stats
13842                 error "found $nrpcs ost_write RPCs, not 1 as expected"
13843         fi
13844
13845         start_writeback
13846         # Drop the OSC cache, otherwise we will read from it
13847         cancel_lru_locks osc
13848
13849         # clear the OSC stats
13850         $LCTL set_param osc.*.stats=0 &>/dev/null
13851
13852         # Client reads $bulk_size.
13853         dd if=$DIR/$tdir/$tfile of=/dev/null bs=$bulk_size count=1 \
13854                 iflag=direct &>/dev/null || error "dd failed"
13855
13856         nrpcs=$($LCTL get_param osc.*.stats | awk '/ost_read/ { print $2 }')
13857         if [ x$nrpcs != "x1" ]; then
13858                 $LCTL get_param osc.*.stats
13859                 error "found $nrpcs ost_read RPCs, not 1 as expected"
13860         fi
13861 }
13862 run_test 231a "checking that reading/writing of BRW RPC size results in one RPC"
13863
13864 test_231b() {
13865         mkdir -p $DIR/$tdir
13866         local i
13867         for i in {0..1023}; do
13868                 dd if=/dev/zero of=$DIR/$tdir/$tfile conv=notrunc \
13869                         seek=$((2 * i)) bs=4096 count=1 &>/dev/null ||
13870                         error "dd of=$DIR/$tdir/$tfile seek=$((2 * i)) failed"
13871         done
13872         sync
13873 }
13874 run_test 231b "must not assert on fully utilized OST request buffer"
13875
13876 test_232() {
13877         mkdir -p $DIR/$tdir
13878         #define OBD_FAIL_LDLM_OST_LVB            0x31c
13879         $LCTL set_param fail_loc=0x31c
13880
13881         # ignore dd failure
13882         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=1 || true
13883
13884         $LCTL set_param fail_loc=0
13885         umount_client $MOUNT || error "umount failed"
13886         mount_client $MOUNT || error "mount failed"
13887 }
13888 run_test 232 "failed lock should not block umount"
13889
13890 test_233a() {
13891         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.64) ] ||
13892         { skip "Need MDS version at least 2.3.64"; return; }
13893         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
13894
13895         local fid=$($LFS path2fid $MOUNT)
13896         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
13897                 error "cannot access $MOUNT using its FID '$fid'"
13898 }
13899 run_test 233a "checking that OBF of the FS root succeeds"
13900
13901 test_233b() {
13902         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.5.90) ] ||
13903         { skip "Need MDS version at least 2.5.90"; return; }
13904         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
13905
13906         local fid=$($LFS path2fid $MOUNT/.lustre)
13907         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
13908                 error "cannot access $MOUNT/.lustre using its FID '$fid'"
13909
13910         fid=$($LFS path2fid $MOUNT/.lustre/fid)
13911         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
13912                 error "cannot access $MOUNT/.lustre/fid using its FID '$fid'"
13913 }
13914 run_test 233b "checking that OBF of the FS .lustre succeeds"
13915
13916 test_234() {
13917         local p="$TMP/sanityN-$TESTNAME.parameters"
13918         save_lustre_params client "llite.*.xattr_cache" > $p
13919         lctl set_param llite.*.xattr_cache 1 ||
13920                 { skip "xattr cache is not supported"; return 0; }
13921
13922         mkdir -p $DIR/$tdir || error "mkdir failed"
13923         touch $DIR/$tdir/$tfile || error "touch failed"
13924         # OBD_FAIL_LLITE_XATTR_ENOMEM
13925         $LCTL set_param fail_loc=0x1405
13926         # output of the form: attr 2 4 44 3 fc13 x86_64
13927         V=($(IFS=".-" rpm -q attr))
13928         if [[ ${V[1]} > 2 || ${V[2]} > 4 || ${V[3]} > 44 ||
13929               ${V[1]} = 2 && ${V[2]} = 4 && ${V[3]} = 44 && ${V[4]} > 6 ]]; then
13930                 # attr pre-2.4.44-7 had a bug with rc
13931                 # LU-3703 - SLES 11 and FC13 clients have older attr
13932                 getfattr -n user.attr $DIR/$tdir/$tfile &&
13933                         error "getfattr should have failed with ENOMEM"
13934         else
13935                 skip "LU-3703: attr version $(getfattr --version) too old"
13936         fi
13937         $LCTL set_param fail_loc=0x0
13938         rm -rf $DIR/$tdir
13939
13940         restore_lustre_params < $p
13941         rm -f $p
13942 }
13943 run_test 234 "xattr cache should not crash on ENOMEM"
13944
13945 test_235() {
13946         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.52) ] &&
13947                 skip "Need MDS version at least 2.4.52" && return
13948         flock_deadlock $DIR/$tfile
13949         local RC=$?
13950         case $RC in
13951                 0)
13952                 ;;
13953                 124) error "process hangs on a deadlock"
13954                 ;;
13955                 *) error "error executing flock_deadlock $DIR/$tfile"
13956                 ;;
13957         esac
13958 }
13959 run_test 235 "LU-1715: flock deadlock detection does not work properly"
13960
13961 #LU-2935
13962 test_236() {
13963         check_swap_layouts_support && return 0
13964         test_mkdir -p -c1 $DIR/$tdir || error "mkdir $tdir failed"
13965
13966         local ref1=/etc/passwd
13967         local ref2=/etc/group
13968         local file1=$DIR/$tdir/f1
13969         local file2=$DIR/$tdir/f2
13970
13971         $SETSTRIPE -c 1 $file1 || error "cannot setstripe on '$file1': rc = $?"
13972         cp $ref1 $file1 || error "cp $ref1 $file1 failed: rc = $?"
13973         $SETSTRIPE -c 2 $file2 || error "cannot setstripe on '$file2': rc = $?"
13974         cp $ref2 $file2 || error "cp $ref2 $file2 failed: rc = $?"
13975         local fd=$(free_fd)
13976         local cmd="exec $fd<>$file2"
13977         eval $cmd
13978         rm $file2
13979         $LFS swap_layouts $file1 /proc/self/fd/${fd} ||
13980                 error "cannot swap layouts of '$file1' and /proc/self/fd/${fd}"
13981         cmd="exec $fd>&-"
13982         eval $cmd
13983         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
13984
13985         #cleanup
13986         rm -rf $DIR/$tdir
13987 }
13988 run_test 236 "Layout swap on open unlinked file"
13989
13990 # test to verify file handle related system calls
13991 # (name_to_handle_at/open_by_handle_at)
13992 # The new system calls are supported in glibc >= 2.14.
13993
13994 test_237() {
13995         echo "Test file_handle syscalls" > $DIR/$tfile ||
13996                 error "write failed"
13997         check_fhandle_syscalls $DIR/$tfile ||
13998                 error "check_fhandle_syscalls failed"
13999 }
14000 run_test 237 "Verify name_to_handle_at/open_by_handle_at syscalls"
14001
14002 # LU-4659 linkea consistency
14003 test_238() {
14004         local server_version=$(lustre_version_code $SINGLEMDS)
14005
14006         [[ $server_version -gt $(version_code 2.5.57) ]] ||
14007                 [[ $server_version -gt $(version_code 2.5.1) &&
14008                    $server_version -lt $(version_code 2.5.50) ]] ||
14009                 { skip "Need MDS version at least 2.5.58 or 2.5.2+"; return; }
14010
14011         touch $DIR/$tfile
14012         ln $DIR/$tfile $DIR/$tfile.lnk
14013         touch $DIR/$tfile.new
14014         mv $DIR/$tfile.new $DIR/$tfile
14015         local fid1=$($LFS path2fid $DIR/$tfile)
14016         local fid2=$($LFS path2fid $DIR/$tfile.lnk)
14017         local path1=$($LFS fid2path $FSNAME "$fid1")
14018         [ $tfile == $path1 ] || error "linkea inconsistent: $tfile $fid1 $path1"
14019         local path2=$($LFS fid2path $FSNAME "$fid2")
14020         [ $tfile.lnk == $path2 ] ||
14021                 error "linkea inconsistent: $tfile.lnk $fid2 $path2!"
14022         rm -f $DIR/$tfile*
14023 }
14024 run_test 238 "Verify linkea consistency"
14025
14026 test_239() {
14027         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.60) ] &&
14028                 skip "Need MDS version at least 2.5.60" && return
14029         local list=$(comma_list $(mdts_nodes))
14030
14031         mkdir -p $DIR/$tdir
14032         createmany -o $DIR/$tdir/f- 5000
14033         unlinkmany $DIR/$tdir/f- 5000
14034         do_nodes $list "lctl set_param -n osp*.*.sync_changes 1"
14035         changes=$(do_nodes $list "lctl get_param -n osc.*MDT*.sync_changes \
14036                         osc.*MDT*.sync_in_flight" | calc_sum)
14037         [ "$changes" -eq 0 ] || error "$changes not synced"
14038 }
14039 run_test 239 "osp_sync test"
14040
14041 test_239a() { #LU-5297
14042         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14043         touch $DIR/$tfile
14044         #define OBD_FAIL_OSP_CHECK_INVALID_REC     0x2100
14045         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2100
14046         chgrp $RUNAS_GID $DIR/$tfile
14047         wait_delete_completed
14048 }
14049 run_test 239a "process invalid osp sync record correctly"
14050
14051 test_239b() { #LU-5297
14052         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14053         touch $DIR/$tfile1
14054         #define OBD_FAIL_OSP_CHECK_ENOMEM     0x2101
14055         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2101
14056         chgrp $RUNAS_GID $DIR/$tfile1
14057         wait_delete_completed
14058         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
14059         touch $DIR/$tfile2
14060         chgrp $RUNAS_GID $DIR/$tfile2
14061         wait_delete_completed
14062 }
14063 run_test 239b "process osp sync record with ENOMEM error correctly"
14064
14065 test_240() {
14066         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14067         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14068
14069         mkdir -p $DIR/$tdir
14070
14071         $LFS mkdir -i 0 $DIR/$tdir/d0 ||
14072                 error "failed to mkdir $DIR/$tdir/d0 on MDT0"
14073         $LFS mkdir -i 1 $DIR/$tdir/d0/d1 ||
14074                 error "failed to mkdir $DIR/$tdir/d0/d1 on MDT1"
14075
14076         umount_client $MOUNT || error "umount failed"
14077         #define OBD_FAIL_TGT_DELAY_CONDITIONAL   0x713
14078         do_facet mds2 lctl set_param fail_loc=0x713 fail_val=1
14079         mount_client $MOUNT || error "failed to mount client"
14080
14081         echo "stat $DIR/$tdir/d0/d1, should not fail/ASSERT"
14082         stat $DIR/$tdir/d0/d1 || error "fail to stat $DIR/$tdir/d0/d1"
14083 }
14084 run_test 240 "race between ldlm enqueue and the connection RPC (no ASSERT)"
14085
14086 test_241_bio() {
14087         for LOOP in $(seq $1); do
14088                 dd if=$DIR/$tfile of=/dev/null bs=40960 count=1 2>/dev/null
14089                 cancel_lru_locks osc || true
14090         done
14091 }
14092
14093 test_241_dio() {
14094         for LOOP in $(seq $1); do
14095                 dd if=$DIR/$tfile of=/dev/null bs=40960 count=1 \
14096                                                 iflag=direct 2>/dev/null
14097         done
14098 }
14099
14100 test_241a() { # was test_241
14101         dd if=/dev/zero of=$DIR/$tfile count=1 bs=40960
14102         ls -la $DIR/$tfile
14103         cancel_lru_locks osc
14104         test_241_bio 1000 &
14105         PID=$!
14106         test_241_dio 1000
14107         wait $PID
14108 }
14109 run_test 241a "bio vs dio"
14110
14111 test_241b() {
14112         dd if=/dev/zero of=$DIR/$tfile count=1 bs=40960
14113         ls -la $DIR/$tfile
14114         test_241_dio 1000 &
14115         PID=$!
14116         test_241_dio 1000
14117         wait $PID
14118 }
14119 run_test 241b "dio vs dio"
14120
14121 test_242() {
14122         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14123         mkdir -p $DIR/$tdir
14124         touch $DIR/$tdir/$tfile
14125
14126         #define OBD_FAIL_MDS_READPAGE_PACK      0x105
14127         do_facet mds1 lctl set_param fail_loc=0x105
14128         /bin/ls $DIR/$tdir && error "ls $DIR/$tdir should fail"
14129
14130         do_facet mds1 lctl set_param fail_loc=0
14131         /bin/ls $DIR/$tdir || error "ls $DIR/$tdir failed"
14132 }
14133 run_test 242 "mdt_readpage failure should not cause directory unreadable"
14134
14135 test_243()
14136 {
14137         test_mkdir -p $DIR/$tdir
14138         group_lock_test -d $DIR/$tdir || error "A group lock test failed"
14139 }
14140 run_test 243 "various group lock tests"
14141
14142 test_244()
14143 {
14144         test_mkdir -p $DIR/$tdir
14145         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=35
14146         sendfile_grouplock $DIR/$tdir/$tfile || \
14147                 error "sendfile+grouplock failed"
14148         rm -rf $DIR/$tdir
14149 }
14150 run_test 244 "sendfile with group lock tests"
14151
14152 test_245() {
14153         local flagname="multi_mod_rpcs"
14154         local connect_data_name="max_mod_rpcs"
14155         local out
14156
14157         # check if multiple modify RPCs flag is set
14158         out=$($LCTL get_param mdc.$FSNAME-MDT0000-*.import |
14159                 grep "connect_flags:")
14160         echo "$out"
14161
14162         echo "$out" | grep -qw $flagname
14163         if [ $? -ne 0 ]; then
14164                 echo "connect flag $flagname is not set"
14165                 return
14166         fi
14167
14168         # check if multiple modify RPCs data is set
14169         out=$($LCTL get_param mdc.$FSNAME-MDT0000-*.import)
14170         echo "$out"
14171
14172         echo "$out" | grep -qw $connect_data_name ||
14173                 error "import should have connect data $connect_data_name"
14174 }
14175 run_test 245 "check mdc connection flag/data: multiple modify RPCs"
14176
14177 test_246() { # LU-7371
14178         remote_ost_nodsh && skip "remote OST with nodsh" && return
14179         [ $(lustre_version_code ost1) -lt $(version_code 2.7.62) ] &&
14180                 skip "Need OST version >= 2.7.62" && return 0
14181         do_facet ost1 $LCTL set_param fail_val=4095
14182 #define OBD_FAIL_OST_READ_SIZE          0x234
14183         do_facet ost1 $LCTL set_param fail_loc=0x234
14184         $LFS setstripe $DIR/$tfile -i 0 -c 1
14185         dd if=/dev/zero of=$DIR/$tfile bs=4095 count=1 > /dev/null 2>&1
14186         cancel_lru_locks $FSNAME-OST0000
14187         dd if=$DIR/$tfile of=/dev/null bs=1048576 || error "Read failed"
14188 }
14189 run_test 246 "Read file of size 4095 should return right length"
14190
14191 test_247a() {
14192         lctl get_param -n mdc.$FSNAME-MDT0000*.import |
14193                 grep -q subtree ||
14194                 { skip "Fileset feature is not supported"; return; }
14195
14196         local submount=${MOUNT}_$tdir
14197
14198         mkdir $MOUNT/$tdir
14199         mkdir -p $submount || error "mkdir $submount failed"
14200         FILESET="$FILESET/$tdir" mount_client $submount ||
14201                 error "mount $submount failed"
14202         echo foo > $submount/$tfile || error "write $submount/$tfile failed"
14203         [ $(cat $MOUNT/$tdir/$tfile) = "foo" ] ||
14204                 error "read $MOUNT/$tdir/$tfile failed"
14205         umount_client $submount || error "umount $submount failed"
14206         rmdir $submount
14207 }
14208 run_test 247a "mount subdir as fileset"
14209
14210 test_247b() {
14211         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
14212                 { skip "Fileset feature is not supported"; return; }
14213
14214         local submount=${MOUNT}_$tdir
14215
14216         rm -rf $MOUNT/$tdir
14217         mkdir -p $submount || error "mkdir $submount failed"
14218         SKIP_FILESET=1
14219         FILESET="$FILESET/$tdir" mount_client $submount &&
14220                 error "mount $submount should fail"
14221         rmdir $submount
14222 }
14223 run_test 247b "mount subdir that dose not exist"
14224
14225 test_247c() {
14226         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
14227                 { skip "Fileset feature is not supported"; return; }
14228
14229         local submount=${MOUNT}_$tdir
14230
14231         mkdir -p $MOUNT/$tdir/dir1
14232         mkdir -p $submount || error "mkdir $submount failed"
14233         FILESET="$FILESET/$tdir" mount_client $submount ||
14234                 error "mount $submount failed"
14235         local fid=$($LFS path2fid $MOUNT/)
14236         $LFS fid2path $submount $fid && error "fid2path should fail"
14237         umount_client $submount || error "umount $submount failed"
14238         rmdir $submount
14239 }
14240 run_test 247c "running fid2path outside root"
14241
14242 test_247d() {
14243         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
14244                 { skip "Fileset feature is not supported"; return; }
14245
14246         local submount=${MOUNT}_$tdir
14247
14248         mkdir -p $MOUNT/$tdir/dir1
14249         mkdir -p $submount || error "mkdir $submount failed"
14250         FILESET="$FILESET/$tdir" mount_client $submount ||
14251                 error "mount $submount failed"
14252         local fid=$($LFS path2fid $submount/dir1)
14253         $LFS fid2path $submount $fid || error "fid2path should succeed"
14254         umount_client $submount || error "umount $submount failed"
14255         rmdir $submount
14256 }
14257 run_test 247d "running fid2path inside root"
14258
14259 # LU-8037
14260 test_247e() {
14261         lctl get_param -n mdc.$FSNAME-MDT0000*.import |
14262                 grep -q subtree ||
14263                 { skip "Fileset feature is not supported"; return; }
14264
14265         local submount=${MOUNT}_$tdir
14266
14267         mkdir $MOUNT/$tdir
14268         mkdir -p $submount || error "mkdir $submount failed"
14269         FILESET="$FILESET/.." mount_client $submount &&
14270                 error "mount $submount should fail"
14271         rmdir $submount
14272 }
14273 run_test 247e "mount .. as fileset"
14274
14275 test_248() {
14276         local fast_read_sav=$($LCTL get_param -n llite.*.fast_read 2>/dev/null)
14277         [ -z "$fast_read_sav" ] && skip "no fast read support" && return
14278
14279         # create a large file for fast read verification
14280         dd if=/dev/zero of=$DIR/$tfile bs=1M count=128 > /dev/null 2>&1
14281
14282         # make sure the file is created correctly
14283         $CHECKSTAT -s $((128*1024*1024)) $DIR/$tfile ||
14284                 { rm -f $DIR/$tfile; skip "file creation error" && return; }
14285
14286         echo "Test 1: verify that fast read is 4 times faster on cache read"
14287
14288         # small read with fast read enabled
14289         $LCTL set_param -n llite.*.fast_read=1
14290         local t_fast=$(dd if=$DIR/$tfile of=/dev/null bs=4k 2>&1 |
14291                 awk '/copied/ { print $6 }')
14292
14293         # small read with fast read disabled
14294         $LCTL set_param -n llite.*.fast_read=0
14295         local t_slow=$(dd if=$DIR/$tfile of=/dev/null bs=4k 2>&1 |
14296                 awk '/copied/ { print $6 }')
14297
14298         # verify that fast read is 4 times faster for cache read
14299         [ $(bc <<< "4 * $t_fast < $t_slow") -eq 1 ] ||
14300                 error_not_in_vm "fast read was not 4 times faster: " \
14301                            "$t_fast vs $t_slow"
14302
14303         echo "Test 2: verify the performance between big and small read"
14304         $LCTL set_param -n llite.*.fast_read=1
14305
14306         # 1k non-cache read
14307         cancel_lru_locks osc
14308         local t_1k=$(dd if=$DIR/$tfile of=/dev/null bs=1k 2>&1 |
14309                 awk '/copied/ { print $6 }')
14310
14311         # 1M non-cache read
14312         cancel_lru_locks osc
14313         local t_1m=$(dd if=$DIR/$tfile of=/dev/null bs=1k 2>&1 |
14314                 awk '/copied/ { print $6 }')
14315
14316         # verify that big IO is not 4 times faster than small IO
14317         [ $(bc <<< "4 * $t_1k >= $t_1m") -eq 1 ] ||
14318                 error_not_in_vm "bigger IO is way too fast: $t_1k vs $t_1m"
14319
14320         $LCTL set_param -n llite.*.fast_read=$fast_read_sav
14321         rm -f $DIR/$tfile
14322 }
14323 run_test 248 "fast read verification"
14324
14325 test_249() { # LU-7890
14326         rm -f $DIR/$tfile
14327         $SETSTRIPE -c 1 $DIR/$tfile
14328
14329         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.53) ] &&
14330         skip "Need at least version 2.8.54"
14331
14332         # Offset 2T == 4k * 512M
14333         dd if=/dev/zero of=$DIR/$tfile bs=4k count=1 seek=512M ||
14334                 error "dd to 2T offset failed"
14335 }
14336 run_test 249 "Write above 2T file size"
14337
14338 test_250() {
14339         [ "$(facet_fstype ost$(($($GETSTRIPE -i $DIR/$tfile) + 1)))" = "zfs" ] \
14340          && skip "no 16TB file size limit on ZFS" && return
14341
14342         $SETSTRIPE -c 1 $DIR/$tfile
14343         # ldiskfs extent file size limit is (16TB - 4KB - 1) bytes
14344         local size=$((16 * 1024 * 1024 * 1024 * 1024 - 4096 - 1))
14345         $TRUNCATE $DIR/$tfile $size || error "truncate $tfile to $size failed"
14346         dd if=/dev/zero of=$DIR/$tfile bs=10 count=1 oflag=append \
14347                 conv=notrunc,fsync && error "append succeeded"
14348         return 0
14349 }
14350 run_test 250 "Write above 16T limit"
14351
14352 test_251() {
14353         $SETSTRIPE -c -1 -S 1048576 $DIR/$tfile
14354
14355         #define OBD_FAIL_LLITE_LOST_LAYOUT 0x1407
14356         #Skip once - writing the first stripe will succeed
14357         $LCTL set_param fail_loc=0xa0001407 fail_val=1
14358         $MULTIOP $DIR/$tfile o:O_RDWR:w2097152c 2>&1 | grep -q "short write" &&
14359                 error "short write happened"
14360
14361         $LCTL set_param fail_loc=0xa0001407 fail_val=1
14362         $MULTIOP $DIR/$tfile or2097152c 2>&1 | grep -q "short read" &&
14363                 error "short read happened"
14364
14365         rm -f $DIR/$tfile
14366 }
14367 run_test 251 "Handling short read and write correctly"
14368
14369 test_252() {
14370         local tgt
14371         local dev
14372         local out
14373         local uuid
14374         local num
14375         local gen
14376
14377         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14378         remote_ost_nodsh && skip "remote OST with nodsh" && return
14379         if [ "$(facet_fstype ost1)" != "ldiskfs" -o \
14380              "$(facet_fstype mds1)" != "ldiskfs" ]; then
14381                 skip "can only run lr_reader on ldiskfs target"
14382                 return
14383         fi
14384
14385         # check lr_reader on OST0000
14386         tgt=ost1
14387         dev=$(facet_device $tgt)
14388         out=$(do_facet $tgt $LR_READER $dev)
14389         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
14390         echo "$out"
14391         uuid=$(echo "$out" | grep -i uuid | awk '{ print $2 }')
14392         [ "$uuid" == "$(ostuuid_from_index 0)" ] ||
14393                 error "Invalid uuid returned by $LR_READER on target $tgt"
14394         echo -e "uuid returned by $LR_READER is '$uuid'\n"
14395
14396         # check lr_reader -c on MDT0000
14397         tgt=mds1
14398         dev=$(facet_device $tgt)
14399         if ! do_facet $tgt $LR_READER -h | grep -q OPTIONS; then
14400                 echo "$LR_READER does not support additional options"
14401                 return 0
14402         fi
14403         out=$(do_facet $tgt $LR_READER -c $dev)
14404         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
14405         echo "$out"
14406         num=$(echo "$out" | grep -c "mdtlov")
14407         [ "$num" -eq $((MDSCOUNT - 1)) ] ||
14408                 error "Invalid number of mdtlov clients returned by $LR_READER"
14409         echo -e "Number of mdtlov clients returned by $LR_READER is '$num'\n"
14410
14411         # check lr_reader -cr on MDT0000
14412         out=$(do_facet $tgt $LR_READER -cr $dev)
14413         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
14414         echo "$out"
14415         echo "$out" | grep -q "^reply_data:$" ||
14416                 error "$LR_READER should have returned 'reply_data' section"
14417         num=$(echo "$out" | grep -c "client_generation")
14418         echo -e "Number of reply data returned by $LR_READER is '$num'\n"
14419 }
14420 run_test 252 "check lr_reader tool"
14421
14422 test_253_fill_ost() {
14423         local size_mb #how many MB should we write to pass watermark
14424         local lwm=$3  #low watermark
14425         local free_10mb #10% of free space
14426
14427         free_kb=$($LFS df $MOUNT | grep $1 | awk '{ print $4 }')
14428         size_mb=$((free_kb / 1024 - lwm))
14429         free_10mb=$((free_kb / 10240))
14430         #If 10% of free space cross low watermark use it
14431         if (( free_10mb > size_mb )); then
14432                 size_mb=$free_10mb
14433         else
14434                 #At least we need to store 1.1 of difference between
14435                 #free space and low watermark
14436                 size_mb=$((size_mb + size_mb / 10))
14437         fi
14438         if (( lwm <= $((free_kb / 1024)) )) || [ ! -f $DIR/$tdir/1 ]; then
14439                 dd if=/dev/zero of=$DIR/$tdir/1 bs=1M count=$size_mb \
14440                          oflag=append conv=notrunc
14441         fi
14442
14443         sleep_maxage
14444
14445         free_kb=$($LFS df $MOUNT | grep $1 | awk '{ print $4 }')
14446         echo "OST still has $((free_kb / 1024)) mbytes free"
14447 }
14448
14449 test_253() {
14450         local ostidx=0
14451         local rc=0
14452
14453         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14454         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14455         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
14456
14457         local ost_name=$($LFS osts |
14458                 sed -n 's/^'$ostidx': \(.*\)_UUID .*/\1/p')
14459         # on the mdt's osc
14460         local mdtosc_proc1=$(get_mdtosc_proc_path $SINGLEMDS $ost_name)
14461         do_facet $SINGLEMDS $LCTL get_param -n \
14462                 osp.$mdtosc_proc1.reserved_mb_high ||
14463                 { skip  "remote MDS does not support reserved_mb_high" &&
14464                   return; }
14465
14466         rm -rf $DIR/$tdir
14467         wait_mds_ost_sync
14468         wait_delete_completed
14469         mkdir $DIR/$tdir
14470
14471         local last_wm_h=$(do_facet $SINGLEMDS $LCTL get_param -n \
14472                         osp.$mdtosc_proc1.reserved_mb_high)
14473         local last_wm_l=$(do_facet $SINGLEMDS $LCTL get_param -n \
14474                         osp.$mdtosc_proc1.reserved_mb_low)
14475         echo "prev high watermark $last_wm_h, prev low watermark $last_wm_l"
14476
14477         create_pool $FSNAME.$TESTNAME || error "Pool creation failed"
14478         do_facet mgs $LCTL pool_add $FSNAME.$TESTNAME $ost_name ||
14479                 error "Adding $ost_name to pool failed"
14480
14481         # Wait for client to see a OST at pool
14482         wait_update $HOSTNAME "$LCTL get_param -n
14483                 lov.$FSNAME-*.pools.$TESTNAME | sort -u |
14484                 grep $ost_name" "$ost_name""_UUID" $((TIMEOUT/2)) ||
14485                 error "Client can not see the pool"
14486         $SETSTRIPE $DIR/$tdir -i $ostidx -c 1 -p $FSNAME.$TESTNAME ||
14487                 error "Setstripe failed"
14488
14489         dd if=/dev/zero of=$DIR/$tdir/0 bs=1M count=10
14490         local blocks=$($LFS df $MOUNT | grep $ost_name | awk '{ print $4 }')
14491         echo "OST still has $((blocks/1024)) mbytes free"
14492
14493         local new_lwm=$((blocks/1024-10))
14494         do_facet $SINGLEMDS $LCTL set_param \
14495                         osp.$mdtosc_proc1.reserved_mb_high=$((new_lwm+5))
14496         do_facet $SINGLEMDS $LCTL set_param \
14497                         osp.$mdtosc_proc1.reserved_mb_low=$new_lwm
14498
14499         test_253_fill_ost $ost_name $mdtosc_proc1 $new_lwm
14500
14501         #First enospc could execute orphan deletion so repeat.
14502         test_253_fill_ost $ost_name $mdtosc_proc1 $new_lwm
14503
14504         local oa_status=$(do_facet $SINGLEMDS $LCTL get_param -n \
14505                         osp.$mdtosc_proc1.prealloc_status)
14506         echo "prealloc_status $oa_status"
14507
14508         dd if=/dev/zero of=$DIR/$tdir/2 bs=1M count=1 &&
14509                 error "File creation should fail"
14510         #object allocation was stopped, but we still able to append files
14511         dd if=/dev/zero of=$DIR/$tdir/1 bs=1M seek=6 count=5 oflag=append ||
14512                 error "Append failed"
14513         rm -f $DIR/$tdir/1 $DIR/$tdir/0 $DIR/$tdir/r*
14514
14515         wait_delete_completed
14516
14517         sleep_maxage
14518
14519         for i in $(seq 10 12); do
14520                 dd if=/dev/zero of=$DIR/$tdir/$i bs=1M count=1 2>/dev/null ||
14521                         error "File creation failed after rm";
14522         done
14523
14524         oa_status=$(do_facet $SINGLEMDS $LCTL get_param -n \
14525                         osp.$mdtosc_proc1.prealloc_status)
14526         echo "prealloc_status $oa_status"
14527
14528         if (( oa_status != 0 )); then
14529                 error "Object allocation still disable after rm"
14530         fi
14531         do_facet $SINGLEMDS $LCTL set_param \
14532                         osp.$mdtosc_proc1.reserved_mb_high=$last_wm_h
14533         do_facet $SINGLEMDS $LCTL set_param \
14534                         osp.$mdtosc_proc1.reserved_mb_low=$last_wm_l
14535
14536
14537         do_facet mgs $LCTL pool_remove $FSNAME.$TESTNAME $ost_name ||
14538                 error "Remove $ost_name from pool failed"
14539         do_facet mgs $LCTL pool_destroy $FSNAME.$TESTNAME ||
14540                 error "Pool destroy fialed"
14541 }
14542 run_test 253 "Check object allocation limit"
14543
14544 test_254() {
14545         local cl_user
14546
14547         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14548         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14549         do_facet mds1 $LCTL get_param -n mdd.$MDT0.changelog_size ||
14550                 { skip "MDS does not support changelog_size" && return; }
14551
14552         cl_user=$(do_facet mds1 $LCTL --device $MDT0 changelog_register -n)
14553         echo "Registered as changelog user $cl_user"
14554
14555         $LFS changelog_clear $MDT0 $cl_user 0
14556
14557         local size1=$(do_facet mds1 \
14558                       $LCTL get_param -n mdd.$MDT0.changelog_size)
14559         echo "Changelog size $size1"
14560
14561         rm -rf $DIR/$tdir
14562         $LFS mkdir -i 0 $DIR/$tdir
14563         # change something
14564         mkdir -p $DIR/$tdir/pics/2008/zachy
14565         touch $DIR/$tdir/pics/2008/zachy/timestamp
14566         cp /etc/hosts $DIR/$tdir/pics/2008/zachy/pic1.jpg
14567         mv $DIR/$tdir/pics/2008/zachy $DIR/$tdir/pics/zach
14568         ln $DIR/$tdir/pics/zach/pic1.jpg $DIR/$tdir/pics/2008/portland.jpg
14569         ln -s $DIR/$tdir/pics/2008/portland.jpg $DIR/$tdir/pics/desktop.jpg
14570         rm $DIR/$tdir/pics/desktop.jpg
14571
14572         local size2=$(do_facet mds1 \
14573                       $LCTL get_param -n mdd.$MDT0.changelog_size)
14574         echo "Changelog size after work $size2"
14575
14576         do_facet mds1 $LCTL --device $MDT0 changelog_deregister $cl_user
14577
14578         if (( size2 <= size1 )); then
14579                 error "Changelog size after work should be greater than original"
14580         fi
14581         return 0
14582 }
14583 run_test 254 "Check changelog size"
14584
14585 ladvise_no_type()
14586 {
14587         local type=$1
14588         local file=$2
14589
14590         lfs ladvise -a invalid $file 2>&1 | grep "Valid types" |
14591                 awk -F: '{print $2}' | grep $type > /dev/null
14592         if [ $? -ne 0 ]; then
14593                 return 0
14594         fi
14595         return 1
14596 }
14597
14598 ladvise_no_ioctl()
14599 {
14600         local file=$1
14601
14602         lfs ladvise -a willread $file > /dev/null 2>&1
14603         if [ $? -eq 0 ]; then
14604                 return 1
14605         fi
14606
14607         lfs ladvise -a willread $file 2>&1 |
14608                 grep "Inappropriate ioctl for device" > /dev/null
14609         if [ $? -eq 0 ]; then
14610                 return 0
14611         fi
14612         return 1
14613 }
14614
14615 percent() {
14616         bc <<<"scale=2; ($1 - $2) * 100 / $2"
14617 }
14618
14619 # run a random read IO workload
14620 # usage: random_read_iops <filename> <filesize> <iosize>
14621 random_read_iops() {
14622         local file=$1
14623         local fsize=$2
14624         local iosize=${3:-4096}
14625
14626         $READS -f $file -s $fsize -b $iosize -n $((fsize / iosize)) -t 60 |
14627                 sed -e '/^$/d' -e 's#.*s, ##' -e 's#MB/s##'
14628 }
14629
14630 drop_file_oss_cache() {
14631         local file="$1"
14632         local nodes="$2"
14633
14634         $LFS ladvise -a dontneed $file 2>/dev/null ||
14635                 do_nodes $nodes "echo 3 > /proc/sys/vm/drop_caches"
14636 }
14637
14638 ladvise_willread_performance()
14639 {
14640         local repeat=10
14641         local average_origin=0
14642         local average_cache=0
14643         local average_ladvise=0
14644
14645         for ((i = 1; i <= $repeat; i++)); do
14646                 echo "Iter $i/$repeat: reading without willread hint"
14647                 cancel_lru_locks osc
14648                 drop_file_oss_cache $DIR/$tfile $(comma_list $(osts_nodes))
14649                 local speed_origin=$(random_read_iops $DIR/$tfile $size)
14650                 echo "Iter $i/$repeat: uncached speed: $speed_origin"
14651                 average_origin=$(bc <<<"$average_origin + $speed_origin")
14652
14653                 cancel_lru_locks osc
14654                 local speed_cache=$(random_read_iops $DIR/$tfile $size)
14655                 echo "Iter $i/$repeat: OSS cache speed: $speed_cache"
14656                 average_cache=$(bc <<<"$average_cache + $speed_cache")
14657
14658                 cancel_lru_locks osc
14659                 drop_file_oss_cache $DIR/$tfile $(comma_list $(osts_nodes))
14660                 $LFS ladvise -a willread $DIR/$tfile || error "ladvise failed"
14661                 local speed_ladvise=$(random_read_iops $DIR/$tfile $size)
14662                 echo "Iter $i/$repeat: ladvise speed: $speed_ladvise"
14663                 average_ladvise=$(bc <<<"$average_ladvise + $speed_ladvise")
14664         done
14665         average_origin=$(bc <<<"scale=2; $average_origin / $repeat")
14666         average_cache=$(bc <<<"scale=2; $average_cache / $repeat")
14667         average_ladvise=$(bc <<<"scale=2; $average_ladvise / $repeat")
14668
14669         speedup_cache=$(percent $average_cache $average_origin)
14670         speedup_ladvise=$(percent $average_ladvise $average_origin)
14671
14672         echo "Average uncached read: $average_origin"
14673         echo "Average speedup with OSS cached read: " \
14674                 "$average_cache = +$speedup_cache%"
14675         echo "Average speedup with ladvise willread: " \
14676                 "$average_ladvise = +$speedup_ladvise%"
14677
14678         local lowest_speedup=20
14679         if [ ${average_cache%.*} -lt $lowest_speedup ]; then
14680                 echo "Speedup with OSS cached read less than $lowest_speedup%, "
14681                         "got $average_cache%. Skipping ladvise willread check."
14682                 return 0
14683         fi
14684
14685         # the test won't work on ZFS until it supports 'ladvise dontneed', but
14686         # it is still good to run until then to exercise 'ladvise willread'
14687         ! $LFS ladvise -a dontneed $DIR/$tfile &&
14688                 [ "$(facet_fstype ost1)" = "zfs" ] &&
14689                 echo "osd-zfs does not support dontneed or drop_caches" &&
14690                 return 0
14691
14692         lowest_speedup=$(bc <<<"scale=2; $average_cache / 2")
14693         [ ${average_ladvise%.*} -gt $lowest_speedup ] ||
14694                 error_not_in_vm "Speedup with willread is less than " \
14695                         "$lowest_speedup%, got $average_ladvise%"
14696 }
14697
14698 test_255a() {
14699         [ $(lustre_version_code ost1) -lt $(version_code 2.8.54) ] &&
14700                 skip "lustre < 2.8.54 does not support ladvise " && return
14701         remote_ost_nodsh && skip "remote OST with nodsh" && return
14702
14703         lfs setstripe -c -1 -i 0 $DIR/$tfile || error "$tfile failed"
14704
14705         ladvise_no_type willread $DIR/$tfile &&
14706                 skip "willread ladvise is not supported" && return
14707
14708         ladvise_no_ioctl $DIR/$tfile &&
14709                 skip "ladvise ioctl is not supported" && return
14710
14711         local size_mb=100
14712         local size=$((size_mb * 1048576))
14713         dd if=/dev/zero of=$DIR/$tfile bs=1048576 count=$size_mb ||
14714                 error "dd to $DIR/$tfile failed"
14715
14716         lfs ladvise -a willread $DIR/$tfile ||
14717                 error "Ladvise failed with no range argument"
14718
14719         lfs ladvise -a willread -s 0 $DIR/$tfile ||
14720                 error "Ladvise failed with no -l or -e argument"
14721
14722         lfs ladvise -a willread -e 1 $DIR/$tfile ||
14723                 error "Ladvise failed with only -e argument"
14724
14725         lfs ladvise -a willread -l 1 $DIR/$tfile ||
14726                 error "Ladvise failed with only -l argument"
14727
14728         lfs ladvise -a willread -s 2 -e 1 $DIR/$tfile &&
14729                 error "End offset should not be smaller than start offset"
14730
14731         lfs ladvise -a willread -s 2 -e 2 $DIR/$tfile &&
14732                 error "End offset should not be equal to start offset"
14733
14734         lfs ladvise -a willread -s $size -l 1 $DIR/$tfile ||
14735                 error "Ladvise failed with overflowing -s argument"
14736
14737         lfs ladvise -a willread -s 1 -e $((size + 1)) $DIR/$tfile ||
14738                 error "Ladvise failed with overflowing -e argument"
14739
14740         lfs ladvise -a willread -s 1 -l $size $DIR/$tfile ||
14741                 error "Ladvise failed with overflowing -l argument"
14742
14743         lfs ladvise -a willread -l 1 -e 2 $DIR/$tfile &&
14744                 error "Ladvise succeeded with conflicting -l and -e arguments"
14745
14746         echo "Synchronous ladvise should wait"
14747         local delay=4
14748 #define OBD_FAIL_OST_LADVISE_PAUSE       0x237
14749         do_nodes $(comma_list $(osts_nodes)) \
14750                 $LCTL set_param fail_val=$delay fail_loc=0x237
14751
14752         local start_ts=$SECONDS
14753         lfs ladvise -a willread $DIR/$tfile ||
14754                 error "Ladvise failed with no range argument"
14755         local end_ts=$SECONDS
14756         local inteval_ts=$((end_ts - start_ts))
14757
14758         if [ $inteval_ts -lt $(($delay - 1)) ]; then
14759                 error "Synchronous advice didn't wait reply"
14760         fi
14761
14762         echo "Asynchronous ladvise shouldn't wait"
14763         local start_ts=$SECONDS
14764         lfs ladvise -a willread -b $DIR/$tfile ||
14765                 error "Ladvise failed with no range argument"
14766         local end_ts=$SECONDS
14767         local inteval_ts=$((end_ts - start_ts))
14768
14769         if [ $inteval_ts -gt $(($delay / 2)) ]; then
14770                 error "Asynchronous advice blocked"
14771         fi
14772
14773         do_nodes $(comma_list $(osts_nodes)) $LCTL set_param fail_loc=0
14774         ladvise_willread_performance
14775 }
14776 run_test 255a "check 'lfs ladvise -a willread'"
14777
14778 facet_meminfo() {
14779         local facet=$1
14780         local info=$2
14781
14782         do_facet $facet "cat /proc/meminfo | grep ^${info}:" | awk '{print $2}'
14783 }
14784
14785 test_255b() {
14786         remote_ost_nodsh && skip "remote OST with nodsh" && return
14787
14788         lfs setstripe -c 1 -i 0 $DIR/$tfile
14789
14790         ladvise_no_type dontneed $DIR/$tfile &&
14791                 skip "dontneed ladvise is not supported" && return
14792
14793         ladvise_no_ioctl $DIR/$tfile &&
14794                 skip "ladvise ioctl is not supported" && return
14795
14796         [ $(lustre_version_code ost1) -lt $(version_code 2.8.54) ] &&
14797                 skip "lustre < 2.8.54 does not support ladvise" && return
14798
14799         ! $LFS ladvise -a dontneed $DIR/$tfile &&
14800                 [ "$(facet_fstype ost1)" = "zfs" ] &&
14801                 skip "zfs-osd does not support 'ladvise dontneed'" && return
14802
14803         local size_mb=100
14804         local size=$((size_mb * 1048576))
14805         # In order to prevent disturbance of other processes, only check 3/4
14806         # of the memory usage
14807         local kibibytes=$((size_mb * 1024 * 3 / 4))
14808
14809         dd if=/dev/zero of=$DIR/$tfile bs=1048576 count=$size_mb ||
14810                 error "dd to $DIR/$tfile failed"
14811
14812         local total=$(facet_meminfo ost1 MemTotal)
14813         echo "Total memory: $total KiB"
14814
14815         do_facet ost1 "sync && echo 3 > /proc/sys/vm/drop_caches"
14816         local before_read=$(facet_meminfo ost1 Cached)
14817         echo "Cache used before read: $before_read KiB"
14818
14819         lfs ladvise -a willread $DIR/$tfile ||
14820                 error "Ladvise willread failed"
14821         local after_read=$(facet_meminfo ost1 Cached)
14822         echo "Cache used after read: $after_read KiB"
14823
14824         lfs ladvise -a dontneed $DIR/$tfile ||
14825                 error "Ladvise dontneed again failed"
14826         local no_read=$(facet_meminfo ost1 Cached)
14827         echo "Cache used after dontneed ladvise: $no_read KiB"
14828
14829         if [ $total -lt $((before_read + kibibytes)) ]; then
14830                 echo "Memory is too small, abort checking"
14831                 return 0
14832         fi
14833
14834         if [ $((before_read + kibibytes)) -gt $after_read ]; then
14835                 error "Ladvise willread should use more memory" \
14836                         "than $kibibytes KiB"
14837         fi
14838
14839         if [ $((no_read + kibibytes)) -gt $after_read ]; then
14840                 error "Ladvise dontneed should release more memory" \
14841                         "than $kibibytes KiB"
14842         fi
14843 }
14844 run_test 255b "check 'lfs ladvise -a dontneed'"
14845
14846 test_256() {
14847         local cl_user
14848         local cat_sl
14849         local mdt_dev
14850
14851         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14852         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14853         [ "$(facet_fstype mds1)" != "ldiskfs" ] &&
14854                 skip "non-ldiskfs backend" && return
14855
14856         mdt_dev=$(mdsdevname 1)
14857         echo $mdt_dev
14858         cl_user=$(do_facet mds1 \
14859         "$LCTL get_param -n mdd.$MDT0.changelog_users | grep cl")
14860         if [[ -n $cl_user ]]; then
14861                 skip "active changelog user"
14862                 return
14863         fi
14864
14865         cl_user=$(do_facet mds1 $LCTL --device $MDT0 changelog_register -n)
14866         echo "Registered as changelog user $cl_user"
14867
14868         rm -rf $DIR/$tdir
14869         mkdir -p $DIR/$tdir
14870
14871         $LFS changelog_clear $MDT0 $cl_user 0
14872
14873         # change something
14874         touch $DIR/$tdir/{1..10}
14875
14876         # stop the MDT
14877         stop mds1 || error "Fail to stop MDT."
14878
14879         # remount the MDT
14880         start mds1 $mdt_dev $MDS_MOUNT_OPTS || error "Fail to start MDT."
14881
14882         #after mount new plainllog is used
14883         touch $DIR/$tdir/{11..19}
14884         local TEMP256FILE=$(mktemp TEMP256XXXXXX)
14885         cat_sl=$(do_facet mds1 \
14886         "$DEBUGFS -R \\\"dump changelog_catalog $TEMP256FILE\\\" $mdt_dev; \
14887          llog_reader $TEMP256FILE | grep \\\"type=1064553b\\\" | wc -l")
14888         rm $TEMP256FILE
14889
14890         if (( cat_sl != 2 )); then
14891                 do_facet mds1 $LCTL --device $MDT0 changelog_deregister $cl_user
14892                 error "Changelog catalog has wrong number of slots $cat_sl"
14893         fi
14894
14895         $LFS changelog_clear $MDT0 $cl_user 0
14896
14897         TEMP256FILE=$(mktemp TEMP256XXXXXX)
14898         cat_sl=$(do_facet mds1 \
14899         "$DEBUGFS -R \\\"dump changelog_catalog $TEMP256FILE\\\" $mdt_dev; \
14900          llog_reader $TEMP256FILE | grep \\\"type=1064553b\\\" | wc -l")
14901         rm $TEMP256FILE
14902
14903         do_facet mds1 $LCTL --device $MDT0 changelog_deregister $cl_user
14904
14905         if (( cat_sl == 2 )); then
14906                 error "Empty plain llog was not deleted from changelog catalog"
14907         fi
14908         if (( cat_sl != 1 )); then
14909                 error "Active plain llog shouldn\`t be deleted from catalog"
14910         fi
14911 }
14912 run_test 256 "Check llog delete for empty and not full state"
14913
14914 test_257() {
14915         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14916         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.55) ]] &&
14917                 skip "Need MDS version at least 2.8.55" && return
14918
14919         test_mkdir -p $DIR/$tdir
14920
14921         setfattr -n trusted.name1 -v value1 $DIR/$tdir ||
14922                 error "setfattr -n trusted.name1=value1 $DIR/$tdir failed"
14923         stat $DIR/$tdir
14924
14925 #define OBD_FAIL_MDS_XATTR_REP                  0x161
14926         local mdtidx=$($LFS getstripe -M $DIR/$tdir)
14927         local facet=mds$((mdtidx + 1))
14928         set_nodes_failloc $(facet_active_host $facet) 0x80000161
14929         getfattr -n trusted.name1 $DIR/$tdir 2> /dev/null
14930
14931         stop $facet || error "stop MDS failed"
14932         start $facet $(mdsdevname $((mdtidx + 1))) $MDS_MOUNT_OPTS ||
14933                 error "start MDS fail"
14934 }
14935 run_test 257 "xattr locks are not lost"
14936
14937 # Verify we take the i_mutex when security requires it
14938 test_258a() {
14939 #define OBD_FAIL_IMUTEX_SEC 0x141c
14940         $LCTL set_param fail_loc=0x141c
14941         touch $DIR/$tfile
14942         chmod u+s $DIR/$tfile
14943         chmod a+rwx $DIR/$tfile
14944         $RUNAS dd if=/dev/zero of=$DIR/$tfile bs=4k count=1 oflag=append
14945         RC=$?
14946         if [ $RC -ne 0 ]; then
14947                 error "error, failed to take i_mutex, rc=$?"
14948         fi
14949         rm -f $DIR/$tfile
14950 }
14951 run_test 258a
14952
14953 # Verify we do NOT take the i_mutex in the normal case
14954 test_258b() {
14955 #define OBD_FAIL_IMUTEX_NOSEC 0x141d
14956         $LCTL set_param fail_loc=0x141d
14957         touch $DIR/$tfile
14958         chmod a+rwx $DIR
14959         chmod a+rw $DIR/$tfile
14960         $RUNAS dd if=/dev/zero of=$DIR/$tfile bs=4k count=1 oflag=append
14961         RC=$?
14962         if [ $RC -ne 0 ]; then
14963                 error "error, took i_mutex unnecessarily, rc=$?"
14964         fi
14965         rm -f $DIR/$tfile
14966
14967 }
14968 run_test 258b "verify i_mutex security behavior"
14969
14970 test_260() {
14971 #define OBD_FAIL_MDC_CLOSE               0x806
14972         $LCTL set_param fail_loc=0x80000806
14973         touch $DIR/$tfile
14974
14975 }
14976 run_test 260 "Check mdc_close fail"
14977
14978 cleanup_test_300() {
14979         trap 0
14980         umask $SAVE_UMASK
14981 }
14982 test_striped_dir() {
14983         local mdt_index=$1
14984         local stripe_count
14985         local stripe_index
14986
14987         mkdir -p $DIR/$tdir
14988
14989         SAVE_UMASK=$(umask)
14990         trap cleanup_test_300 RETURN EXIT
14991
14992         $LFS setdirstripe -i $mdt_index -c 2 -t all_char -m 755 \
14993                                                 $DIR/$tdir/striped_dir ||
14994                 error "set striped dir error"
14995
14996         local mode=$(stat -c%a $DIR/$tdir/striped_dir)
14997         [ "$mode" = "755" ] || error "expect 755 got $mode"
14998
14999         $LFS getdirstripe $DIR/$tdir/striped_dir > /dev/null 2>&1 ||
15000                 error "getdirstripe failed"
15001         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir)
15002         if [ "$stripe_count" != "2" ]; then
15003                 error "1:stripe_count is $stripe_count, expect 2"
15004         fi
15005         stripe_count=$($LFS getdirstripe -T $DIR/$tdir/striped_dir)
15006         if [ "$stripe_count" != "2" ]; then
15007                 error "2:stripe_count is $stripe_count, expect 2"
15008         fi
15009
15010         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir)
15011         if [ "$stripe_index" != "$mdt_index" ]; then
15012                 error "stripe_index is $stripe_index, expect $mdt_index"
15013         fi
15014
15015         [ $(stat -c%h $DIR/$tdir/striped_dir) == '2' ] ||
15016                 error "nlink error after create striped dir"
15017
15018         mkdir $DIR/$tdir/striped_dir/a
15019         mkdir $DIR/$tdir/striped_dir/b
15020
15021         stat $DIR/$tdir/striped_dir/a ||
15022                 error "create dir under striped dir failed"
15023         stat $DIR/$tdir/striped_dir/b ||
15024                 error "create dir under striped dir failed"
15025
15026         [ $(stat -c%h $DIR/$tdir/striped_dir) == '4' ] ||
15027                 error "nlink error after mkdir"
15028
15029         rmdir $DIR/$tdir/striped_dir/a
15030         [ $(stat -c%h $DIR/$tdir/striped_dir) == '3' ] ||
15031                 error "nlink error after rmdir"
15032
15033         rmdir $DIR/$tdir/striped_dir/b
15034         [ $(stat -c%h $DIR/$tdir/striped_dir) == '2' ] ||
15035                 error "nlink error after rmdir"
15036
15037         chattr +i $DIR/$tdir/striped_dir
15038         createmany -o $DIR/$tdir/striped_dir/f 10 &&
15039                 error "immutable flags not working under striped dir!"
15040         chattr -i $DIR/$tdir/striped_dir
15041
15042         rmdir $DIR/$tdir/striped_dir ||
15043                 error "rmdir striped dir error"
15044
15045         cleanup_test_300
15046
15047         true
15048 }
15049
15050 test_300a() {
15051         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
15052                 skip "skipped for lustre < 2.7.0" && return
15053         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15054         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15055
15056         test_striped_dir 0 || error "failed on striped dir on MDT0"
15057         test_striped_dir 1 || error "failed on striped dir on MDT0"
15058 }
15059 run_test 300a "basic striped dir sanity test"
15060
15061 test_300b() {
15062         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
15063                 skip "skipped for lustre < 2.7.0" && return
15064         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15065         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15066         local i
15067         local mtime1
15068         local mtime2
15069         local mtime3
15070
15071         test_mkdir $DIR/$tdir || error "mkdir fail"
15072         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir ||
15073                 error "set striped dir error"
15074         for ((i=0; i<10; i++)); do
15075                 mtime1=$(stat -c %Y $DIR/$tdir/striped_dir)
15076                 sleep 1
15077                 touch $DIR/$tdir/striped_dir/file_$i ||
15078                                         error "touch error $i"
15079                 mtime2=$(stat -c %Y $DIR/$tdir/striped_dir)
15080                 [ $mtime1 -eq $mtime2 ] &&
15081                         error "mtime not change after create"
15082                 sleep 1
15083                 rm -f $DIR/$tdir/striped_dir/file_$i ||
15084                                         error "unlink error $i"
15085                 mtime3=$(stat -c %Y $DIR/$tdir/striped_dir)
15086                 [ $mtime2 -eq $mtime3 ] &&
15087                         error "mtime did not change after unlink"
15088         done
15089         true
15090 }
15091 run_test 300b "check ctime/mtime for striped dir"
15092
15093 test_300c() {
15094         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
15095                 skip "skipped for lustre < 2.7.0" && return
15096         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15097         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15098         local file_count
15099
15100         mkdir -p $DIR/$tdir
15101         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir ||
15102                 error "set striped dir error"
15103
15104         chown $RUNAS_ID:$RUNAS_GID $DIR/$tdir/striped_dir ||
15105                 error "chown striped dir failed"
15106
15107         $RUNAS createmany -o $DIR/$tdir/striped_dir/f 5000 ||
15108                 error "create 5k files failed"
15109
15110         file_count=$(ls $DIR/$tdir/striped_dir | wc -l)
15111
15112         [ "$file_count" = 5000 ] || error "file count $file_count != 5000"
15113
15114         rm -rf $DIR/$tdir
15115 }
15116 run_test 300c "chown && check ls under striped directory"
15117
15118 test_300d() {
15119         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
15120                 skip "skipped for lustre < 2.7.0" && return
15121         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15122         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15123         local stripe_count
15124         local file
15125
15126         mkdir -p $DIR/$tdir
15127         $SETSTRIPE -c 2 $DIR/$tdir
15128
15129         #local striped directory
15130         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir ||
15131                 error "set striped dir error"
15132         createmany -o $DIR/$tdir/striped_dir/f 10 ||
15133                 error "create 10 files failed"
15134
15135         #remote striped directory
15136         $LFS setdirstripe -i 1 -c 2 $DIR/$tdir/remote_striped_dir ||
15137                 error "set striped dir error"
15138         createmany -o $DIR/$tdir/remote_striped_dir/f 10 ||
15139                 error "create 10 files failed"
15140
15141         for file in $(find $DIR/$tdir); do
15142                 stripe_count=$($GETSTRIPE -c $file)
15143                 [ $stripe_count -eq 2 ] ||
15144                         error "wrong stripe $stripe_count for $file"
15145         done
15146
15147         rm -rf $DIR/$tdir
15148 }
15149 run_test 300d "check default stripe under striped directory"
15150
15151 test_300e() {
15152         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15153                 skip "Need MDS version at least 2.7.55" && return
15154         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15155         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15156         local stripe_count
15157         local file
15158
15159         mkdir -p $DIR/$tdir
15160
15161         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir ||
15162                 error "set striped dir error"
15163
15164         touch $DIR/$tdir/striped_dir/a
15165         touch $DIR/$tdir/striped_dir/b
15166         touch $DIR/$tdir/striped_dir/c
15167
15168         mkdir $DIR/$tdir/striped_dir/dir_a
15169         mkdir $DIR/$tdir/striped_dir/dir_b
15170         mkdir $DIR/$tdir/striped_dir/dir_c
15171
15172         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir/stp_a ||
15173                 error "set striped adir under striped dir error"
15174
15175         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir/stp_b ||
15176                 error "set striped bdir under striped dir error"
15177
15178         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir/stp_c ||
15179                 error "set striped cdir under striped dir error"
15180
15181         mrename $DIR/$tdir/striped_dir/dir_a $DIR/$tdir/striped_dir/dir_b ||
15182                 error "rename dir under striped dir fails"
15183
15184         mrename $DIR/$tdir/striped_dir/stp_a $DIR/$tdir/striped_dir/stp_b ||
15185                 error "rename dir under different stripes fails"
15186
15187         mrename $DIR/$tdir/striped_dir/a $DIR/$tdir/striped_dir/c ||
15188                 error "rename file under striped dir should succeed"
15189
15190         mrename $DIR/$tdir/striped_dir/dir_b $DIR/$tdir/striped_dir/dir_c ||
15191                 error "rename dir under striped dir should succeed"
15192
15193         rm -rf $DIR/$tdir
15194 }
15195 run_test 300e "check rename under striped directory"
15196
15197 test_300f() {
15198         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15199                 skip "Need MDS version at least 2.7.55" && return
15200         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15201         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15202         local stripe_count
15203         local file
15204
15205         rm -rf $DIR/$tdir
15206         mkdir -p $DIR/$tdir
15207
15208         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir ||
15209                 error "set striped dir error"
15210
15211         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir1 ||
15212                 error "set striped dir error"
15213
15214         touch $DIR/$tdir/striped_dir/a
15215         mkdir $DIR/$tdir/striped_dir/dir_a
15216         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir/stp_a ||
15217                 error "create striped dir under striped dir fails"
15218
15219         touch $DIR/$tdir/striped_dir1/b
15220         mkdir $DIR/$tdir/striped_dir1/dir_b
15221         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir/stp_b ||
15222                 error "create striped dir under striped dir fails"
15223
15224         mrename $DIR/$tdir/striped_dir/dir_a $DIR/$tdir/striped_dir1/dir_b ||
15225                 error "rename dir under different striped dir should fail"
15226
15227         mrename $DIR/$tdir/striped_dir/stp_a $DIR/$tdir/striped_dir1/stp_b ||
15228                 error "rename striped dir under diff striped dir should fail"
15229
15230         mrename $DIR/$tdir/striped_dir/a $DIR/$tdir/striped_dir1/a ||
15231                 error "rename file under diff striped dirs fails"
15232
15233         rm -rf $DIR/$tdir
15234 }
15235 run_test 300f "check rename cross striped directory"
15236
15237 test_300_check_default_striped_dir()
15238 {
15239         local dirname=$1
15240         local default_count=$2
15241         local default_index=$3
15242         local stripe_count
15243         local stripe_index
15244         local dir_stripe_index
15245         local dir
15246
15247         echo "checking $dirname $default_count $default_index"
15248         $LFS setdirstripe -D -c $default_count -i $default_index \
15249                                 -t all_char $DIR/$tdir/$dirname ||
15250                 error "set default stripe on striped dir error"
15251         stripe_count=$($LFS getdirstripe -D -c $DIR/$tdir/$dirname)
15252         [ $stripe_count -eq $default_count ] ||
15253                 error "expect $default_count get $stripe_count for $dirname"
15254
15255         stripe_index=$($LFS getdirstripe -D -i $DIR/$tdir/$dirname)
15256         [ $stripe_index -eq $default_index ] ||
15257                 error "expect $default_index get $stripe_index for $dirname"
15258
15259         mkdir $DIR/$tdir/$dirname/{test1,test2,test3,test4} ||
15260                                                 error "create dirs failed"
15261
15262         createmany -o $DIR/$tdir/$dirname/f- 10 || error "create files failed"
15263         unlinkmany $DIR/$tdir/$dirname/f- 10    || error "unlink files failed"
15264         for dir in $(find $DIR/$tdir/$dirname/*); do
15265                 stripe_count=$($LFS getdirstripe -c $dir)
15266                 [ $stripe_count -eq $default_count ] ||
15267                 [ $stripe_count -eq 0 -o $default_count -eq 1 ] ||
15268                 error "stripe count $default_count != $stripe_count for $dir"
15269
15270                 stripe_index=$($LFS getdirstripe -i $dir)
15271                 [ $default_index -eq -1 -o $stripe_index -eq $default_index ] ||
15272                         error "$stripe_index != $default_index for $dir"
15273
15274                 #check default stripe
15275                 stripe_count=$($LFS getdirstripe -D -c $dir)
15276                 [ $stripe_count -eq $default_count ] ||
15277                 error "default count $default_count != $stripe_count for $dir"
15278
15279                 stripe_index=$($LFS getdirstripe -D -i $dir)
15280                 [ $stripe_index -eq $default_index ] ||
15281                 error "default index $default_index != $stripe_index for $dir"
15282         done
15283         rmdir $DIR/$tdir/$dirname/* || error "rmdir failed"
15284 }
15285
15286 test_300g() {
15287         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15288                 skip "Need MDS version at least 2.7.55" && return
15289         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15290         local dir
15291         local stripe_count
15292         local stripe_index
15293
15294         mkdir $DIR/$tdir
15295         mkdir $DIR/$tdir/normal_dir
15296
15297         #Checking when client cache stripe index
15298         $LFS setdirstripe -c$MDSCOUNT $DIR/$tdir/striped_dir
15299         $LFS setdirstripe -D -i1 $DIR/$tdir/striped_dir ||
15300                 error "create striped_dir failed"
15301
15302         mkdir $DIR/$tdir/striped_dir/dir1 ||
15303                 error "create dir1 fails"
15304         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir/dir1)
15305         [ $stripe_index -eq 1 ] ||
15306                 error "dir1 expect 1 got $stripe_index"
15307
15308         $LFS setdirstripe -i2 $DIR/$tdir/striped_dir/dir2 ||
15309                 error "create dir2 fails"
15310         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir/dir2)
15311         [ $stripe_index -eq 2 ] ||
15312                 error "dir2 expect 2 got $stripe_index"
15313
15314         #check default stripe count/stripe index
15315         test_300_check_default_striped_dir normal_dir $MDSCOUNT 1
15316         test_300_check_default_striped_dir normal_dir 1 0
15317         test_300_check_default_striped_dir normal_dir 2 1
15318         test_300_check_default_striped_dir normal_dir 2 -1
15319
15320         #delete default stripe information
15321         echo "delete default stripeEA"
15322         $LFS setdirstripe -d $DIR/$tdir/normal_dir ||
15323                 error "set default stripe on striped dir error"
15324
15325         mkdir -p $DIR/$tdir/normal_dir/{test1,test2,test3,test4}
15326         for dir in $(find $DIR/$tdir/normal_dir/*); do
15327                 stripe_count=$($LFS getdirstripe -c $dir)
15328                 [ $stripe_count -eq 0 ] ||
15329                         error "expect 1 get $stripe_count for $dir"
15330                 stripe_index=$($LFS getdirstripe -i $dir)
15331                 [ $stripe_index -eq 0 ] ||
15332                         error "expect 0 get $stripe_index for $dir"
15333         done
15334 }
15335 run_test 300g "check default striped directory for normal directory"
15336
15337 test_300h() {
15338         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15339                 skip "Need MDS version at least 2.7.55" && return
15340         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15341         local dir
15342         local stripe_count
15343
15344         mkdir $DIR/$tdir
15345         $LFS setdirstripe -i 0 -c $MDSCOUNT -t all_char \
15346                                         $DIR/$tdir/striped_dir ||
15347                 error "set striped dir error"
15348
15349         test_300_check_default_striped_dir striped_dir $MDSCOUNT 1
15350         test_300_check_default_striped_dir striped_dir 1 0
15351         test_300_check_default_striped_dir striped_dir 2 1
15352         test_300_check_default_striped_dir striped_dir 2 -1
15353
15354         #delete default stripe information
15355         $LFS setdirstripe -d $DIR/$tdir/striped_dir ||
15356                 error "set default stripe on striped dir error"
15357
15358         mkdir -p $DIR/$tdir/striped_dir/{test1,test2,test3,test4}
15359         for dir in $(find $DIR/$tdir/striped_dir/*); do
15360                 stripe_count=$($LFS getdirstripe -c $dir)
15361                 [ $stripe_count -eq 0 ] ||
15362                         error "expect 1 get $stripe_count for $dir"
15363         done
15364 }
15365 run_test 300h "check default striped directory for striped directory"
15366
15367 test_300i() {
15368         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15369                 skip "Need MDS version at least 2.7.55" && return
15370         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15371         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15372         local stripe_count
15373         local file
15374
15375         mkdir $DIR/$tdir
15376
15377         $LFS setdirstripe -i 0 -c$MDSCOUNT -t all_char $DIR/$tdir/striped_dir ||
15378                 error "set striped dir error"
15379
15380         createmany -o $DIR/$tdir/striped_dir/f- 10 ||
15381                 error "create files under striped dir failed"
15382
15383         $LFS setdirstripe -i0 -c$MDSCOUNT -H all_char $DIR/$tdir/hashdir ||
15384                 error "set striped hashdir error"
15385
15386         $LFS setdirstripe -i0 -c$MDSCOUNT -H all_char $DIR/$tdir/hashdir/d0 ||
15387                 error "create dir0 under hash dir failed"
15388         $LFS setdirstripe -i0 -c$MDSCOUNT -H fnv_1a_64 $DIR/$tdir/hashdir/d1 ||
15389                 error "create dir1 under hash dir failed"
15390
15391         # unfortunately, we need to umount to clear dir layout cache for now
15392         # once we fully implement dir layout, we can drop this
15393         umount_client $MOUNT || error "umount failed"
15394         mount_client $MOUNT || error "mount failed"
15395
15396         $LFS find -H fnv_1a_64 $DIR/$tdir/hashdir
15397         local dircnt=$($LFS find -H fnv_1a_64 $DIR/$tdir/hashdir | wc -l)
15398         [ $dircnt -eq 1 ] || error "lfs find striped dir got:$dircnt,except:1"
15399
15400         #set the stripe to be unknown hash type
15401         #define OBD_FAIL_UNKNOWN_LMV_STRIPE     0x1901
15402         $LCTL set_param fail_loc=0x1901
15403         for ((i = 0; i < 10; i++)); do
15404                 $CHECKSTAT -t file $DIR/$tdir/striped_dir/f-$i ||
15405                         error "stat f-$i failed"
15406                 rm $DIR/$tdir/striped_dir/f-$i || error "unlink f-$i failed"
15407         done
15408
15409         touch $DIR/$tdir/striped_dir/f0 &&
15410                 error "create under striped dir with unknown hash should fail"
15411
15412         $LCTL set_param fail_loc=0
15413
15414         umount_client $MOUNT || error "umount failed"
15415         mount_client $MOUNT || error "mount failed"
15416
15417         return 0
15418 }
15419 run_test 300i "client handle unknown hash type striped directory"
15420
15421 test_300j() {
15422         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15423         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15424                 skip "Need MDS version at least 2.7.55" && return
15425         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15426         local stripe_count
15427         local file
15428
15429         mkdir $DIR/$tdir
15430
15431         #define OBD_FAIL_SPLIT_UPDATE_REC       0x1702
15432         $LCTL set_param fail_loc=0x1702
15433         $LFS setdirstripe -i 0 -c$MDSCOUNT -t all_char $DIR/$tdir/striped_dir ||
15434                 error "set striped dir error"
15435
15436         createmany -o $DIR/$tdir/striped_dir/f- 10 ||
15437                 error "create files under striped dir failed"
15438
15439         $LCTL set_param fail_loc=0
15440
15441         rm -rf $DIR/$tdir || error "unlink striped dir fails"
15442
15443         return 0
15444 }
15445 run_test 300j "test large update record"
15446
15447 test_300k() {
15448         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15449                 skip "Need MDS version at least 2.7.55" && return
15450         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15451         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15452         local stripe_count
15453         local file
15454
15455         mkdir $DIR/$tdir
15456
15457         #define OBD_FAIL_LARGE_STRIPE   0x1703
15458         $LCTL set_param fail_loc=0x1703
15459         $LFS setdirstripe -i 0 -c512 $DIR/$tdir/striped_dir ||
15460                 error "set striped dir error"
15461         $LCTL set_param fail_loc=0
15462
15463         $LFS getdirstripe $DIR/$tdir/striped_dir ||
15464                 error "getstripeddir fails"
15465         rm -rf $DIR/$tdir/striped_dir ||
15466                 error "unlink striped dir fails"
15467
15468         return 0
15469 }
15470 run_test 300k "test large striped directory"
15471
15472 test_300l() {
15473         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15474                 skip "Need MDS version at least 2.7.55" && return
15475         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15476         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15477         local stripe_index
15478
15479         test_mkdir -p $DIR/$tdir/striped_dir
15480         chown $RUNAS_ID $DIR/$tdir/striped_dir ||
15481                         error "chown $RUNAS_ID failed"
15482         $LFS setdirstripe -i 1 -D $DIR/$tdir/striped_dir ||
15483                 error "set default striped dir failed"
15484
15485         #define OBD_FAIL_MDS_STALE_DIR_LAYOUT    0x158
15486         $LCTL set_param fail_loc=0x80000158
15487         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir || error "create dir fails"
15488
15489         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir/test_dir)
15490         [ $stripe_index -eq 1 ] ||
15491                 error "expect 1 get $stripe_index for $dir"
15492 }
15493 run_test 300l "non-root user to create dir under striped dir with stale layout"
15494
15495 test_300m() {
15496         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15497                 skip "Need MDS version at least 2.7.55" && return
15498         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15499         [ $MDSCOUNT -ge 2 ] && skip "Only for single MDT" && return
15500
15501         mkdir -p $DIR/$tdir/striped_dir
15502         $LFS setdirstripe -D -c 1 $DIR/$tdir/striped_dir ||
15503                 error "set default stripes dir error"
15504
15505         mkdir $DIR/$tdir/striped_dir/a || error "mkdir a fails"
15506
15507         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir/a)
15508         [ $stripe_count -eq 0 ] ||
15509                         error "expect 0 get $stripe_count for a"
15510
15511         $LFS setdirstripe -D -c 2 $DIR/$tdir/striped_dir ||
15512                 error "set default stripes dir error"
15513
15514         mkdir $DIR/$tdir/striped_dir/b || error "mkdir b fails"
15515
15516         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir/b)
15517         [ $stripe_count -eq 0 ] ||
15518                         error "expect 0 get $stripe_count for b"
15519
15520         $LFS setdirstripe -D -c1 -i2 $DIR/$tdir/striped_dir ||
15521                 error "set default stripes dir error"
15522
15523         mkdir $DIR/$tdir/striped_dir/c &&
15524                 error "default stripe_index is invalid, mkdir c should fails"
15525
15526         rm -rf $DIR/$tdir || error "rmdir fails"
15527 }
15528 run_test 300m "setstriped directory on single MDT FS"
15529
15530 cleanup_300n() {
15531         local list=$(comma_list $(mdts_nodes))
15532
15533         trap 0
15534         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
15535 }
15536
15537 test_300n() {
15538         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15539                 skip "Need MDS version at least 2.7.55" && return
15540         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15541         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15542         remote_mds_nodsh && skip "remote MDS with nodsh" && return
15543
15544         local stripe_index
15545         local list=$(comma_list $(mdts_nodes))
15546
15547         trap cleanup_300n RETURN EXIT
15548         mkdir -p $DIR/$tdir
15549         chmod 777 $DIR/$tdir
15550         $RUNAS $LFS setdirstripe -i0 -c$MDSCOUNT \
15551                                 $DIR/$tdir/striped_dir > /dev/null 2>&1 &&
15552                 error "create striped dir succeeds with gid=0"
15553
15554         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=-1
15555         $RUNAS $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir ||
15556                 error "create striped dir fails with gid=-1"
15557
15558         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
15559         $RUNAS $LFS setdirstripe -i 1 -c$MDSCOUNT -D \
15560                                 $DIR/$tdir/striped_dir > /dev/null 2>&1 &&
15561                 error "set default striped dir succeeds with gid=0"
15562
15563
15564         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=-1
15565         $RUNAS $LFS setdirstripe -i 1 -c$MDSCOUNT -D $DIR/$tdir/striped_dir ||
15566                 error "set default striped dir fails with gid=-1"
15567
15568
15569         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
15570         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir ||
15571                                         error "create test_dir fails"
15572         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir1 ||
15573                                         error "create test_dir1 fails"
15574         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir2 ||
15575                                         error "create test_dir2 fails"
15576         cleanup_300n
15577 }
15578 run_test 300n "non-root user to create dir under striped dir with default EA"
15579
15580 test_300o() {
15581         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15582                 skip "Need MDS version at least 2.7.55" && return
15583         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15584         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15585         local numfree1
15586         local numfree2
15587
15588         mkdir -p $DIR/$tdir
15589
15590         numfree1=$(lctl get_param -n mdc.*MDT0000*.filesfree)
15591         numfree2=$(lctl get_param -n mdc.*MDT0001*.filesfree)
15592         if [ $numfree1 -lt 66000 -o $numfree2 -lt 66000 ]; then
15593                 skip "not enough free inodes $numfree1 $numfree2"
15594                 return
15595         fi
15596
15597         numfree1=$(lctl get_param -n mdc.*MDT0000-mdc-*.kbytesfree)
15598         numfree2=$(lctl get_param -n mdc.*MDT0001-mdc-*.kbytesfree)
15599         if [ $numfree1 -lt 300000 -o $numfree2 -lt 300000 ]; then
15600                 skip "not enough free space $numfree1 $numfree2"
15601                 return
15602         fi
15603
15604         $LFS setdirstripe -c2 $DIR/$tdir/striped_dir ||
15605                 error "setdirstripe fails"
15606
15607         createmany -d $DIR/$tdir/striped_dir/d 131000 ||
15608                 error "create dirs fails"
15609
15610         $LCTL set_param ldlm.namespaces.*mdc-*.lru_size=0
15611         ls $DIR/$tdir/striped_dir > /dev/null ||
15612                 error "ls striped dir fails"
15613         unlinkmany -d $DIR/$tdir/striped_dir/d 131000 ||
15614                 error "unlink big striped dir fails"
15615 }
15616 run_test 300o "unlink big sub stripe(> 65000 subdirs)"
15617
15618 test_300p() {
15619         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15620         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15621         remote_mds_nodsh && skip "remote MDS with nodsh" && return
15622
15623         mkdir -p $DIR/$tdir
15624
15625         #define OBD_FAIL_OUT_ENOSPC     0x1704
15626         do_facet mds2 lctl set_param fail_loc=0x80001704
15627         $LFS setdirstripe -c2 $DIR/$tdir/bad_striped_dir > /dev/null 2>&1 &&
15628                         error "create striped directory should fail"
15629
15630         [ -e $DIR/$tdir/bad_striped_dir ] && error "striped dir exists"
15631
15632         $LFS setdirstripe -c2 $DIR/$tdir/bad_striped_dir
15633         true
15634 }
15635 run_test 300p "create striped directory without space"
15636
15637 test_300q() {
15638         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15639         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15640
15641         local fd=$(free_fd)
15642         local cmd="exec $fd<$tdir"
15643         cd $DIR
15644         $LFS mkdir -c $MDSCOUNT $tdir || error "create $tdir fails"
15645         eval $cmd
15646         cmd="exec $fd<&-"
15647         trap "eval $cmd" EXIT
15648         cd $tdir || error "cd $tdir fails"
15649         rmdir  ../$tdir || error "rmdir $tdir fails"
15650         mkdir local_dir && error "create dir succeeds"
15651         $LFS setdirstripe -i1 remote_dir && error "create remote dir succeeds"
15652         eval $cmd
15653         return 0
15654 }
15655 run_test 300q "create remote directory under orphan directory"
15656
15657 prepare_remote_file() {
15658         mkdir $DIR/$tdir/src_dir ||
15659                 error "create remote source failed"
15660
15661         cp /etc/hosts $DIR/$tdir/src_dir/a || error
15662         touch $DIR/$tdir/src_dir/a
15663
15664         $LFS mkdir -i 1 $DIR/$tdir/tgt_dir ||
15665                 error "create remote target dir failed"
15666
15667         touch $DIR/$tdir/tgt_dir/b
15668
15669         mrename $DIR/$tdir/src_dir/a $DIR/$tdir/tgt_dir/b ||
15670                 error "rename dir cross MDT failed!"
15671
15672         $CHECKSTAT -t file $DIR/$tdir/src_dir/a &&
15673                 error "src_child still exists after rename"
15674
15675         $CHECKSTAT -t file $DIR/$tdir/tgt_dir/b ||
15676                 error "missing file(a) after rename"
15677
15678         diff /etc/hosts $DIR/$tdir/tgt_dir/b ||
15679                 error "diff after rename"
15680 }
15681
15682 test_310a() {
15683         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 4 MDTs" && return
15684         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15685         local remote_file=$DIR/$tdir/tgt_dir/b
15686
15687         mkdir -p $DIR/$tdir
15688
15689         prepare_remote_file || error "prepare remote file failed"
15690
15691         #open-unlink file
15692         $OPENUNLINK $remote_file $remote_file || error
15693         $CHECKSTAT -a $remote_file || error
15694 }
15695 run_test 310a "open unlink remote file"
15696
15697 test_310b() {
15698         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 4 MDTs" && return
15699         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15700         local remote_file=$DIR/$tdir/tgt_dir/b
15701
15702         mkdir -p $DIR/$tdir
15703
15704         prepare_remote_file || error "prepare remote file failed"
15705
15706         ln $remote_file $DIR/$tfile || error "link failed for remote file"
15707         $MULTIOP $DIR/$tfile Ouc || error "mulitop failed"
15708         $CHECKSTAT -t file $remote_file || error "check file failed"
15709 }
15710 run_test 310b "unlink remote file with multiple links while open"
15711
15712 test_310c() {
15713         [[ $MDSCOUNT -lt 4 ]] && skip "needs >= 4 MDTs" && return
15714         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15715         local remote_file=$DIR/$tdir/tgt_dir/b
15716
15717         mkdir -p $DIR/$tdir
15718
15719         prepare_remote_file || error "prepare remote file failed"
15720
15721         ln $remote_file $DIR/$tfile || error "link failed for remote file"
15722         multiop_bg_pause $remote_file O_uc ||
15723                         error "mulitop failed for remote file"
15724         MULTIPID=$!
15725         $MULTIOP $DIR/$tfile Ouc
15726         kill -USR1 $MULTIPID
15727         wait $MULTIPID
15728 }
15729 run_test 310c "open-unlink remote file with multiple links"
15730
15731 #LU-4825
15732 test_311() {
15733         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.54) ] &&
15734                 skip "lustre < 2.8.54 does not contain LU-4825 fix" && return
15735         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15736         remote_mds_nodsh && skip "remote MDS with nodsh" && return
15737
15738         local old_iused=$($LFS df -i | grep OST0000 | awk '{ print $3 }')
15739
15740         mkdir -p $DIR/$tdir
15741         $SETSTRIPE -i 0 -c 1 $DIR/$tdir
15742         createmany -o $DIR/$tdir/$tfile. 1000
15743
15744         # statfs data is not real time, let's just calculate it
15745         old_iused=$((old_iused + 1000))
15746
15747         local count=$(do_facet $SINGLEMDS "lctl get_param -n \
15748                         osp.*OST0000*MDT0000.create_count")
15749         local max_count=$(do_facet $SINGLEMDS "lctl get_param -n \
15750                                 osp.*OST0000*MDT0000.max_create_count")
15751         for idx in $(seq $MDSCOUNT); do
15752                 do_facet mds$idx "lctl set_param -n \
15753                         osp.*OST0000*MDT000?.max_create_count=0"
15754         done
15755
15756         $SETSTRIPE -i 0 $DIR/$tdir/$tfile || error "setstripe failed"
15757         local index=$($GETSTRIPE -i $DIR/$tdir/$tfile)
15758         [ $index -ne 0 ] || error "$tfile stripe index is 0"
15759
15760         unlinkmany $DIR/$tdir/$tfile. 1000
15761
15762         for idx in $(seq $MDSCOUNT); do
15763                 do_facet mds$idx "lctl set_param -n \
15764                         osp.*OST0000*MDT000?.max_create_count=$max_count"
15765                 do_facet mds$idx "lctl set_param -n \
15766                         osp.*OST0000*MDT000?.create_count=$count"
15767         done
15768
15769         local new_iused
15770         for i in $(seq 120); do
15771                 new_iused=$($LFS df -i | grep OST0000 | awk '{ print $3 }')
15772                 # system may be too busy to destroy all objs in time, use
15773                 # a somewhat small value to not fail autotest
15774                 [ $((old_iused - new_iused)) -gt 400 ] && break
15775                 sleep 1
15776         done
15777
15778         echo "waited $i sec, old Iused $old_iused, new Iused $new_iused"
15779         [ $((old_iused - new_iused)) -gt 400 ] ||
15780                 error "objs not destroyed after unlink"
15781 }
15782 run_test 311 "disable OSP precreate, and unlink should destroy objs"
15783
15784 zfs_oid_to_objid()
15785 {
15786         local ost=$1
15787         local objid=$2
15788
15789         local vdevdir=$(dirname $(facet_vdevice $ost))
15790         local cmd="$ZDB -e -p $vdevdir -ddddd $(facet_device $ost)"
15791         local zfs_zapid=$(do_facet $ost $cmd |
15792                           grep -w "/O/0/d$((objid%32))" -C 5 |
15793                           awk '/Object/{getline; print $1}')
15794         local zfs_objid=$(do_facet $ost $cmd $zfs_zapid |
15795                           awk "/$objid = /"'{printf $3}')
15796
15797         echo $zfs_objid
15798 }
15799
15800 zfs_object_blksz() {
15801         local ost=$1
15802         local objid=$2
15803
15804         local vdevdir=$(dirname $(facet_vdevice $ost))
15805         local cmd="$ZDB -e -p $vdevdir -dddd $(facet_device $ost)"
15806         local blksz=$(do_facet $ost $cmd $objid |
15807                       awk '/dblk/{getline; printf $4}')
15808
15809         case "${blksz: -1}" in
15810                 k|K) blksz=$((${blksz:0:$((${#blksz} - 1))}*1024)) ;;
15811                 m|M) blksz=$((${blksz:0:$((${#blksz} - 1))}*1024*1024)) ;;
15812                 *) ;;
15813         esac
15814
15815         echo $blksz
15816 }
15817
15818 test_312() { # LU-4856
15819         remote_ost_nodsh && skip "remote OST with nodsh" && return
15820
15821         [ $(facet_fstype ost1) = "zfs" ] ||
15822                 { skip "the test only applies to zfs" && return; }
15823
15824         local max_blksz=$(do_facet ost1 \
15825                           $ZFS get -p recordsize $(facet_device ost1) |
15826                           awk '!/VALUE/{print $3}')
15827         local min_blksz=$(getconf PAGE_SIZE)
15828
15829         # to make life a little bit easier
15830         $LFS mkdir -c 1 -i 0 $DIR/$tdir
15831         $LFS setstripe -c 1 -i 0 $DIR/$tdir
15832
15833         local tf=$DIR/$tdir/$tfile
15834         touch $tf
15835         local oid=$($LFS getstripe $tf | awk '/obdidx/{getline; print $2}')
15836
15837         # Get ZFS object id
15838         local zfs_objid=$(zfs_oid_to_objid ost1 $oid)
15839
15840         # block size change by sequential over write
15841         local blksz
15842         for ((bs=$min_blksz; bs <= max_blksz; bs <<= 2)); do
15843                 dd if=/dev/zero of=$tf bs=$bs count=1 oflag=sync conv=notrunc
15844
15845                 blksz=$(zfs_object_blksz ost1 $zfs_objid)
15846                 [ $blksz -eq $bs ] || error "blksz error: $blksz, expected: $bs"
15847         done
15848         rm -f $tf
15849
15850         # block size change by sequential append write
15851         dd if=/dev/zero of=$tf bs=$min_blksz count=1 oflag=sync conv=notrunc
15852         oid=$($LFS getstripe $tf | awk '/obdidx/{getline; print $2}')
15853         zfs_objid=$(zfs_oid_to_objid ost1 $oid)
15854
15855         for ((count = 1; count < $((max_blksz / min_blksz)); count *= 2)); do
15856                 dd if=/dev/zero of=$tf bs=$min_blksz count=$count seek=$count \
15857                         oflag=sync conv=notrunc
15858
15859                 blksz=$(zfs_object_blksz ost1 $zfs_objid)
15860                 [ $blksz -eq $((2 * count * min_blksz)) ] ||
15861                         error "blksz error, actual $blksz, "    \
15862                                 "expected: 2 * $count * $min_blksz"
15863         done
15864         rm -f $tf
15865
15866         # random write
15867         touch $tf
15868         oid=$($LFS getstripe $tf | awk '/obdidx/{getline; print $2}')
15869         zfs_objid=$(zfs_oid_to_objid ost1 $oid)
15870
15871         dd if=/dev/zero of=$tf bs=1K count=1 oflag=sync conv=notrunc
15872         blksz=$(zfs_object_blksz ost1 $zfs_objid)
15873         [ $blksz -eq $min_blksz ] ||
15874                 error "blksz error: $blksz, expected: $min_blksz"
15875
15876         dd if=/dev/zero of=$tf bs=64K count=1 oflag=sync conv=notrunc seek=128
15877         blksz=$(zfs_object_blksz ost1 $zfs_objid)
15878         [ $blksz -eq 65536 ] || error "blksz error: $blksz, expected: 64k"
15879
15880         dd if=/dev/zero of=$tf bs=1M count=1 oflag=sync conv=notrunc
15881         blksz=$(zfs_object_blksz ost1 $zfs_objid)
15882         [ $blksz -eq 65536 ] || error "rewrite error: $blksz, expected: 64k"
15883 }
15884 run_test 312 "make sure ZFS adjusts its block size by write pattern"
15885
15886 test_313() {
15887         remote_ost_nodsh && skip "remote OST with nodsh" && return
15888
15889         local file=$DIR/$tfile
15890         rm -f $file
15891         $SETSTRIPE -c 1 -i 0 $file || error "setstripe failed"
15892
15893         # define OBD_FAIL_TGT_RCVD_EIO           0x720
15894         do_facet ost1 "$LCTL set_param fail_loc=0x720"
15895         dd if=/dev/zero of=$file bs=4096 oflag=direct count=1 &&
15896                 error "write should failed"
15897         do_facet ost1 "$LCTL set_param fail_loc=0"
15898         rm -f $file
15899 }
15900 run_test 313 "io should fail after last_rcvd update fail"
15901
15902 test_fake_rw() {
15903         local read_write=$1
15904         if [ "$read_write" = "write" ]; then
15905                 local dd_cmd="dd if=/dev/zero of=$DIR/$tfile"
15906         elif [ "$read_write" = "read" ]; then
15907                 local dd_cmd="dd of=/dev/null if=$DIR/$tfile"
15908         else
15909                 error "argument error"
15910         fi
15911
15912         # turn off debug for performance testing
15913         local saved_debug=$($LCTL get_param -n debug)
15914         $LCTL set_param debug=0
15915
15916         $SETSTRIPE -c 1 -i 0 $DIR/$tfile
15917
15918         # get ost1 size - lustre-OST0000
15919         local ost1_avail_size=$($LFS df | awk /${ost1_svc}/'{ print $4 }')
15920         local blocks=$((ost1_avail_size/2/1024)) # half avail space by megabytes
15921         [ $blocks -gt 1000 ] && blocks=1000 # 1G in maximum
15922
15923         if [ "$read_write" = "read" ]; then
15924                 truncate -s $(expr 1048576 \* $blocks) $DIR/$tfile
15925         fi
15926
15927         local start_time=$(date +%s.%N)
15928         $dd_cmd bs=1M count=$blocks oflag=sync ||
15929                 error "real dd $read_write error"
15930         local duration=$(bc <<< "$(date +%s.%N) - $start_time")
15931
15932         if [ "$read_write" = "write" ]; then
15933                 rm -f $DIR/$tfile
15934         fi
15935
15936         # define OBD_FAIL_OST_FAKE_RW           0x238
15937         do_facet ost1 $LCTL set_param fail_loc=0x238
15938
15939         local start_time=$(date +%s.%N)
15940         $dd_cmd bs=1M count=$blocks oflag=sync ||
15941                 error "fake dd $read_write error"
15942         local duration_fake=$(bc <<< "$(date +%s.%N) - $start_time")
15943
15944         if [ "$read_write" = "write" ]; then
15945                 # verify file size
15946                 cancel_lru_locks osc
15947                 $CHECKSTAT -t file -s $((blocks * 1024 * 1024)) $DIR/$tfile ||
15948                         error "$tfile size not $blocks MB"
15949         fi
15950         do_facet ost1 $LCTL set_param fail_loc=0
15951
15952         echo "fake $read_write $duration_fake vs. normal $read_write" \
15953                 "$duration in seconds"
15954         [ $(bc <<< "$duration_fake < $duration") -eq 1 ] ||
15955                 error_not_in_vm "fake write is slower"
15956
15957         $LCTL set_param -n debug="$saved_debug"
15958         rm -f $DIR/$tfile
15959 }
15960 test_399a() { # LU-7655 for OST fake write
15961         remote_ost_nodsh && skip "remote OST with nodsh" && return
15962
15963         test_fake_rw write
15964 }
15965 run_test 399a "fake write should not be slower than normal write"
15966
15967 test_399b() { # LU-8726 for OST fake read
15968         remote_ost_nodsh && skip "remote OST with nodsh" && return
15969
15970         if [ "$(facet_fstype ost1)" != "ldiskfs" ]; then
15971                 skip "only for ldiskfs" && return 0
15972         fi
15973         test_fake_rw read
15974 }
15975 run_test 399b "fake read should not be slower than normal read"
15976
15977 test_400a() { # LU-1606, was conf-sanity test_74
15978         local extra_flags=''
15979         local out=$TMP/$tfile
15980         local prefix=/usr/include/lustre
15981         local prog
15982
15983         if ! which $CC > /dev/null 2>&1; then
15984                 skip_env "$CC is not installed"
15985                 return 0
15986         fi
15987
15988         if ! [[ -d $prefix ]]; then
15989                 # Assume we're running in tree and fixup the include path.
15990                 extra_flags+=" -I$LUSTRE/../libcfs/include"
15991                 extra_flags+=" -I$LUSTRE/include"
15992                 extra_flags+=" -L$LUSTRE/utils"
15993         fi
15994
15995         for prog in $LUSTRE_TESTS_API_DIR/*.c; do
15996                 $CC -Wall -Werror $extra_flags -llustreapi -o $out $prog ||
15997                         error "client api broken"
15998         done
15999         rm -f $out
16000 }
16001 run_test 400a "Lustre client api program can compile and link"
16002
16003 test_400b() { # LU-1606, LU-5011
16004         local header
16005         local out=$TMP/$tfile
16006         local prefix=/usr/include/lustre
16007
16008         # We use a hard coded prefix so that this test will not fail
16009         # when run in tree. There are headers in lustre/include/lustre/
16010         # that are not packaged (like lustre_idl.h) and have more
16011         # complicated include dependencies (like config.h and lnet/types.h).
16012         # Since this test about correct packaging we just skip them when
16013         # they don't exist (see below) rather than try to fixup cppflags.
16014
16015         if ! which $CC > /dev/null 2>&1; then
16016                 skip_env "$CC is not installed"
16017                 return 0
16018         fi
16019
16020         for header in $prefix/*.h; do
16021                 if ! [[ -f "$header" ]]; then
16022                         continue
16023                 fi
16024
16025                 if [[ "$(basename $header)" == liblustreapi.h ]]; then
16026                         continue # liblustreapi.h is deprecated.
16027                 fi
16028
16029                 $CC -Wall -Werror -include $header -c -x c /dev/null -o $out ||
16030                         error "cannot compile '$header'"
16031         done
16032         rm -f $out
16033 }
16034 run_test 400b "packaged headers can be compiled"
16035
16036 test_401a() { #LU-7437
16037         local printf_arg=$(find -printf 2>&1 | grep "unrecognized:")
16038         [ -n "$printf_arg" ] && skip_env "find does not support -printf" &&
16039                 return
16040         #count the number of parameters by "list_param -R"
16041         local params=$($LCTL list_param -R '*' 2>/dev/null | wc -l)
16042         #count the number of parameters by listing proc files
16043         local proc_dirs=$(eval \ls -d $proc_regexp 2>/dev/null)
16044         echo "proc_dirs='$proc_dirs'"
16045         [ -n "$proc_dirs" ] || error "no proc_dirs on $HOSTNAME"
16046         local procs=$(find -L $proc_dirs -mindepth 1 -printf '%P\n' 2>/dev/null|
16047                       sort -u | wc -l)
16048
16049         [ $params -eq $procs ] ||
16050                 error "found $params parameters vs. $procs proc files"
16051
16052         # test the list_param -D option only returns directories
16053         params=$($LCTL list_param -R -D '*' 2>/dev/null | wc -l)
16054         #count the number of parameters by listing proc directories
16055         procs=$(find -L $proc_dirs -mindepth 1 -type d -printf '%P\n' 2>/dev/null |
16056                 sort -u | wc -l)
16057
16058         [ $params -eq $procs ] ||
16059                 error "found $params parameters vs. $procs proc files"
16060 }
16061 run_test 401a "Verify if 'lctl list_param -R' can list parameters recursively"
16062
16063 test_401b() {
16064         local save=$($LCTL get_param -n jobid_var)
16065         local tmp=testing
16066
16067         $LCTL set_param foo=bar jobid_var=$tmp bar=baz &&
16068                 error "no error returned when setting bad parameters"
16069
16070         local jobid_new=$($LCTL get_param -n foe jobid_var baz)
16071         [[ "$jobid_new" == "$tmp" ]] || error "jobid tmp $jobid_new != $tmp"
16072
16073         $LCTL set_param -n fog=bam jobid_var=$save bat=fog
16074         local jobid_old=$($LCTL get_param -n foe jobid_var bag)
16075         [[ "$jobid_old" == "$save" ]] || error "jobid new $jobid_old != $save"
16076 }
16077 run_test 401b "Verify 'lctl {get,set}_param' continue after error"
16078
16079 test_401c() {
16080         local jobid_var_old=$($LCTL get_param -n jobid_var)
16081         local jobid_var_new
16082
16083         $LCTL set_param jobid_var= &&
16084                 error "no error returned for 'set_param a='"
16085
16086         jobid_var_new=$($LCTL get_param -n jobid_var)
16087         [[ "$jobid_var_old" == "$jobid_var_new" ]] ||
16088                 error "jobid_var was changed by setting without value"
16089
16090         $LCTL set_param jobid_var &&
16091                 error "no error returned for 'set_param a'"
16092
16093         jobid_var_new=$($LCTL get_param -n jobid_var)
16094         [[ "$jobid_var_old" == "$jobid_var_new" ]] ||
16095                 error "jobid_var was changed by setting without value"
16096 }
16097 run_test 401c "Verify 'lctl set_param' without value fails in either format."
16098
16099 test_401d() {
16100         local jobid_var_old=$($LCTL get_param -n jobid_var)
16101         local jobid_var_new
16102         local new_value="foo=bar"
16103
16104         $LCTL set_param jobid_var=$new_value ||
16105                 error "'set_param a=b' did not accept a value containing '='"
16106
16107         jobid_var_new=$($LCTL get_param -n jobid_var)
16108         [[ "$jobid_var_new" == "$new_value" ]] ||
16109                 error "'set_param a=b' failed on a value containing '='"
16110
16111         # Reset the jobid_var to test the other format
16112         $LCTL set_param jobid_var=$jobid_var_old
16113         jobid_var_new=$($LCTL get_param -n jobid_var)
16114         [[ "$jobid_var_new" == "$jobid_var_old" ]] ||
16115                 error "failed to reset jobid_var"
16116
16117         $LCTL set_param jobid_var $new_value ||
16118                 error "'set_param a b' did not accept a value containing '='"
16119
16120         jobid_var_new=$($LCTL get_param -n jobid_var)
16121         [[ "$jobid_var_new" == "$new_value" ]] ||
16122                 error "'set_param a b' failed on a value containing '='"
16123
16124         $LCTL set_param jobid_var $jobid_var_old
16125         jobid_var_new=$($LCTL get_param -n jobid_var)
16126         [[ "$jobid_var_new" == "$jobid_var_old" ]] ||
16127                 error "failed to reset jobid_var"
16128 }
16129 run_test 401d "Verify 'lctl set_param' accepts values containing '='"
16130
16131 test_402() {
16132         local server_version=$(lustre_version_code $SINGLEMDS)
16133         [[ $server_version -ge $(version_code 2.7.66) ]] ||
16134         [[ $server_version -ge $(version_code 2.7.18.4) &&
16135                 $server_version -lt $(version_code 2.7.50) ]] ||
16136         [[ $server_version -ge $(version_code 2.7.2) &&
16137                 $server_version -lt $(version_code 2.7.11) ]] ||
16138                 { skip "Need MDS version 2.7.2+ or 2.7.18.4+ or 2.7.66+";
16139                         return; }
16140         remote_mds_nodsh && skip "remote MDS with nodsh" && return
16141         $LFS setdirstripe -i 0 $DIR/$tdir || error "setdirstripe -i 0 failed"
16142 #define OBD_FAIL_MDS_FLD_LOOKUP 0x15c
16143         do_facet mds1 "lctl set_param fail_loc=0x8000015c"
16144         touch $DIR/$tdir/$tfile && error "touch should fail with ENOENT" ||
16145                 echo "Touch failed - OK"
16146 }
16147 run_test 402 "Return ENOENT to lod_generate_and_set_lovea"
16148
16149 test_403() {
16150         local file1=$DIR/$tfile.1
16151         local file2=$DIR/$tfile.2
16152         local tfile=$TMP/$tfile
16153
16154         rm -f $file1 $file2 $tfile
16155
16156         touch $file1
16157         ln $file1 $file2
16158
16159         # 30 sec OBD_TIMEOUT in ll_getattr()
16160         # right before populating st_nlink
16161         $LCTL set_param fail_loc=0x80001409
16162         stat -c %h $file1 > $tfile &
16163
16164         # create an alias, drop all locks and reclaim the dentry
16165         < $file2
16166         cancel_lru_locks mdc
16167         cancel_lru_locks osc
16168         sysctl -w vm.drop_caches=2
16169
16170         wait
16171
16172         [ `cat $tfile` -gt 0 ] || error "wrong nlink count: `cat $tfile`"
16173
16174         rm -f $tfile $file1 $file2
16175 }
16176 run_test 403 "i_nlink should not drop to zero due to aliasing"
16177
16178 test_404() { # LU-6601
16179         local server_version=$(lustre_version_code $SINGLEMDS)
16180         [[ $server_version -ge $(version_code 2.8.53) ]] ||
16181                 { skip "Need server version newer than 2.8.52"; return 0; }
16182
16183         remote_mds_nodsh && skip "remote MDS with nodsh" && return
16184         local mosps=$(do_facet $SINGLEMDS $LCTL dl |
16185                 awk '/osp .*-osc-MDT/ { print $4}')
16186
16187         local osp
16188         for osp in $mosps; do
16189                 echo "Deactivate: " $osp
16190                 do_facet $SINGLEMDS $LCTL --device %$osp deactivate
16191                 local stat=$(do_facet $SINGLEMDS $LCTL dl |
16192                         awk -vp=$osp '$4 == p { print $2 }')
16193                 [ $stat = IN ] || {
16194                         do_facet $SINGLEMDS $LCTL dl | grep -w $osp
16195                         error "deactivate error"
16196                 }
16197                 echo "Activate: " $osp
16198                 do_facet $SINGLEMDS $LCTL --device %$osp activate
16199                 local stat=$(do_facet $SINGLEMDS $LCTL dl |
16200                         awk -vp=$osp '$4 == p { print $2 }')
16201                 [ $stat = UP ] || {
16202                         do_facet $SINGLEMDS $LCTL dl | grep -w $osp
16203                         error "activate error"
16204                 }
16205         done
16206 }
16207 run_test 404 "validate manual {de}activated works properly for OSPs"
16208
16209 test_405() {
16210         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.92) ] &&
16211                 skip "Layout swap lock is not supported" && return
16212
16213         check_swap_layouts_support && return 0
16214
16215         test_mkdir -p $DIR/$tdir
16216         swap_lock_test -d $DIR/$tdir ||
16217                 error "One layout swap locked test failed"
16218 }
16219 run_test 405 "Various layout swap lock tests"
16220
16221 test_406() {
16222         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
16223         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
16224         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
16225         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
16226         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.50) ] &&
16227                 skip "Need MDS version at least 2.8.50" && return
16228
16229         local def_stripenr=$($GETSTRIPE -c $MOUNT)
16230         local def_stripe_size=$($GETSTRIPE -S $MOUNT)
16231         local def_stripe_offset=$($GETSTRIPE -i $MOUNT)
16232         local def_pool=$($GETSTRIPE -p $MOUNT)
16233
16234         local test_pool=$TESTNAME
16235         pool_add $test_pool || error "pool_add failed"
16236         pool_add_targets $test_pool 0 $(($OSTCOUNT - 1)) 1 ||
16237                 error "pool_add_targets failed"
16238
16239         # parent set default stripe count only, child will stripe from both
16240         # parent and fs default
16241         $SETSTRIPE -c 1 -i 1 -S $((def_stripe_size * 2)) -p $test_pool $MOUNT ||
16242                 error "setstripe $MOUNT failed"
16243         $LFS mkdir -c $MDSCOUNT $DIR/$tdir || error "mkdir $tdir failed"
16244         $SETSTRIPE -c $OSTCOUNT $DIR/$tdir || error "setstripe $tdir failed"
16245         for i in $(seq 10); do
16246                 local f=$DIR/$tdir/$tfile.$i
16247                 touch $f || error "touch failed"
16248                 local count=$($GETSTRIPE -c $f)
16249                 [ $count -eq $OSTCOUNT ] ||
16250                         error "$f stripe count $count != $OSTCOUNT"
16251                 local offset=$($GETSTRIPE -i $f)
16252                 [ $offset -eq 1 ] || error "$f stripe offset $offset != 1"
16253                 local size=$($GETSTRIPE -S $f)
16254                 [ $size -eq $((def_stripe_size * 2)) ] ||
16255                         error "$f stripe size $size != $((def_stripe_size * 2))"
16256                 local pool=$($GETSTRIPE -p $f)
16257                 [ $pool == $test_pool ] || error "$f pool $pool != $test_pool"
16258         done
16259
16260         # change fs default striping, delete parent default striping, now child
16261         # will stripe from new fs default striping only
16262         $SETSTRIPE -c 1 -S $def_stripe_size -i 0 $MOUNT ||
16263                 error "change $MOUNT default stripe failed"
16264         $SETSTRIPE -c 0 $DIR/$tdir || error "delete $tdir default stripe failed"
16265         for i in $(seq 11 20); do
16266                 local f=$DIR/$tdir/$tfile.$i
16267                 touch $f || error "touch $f failed"
16268                 local count=$($GETSTRIPE -c $f)
16269                 [ $count -eq 1 ] || error "$f stripe count $count != 1"
16270                 local offset=$($GETSTRIPE -i $f)
16271                 [ $offset -eq 0 ] || error "$f stripe offset $offset != 0"
16272                 local size=$($GETSTRIPE -S $f)
16273                 [ $size -eq $def_stripe_size ] ||
16274                         error "$f stripe size $size != $def_stripe_size"
16275                 local pool=$($GETSTRIPE -p $f)
16276                 [ "#$pool" == "#" ] || error "$f pool $pool is set"
16277
16278         done
16279
16280         unlinkmany $DIR/$tdir/$tfile. 1 20
16281
16282         # restore FS default striping
16283         if [ -z $def_pool ]; then
16284                 $SETSTRIPE -c $def_stripenr -S $def_stripe_size \
16285                         -i $def_stripe_offset $MOUNT ||
16286                         error "restore default striping failed"
16287         else
16288                 $SETSTRIPE -c $def_stripenr -S $def_stripe_size -p $def_pool \
16289                         -i $def_stripe_offset $MOUNT ||
16290                         error "restore default striping with $def_pool failed"
16291         fi
16292
16293         local f=$DIR/$tdir/$tfile
16294         pool_remove_all_targets $test_pool $f
16295         pool_remove $test_pool $f
16296 }
16297 run_test 406 "DNE support fs default striping"
16298
16299 test_407() {
16300         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
16301         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.55) ]] &&
16302                 skip "Need MDS version at least 2.8.55" && return
16303         remote_mds_nodsh && skip "remote MDS with nodsh" && return
16304
16305         $LFS mkdir -i 0 -c 1 $DIR/$tdir.0 ||
16306                 error "$LFS mkdir -i 0 -c 1 $tdir.0 failed"
16307         $LFS mkdir -i 1 -c 1 $DIR/$tdir.1 ||
16308                 error "$LFS mkdir -i 1 -c 1 $tdir.1 failed"
16309         touch $DIR/$tdir.0/$tfile.0 || error "touch $tdir.0/$tfile.0 failed"
16310
16311         #define OBD_FAIL_DT_TXN_STOP    0x2019
16312         for idx in $(seq $MDSCOUNT); do
16313                 do_facet mds$idx "lctl set_param fail_loc=0x2019"
16314         done
16315         $LFS mkdir -c 2 $DIR/$tdir && error "$LFS mkdir -c 2 $tdir should fail"
16316         mv $DIR/$tdir.0/$tfile.0 $DIR/$tdir.1/$tfile.1 &&
16317                 error "mv $tdir.0/$tfile.0 $tdir.1/$tfile.1 should fail"
16318         true
16319 }
16320 run_test 407 "transaction fail should cause operation fail"
16321
16322 test_408() {
16323         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 oflag=direct
16324
16325         #define OBD_FAIL_OSC_BRW_PREP_REQ2        0x40a
16326         lctl set_param fail_loc=0x8000040a
16327         # let ll_prepare_partial_page() fail
16328         dd if=/dev/zero of=$DIR/$tfile bs=2048 count=1 conv=notrunc || true
16329
16330         rm -f $DIR/$tfile
16331
16332         # create at least 100 unused inodes so that
16333         # shrink_icache_memory(0) should not return 0
16334         touch $DIR/$tfile-{0..100}
16335         rm -f $DIR/$tfile-{0..100}
16336         sync
16337
16338         echo 2 > /proc/sys/vm/drop_caches
16339 }
16340 run_test 408 "drop_caches should not hang due to page leaks"
16341
16342 test_409()
16343 {
16344         [ $MDSCOUNT -lt 2 ] &&
16345                 skip "We need at least 2 MDTs for this test" && return
16346
16347         check_mount_and_prep
16348
16349         mkdir -p $DIR/$tdir || error "(0) Fail to mkdir"
16350         $LFS mkdir -i 1 -c 2 $DIR/$tdir/foo || error "(1) Fail to mkdir"
16351         touch $DIR/$tdir/guard || error "(2) Fail to create"
16352
16353         local PREFIX=$(str_repeat 'A' 128)
16354         echo "Create 1K hard links start at $(date)"
16355         createmany -l $DIR/$tdir/guard $DIR/$tdir/foo/${PREFIX}_ 1000 ||
16356                 error "(3) Fail to hard link"
16357
16358         echo "Links count should be right although linkEA overflow"
16359         stat $DIR/$tdir/guard || error "(4) Fail to stat"
16360         local linkcount=$(stat --format=%h $DIR/$tdir/guard)
16361         [ $linkcount -eq 1001 ] ||
16362                 error "(5) Unexpected hard links count: $linkcount"
16363
16364         echo "List all links start at $(date)"
16365         ls -l $DIR/$tdir/foo > /dev/null ||
16366                 error "(6) Fail to list $DIR/$tdir/foo"
16367
16368         echo "Unlink hard links start at $(date)"
16369         unlinkmany $DIR/$tdir/foo/${PREFIX}_ 1000 ||
16370                 error "(7) Fail to unlink"
16371 }
16372 run_test 409 "Large amount of cross-MDTs hard links on the same file"
16373
16374 test_410()
16375 {
16376         # Create a file, and stat it from the kernel
16377         local testfile=$DIR/$tfile
16378         touch $testfile
16379
16380         local run_id=$RANDOM
16381         local my_ino=$(stat --format "%i" $testfile)
16382
16383         # Try to insert the module. This will always fail as the
16384         # module is designed to not be inserted.
16385         insmod $LUSTRE/tests/kernel/kinode.ko run_id=$run_id fname=$testfile \
16386             &> /dev/null
16387
16388         # Anything but success is a test failure
16389         dmesg | grep -q \
16390             "lustre_kinode_$run_id: inode numbers are identical: $my_ino" ||
16391             error "no inode match"
16392 }
16393 run_test 410 "Test inode number returned from kernel thread"
16394
16395 prep_801() {
16396         [[ $(lustre_version_code mds1) -lt $(version_code 2.9.55) ]] ||
16397         [[ $(lustre_version_code ost1) -lt $(version_code 2.9.55) ]] &&
16398                 skip "Need server version at least 2.9.55" & exit 0
16399         start_full_debug_logging
16400 }
16401
16402 post_801() {
16403         stop_full_debug_logging
16404 }
16405
16406 barrier_stat() {
16407         if [ $(lustre_version_code mgs) -le $(version_code 2.10.0) ]; then
16408                 local st=$(do_facet mgs $LCTL barrier_stat $FSNAME |
16409                            awk '/The barrier for/ { print $7 }')
16410                 echo $st
16411         else
16412                 local st=$(do_facet mgs $LCTL barrier_stat -s $FSNAME)
16413                 echo \'$st\'
16414         fi
16415 }
16416
16417 barrier_expired() {
16418         local expired
16419
16420         if [ $(lustre_version_code mgs) -le $(version_code 2.10.0) ]; then
16421                 expired=$(do_facet mgs $LCTL barrier_stat $FSNAME |
16422                           awk '/will be expired/ { print $7 }')
16423         else
16424                 expired=$(do_facet mgs $LCTL barrier_stat -t $FSNAME)
16425         fi
16426
16427         echo $expired
16428 }
16429
16430 test_801a() {
16431         prep_801
16432
16433         echo "Start barrier_freeze at: $(date)"
16434         #define OBD_FAIL_BARRIER_DELAY          0x2202
16435         do_facet mgs $LCTL set_param fail_val=5 fail_loc=0x2202
16436         do_facet mgs $LCTL barrier_freeze $FSNAME 10 &
16437
16438         sleep 2
16439         local b_status=$(barrier_stat)
16440         echo "Got barrier status at: $(date)"
16441         [ "$b_status" = "'freezing_p1'" ] ||
16442                 error "(1) unexpected barrier status $b_status"
16443
16444         do_facet mgs $LCTL set_param fail_val=0 fail_loc=0
16445         wait
16446         b_status=$(barrier_stat)
16447         [ "$b_status" = "'frozen'" ] ||
16448                 error "(2) unexpected barrier status $b_status"
16449
16450         local expired=$(barrier_expired)
16451         echo "sleep $((expired + 3)) seconds, then the barrier will be expired"
16452         sleep $((expired + 3))
16453
16454         b_status=$(barrier_stat)
16455         [ "$b_status" = "'expired'" ] ||
16456                 error "(3) unexpected barrier status $b_status"
16457
16458         do_facet mgs $LCTL barrier_freeze $FSNAME 10 ||
16459                 error "(4) fail to freeze barrier"
16460
16461         b_status=$(barrier_stat)
16462         [ "$b_status" = "'frozen'" ] ||
16463                 error "(5) unexpected barrier status $b_status"
16464
16465         echo "Start barrier_thaw at: $(date)"
16466         #define OBD_FAIL_BARRIER_DELAY          0x2202
16467         do_facet mgs $LCTL set_param fail_val=5 fail_loc=0x2202
16468         do_facet mgs $LCTL barrier_thaw $FSNAME &
16469
16470         sleep 2
16471         b_status=$(barrier_stat)
16472         echo "Got barrier status at: $(date)"
16473         [ "$b_status" = "'thawing'" ] ||
16474                 error "(6) unexpected barrier status $b_status"
16475
16476         do_facet mgs $LCTL set_param fail_val=0 fail_loc=0
16477         wait
16478         b_status=$(barrier_stat)
16479         [ "$b_status" = "'thawed'" ] ||
16480                 error "(7) unexpected barrier status $b_status"
16481
16482         #define OBD_FAIL_BARRIER_FAILURE        0x2203
16483         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2203
16484         do_facet mgs $LCTL barrier_freeze $FSNAME
16485
16486         b_status=$(barrier_stat)
16487         [ "$b_status" = "'failed'" ] ||
16488                 error "(8) unexpected barrier status $b_status"
16489
16490         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
16491         do_facet mgs $LCTL barrier_thaw $FSNAME
16492
16493         post_801
16494 }
16495 run_test 801a "write barrier user interfaces and stat machine"
16496
16497 test_801b() {
16498         prep_801
16499
16500         mkdir $DIR/$tdir || error "(1) fail to mkdir"
16501         createmany -d $DIR/$tdir/d 6 || "(2) fail to mkdir"
16502         touch $DIR/$tdir/d2/f10 || error "(3) fail to touch"
16503         touch $DIR/$tdir/d3/f11 || error "(4) fail to touch"
16504         touch $DIR/$tdir/d4/f12 || error "(5) fail to touch"
16505
16506         cancel_lru_locks mdc
16507
16508         # 180 seconds should be long enough
16509         do_facet mgs $LCTL barrier_freeze $FSNAME 180
16510
16511         local b_status=$(barrier_stat)
16512         [ "$b_status" = "'frozen'" ] ||
16513                 error "(6) unexpected barrier status $b_status"
16514
16515         mkdir $DIR/$tdir/d0/d10 &
16516         mkdir_pid=$!
16517
16518         touch $DIR/$tdir/d1/f13 &
16519         touch_pid=$!
16520
16521         ln $DIR/$tdir/d2/f10 $DIR/$tdir/d2/f14 &
16522         ln_pid=$!
16523
16524         mv $DIR/$tdir/d3/f11 $DIR/$tdir/d3/f15 &
16525         mv_pid=$!
16526
16527         rm -f $DIR/$tdir/d4/f12 &
16528         rm_pid=$!
16529
16530         stat $DIR/$tdir/d5 || error "(7) stat should succeed"
16531
16532         # To guarantee taht the 'stat' is not blocked
16533         b_status=$(barrier_stat)
16534         [ "$b_status" = "'frozen'" ] ||
16535                 error "(8) unexpected barrier status $b_status"
16536
16537         # let above commands to run at background
16538         sleep 5
16539
16540         ps -p $mkdir_pid || error "(9) mkdir should be blocked"
16541         ps -p $touch_pid || error "(10) touch should be blocked"
16542         ps -p $ln_pid || error "(11) link should be blocked"
16543         ps -p $mv_pid || error "(12) rename should be blocked"
16544         ps -p $rm_pid || error "(13) unlink should be blocked"
16545
16546         b_status=$(barrier_stat)
16547         [ "$b_status" = "'frozen'" ] ||
16548                 error "(14) unexpected barrier status $b_status"
16549
16550         do_facet mgs $LCTL barrier_thaw $FSNAME
16551         b_status=$(barrier_stat)
16552         [ "$b_status" = "'thawed'" ] ||
16553                 error "(15) unexpected barrier status $b_status"
16554
16555         wait $mkdir_pid || error "(16) mkdir should succeed"
16556         wait $touch_pid || error "(17) touch should succeed"
16557         wait $ln_pid || error "(18) link should succeed"
16558         wait $mv_pid || error "(19) rename should succeed"
16559         wait $rm_pid || error "(20) unlink should succeed"
16560
16561         post_801
16562 }
16563 run_test 801b "modification will be blocked by write barrier"
16564
16565 test_801c() {
16566         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
16567
16568         prep_801
16569
16570         stop mds2 || error "(1) Fail to stop mds2"
16571
16572         do_facet mgs $LCTL barrier_freeze $FSNAME 30
16573
16574         local b_status=$(barrier_stat)
16575         [ "$b_status" = "'expired'" -o "$b_status" = "'failed'" ] || {
16576                 do_facet mgs $LCTL barrier_thaw $FSNAME
16577                 error "(2) unexpected barrier status $b_status"
16578         }
16579
16580         do_facet mgs $LCTL barrier_rescan $FSNAME ||
16581                 error "(3) Fail to rescan barrier bitmap"
16582
16583         do_facet mgs $LCTL barrier_freeze $FSNAME 10
16584
16585         b_status=$(barrier_stat)
16586         [ "$b_status" = "'frozen'" ] ||
16587                 error "(4) unexpected barrier status $b_status"
16588
16589         do_facet mgs $LCTL barrier_thaw $FSNAME
16590         b_status=$(barrier_stat)
16591         [ "$b_status" = "'thawed'" ] ||
16592                 error "(5) unexpected barrier status $b_status"
16593
16594         local devname=$(mdsdevname 2)
16595
16596         start mds2 $devname $MDS_MOUNT_OPTS || error "(6) Fail to start mds2"
16597
16598         do_facet mgs $LCTL barrier_rescan $FSNAME ||
16599                 error "(7) Fail to rescan barrier bitmap"
16600
16601         post_801
16602 }
16603 run_test 801c "rescan barrier bitmap"
16604
16605 saved_MGS_MOUNT_OPTS=$MGS_MOUNT_OPTS
16606 saved_MDS_MOUNT_OPTS=$MDS_MOUNT_OPTS
16607 saved_OST_MOUNT_OPTS=$OST_MOUNT_OPTS
16608
16609 cleanup_802() {
16610         trap 0
16611
16612         stopall
16613         MGS_MOUNT_OPTS=$saved_MGS_MOUNT_OPTS
16614         MDS_MOUNT_OPTS=$saved_MDS_MOUNT_OPTS
16615         OST_MOUNT_OPTS=$saved_OST_MOUNT_OPTS
16616         setupall
16617 }
16618
16619 test_802() {
16620
16621         [[ $(lustre_version_code mds1) -lt $(version_code 2.9.55) ]] ||
16622         [[ $(lustre_version_code ost1) -lt $(version_code 2.9.55) ]] &&
16623                 skip "Need server version at least 2.9.55" & exit 0
16624
16625         mkdir $DIR/$tdir || error "(1) fail to mkdir"
16626
16627         cp $LUSTRE/tests/test-framework.sh $DIR/$tdir/ ||
16628                 error "(2) Fail to copy"
16629
16630         trap cleanup_802 EXIT
16631
16632         # sync by force before remount as readonly
16633         sync; sync_all_data; sleep 3; sync_all_data
16634
16635         stopall
16636
16637         MGS_MOUNT_OPTS=$(csa_add "$MGS_MOUNT_OPTS" -o rdonly_dev)
16638         MDS_MOUNT_OPTS=$(csa_add "$MDS_MOUNT_OPTS" -o rdonly_dev)
16639         OST_MOUNT_OPTS=$(csa_add "$OST_MOUNT_OPTS" -o rdonly_dev)
16640
16641         echo "Mount the server as read only"
16642         setupall server_only || error "(3) Fail to start servers"
16643
16644         echo "Mount client without ro should fail"
16645         mount_client $MOUNT &&
16646                 error "(4) Mount client without 'ro' should fail"
16647
16648         echo "Mount client with ro should succeed"
16649         mount_client $MOUNT ro ||
16650                 error "(5) Mount client with 'ro' should succeed"
16651
16652         echo "Modify should be refused"
16653         touch $DIR/$tdir/guard && error "(6) Touch should fail under ro mode"
16654
16655         echo "Read should be allowed"
16656         diff $LUSTRE/tests/test-framework.sh $DIR/$tdir/test-framework.sh ||
16657                 error "(7) Read should succeed under ro mode"
16658
16659         cleanup_802
16660 }
16661 run_test 802 "simulate readonly device"
16662
16663 #
16664 # tests that do cleanup/setup should be run at the end
16665 #
16666
16667 test_900() {
16668         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
16669         local ls
16670         #define OBD_FAIL_MGC_PAUSE_PROCESS_LOG   0x903
16671         $LCTL set_param fail_loc=0x903
16672
16673         cancel_lru_locks MGC
16674
16675         FAIL_ON_ERROR=true cleanup
16676         FAIL_ON_ERROR=true setup
16677 }
16678 run_test 900 "umount should not race with any mgc requeue thread"
16679
16680 complete $SECONDS
16681 [ -f $EXT2_DEV ] && rm $EXT2_DEV || true
16682 check_and_cleanup_lustre
16683 if [ "$I_MOUNTED" != "yes" ]; then
16684         lctl set_param debug="$OLDDEBUG" 2> /dev/null || true
16685 fi
16686 exit_status