Whamcloud - gitweb
3f8badb51da6853c5d284ea7ab62d482b709c2ee
[fs/lustre-release.git] / lustre / tests / sanity.sh
1 #!/bin/bash
2 # -*- tab-width: 4; indent-tabs-mode: t; -*-
3 #
4 # Run select tests by setting ONLY, or as arguments to the script.
5 # Skip specific tests by setting EXCEPT.
6 #
7 # e.g. ONLY="22 23" or ONLY="`seq 32 39`" or EXCEPT="31"
8 set -e
9
10 ONLY=${ONLY:-"$*"}
11 # bug number for skipped test: 13297 2108 9789 3637 9789 3561 12622 5188
12 ALWAYS_EXCEPT="                42a  42b  42c  42d  45   51d   68b   $SANITY_EXCEPT"
13 # UPDATE THE COMMENT ABOVE WITH BUG NUMBERS WHEN CHANGING ALWAYS_EXCEPT!
14
15 # with LOD/OSP landing
16 # bug number for skipped tests: LU-2036
17 ALWAYS_EXCEPT="                 76     $ALWAYS_EXCEPT"
18
19
20 SRCDIR=$(cd $(dirname $0); echo $PWD)
21 export PATH=$PATH:/sbin
22
23 TMP=${TMP:-/tmp}
24
25 CHECKSTAT=${CHECKSTAT:-"checkstat -v"}
26 CREATETEST=${CREATETEST:-createtest}
27 LFS=${LFS:-lfs}
28 LFIND=${LFIND:-"$LFS find"}
29 LVERIFY=${LVERIFY:-ll_dirstripe_verify}
30 LCTL=${LCTL:-lctl}
31 MCREATE=${MCREATE:-mcreate}
32 OPENFILE=${OPENFILE:-openfile}
33 OPENUNLINK=${OPENUNLINK:-openunlink}
34 export MULTIOP=${MULTIOP:-multiop}
35 READS=${READS:-"reads"}
36 MUNLINK=${MUNLINK:-munlink}
37 SOCKETSERVER=${SOCKETSERVER:-socketserver}
38 SOCKETCLIENT=${SOCKETCLIENT:-socketclient}
39 MEMHOG=${MEMHOG:-memhog}
40 DIRECTIO=${DIRECTIO:-directio}
41 ACCEPTOR_PORT=${ACCEPTOR_PORT:-988}
42 UMOUNT=${UMOUNT:-"umount -d"}
43 STRIPES_PER_OBJ=-1
44 CHECK_GRANT=${CHECK_GRANT:-"yes"}
45 GRANT_CHECK_LIST=${GRANT_CHECK_LIST:-""}
46 export PARALLEL=${PARALLEL:-"no"}
47
48 export NAME=${NAME:-local}
49
50 SAVE_PWD=$PWD
51
52 CLEANUP=${CLEANUP:-:}
53 SETUP=${SETUP:-:}
54 TRACE=${TRACE:-""}
55 LUSTRE=${LUSTRE:-$(cd $(dirname $0)/..; echo $PWD)}
56 . $LUSTRE/tests/test-framework.sh
57 init_test_env $@
58 . ${CONFIG:=$LUSTRE/tests/cfg/${NAME}.sh}
59 init_logging
60
61 [ "$SLOW" = "no" ] && EXCEPT_SLOW="24o 27m 64b 68 71 77f 78 115 124b"
62
63 [ $(facet_fstype $SINGLEMDS) = "zfs" ] &&
64 # bug number for skipped test:        LU-1593 LU-2610 LU-2833 LU-1957 LU-2805
65         ALWAYS_EXCEPT="$ALWAYS_EXCEPT 34h     40      48a     180     184c"
66
67 FAIL_ON_ERROR=false
68
69 cleanup() {
70         echo -n "cln.."
71         pgrep ll_sa > /dev/null && { echo "There are ll_sa thread not exit!"; exit 20; }
72         cleanupall ${FORCE} $* || { echo "FAILed to clean up"; exit 20; }
73 }
74 setup() {
75         echo -n "mnt.."
76         load_modules
77         setupall || exit 10
78         echo "done"
79 }
80
81 check_kernel_version() {
82         WANT_VER=$1
83         GOT_VER=$(lctl get_param -n version | awk '/kernel:/ {print $2}')
84         case $GOT_VER in
85         patchless|patchless_client) return 0;;
86         *) [ $GOT_VER -ge $WANT_VER ] && return 0 ;;
87         esac
88         log "test needs at least kernel version $WANT_VER, running $GOT_VER"
89         return 1
90 }
91
92 check_swap_layouts_support()
93 {
94         $LCTL get_param -n llite.*.sbi_flags | grep -q layout ||
95                 { skip "Does not support layout lock."; return 0; }
96         return 1
97 }
98
99 if [ "$ONLY" == "cleanup" ]; then
100        sh llmountcleanup.sh
101        exit 0
102 fi
103
104 check_and_setup_lustre
105
106 DIR=${DIR:-$MOUNT}
107 assert_DIR
108
109 MDT0=$($LCTL get_param -n mdc.*.mds_server_uuid | \
110     awk '{gsub(/_UUID/,""); print $1}' | head -1)
111 LOVNAME=$($LCTL get_param -n llite.*.lov.common_name | tail -n 1)
112 OSTCOUNT=$($LCTL get_param -n lov.$LOVNAME.numobd)
113 STRIPECOUNT=$($LCTL get_param -n lov.$LOVNAME.stripecount)
114 STRIPESIZE=$($LCTL get_param -n lov.$LOVNAME.stripesize)
115 ORIGFREE=$($LCTL get_param -n lov.$LOVNAME.kbytesavail)
116 MAXFREE=${MAXFREE:-$((200000 * $OSTCOUNT))}
117
118 [ -f $DIR/d52a/foo ] && chattr -a $DIR/d52a/foo
119 [ -f $DIR/d52b/foo ] && chattr -i $DIR/d52b/foo
120 rm -rf $DIR/[Rdfs][0-9]*
121
122 # $RUNAS_ID may get set incorrectly somewhere else
123 [ $UID -eq 0 -a $RUNAS_ID -eq 0 ] && error "\$RUNAS_ID set to 0, but \$UID is also 0!"
124
125 check_runas_id $RUNAS_ID $RUNAS_GID $RUNAS
126
127 build_test_filter
128
129 if [ "${ONLY}" = "MOUNT" ] ; then
130         echo "Lustre is up, please go on"
131         exit
132 fi
133
134 echo "preparing for tests involving mounts"
135 EXT2_DEV=${EXT2_DEV:-$TMP/SANITY.LOOP}
136 touch $EXT2_DEV
137 mke2fs -j -F $EXT2_DEV 8000 > /dev/null
138 echo # add a newline after mke2fs.
139
140 umask 077
141
142 OLDDEBUG=$(lctl get_param -n debug 2> /dev/null)
143 lctl set_param debug=-1 2> /dev/null || true
144 test_0a() {
145         touch $DIR/$tfile
146         $CHECKSTAT -t file $DIR/$tfile || error "$tfile is not a file"
147         rm $DIR/$tfile
148         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
149 }
150 run_test 0a "touch; rm ====================="
151
152 test_0b() {
153         chmod 0755 $DIR || error "chmod 0755 $DIR failed"
154         $CHECKSTAT -p 0755 $DIR || error "$DIR permission is not 0755"
155 }
156 run_test 0b "chmod 0755 $DIR ============================="
157
158 test_0c() {
159         $LCTL get_param mdc.*.import | grep "state: FULL" ||
160                 error "import not FULL"
161         $LCTL get_param mdc.*.import | grep "target: $FSNAME-MDT" ||
162                 error "bad target"
163 }
164 run_test 0c "check import proc ============================="
165
166 test_1() {
167         test_mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
168         test_mkdir -p $DIR/$tdir/d2 || error "mkdir $tdir/d2 failed"
169         test_mkdir $DIR/$tdir/d2 && error "we expect EEXIST, but not returned"
170         $CHECKSTAT -t dir $DIR/$tdir/d2 || error "$tdir/d2 is not a dir"
171         rmdir $DIR/$tdir/d2
172         rmdir $DIR/$tdir
173         $CHECKSTAT -a $DIR/$tdir || error "$tdir was not removed"
174 }
175 run_test 1 "mkdir; remkdir; rmdir =============================="
176
177 test_2() {
178         test_mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
179         touch $DIR/$tdir/$tfile || error "touch $tdir/$tfile failed"
180         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "$tdir/$tfile not a file"
181         rm -r $DIR/$tdir
182         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$file is not removed"
183 }
184 run_test 2 "mkdir; touch; rmdir; check file ===================="
185
186 test_3() {
187         test_mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
188         $CHECKSTAT -t dir $DIR/$tdir || error "$tdir is not a directory"
189         touch $DIR/$tdir/$tfile
190         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "$tdir/$tfile not a file"
191         rm -r $DIR/$tdir
192         $CHECKSTAT -a $DIR/$tdir || error "$tdir is not removed"
193 }
194 run_test 3 "mkdir; touch; rmdir; check dir ====================="
195
196 test_5() {
197         test_mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
198         test_mkdir $DIR/$tdir/d2 || error "mkdir $tdir/d2 failed"
199         chmod 0707 $DIR/$tdir/d2 || error "chmod 0707 $tdir/d2 failed"
200         $CHECKSTAT -t dir -p 0707 $DIR/$tdir/d2 || error "$tdir/d2 not mode 707"
201         $CHECKSTAT -t dir $DIR/$tdir/d2 || error "$tdir/d2 is not a directory"
202 }
203 run_test 5 "mkdir .../d5 .../d5/d2; chmod .../d5/d2 ============"
204
205 test_6a() {
206         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
207         chmod 0666 $DIR/$tfile || error "chmod 0666 $tfile failed"
208         $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/$tfile ||
209                 error "$tfile does not have perm 0666 or UID $UID"
210         $RUNAS chmod 0444 $DIR/$tfile && error "chmod $tfile worked on UID $UID"
211         $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/$tfile ||
212                 error "$tfile should be 0666 and owned by UID $UID"
213 }
214 run_test 6a "touch f6a; chmod f6a; $RUNAS chmod f6a (should return error) =="
215
216 test_6c() {
217         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
218         touch $DIR/$tfile
219         chown $RUNAS_ID $DIR/$tfile || error "chown $RUNAS_ID $file failed"
220         $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/$tfile ||
221                 error "$tfile should be owned by UID $RUNAS_ID"
222         $RUNAS chown $UID $DIR/$tfile && error "chown $UID $file succeeded"
223         $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/$tfile ||
224                 error "$tfile should be owned by UID $RUNAS_ID"
225 }
226 run_test 6c "touch f6c; chown f6c; $RUNAS chown f6c (should return error) =="
227
228 test_6e() {
229         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
230         touch $DIR/$tfile
231         chgrp $RUNAS_ID $DIR/$tfile || error "chgrp $RUNAS_ID $file failed"
232         $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/$tfile ||
233                 error "$tfile should be owned by GID $UID"
234         $RUNAS chgrp $UID $DIR/$tfile && error "chgrp $UID $file succeeded"
235         $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/$tfile ||
236                 error "$tfile should be owned by UID $UID and GID $RUNAS_ID"
237 }
238 run_test 6e "touch f6e; chgrp f6e; $RUNAS chgrp f6e (should return error) =="
239
240 test_6g() {
241         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
242         test_mkdir $DIR/$tdir || error "mkdir $tfile failed"
243         chmod 777 $DIR/$tdir || error "chmod 0777 $tdir failed"
244         $RUNAS mkdir $DIR/$tdir/d || error "mkdir $tdir/d failed"
245         chmod g+s $DIR/$tdir/d || error "chmod g+s $tdir/d failed"
246         test_mkdir $DIR/$tdir/d/subdir || error "mkdir $tdir/d/subdir failed"
247         $CHECKSTAT -g \#$RUNAS_GID $DIR/$tdir/d/subdir ||
248                 error "$tdir/d/subdir should be GID $RUNAS_GID"
249 }
250 run_test 6g "Is new dir in sgid dir inheriting group?"
251
252 test_6h() { # bug 7331
253         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
254         touch $DIR/$tfile || error "touch failed"
255         chown $RUNAS_ID:$RUNAS_GID $DIR/$tfile || error "initial chown failed"
256         $RUNAS -G$RUNAS_GID chown $RUNAS_ID:0 $DIR/$tfile &&
257                 error "chown $RUNAS_ID:0 $tfile worked as GID $RUNAS_GID"
258         $CHECKSTAT -t file -u \#$RUNAS_ID -g \#$RUNAS_GID $DIR/$tfile ||
259                 error "$tdir/$tfile should be UID $RUNAS_UID GID $RUNAS_GID"
260 }
261 run_test 6h "$RUNAS chown RUNAS_ID.0 .../f6h (should return error)"
262
263 test_7a() {
264         test_mkdir $DIR/$tdir
265         $MCREATE $DIR/$tdir/$tfile
266         chmod 0666 $DIR/$tdir/$tfile
267         $CHECKSTAT -t file -p 0666 $DIR/$tdir/$tfile ||
268                 error "$tdir/$tfile should be mode 0666"
269 }
270 run_test 7a "mkdir .../d7; mcreate .../d7/f; chmod .../d7/f ===="
271
272 test_7b() {
273         if [ ! -d $DIR/$tdir ]; then
274                 mkdir $DIR/$tdir
275         fi
276         $MCREATE $DIR/$tdir/$tfile
277         echo -n foo > $DIR/$tdir/$tfile
278         [ "$(cat $DIR/$tdir/$tfile)" = "foo" ] || error "$tdir/$tfile not 'foo'"
279         $CHECKSTAT -t file -s 3 $DIR/$tdir/$tfile || error "$tfile size not 3"
280 }
281 run_test 7b "mkdir .../d7; mcreate d7/f2; echo foo > d7/f2 ====="
282
283 test_8() {
284         test_mkdir $DIR/$tdir
285         touch $DIR/$tdir/$tfile
286         chmod 0666 $DIR/$tdir/$tfile
287         $CHECKSTAT -t file -p 0666 $DIR/$tdir/$tfile ||
288                 error "$tfile mode not 0666"
289 }
290 run_test 8 "mkdir .../d8; touch .../d8/f; chmod .../d8/f ======="
291
292 test_9() {
293         test_mkdir $DIR/$tdir
294         test_mkdir $DIR/$tdir/d2
295         test_mkdir $DIR/$tdir/d2/d3
296         $CHECKSTAT -t dir $DIR/$tdir/d2/d3 || error "$tdir/d2/d3 not a dir"
297 }
298 run_test 9 "mkdir .../d9 .../d9/d2 .../d9/d2/d3 ================"
299
300 test_10() {
301         test_mkdir $DIR/$tdir
302         test_mkdir $DIR/$tdir/d2
303         touch $DIR/$tdir/d2/$tfile
304         $CHECKSTAT -t file $DIR/$tdir/d2/$tfile ||
305                 error "$tdir/d2/$tfile not a file"
306 }
307 run_test 10 "mkdir .../d10 .../d10/d2; touch .../d10/d2/f ======"
308
309 test_11() {
310         test_mkdir $DIR/$tdir
311         test_mkdir $DIR/$tdir/d2
312         chmod 0666 $DIR/$tdir/d2
313         chmod 0705 $DIR/$tdir/d2
314         $CHECKSTAT -t dir -p 0705 $DIR/$tdir/d2 ||
315                 error "$tdir/d2 mode not 0705"
316 }
317 run_test 11 "mkdir .../d11 d11/d2; chmod .../d11/d2 ============"
318
319 test_12() {
320         test_mkdir $DIR/$tdir
321         touch $DIR/$tdir/$tfile
322         chmod 0666 $DIR/$tdir/$tfile
323         chmod 0654 $DIR/$tdir/$tfile
324         $CHECKSTAT -t file -p 0654 $DIR/$tdir/$tfile ||
325                 error "$tdir/d2 mode not 0654"
326 }
327 run_test 12 "touch .../d12/f; chmod .../d12/f .../d12/f ========"
328
329 test_13() {
330         test_mkdir $DIR/$tdir
331         dd if=/dev/zero of=$DIR/$tdir/$tfile count=10
332         >  $DIR/$tdir/$tfile
333         $CHECKSTAT -t file -s 0 $DIR/$tdir/$tfile ||
334                 error "$tdir/$tfile size not 0 after truncate"
335 }
336 run_test 13 "creat .../d13/f; dd .../d13/f; > .../d13/f ========"
337
338 test_14() {
339         test_mkdir $DIR/$tdir
340         touch $DIR/$tdir/$tfile
341         rm $DIR/$tdir/$tfile
342         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$tfile not removed"
343 }
344 run_test 14 "touch .../d14/f; rm .../d14/f; rm .../d14/f ======="
345
346 test_15() {
347         test_mkdir $DIR/$tdir
348         touch $DIR/$tdir/$tfile
349         mv $DIR/$tdir/$tfile $DIR/$tdir/${tfile}_2
350         $CHECKSTAT -t file $DIR/$tdir/${tfile}_2 ||
351                 error "$tdir/${tfile_2} not a file after rename"
352 }
353 run_test 15 "touch .../d15/f; mv .../d15/f .../d15/f2 =========="
354
355 test_16() {
356         test_mkdir $DIR/$tdir
357         touch $DIR/$tdir/$tfile
358         rm -rf $DIR/$tdir/$tfile
359         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$tfile not removed"
360 }
361 run_test 16 "touch .../d16/f; rm -rf .../d16/f ================="
362
363 test_17a() {
364         test_mkdir -p $DIR/$tdir
365         touch $DIR/$tdir/$tfile
366         ln -s $DIR/$tdir/$tfile $DIR/$tdir/l-exist
367         ls -l $DIR/$tdir
368         $CHECKSTAT -l $DIR/$tdir/$tfile $DIR/$tdir/l-exist ||
369                 error "$tdir/l-exist not a symlink"
370         $CHECKSTAT -f -t f $DIR/$tdir/l-exist ||
371                 error "$tdir/l-exist not referencing a file"
372         rm -f $DIR/$tdir/l-exist
373         $CHECKSTAT -a $DIR/$tdir/l-exist || error "$tdir/l-exist not removed"
374 }
375 run_test 17a "symlinks: create, remove (real) =================="
376
377 test_17b() {
378         test_mkdir -p $DIR/$tdir
379         ln -s no-such-file $DIR/$tdir/l-dangle
380         ls -l $DIR/$tdir
381         $CHECKSTAT -l no-such-file $DIR/$tdir/l-dangle ||
382                 error "$tdir/l-dangle not referencing no-such-file"
383         $CHECKSTAT -fa $DIR/$tdir/l-dangle ||
384                 error "$tdir/l-dangle not referencing non-existent file"
385         rm -f $DIR/$tdir/l-dangle
386         $CHECKSTAT -a $DIR/$tdir/l-dangle || error "$tdir/l-dangle not removed"
387 }
388 run_test 17b "symlinks: create, remove (dangling) =============="
389
390 test_17c() { # bug 3440 - don't save failed open RPC for replay
391         test_mkdir -p $DIR/$tdir
392         ln -s foo $DIR/$tdir/$tfile
393         cat $DIR/$tdir/$tfile && error "opened non-existent symlink" || true
394 }
395 run_test 17c "symlinks: open dangling (should return error) ===="
396
397 test_17d() {
398         test_mkdir -p $DIR/$tdir
399         ln -s foo $DIR/$tdir/$tfile
400         touch $DIR/$tdir/$tfile || error "creating to new symlink"
401 }
402 run_test 17d "symlinks: create dangling ========================"
403
404 test_17e() {
405         test_mkdir -p $DIR/$tdir
406         local foo=$DIR/$tdir/$tfile
407         ln -s $foo $foo || error "create symlink failed"
408         ls -l $foo || error "ls -l failed"
409         ls $foo && error "ls not failed" || true
410 }
411 run_test 17e "symlinks: create recursive symlink (should return error) ===="
412
413 test_17f() {
414         test_mkdir -p $DIR/d17f
415         ln -s 1234567890/2234567890/3234567890/4234567890 $DIR/d17f/111
416         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890 $DIR/d17f/222
417         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890 $DIR/d17f/333
418         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890 $DIR/d17f/444
419         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890/c234567890/d234567890/f234567890 $DIR/d17f/555
420         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890/c234567890/d234567890/f234567890/aaaaaaaaaa/bbbbbbbbbb/cccccccccc/dddddddddd/eeeeeeeeee/ffffffffff/ $DIR/d17f/666
421         ls -l  $DIR/d17f
422 }
423 run_test 17f "symlinks: long and very long symlink name ========================"
424
425 # str_repeat(S, N) generate a string that is string S repeated N times
426 str_repeat() {
427         local s=$1
428         local n=$2
429         local ret=''
430         while [ $((n -= 1)) -ge 0 ]; do
431                 ret=$ret$s
432         done
433         echo $ret
434 }
435
436 # Long symlinks and LU-2241
437 test_17g() {
438         test_mkdir -p $DIR/$tdir
439         local TESTS="59 60 61 4094 4095"
440
441         # Fix for inode size boundary in 2.1.4
442         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.1.4) ] &&
443                 TESTS="4094 4095"
444
445         # Patch not applied to 2.2 or 2.3 branches
446         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
447         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.3.55) ] &&
448                 TESTS="4094 4095"
449
450         for i in $TESTS; do
451                 local SYMNAME=$(str_repeat 'x' $i)
452                 ln -s $SYMNAME $DIR/$tdir/f$i || error "failed $i-char symlink"
453                 readlink $DIR/$tdir/f$i || error "failed $i-char readlink"
454         done
455 }
456 run_test 17g "symlinks: really long symlink name and inode boundaries"
457
458 test_17h() { #bug 17378
459         remote_mds_nodsh && skip "remote MDS with nodsh" && return
460         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
461         local mdt_idx
462         test_mkdir -p $DIR/$tdir
463         if [ $MDSCOUNT -gt 1 ]; then
464                 mdt_idx=$($LFS getdirstripe -i $DIR/$tdir)
465         else
466                 mdt_idx=0
467         fi
468         $SETSTRIPE -c -1 $DIR/$tdir
469 #define OBD_FAIL_MDS_LOV_PREP_CREATE 0x141
470         do_facet mds$((mdt_idx + 1)) lctl set_param fail_loc=0x80000141
471         touch $DIR/$tdir/$tfile || true
472 }
473 run_test 17h "create objects: lov_free_memmd() doesn't lbug"
474
475 test_17i() { #bug 20018
476         remote_mds_nodsh && skip "remote MDS with nodsh" && return
477         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
478         test_mkdir -p $DIR/$tdir
479         local foo=$DIR/$tdir/$tfile
480         local mdt_idx
481         if [ $MDSCOUNT -gt 1 ]; then
482                 mdt_idx=$($LFS getdirstripe -i $DIR/$tdir)
483         else
484                 mdt_idx=0
485         fi
486         ln -s $foo $foo || error "create symlink failed"
487 #define OBD_FAIL_MDS_READLINK_EPROTO     0x143
488         do_facet mds$((mdt_idx + 1)) lctl set_param fail_loc=0x80000143
489         ls -l $foo && error "error not detected"
490         return 0
491 }
492 run_test 17i "don't panic on short symlink"
493
494 test_17k() { #bug 22301
495         rsync --help | grep -q xattr ||
496                 skip_env "$(rsync --version| head -1) does not support xattrs"
497         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
498         test_mkdir -p $DIR/$tdir
499         test_mkdir -p $DIR/$tdir.new
500         touch $DIR/$tdir/$tfile
501         ln -s $DIR/$tdir/$tfile $DIR/$tdir/$tfile.lnk
502         rsync -av -X $DIR/$tdir/ $DIR/$tdir.new ||
503                 error "rsync failed with xattrs enabled"
504 }
505 run_test 17k "symlinks: rsync with xattrs enabled ========================="
506
507 test_17l() { # LU-279
508         mkdir -p $DIR/$tdir
509         touch $DIR/$tdir/$tfile
510         ln -s $DIR/$tdir/$tfile $DIR/$tdir/$tfile.lnk
511         for path in "$DIR/$tdir" "$DIR/$tdir/$tfile" "$DIR/$tdir/$tfile.lnk"; do
512                 # -h to not follow symlinks. -m '' to list all the xattrs.
513                 # grep to remove first line: '# file: $path'.
514                 for xattr in `getfattr -hm '' $path 2>/dev/null | grep -v '^#'`;
515                 do
516                         lgetxattr_size_check $path $xattr ||
517                                 error "lgetxattr_size_check $path $xattr failed"
518                 done
519         done
520 }
521 run_test 17l "Ensure lgetxattr's returned xattr size is consistent ========"
522
523 # LU-1540
524 test_17m() {
525         local short_sym="0123456789"
526         local WDIR=$DIR/${tdir}m
527         local mds_index
528         local devname
529         local cmd
530         local i
531         local rc=0
532
533         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
534         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.2.93) ] &&
535                 skip "MDS 2.2.0-2.2.93 do not NUL-terminate symlinks" && return
536
537         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
538                 skip "only for ldiskfs MDT" && return 0
539
540         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
541
542         mkdir -p $WDIR
543         long_sym=$short_sym
544         # create a long symlink file
545         for ((i = 0; i < 4; ++i)); do
546                 long_sym=${long_sym}${long_sym}
547         done
548
549         echo "create 512 short and long symlink files under $WDIR"
550         for ((i = 0; i < 256; ++i)); do
551                 ln -sf ${long_sym}"a5a5" $WDIR/long-$i
552                 ln -sf ${short_sym}"a5a5" $WDIR/short-$i
553         done
554
555         echo "erase them"
556         rm -f $WDIR/*
557         sync
558         wait_delete_completed
559
560         echo "recreate the 512 symlink files with a shorter string"
561         for ((i = 0; i < 512; ++i)); do
562                 # rewrite the symlink file with a shorter string
563                 ln -sf ${long_sym} $WDIR/long-$i
564                 ln -sf ${short_sym} $WDIR/short-$i
565         done
566
567         mds_index=$($LFS getstripe -M $WDIR)
568         mds_index=$((mds_index+1))
569         devname=$(mdsdevname $mds_index)
570         cmd="$E2FSCK -fnvd $devname"
571
572         echo "stop and checking mds${mds_index}: $cmd"
573         # e2fsck should not return error
574         stop mds${mds_index} -f
575         do_facet mds${mds_index} $cmd || rc=$?
576
577         start mds${mds_index} $devname $MDS_MOUNT_OPTS
578         df $MOUNT > /dev/null 2>&1
579         [ $rc -ne 0 ] && error "e2fsck should not report error upon "\
580                 "short/long symlink MDT: rc=$rc"
581         return $rc
582 }
583 run_test 17m "run e2fsck against MDT which contains short/long symlink"
584
585 check_fs_consistency_17n() {
586         local mdt_index
587         local devname
588         local cmd
589         local rc=0
590
591         for mdt_index in $(seq 1 $MDSCOUNT); do
592                 devname=$(mdsdevname $mdt_index)
593                 cmd="$E2FSCK -fnvd $devname"
594
595                 echo "stop and checking mds${mdt_index}: $cmd"
596                 # e2fsck should not return error
597                 stop mds${mdt_index}
598                 do_facet mds${mdt_index} $cmd || rc=$?
599
600                 start mds${mdt_index} $devname $MDS_MOUNT_OPTS
601                 df $MOUNT > /dev/null 2>&1
602                 [ $rc -ne 0 ] && break
603         done
604         return $rc
605 }
606
607 test_17n() {
608         local i
609
610         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
611         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.2.93) ] &&
612                 skip "MDS 2.2.0-2.2.93 do not NUL-terminate symlinks" && return
613
614         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
615                 skip "only for ldiskfs MDT" && return 0
616
617         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
618
619         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
620
621         mkdir -p $DIR/$tdir
622         for ((i=0; i<10; i++)); do
623                 $LFS mkdir -i 1 $DIR/$tdir/remote_dir_${i} ||
624                         error "create remote dir error $i"
625                 createmany -o $DIR/$tdir/remote_dir_${i}/f 10 ||
626                         error "create files under remote dir failed $i"
627         done
628
629         check_fs_consistency_17n || error "e2fsck report error"
630
631         for ((i=0;i<10;i++)); do
632                 rm -rf $DIR/$tdir/remote_dir_${i} ||
633                         error "destroy remote dir error $i"
634         done
635
636         check_fs_consistency_17n || error "e2fsck report error"
637 }
638 run_test 17n "run e2fsck against master/slave MDT which contains remote dir"
639
640 test_17o() {
641         local WDIR=$DIR/${tdir}o
642         local mdt_index
643         local mdtdevname
644         local rc=0
645
646         mkdir -p $WDIR
647         mdt_index=$($LFS getstripe -M $WDIR)
648         mdt_index=$((mdt_index+1))
649         mdtdevname=$(mdsdevname $mdt_index)
650
651         touch $WDIR/$tfile
652         stop mds${mdt_index}
653         start mds${mdt_index} $mdtdevname $MDS_MOUNT_OPTS
654
655         #define OBD_FAIL_OSD_LMA_INCOMPAT 0x194
656         do_facet mds${mdt_index} lctl set_param fail_loc=0x194
657         ls -l $WDIR/$tfile && rc=1
658         do_facet mds${mdt_index} lctl set_param fail_loc=0
659         [[ $rc -ne 0 ]] && error "stat file should fail"
660         true
661 }
662 run_test 17o "stat file with incompat LMA feature"
663
664 test_18() {
665         touch $DIR/f || error "Failed to touch $DIR/f: $?"
666         ls $DIR || error "Failed to ls $DIR: $?"
667 }
668 run_test 18 "touch .../f ; ls ... =============================="
669
670 test_19a() {
671         touch $DIR/$tfile
672         ls -l $DIR
673         rm $DIR/$tfile
674         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
675 }
676 run_test 19a "touch .../f19 ; ls -l ... ; rm .../f19 ==========="
677
678 test_19b() {
679         ls -l $DIR/$tfile && error "ls -l $tfile failed"|| true
680 }
681 run_test 19b "ls -l .../f19 (should return error) =============="
682
683 test_19c() {
684         [ $RUNAS_ID -eq $UID ] &&
685                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
686         $RUNAS touch $DIR/$tfile && error "create non-root file failed" || true
687 }
688 run_test 19c "$RUNAS touch .../f19 (should return error) =="
689
690 test_19d() {
691         cat $DIR/f19 && error || true
692 }
693 run_test 19d "cat .../f19 (should return error) =============="
694
695 test_20() {
696         touch $DIR/$tfile
697         rm $DIR/$tfile
698         log "1 done"
699         touch $DIR/$tfile
700         rm $DIR/$tfile
701         log "2 done"
702         touch $DIR/$tfile
703         rm $DIR/$tfile
704         log "3 done"
705         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
706 }
707 run_test 20 "touch .../f ; ls -l ... ==========================="
708
709 test_21() {
710         test_mkdir -p $DIR/$tdir
711         [ -f $DIR/$tdir/dangle ] && rm -f $DIR/$tdir/dangle
712         ln -s dangle $DIR/$tdir/link
713         echo foo >> $DIR/$tdir/link
714         cat $DIR/$tdir/dangle
715         $CHECKSTAT -t link $DIR/$tdir/link || error "$tdir/link not a link"
716         $CHECKSTAT -f -t file $DIR/$tdir/link ||
717                 error "$tdir/link not linked to a file"
718 }
719 run_test 21 "write to dangling link ============================"
720
721 test_22() {
722         WDIR=$DIR/$tdir
723         test_mkdir -p $DIR/$tdir
724         chown $RUNAS_ID:$RUNAS_GID $WDIR
725         (cd $WDIR || error "cd $WDIR failed";
726         $RUNAS tar cf - /etc/hosts /etc/sysconfig/network | \
727         $RUNAS tar xf -)
728         ls -lR $WDIR/etc || error "ls -lR $WDIR/etc failed"
729         $CHECKSTAT -t dir $WDIR/etc || error "checkstat -t dir failed"
730         $CHECKSTAT -u \#$RUNAS_ID -g \#$RUNAS_GID $WDIR/etc || error "checkstat -u failed"
731 }
732 run_test 22 "unpack tar archive as non-root user ==============="
733
734 # was test_23
735 test_23a() {
736         test_mkdir -p $DIR/$tdir
737         local file=$DIR/$tdir/$tfile
738
739         openfile -f O_CREAT:O_EXCL $file || error "$file create failed"
740         openfile -f O_CREAT:O_EXCL $file &&
741                 error "$file recreate succeeded" || true
742 }
743 run_test 23a "O_CREAT|O_EXCL in subdir =========================="
744
745 test_23b() { # bug 18988
746         test_mkdir -p $DIR/$tdir
747         local file=$DIR/$tdir/$tfile
748
749         rm -f $file
750         echo foo > $file || error "write filed"
751         echo bar >> $file || error "append filed"
752         $CHECKSTAT -s 8 $file || error "wrong size"
753         rm $file
754 }
755 run_test 23b "O_APPEND check =========================="
756
757 # rename sanity
758 test_24a() {
759         echo '-- same directory rename'
760         test_mkdir $DIR/$tdir
761         touch $DIR/$tdir/$tfile.1
762         mv $DIR/$tdir/$tfile.1 $DIR/$tdir/$tfile.2
763         $CHECKSTAT -t file $DIR/$tdir/$tfile.2 || error "$tfile.2 not a file"
764 }
765 run_test 24a "rename file to non-existent target"
766
767 test_24b() {
768         test_mkdir $DIR/$tdir
769         touch $DIR/$tdir/$tfile.{1,2}
770         mv $DIR/$tdir/$tfile.1 $DIR/$tdir/$tfile.2
771         $CHECKSTAT -a $DIR/$tdir/$tfile.1 || error "$tfile.1 exists"
772         $CHECKSTAT -t file $DIR/$tdir/$tfile.2 || error "$tfile.2 not a file"
773 }
774 run_test 24b "rename file to existing target"
775
776 test_24c() {
777         test_mkdir $DIR/$tdir
778         test_mkdir $DIR/$tdir/d$testnum.1
779         mv $DIR/$tdir/d$testnum.1 $DIR/$tdir/d$testnum.2
780         $CHECKSTAT -a $DIR/$tdir/d$testnum.1 || error "d$testnum.1 exists"
781         $CHECKSTAT -t dir $DIR/$tdir/d$testnum.2 || error "d$testnum.2 not dir"
782 }
783 run_test 24c "rename directory to non-existent target"
784
785 test_24d() {
786         test_mkdir $DIR/$tdir
787         test_mkdir $DIR/$tdir/d$testnum.1
788         test_mkdir $DIR/$tdir/d$ttestnum.2
789         mrename $DIR/$tdir/d$testnum.1 $DIR/$tdir/d$testnum.2
790         $CHECKSTAT -a $DIR/$tdir/d$testnum.1 || error "d$testnum.1 exists"
791         $CHECKSTAT -t dir $DIR/$tdir/d$testnum.2 || error "d$testnum.2 not dir"
792 }
793 run_test 24d "rename directory to existing target"
794
795 test_24e() {
796         echo '-- cross directory renames --'
797         test_mkdir $DIR/R5a
798         test_mkdir $DIR/R5b
799         touch $DIR/R5a/f
800         mv $DIR/R5a/f $DIR/R5b/g
801         $CHECKSTAT -a $DIR/R5a/f || error
802         $CHECKSTAT -t file $DIR/R5b/g || error
803 }
804 run_test 24e "touch .../R5a/f; rename .../R5a/f .../R5b/g ======"
805
806 test_24f() {
807         test_mkdir $DIR/R6a
808         test_mkdir $DIR/R6b
809         touch $DIR/R6a/f $DIR/R6b/g
810         mv $DIR/R6a/f $DIR/R6b/g
811         $CHECKSTAT -a $DIR/R6a/f || error
812         $CHECKSTAT -t file $DIR/R6b/g || error
813 }
814 run_test 24f "touch .../R6a/f R6b/g; mv .../R6a/f .../R6b/g ===="
815
816 test_24g() {
817         test_mkdir $DIR/R7a
818         test_mkdir $DIR/R7b
819         test_mkdir $DIR/R7a/d
820         mv $DIR/R7a/d $DIR/R7b/e
821         $CHECKSTAT -a $DIR/R7a/d || error
822         $CHECKSTAT -t dir $DIR/R7b/e || error
823 }
824 run_test 24g "mkdir .../R7{a,b}/d; mv .../R7a/d .../R7b/e ======"
825
826 test_24h() {
827         test_mkdir $DIR/R8a
828         test_mkdir $DIR/R8b
829         test_mkdir $DIR/R8a/d
830         test_mkdir $DIR/R8b/e
831         mrename $DIR/R8a/d $DIR/R8b/e
832         $CHECKSTAT -a $DIR/R8a/d || error
833         $CHECKSTAT -t dir $DIR/R8b/e || error
834 }
835 run_test 24h "mkdir .../R8{a,b}/{d,e}; rename .../R8a/d .../R8b/e"
836
837 test_24i() {
838         echo "-- rename error cases"
839         test_mkdir $DIR/R9
840         test_mkdir $DIR/R9/a
841         touch $DIR/R9/f
842         mrename $DIR/R9/f $DIR/R9/a
843         $CHECKSTAT -t file $DIR/R9/f || error
844         $CHECKSTAT -t dir  $DIR/R9/a || error
845         $CHECKSTAT -a $DIR/R9/a/f || error
846 }
847 run_test 24i "rename file to dir error: touch f ; mkdir a ; rename f a"
848
849 test_24j() {
850         test_mkdir $DIR/R10
851         mrename $DIR/R10/f $DIR/R10/g
852         $CHECKSTAT -t dir $DIR/R10 || error
853         $CHECKSTAT -a $DIR/R10/f || error
854         $CHECKSTAT -a $DIR/R10/g || error
855 }
856 run_test 24j "source does not exist ============================"
857
858 test_24k() {
859         test_mkdir $DIR/R11a
860         test_mkdir $DIR/R11a/d
861         touch $DIR/R11a/f
862         mv $DIR/R11a/f $DIR/R11a/d
863         $CHECKSTAT -a $DIR/R11a/f || error
864         $CHECKSTAT -t file $DIR/R11a/d/f || error
865 }
866 run_test 24k "touch .../R11a/f; mv .../R11a/f .../R11a/d ======="
867
868 # bug 2429 - rename foo foo foo creates invalid file
869 test_24l() {
870         f="$DIR/f24l"
871         $MULTIOP $f OcNs || error
872 }
873 run_test 24l "Renaming a file to itself ========================"
874
875 test_24m() {
876         f="$DIR/f24m"
877         $MULTIOP $f OcLN ${f}2 ${f}2 || error "link ${f}2 ${f}2 failed"
878         # on ext3 this does not remove either the source or target files
879         # though the "expected" operation would be to remove the source
880         $CHECKSTAT -t file ${f} || error "${f} missing"
881         $CHECKSTAT -t file ${f}2 || error "${f}2 missing"
882 }
883 run_test 24m "Renaming a file to a hard link to itself ========="
884
885 test_24n() {
886     f="$DIR/f24n"
887     # this stats the old file after it was renamed, so it should fail
888     touch ${f}
889     $CHECKSTAT ${f}
890     mv ${f} ${f}.rename
891     $CHECKSTAT ${f}.rename
892     $CHECKSTAT -a ${f}
893 }
894 run_test 24n "Statting the old file after renaming (Posix rename 2)"
895
896 test_24o() {
897         check_kernel_version 37 || return 0
898         test_mkdir -p $DIR/d24o
899         rename_many -s random -v -n 10 $DIR/d24o
900 }
901 run_test 24o "rename of files during htree split ==============="
902
903 test_24p() {
904         test_mkdir $DIR/R12a
905         test_mkdir $DIR/R12b
906         DIRINO=`ls -lid $DIR/R12a | awk '{ print $1 }'`
907         mrename $DIR/R12a $DIR/R12b
908         $CHECKSTAT -a $DIR/R12a || error
909         $CHECKSTAT -t dir $DIR/R12b || error
910         DIRINO2=`ls -lid $DIR/R12b | awk '{ print $1 }'`
911         [ "$DIRINO" = "$DIRINO2" ] || error "R12a $DIRINO != R12b $DIRINO2"
912 }
913 run_test 24p "mkdir .../R12{a,b}; rename .../R12a .../R12b"
914
915 cleanup_multiop_pause() {
916         trap 0
917         kill -USR1 $MULTIPID
918 }
919
920 test_24q() {
921         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
922         test_mkdir $DIR/R13a
923         test_mkdir $DIR/R13b
924         local DIRINO=$(ls -lid $DIR/R13a | awk '{ print $1 }')
925         multiop_bg_pause $DIR/R13b D_c || error "multiop failed to start"
926         MULTIPID=$!
927
928         trap cleanup_multiop_pause EXIT
929         mrename $DIR/R13a $DIR/R13b
930         $CHECKSTAT -a $DIR/R13a || error "R13a still exists"
931         $CHECKSTAT -t dir $DIR/R13b || error "R13b does not exist"
932         local DIRINO2=$(ls -lid $DIR/R13b | awk '{ print $1 }')
933         [ "$DIRINO" = "$DIRINO2" ] || error "R13a $DIRINO != R13b $DIRINO2"
934         cleanup_multiop_pause
935         wait $MULTIPID || error "multiop close failed"
936 }
937 run_test 24q "mkdir .../R13{a,b}; open R13b rename R13a R13b ==="
938
939 test_24r() { #bug 3789
940         test_mkdir $DIR/R14a
941         test_mkdir $DIR/R14a/b
942         mrename $DIR/R14a $DIR/R14a/b && error "rename to subdir worked!"
943         $CHECKSTAT -t dir $DIR/R14a || error "$DIR/R14a missing"
944         $CHECKSTAT -t dir $DIR/R14a/b || error "$DIR/R14a/b missing"
945 }
946 run_test 24r "mkdir .../R14a/b; rename .../R14a .../R14a/b ====="
947
948 test_24s() {
949         test_mkdir $DIR/R15a
950         test_mkdir $DIR/R15a/b
951         test_mkdir $DIR/R15a/b/c
952         mrename $DIR/R15a $DIR/R15a/b/c && error "rename to sub-subdir worked!"
953         $CHECKSTAT -t dir $DIR/R15a || error "$DIR/R15a missing"
954         $CHECKSTAT -t dir $DIR/R15a/b/c || error "$DIR/R15a/b/c missing"
955 }
956 run_test 24s "mkdir .../R15a/b/c; rename .../R15a .../R15a/b/c ="
957 test_24t() {
958         test_mkdir $DIR/R16a
959         test_mkdir $DIR/R16a/b
960         test_mkdir $DIR/R16a/b/c
961         mrename $DIR/R16a/b/c $DIR/R16a && error "rename to sub-subdir worked!"
962         $CHECKSTAT -t dir $DIR/R16a || error "$DIR/R16a missing"
963         $CHECKSTAT -t dir $DIR/R16a/b/c || error "$DIR/R16a/b/c missing"
964 }
965 run_test 24t "mkdir .../R16a/b/c; rename .../R16a/b/c .../R16a ="
966
967 test_24u() { # bug12192
968         rm -rf $DIR/$tfile
969         $MULTIOP $DIR/$tfile C2w$((2048 * 1024))c || error
970         $CHECKSTAT -s $((2048 * 1024)) $DIR/$tfile || error "wrong file size"
971 }
972 run_test 24u "create stripe file"
973
974 page_size() {
975         getconf PAGE_SIZE
976 }
977
978 simple_cleanup_common() {
979         trap 0
980         rm -rf $DIR/$tdir
981         wait_delete_completed
982 }
983
984 max_pages_per_rpc() {
985         $LCTL get_param -n mdc.*.max_pages_per_rpc | head -1
986 }
987
988 test_24v() {
989         local NRFILES=100000
990         local FREE_INODES=$(lfs_df -i | grep "summary" | awk '{print $4}')
991         [ $FREE_INODES -lt $NRFILES ] && \
992                 skip "not enough free inodes $FREE_INODES required $NRFILES" &&
993                 return
994
995         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
996         trap simple_cleanup_common EXIT
997
998         mkdir -p $DIR/$tdir
999         createmany -m $DIR/$tdir/$tfile $NRFILES
1000
1001         cancel_lru_locks mdc
1002         lctl set_param mdc.*.stats clear
1003
1004         ls $DIR/$tdir >/dev/null || error "error in listing large dir"
1005
1006         # LU-5 large readdir
1007         # DIRENT_SIZE = 32 bytes for sizeof(struct lu_dirent) +
1008         #               8 bytes for name(filename is mostly 5 in this test) +
1009         #               8 bytes for luda_type
1010         # take into account of overhead in lu_dirpage header and end mark in
1011         # each page, plus one in RPC_NUM calculation.
1012         DIRENT_SIZE=48
1013         RPC_SIZE=$(($(max_pages_per_rpc) * $(page_size)))
1014         RPC_NUM=$(((NRFILES * DIRENT_SIZE + RPC_SIZE - 1) / RPC_SIZE + 1))
1015         mds_readpage=$(lctl get_param mdc.*MDT0000*.stats | \
1016                                 awk '/^mds_readpage/ {print $2}')
1017         [ $mds_readpage -gt $RPC_NUM ] && \
1018                 error "large readdir doesn't take effect"
1019
1020         simple_cleanup_common
1021 }
1022 run_test 24v "list directory with large files (handle hash collision, bug: 17560)"
1023
1024 test_24w() { # bug21506
1025         SZ1=234852
1026         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=4096 || return 1
1027         dd if=/dev/zero bs=$SZ1 count=1 >> $DIR/$tfile || return 2
1028         dd if=$DIR/$tfile of=$DIR/${tfile}_left bs=1M skip=4097 || return 3
1029         SZ2=`ls -l $DIR/${tfile}_left | awk '{print $5}'`
1030         [ "$SZ1" = "$SZ2" ] || \
1031                 error "Error reading at the end of the file $tfile"
1032 }
1033 run_test 24w "Reading a file larger than 4Gb"
1034
1035 test_24x() {
1036         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
1037         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1038         local MDTIDX=1
1039         local remote_dir=$DIR/$tdir/remote_dir
1040
1041         mkdir -p $DIR/$tdir
1042         $LFS mkdir -i $MDTIDX $remote_dir ||
1043                 error "create remote directory failed"
1044
1045         mkdir -p $DIR/$tdir/src_dir
1046         touch $DIR/$tdir/src_file
1047         mkdir -p $remote_dir/tgt_dir
1048         touch $remote_dir/tgt_file
1049
1050         mrename $DIR/$tdir/src_dir $remote_dir/tgt_dir &&
1051                 error "rename dir cross MDT works!"
1052
1053         mrename $DIR/$tdir/src_file $remote_dir/tgt_file &&
1054                 error "rename file cross MDT works!"
1055
1056         ln $DIR/$tdir/src_file $remote_dir/tgt_file1 &&
1057                 error "ln file cross MDT should not work!"
1058
1059         rm -rf $DIR/$tdir || error "Can not delete directories"
1060 }
1061 run_test 24x "cross rename/link should be failed"
1062
1063 test_24y() {
1064         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
1065         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1066         local MDTIDX=1
1067         local remote_dir=$DIR/$tdir/remote_dir
1068
1069         mkdir -p $DIR/$tdir
1070         $LFS mkdir -i $MDTIDX $remote_dir ||
1071                    error "create remote directory failed"
1072
1073         mkdir -p $remote_dir/src_dir
1074         touch $remote_dir/src_file
1075         mkdir -p $remote_dir/tgt_dir
1076         touch $remote_dir/tgt_file
1077
1078         mrename $remote_dir/src_dir $remote_dir/tgt_dir ||
1079                 error "rename subdir in the same remote dir failed!"
1080
1081         mrename $remote_dir/src_file $remote_dir/tgt_file ||
1082                 error "rename files in the same remote dir failed!"
1083
1084         ln $remote_dir/tgt_file $remote_dir/tgt_file1 ||
1085                 error "link files in the same remote dir failed!"
1086
1087         rm -rf $DIR/$tdir || error "Can not delete directories"
1088 }
1089 run_test 24y "rename/link on the same dir should succeed"
1090
1091 test_24z() {
1092         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
1093         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1094         local MDTIDX=1
1095         local remote_src=$DIR/$tdir/remote_dir
1096         local remote_tgt=$DIR/$tdir/remote_tgt
1097
1098         mkdir -p $DIR/$tdir
1099         $LFS mkdir -i $MDTIDX $remote_src ||
1100                    error "create remote directory failed"
1101
1102         $LFS mkdir -i $MDTIDX $remote_tgt ||
1103                    error "create remote directory failed"
1104
1105         mrename $remote_src $remote_tgt &&
1106                 error "rename remote dirs should not work!"
1107
1108         # If target dir does not exists, it should succeed
1109         rm -rf $remote_tgt
1110         mrename $remote_src $remote_tgt ||
1111                 error "rename remote dirs(tgt dir does not exists) failed!"
1112
1113         rm -rf $DIR/$tdir || error "Can not delete directories"
1114 }
1115 run_test 24z "rename one remote dir to another remote dir should fail"
1116
1117 test_25a() {
1118         echo '== symlink sanity ============================================='
1119
1120         test_mkdir $DIR/d25
1121         ln -s d25 $DIR/s25
1122         touch $DIR/s25/foo || error
1123 }
1124 run_test 25a "create file in symlinked directory ==============="
1125
1126 test_25b() {
1127         [ ! -d $DIR/d25 ] && test_25a
1128         $CHECKSTAT -t file $DIR/s25/foo || error
1129 }
1130 run_test 25b "lookup file in symlinked directory ==============="
1131
1132 test_26a() {
1133         test_mkdir $DIR/d26
1134         test_mkdir $DIR/d26/d26-2
1135         ln -s d26/d26-2 $DIR/s26
1136         touch $DIR/s26/foo || error
1137 }
1138 run_test 26a "multiple component symlink ======================="
1139
1140 test_26b() {
1141         test_mkdir -p $DIR/d26b/d26-2
1142         ln -s d26b/d26-2/foo $DIR/s26-2
1143         touch $DIR/s26-2 || error
1144 }
1145 run_test 26b "multiple component symlink at end of lookup ======"
1146
1147 test_26c() {
1148         test_mkdir $DIR/d26.2
1149         touch $DIR/d26.2/foo
1150         ln -s d26.2 $DIR/s26.2-1
1151         ln -s s26.2-1 $DIR/s26.2-2
1152         ln -s s26.2-2 $DIR/s26.2-3
1153         chmod 0666 $DIR/s26.2-3/foo
1154 }
1155 run_test 26c "chain of symlinks ================================"
1156
1157 # recursive symlinks (bug 439)
1158 test_26d() {
1159         ln -s d26-3/foo $DIR/d26-3
1160 }
1161 run_test 26d "create multiple component recursive symlink ======"
1162
1163 test_26e() {
1164         [ ! -h $DIR/d26-3 ] && test_26d
1165         rm $DIR/d26-3
1166 }
1167 run_test 26e "unlink multiple component recursive symlink ======"
1168
1169 # recursive symlinks (bug 7022)
1170 test_26f() {
1171         test_mkdir -p $DIR/$tdir
1172         test_mkdir $DIR/$tdir/$tfile   || error "mkdir $DIR/$tdir/$tfile failed"
1173         cd $DIR/$tdir/$tfile           || error "cd $DIR/$tdir/$tfile failed"
1174         test_mkdir -p lndir bar1      || error "mkdir lndir/bar1 failed"
1175         test_mkdir $DIR/$tdir/$tfile/$tfile   || error "mkdir $tfile failed"
1176         cd $tfile                || error "cd $tfile failed"
1177         ln -s .. dotdot          || error "ln dotdot failed"
1178         ln -s dotdot/lndir lndir || error "ln lndir failed"
1179         cd $DIR/$tdir                 || error "cd $DIR/$tdir failed"
1180         output=`ls $tfile/$tfile/lndir/bar1`
1181         [ "$output" = bar1 ] && error "unexpected output"
1182         rm -r $tfile             || error "rm $tfile failed"
1183         $CHECKSTAT -a $DIR/$tfile || error "$tfile not gone"
1184 }
1185 run_test 26f "rm -r of a directory which has recursive symlink ="
1186
1187 test_27a() {
1188         echo '== stripe sanity =============================================='
1189         test_mkdir -p $DIR/d27 || error "mkdir failed"
1190         $GETSTRIPE $DIR/d27
1191         $SETSTRIPE -c 1 $DIR/d27/f0 || error "setstripe failed"
1192         $CHECKSTAT -t file $DIR/d27/f0 || error "checkstat failed"
1193         pass
1194         log "== test_27a: write to one stripe file ========================="
1195         cp /etc/hosts $DIR/d27/f0 || error
1196 }
1197 run_test 27a "one stripe file =================================="
1198
1199 test_27b() {
1200         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
1201         test_mkdir -p $DIR/d27
1202         $SETSTRIPE -c 2 $DIR/d27/f01 || error "setstripe failed"
1203         $GETSTRIPE -c $DIR/d27/f01
1204         [ $($GETSTRIPE -c $DIR/d27/f01) -eq 2 ] ||
1205                 error "two-stripe file doesn't have two stripes"
1206 }
1207 run_test 27b "create two stripe file"
1208
1209 test_27c() {
1210         [ -f $DIR/d27/f01 ] || skip "test_27b not run" && return
1211
1212         dd if=/dev/zero of=$DIR/d27/f01 bs=4k count=4 || error "dd failed"
1213 }
1214 run_test 27c "write to two stripe file"
1215
1216 test_27d() {
1217         test_mkdir -p $DIR/d27
1218         $SETSTRIPE -c 0 -i -1 -S 0 $DIR/d27/fdef || error "setstripe failed"
1219         $CHECKSTAT -t file $DIR/d27/fdef || error "checkstat failed"
1220         dd if=/dev/zero of=$DIR/d27/fdef bs=4k count=4 || error
1221 }
1222 run_test 27d "create file with default settings ================"
1223
1224 test_27e() {
1225         test_mkdir -p $DIR/d27
1226         $SETSTRIPE -c 2 $DIR/d27/f12 || error "setstripe failed"
1227         $SETSTRIPE -c 2 $DIR/d27/f12 && error "setstripe succeeded twice"
1228         $CHECKSTAT -t file $DIR/d27/f12 || error "checkstat failed"
1229 }
1230 run_test 27e "setstripe existing file (should return error) ======"
1231
1232 test_27f() {
1233         test_mkdir -p $DIR/d27
1234         $SETSTRIPE -S 100 -i 0 -c 1 $DIR/d27/fbad && error "setstripe failed"
1235         dd if=/dev/zero of=$DIR/d27/fbad bs=4k count=4 || error "dd failed"
1236         $GETSTRIPE $DIR/d27/fbad || error "$GETSTRIPE failed"
1237 }
1238 run_test 27f "setstripe with bad stripe size (should return error)"
1239
1240 test_27g() {
1241         test_mkdir -p $DIR/d27
1242         $MCREATE $DIR/d27/fnone || error "mcreate failed"
1243         $GETSTRIPE $DIR/d27/fnone 2>&1 | grep "no stripe info" ||
1244                 error "$DIR/d27/fnone has object"
1245 }
1246 run_test 27g "$GETSTRIPE with no objects"
1247
1248 test_27i() {
1249         touch $DIR/d27/fsome || error "touch failed"
1250         [ $($GETSTRIPE -c $DIR/d27/fsome) -gt 0 ] || error "missing objects"
1251 }
1252 run_test 27i "$GETSTRIPE with some objects"
1253
1254 test_27j() {
1255         test_mkdir -p $DIR/d27
1256         $SETSTRIPE -i $OSTCOUNT $DIR/d27/f27j && error "setstripe failed"||true
1257 }
1258 run_test 27j "setstripe with bad stripe offset (should return error)"
1259
1260 test_27k() { # bug 2844
1261         test_mkdir -p $DIR/d27
1262         FILE=$DIR/d27/f27k
1263         LL_MAX_BLKSIZE=$((4 * 1024 * 1024))
1264         [ ! -d $DIR/d27 ] && test_mkdir -p $DIR d27
1265         $SETSTRIPE -S 67108864 $FILE || error "setstripe failed"
1266         BLKSIZE=`stat $FILE | awk '/IO Block:/ { print $7 }'`
1267         [ $BLKSIZE -le $LL_MAX_BLKSIZE ] || error "$BLKSIZE > $LL_MAX_BLKSIZE"
1268         dd if=/dev/zero of=$FILE bs=4k count=1
1269         BLKSIZE=`stat $FILE | awk '/IO Block:/ { print $7 }'`
1270         [ $BLKSIZE -le $LL_MAX_BLKSIZE ] || error "$BLKSIZE > $LL_MAX_BLKSIZE"
1271 }
1272 run_test 27k "limit i_blksize for broken user apps ============="
1273
1274 test_27l() {
1275         test_mkdir -p $DIR/d27
1276         mcreate $DIR/f27l || error "creating file"
1277         $RUNAS $SETSTRIPE -c 1 $DIR/f27l && \
1278                 error "setstripe should have failed" || true
1279 }
1280 run_test 27l "check setstripe permissions (should return error)"
1281
1282 test_27m() {
1283         [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2 OSTs -- skipping" &&
1284                 return
1285         if [ $ORIGFREE -gt $MAXFREE ]; then
1286                 skip "$ORIGFREE > $MAXFREE skipping out-of-space test on OST0"
1287                 return
1288         fi
1289         trap simple_cleanup_common EXIT
1290         test_mkdir -p $DIR/$tdir
1291         $SETSTRIPE -i 0 -c 1 $DIR/$tdir/f27m_1
1292         dd if=/dev/zero of=$DIR/$tdir/f27m_1 bs=1024 count=$MAXFREE &&
1293                 error "dd should fill OST0"
1294         i=2
1295         while $SETSTRIPE -i 0 -c 1 $DIR/$tdir/f27m_$i; do
1296                 i=`expr $i + 1`
1297                 [ $i -gt 256 ] && break
1298         done
1299         i=`expr $i + 1`
1300         touch $DIR/$tdir/f27m_$i
1301         [ `$GETSTRIPE $DIR/$tdir/f27m_$i | grep -A 10 obdidx | awk '{print $1}'| grep -w "0"` ] &&
1302                 error "OST0 was full but new created file still use it"
1303         i=`expr $i + 1`
1304         touch $DIR/$tdir/f27m_$i
1305         [ `$GETSTRIPE $DIR/$tdir/f27m_$i | grep -A 10 obdidx | awk '{print $1}'| grep -w "0"` ] &&
1306                 error "OST0 was full but new created file still use it"
1307         simple_cleanup_common
1308 }
1309 run_test 27m "create file while OST0 was full =================="
1310
1311 sleep_maxage() {
1312         local DELAY=$(do_facet $SINGLEMDS lctl get_param -n lov.*.qos_maxage | head -n 1 | awk '{print $1 * 2}')
1313         sleep $DELAY
1314 }
1315
1316 # OSCs keep a NOSPC flag that will be reset after ~5s (qos_maxage)
1317 # if the OST isn't full anymore.
1318 reset_enospc() {
1319         local OSTIDX=${1:-""}
1320
1321         local list=$(comma_list $(osts_nodes))
1322         [ "$OSTIDX" ] && list=$(facet_host ost$((OSTIDX + 1)))
1323
1324         do_nodes $list lctl set_param fail_loc=0
1325         sync    # initiate all OST_DESTROYs from MDS to OST
1326         sleep_maxage
1327 }
1328
1329 exhaust_precreations() {
1330         local OSTIDX=$1
1331         local FAILLOC=$2
1332         local FAILIDX=${3:-$OSTIDX}
1333
1334         test_mkdir -p $DIR/$tdir
1335         local MDSIDX=$(get_mds_dir "$DIR/$tdir")
1336         echo OSTIDX=$OSTIDX MDSIDX=$MDSIDX
1337
1338         local OST=$(ostname_from_index $OSTIDX)
1339         local MDT_INDEX=$(lfs df | grep "\[MDT:$((MDSIDX - 1))\]" | awk '{print $1}' | \
1340                           sed -e 's/_UUID$//;s/^.*-//')
1341
1342         # on the mdt's osc
1343         local mdtosc_proc1=$(get_mdtosc_proc_path mds${MDSIDX} $OST)
1344         local last_id=$(do_facet mds${MDSIDX} lctl get_param -n \
1345         osc.$mdtosc_proc1.prealloc_last_id)
1346         local next_id=$(do_facet mds${MDSIDX} lctl get_param -n \
1347         osc.$mdtosc_proc1.prealloc_next_id)
1348
1349         local mdtosc_proc2=$(get_mdtosc_proc_path mds${MDSIDX})
1350         do_facet mds${MDSIDX} lctl get_param osc.$mdtosc_proc2.prealloc*
1351
1352         test_mkdir -p $DIR/$tdir/${OST}
1353         $SETSTRIPE -i $OSTIDX -c 1 $DIR/$tdir/${OST}
1354 #define OBD_FAIL_OST_ENOSPC              0x215
1355         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=$FAILIDX
1356         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0x215
1357         echo "Creating to objid $last_id on ost $OST..."
1358         createmany -o $DIR/$tdir/${OST}/f $next_id $((last_id - next_id + 2))
1359         do_facet mds${MDSIDX} lctl get_param osc.$mdtosc_proc2.prealloc*
1360         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=$FAILLOC
1361         sleep_maxage
1362 }
1363
1364 exhaust_all_precreations() {
1365         local i
1366         for (( i=0; i < OSTCOUNT; i++ )) ; do
1367                 exhaust_precreations $i $1 -1
1368         done
1369 }
1370
1371 test_27n() {
1372         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1373         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1374         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1375         remote_ost_nodsh && skip "remote OST with nodsh" && return
1376
1377         reset_enospc
1378         rm -f $DIR/$tdir/$tfile
1379         exhaust_precreations 0 0x80000215
1380         $SETSTRIPE -c -1 $DIR/$tdir
1381         touch $DIR/$tdir/$tfile || error
1382         $GETSTRIPE $DIR/$tdir/$tfile
1383         reset_enospc
1384 }
1385 run_test 27n "create file with some full OSTs =================="
1386
1387 test_27o() {
1388         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1389         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1390         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1391         remote_ost_nodsh && skip "remote OST with nodsh" && return
1392
1393         reset_enospc
1394         rm -f $DIR/$tdir/$tfile
1395         exhaust_all_precreations 0x215
1396
1397         touch $DIR/$tdir/$tfile && error "able to create $DIR/$tdir/$tfile"
1398
1399         reset_enospc
1400         rm -rf $DIR/$tdir/*
1401 }
1402 run_test 27o "create file with all full OSTs (should error) ===="
1403
1404 test_27p() {
1405         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1406         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1407         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1408         remote_ost_nodsh && skip "remote OST with nodsh" && return
1409
1410         reset_enospc
1411         rm -f $DIR/$tdir/$tfile
1412         test_mkdir -p $DIR/$tdir
1413
1414         $MCREATE $DIR/$tdir/$tfile || error "mcreate failed"
1415         $TRUNCATE $DIR/$tdir/$tfile 80000000 || error "truncate failed"
1416         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1417
1418         exhaust_precreations 0 0x80000215
1419         echo foo >> $DIR/$tdir/$tfile || error "append failed"
1420         $CHECKSTAT -s 80000004 $DIR/$tdir/$tfile || error "checkstat failed"
1421         $GETSTRIPE $DIR/$tdir/$tfile
1422
1423         reset_enospc
1424 }
1425 run_test 27p "append to a truncated file with some full OSTs ==="
1426
1427 test_27q() {
1428         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1429         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1430         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1431         remote_ost_nodsh && skip "remote OST with nodsh" && return
1432
1433         reset_enospc
1434         rm -f $DIR/$tdir/$tfile
1435
1436         test_mkdir -p $DIR/$tdir
1437         $MCREATE $DIR/$tdir/$tfile || error "mcreate $DIR/$tdir/$tfile failed"
1438         $TRUNCATE $DIR/$tdir/$tfile 80000000 ||error "truncate $DIR/$tdir/$tfile failed"
1439         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1440
1441         exhaust_all_precreations 0x215
1442
1443         echo foo >> $DIR/$tdir/$tfile && error "append succeeded"
1444         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat 2 failed"
1445
1446         reset_enospc
1447 }
1448 run_test 27q "append to truncated file with all OSTs full (should error) ==="
1449
1450 test_27r() {
1451         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1452         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1453         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1454         remote_ost_nodsh && skip "remote OST with nodsh" && return
1455
1456         reset_enospc
1457         rm -f $DIR/$tdir/$tfile
1458         exhaust_precreations 0 0x80000215
1459
1460         $SETSTRIPE -i 0 -c 2 $DIR/$tdir/$tfile # && error
1461
1462         reset_enospc
1463 }
1464 run_test 27r "stripe file with some full OSTs (shouldn't LBUG) ="
1465
1466 test_27s() { # bug 10725
1467         test_mkdir -p $DIR/$tdir
1468         local stripe_size=$((4096 * 1024 * 1024))       # 2^32
1469         local stripe_count=0
1470         [ $OSTCOUNT -eq 1 ] || stripe_count=2
1471         $SETSTRIPE -S $stripe_size -c $stripe_count $DIR/$tdir &&
1472                 error "stripe width >= 2^32 succeeded" || true
1473
1474 }
1475 run_test 27s "lsm_xfersize overflow (should error) (bug 10725)"
1476
1477 test_27t() { # bug 10864
1478         WDIR=`pwd`
1479         WLFS=`which lfs`
1480         cd $DIR
1481         touch $tfile
1482         $WLFS getstripe $tfile
1483         cd $WDIR
1484 }
1485 run_test 27t "check that utils parse path correctly"
1486
1487 test_27u() { # bug 4900
1488         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1489         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1490         local index
1491         local list=$(comma_list $(mdts_nodes))
1492
1493 #define OBD_FAIL_MDS_OSC_PRECREATE      0x139
1494         do_nodes $list $LCTL set_param fail_loc=0x139
1495         test_mkdir -p $DIR/$tdir
1496         rm -rf $DIR/$tdir/*
1497         createmany -o $DIR/$tdir/t- 1000
1498         do_nodes $list $LCTL set_param fail_loc=0
1499
1500         TLOG=$DIR/$tfile.getstripe
1501         $GETSTRIPE $DIR/$tdir > $TLOG
1502         OBJS=`awk -vobj=0 '($1 == 0) { obj += 1 } END { print obj;}' $TLOG`
1503         unlinkmany $DIR/$tdir/t- 1000
1504         [ $OBJS -gt 0 ] && \
1505                 error "$OBJS objects created on OST-0.  See $TLOG" || pass
1506 }
1507 run_test 27u "skip object creation on OSC w/o objects =========="
1508
1509 test_27v() { # bug 4900
1510         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1511         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1512         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1513         remote_ost_nodsh && skip "remote OST with nodsh" && return
1514
1515         exhaust_all_precreations 0x215
1516         reset_enospc
1517
1518         test_mkdir -p $DIR/$tdir
1519         $SETSTRIPE -c 1 $DIR/$tdir         # 1 stripe / file
1520
1521         touch $DIR/$tdir/$tfile
1522         #define OBD_FAIL_TGT_DELAY_PRECREATE     0x705
1523         # all except ost1
1524         for (( i=1; i < OSTCOUNT; i++ )); do
1525                 do_facet ost$i lctl set_param fail_loc=0x705
1526         done
1527         local START=`date +%s`
1528         createmany -o $DIR/$tdir/$tfile 32
1529
1530         local FINISH=`date +%s`
1531         local TIMEOUT=`lctl get_param -n timeout`
1532         local PROCESS=$((FINISH - START))
1533         [ $PROCESS -ge $((TIMEOUT / 2)) ] && \
1534                error "$FINISH - $START >= $TIMEOUT / 2"
1535         sleep $((TIMEOUT / 2 - PROCESS))
1536         reset_enospc
1537 }
1538 run_test 27v "skip object creation on slow OST ================="
1539
1540 test_27w() { # bug 10997
1541         test_mkdir -p $DIR/$tdir || error "mkdir failed"
1542         $SETSTRIPE -S 65536 $DIR/$tdir/f0 || error "setstripe failed"
1543         [ $($GETSTRIPE -S $DIR/$tdir/f0) -ne 65536 ] &&
1544                 error "stripe size $size != 65536" || true
1545         [ $($GETSTRIPE -d $DIR/$tdir | grep -c "stripe_count") -ne 1 ] &&
1546                 error "$GETSTRIPE -d $DIR/$tdir failed" || true
1547 }
1548 run_test 27w "check $SETSTRIPE -S option"
1549
1550 test_27wa() {
1551         [ "$OSTCOUNT" -lt "2" ] &&
1552                 skip_env "skipping multiple stripe count/offset test" && return
1553
1554         test_mkdir -p $DIR/$tdir || error "mkdir failed"
1555         for i in $(seq 1 $OSTCOUNT); do
1556                 offset=$((i - 1))
1557                 $SETSTRIPE -c $i -i $offset $DIR/$tdir/f$i ||
1558                         error "setstripe -c $i -i $offset failed"
1559                 count=$($GETSTRIPE -c $DIR/$tdir/f$i)
1560                 index=$($GETSTRIPE -i $DIR/$tdir/f$i)
1561                 [ $count -ne $i ] && error "stripe count $count != $i" || true
1562                 [ $index -ne $offset ] &&
1563                         error "stripe offset $index != $offset" || true
1564         done
1565 }
1566 run_test 27wa "check $SETSTRIPE -c -i options"
1567
1568 test_27x() {
1569         remote_ost_nodsh && skip "remote OST with nodsh" && return
1570         [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2 OSTs" && return
1571         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1572         OFFSET=$(($OSTCOUNT - 1))
1573         OSTIDX=0
1574         local OST=$(ostname_from_index $OSTIDX)
1575
1576         test_mkdir -p $DIR/$tdir
1577         $SETSTRIPE -c 1 $DIR/$tdir      # 1 stripe per file
1578         do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 1
1579         sleep_maxage
1580         createmany -o $DIR/$tdir/$tfile $OSTCOUNT
1581         for i in `seq 0 $OFFSET`; do
1582                 [ `$GETSTRIPE $DIR/$tdir/$tfile$i | grep -A 10 obdidx | awk '{print $1}' | grep -w "$OSTIDX"` ] &&
1583                 error "OST0 was degraded but new created file still use it"
1584         done
1585         do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 0
1586 }
1587 run_test 27x "create files while OST0 is degraded"
1588
1589 test_27y() {
1590         [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2 OSTs -- skipping" && return
1591         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1592         remote_ost_nodsh && skip "remote OST with nodsh" && return
1593         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1594
1595         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS $FSNAME-OST0000)
1596         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
1597             osc.$mdtosc.prealloc_last_id)
1598         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
1599             osc.$mdtosc.prealloc_next_id)
1600         local fcount=$((last_id - next_id))
1601         [ $fcount -eq 0 ] && skip "not enough space on OST0" && return
1602         [ $fcount -gt $OSTCOUNT ] && fcount=$OSTCOUNT
1603
1604         local MDS_OSCS=$(do_facet $SINGLEMDS lctl dl |
1605                          awk '/[oO][sS][cC].*md[ts]/ { print $4 }')
1606         local OST_DEACTIVE_IDX=-1
1607         local OSC
1608         local OSTIDX
1609         local OST
1610
1611         for OSC in $MDS_OSCS; do
1612                 OST=$(osc_to_ost $OSC)
1613                 OSTIDX=$(index_from_ostuuid $OST)
1614                 if [ $OST_DEACTIVE_IDX == -1 ]; then
1615                         OST_DEACTIVE_IDX=$OSTIDX
1616                 fi
1617                 if [ $OSTIDX != $OST_DEACTIVE_IDX ]; then
1618                         echo $OSC "is Deactivated:"
1619                         do_facet $SINGLEMDS lctl --device  %$OSC deactivate
1620                 fi
1621         done
1622
1623         OSTIDX=$(index_from_ostuuid $OST)
1624         mkdir -p $DIR/$tdir
1625         $SETSTRIPE -c 1 $DIR/$tdir      # 1 stripe / file
1626
1627         for OSC in $MDS_OSCS; do
1628                 OST=$(osc_to_ost $OSC)
1629                 OSTIDX=$(index_from_ostuuid $OST)
1630                 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
1631                         echo $OST "is degraded:"
1632                         do_facet ost$((OSTIDX+1)) lctl set_param -n \
1633                                                 obdfilter.$OST.degraded=1
1634                 fi
1635         done
1636
1637         sleep_maxage
1638         createmany -o $DIR/$tdir/$tfile $fcount
1639
1640         for OSC in $MDS_OSCS; do
1641                 OST=$(osc_to_ost $OSC)
1642                 OSTIDX=$(index_from_ostuuid $OST)
1643                 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
1644                         echo $OST "is recovered from degraded:"
1645                         do_facet ost$((OSTIDX+1)) lctl set_param -n \
1646                                                 obdfilter.$OST.degraded=0
1647                 else
1648                         do_facet $SINGLEMDS lctl --device %$OSC activate
1649                 fi
1650         done
1651
1652         # all osp devices get activated, hence -1 stripe count restored
1653         local stripecnt=0
1654
1655         # sleep 2*lod_qos_maxage seconds waiting for lod qos to notice osp
1656         # devices get activated.
1657         sleep_maxage
1658         $SETSTRIPE -c -1 $DIR/$tfile
1659         stripecnt=$($GETSTRIPE -c $DIR/$tfile)
1660         rm -f $DIR/$tfile
1661         [ $stripecnt -ne $OSTCOUNT ] &&
1662                 error "Of $OSTCOUNT OSTs, only $stripecnt is available"
1663         return 0
1664 }
1665 run_test 27y "create files while OST0 is degraded and the rest inactive"
1666
1667 check_seq_oid()
1668 {
1669         log "check file $1"
1670
1671         lmm_count=$($GETSTRIPE -c $1)
1672         lmm_seq=$($GETSTRIPE -v $1 | awk '/lmm_seq/ { print $2 }')
1673         lmm_oid=$($GETSTRIPE -v $1 | awk '/lmm_object_id/ { print $2 }')
1674
1675         local old_ifs="$IFS"
1676         IFS=$'[:]'
1677         fid=($($LFS path2fid $1))
1678         IFS="$old_ifs"
1679
1680         log "FID seq ${fid[1]}, oid ${fid[2]} ver ${fid[3]}"
1681         log "LOV seq $lmm_seq, oid $lmm_oid, count: $lmm_count"
1682
1683         # compare lmm_seq and lu_fid->f_seq
1684         [ $lmm_seq = ${fid[1]} ] || { error "SEQ mismatch"; return 1; }
1685         # compare lmm_object_id and lu_fid->oid
1686         [ $lmm_oid = ${fid[2]} ] || { error "OID mismatch"; return 2; }
1687
1688         # check the trusted.fid attribute of the OST objects of the file
1689         local have_obdidx=false
1690         local stripe_nr=0
1691         $GETSTRIPE $1 | while read obdidx oid hex seq; do
1692                 # skip lines up to and including "obdidx"
1693                 [ -z "$obdidx" ] && break
1694                 [ "$obdidx" = "obdidx" ] && have_obdidx=true && continue
1695                 $have_obdidx || continue
1696
1697                 local ost=$((obdidx + 1))
1698                 local dev=$(ostdevname $ost)
1699                 local oid_hex
1700
1701                 if [ $(facet_fstype ost$ost) != ldiskfs ]; then
1702                         echo "Currently only works with ldiskfs-based OSTs"
1703                         continue
1704                 fi
1705
1706                 log "want: stripe:$stripe_nr ost:$obdidx oid:$oid/$hex seq:$seq"
1707
1708                 #don't unmount/remount the OSTs if we don't need to do that
1709                 # LU-2577 changes filter_fid to be smaller, so debugfs needs
1710                 # update too, until that use mount/ll_decode_filter_fid/mount
1711                 local dir=$(facet_mntpt ost$ost)
1712                 local opts=${OST_MOUNT_OPTS}
1713
1714                 if !  do_facet ost$ost test -b ${dev}; then
1715                         opts=$(csa_add "$opts" -o loop)
1716                 fi
1717
1718                 stop ost$ost
1719                 do_facet ost$ost mount -t $(facet_fstype ost$ost) $opts $dev $dir ||
1720                         { error "mounting $dev as $FSTYPE failed"; return 3; }
1721
1722                 seq=$(echo $seq | sed -e "s/^0x//g")
1723                 if [ $seq == 0 ]; then
1724                         oid_hex=$(echo $oid)
1725                 else
1726                         oid_hex=$(echo $hex | sed -e "s/^0x//g")
1727                 fi
1728                 local obj_file=$(do_facet ost$ost find $dir/O/$seq -name $oid_hex)
1729                 local ff=$(do_facet ost$ost $LL_DECODE_FILTER_FID $obj_file)
1730                 do_facet ost$ost umount -d $dir
1731                 start ost$ost $dev $OST_MOUNT_OPTS
1732
1733                 # re-enable when debugfs will understand new filter_fid
1734                 #local ff=$(do_facet ost$ost "$DEBUGFS -c -R 'stat $obj_file' \
1735                 #           $dev 2>/dev/null" | grep "parent=")
1736
1737                 [ -z "$ff" ] && error "$obj_file: no filter_fid info"
1738
1739                 echo "$ff" | sed -e 's#.*objid=#got: objid=#'
1740
1741                 # /mnt/O/0/d23/23: objid=23 seq=0 parent=[0x200000400:0x1e:0x1]
1742                 # fid: objid=23 seq=0 parent=[0x200000400:0x1e:0x0] stripe=1
1743                 local ff_parent=$(echo $ff|sed -e 's/.*parent=.//')
1744                 local ff_pseq=$(echo $ff_parent | cut -d: -f1)
1745                 local ff_poid=$(echo $ff_parent | cut -d: -f2)
1746                 local ff_pstripe=$(echo $ff_parent | sed -e 's/.*stripe=//')
1747
1748                 # compare lmm_seq and filter_fid->ff_parent.f_seq
1749                 [ $ff_pseq = $lmm_seq ] ||
1750                         error "FF parent SEQ $ff_pseq != $lmm_seq"
1751                 # compare lmm_object_id and filter_fid->ff_parent.f_oid
1752                 [ $ff_poid = $lmm_oid ] ||
1753                         error "FF parent OID $ff_poid != $lmm_oid"
1754                 [ $ff_pstripe = $stripe_nr ] ||
1755                         error "FF stripe $ff_pstripe != $stripe_nr"
1756
1757                 stripe_nr=$((stripe_nr + 1))
1758         done
1759 }
1760
1761 test_27z() {
1762         remote_ost_nodsh && skip "remote OST with nodsh" && return
1763         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1764         test_mkdir -p $DIR/$tdir
1765
1766         $SETSTRIPE -c 1 -i 0 -S 64k $DIR/$tdir/$tfile-1 ||
1767                 { error "setstripe -c -1 failed"; return 1; }
1768         # We need to send a write to every object to get parent FID info set.
1769         # This _should_ also work for setattr, but does not currently.
1770         # touch $DIR/$tdir/$tfile-1 ||
1771         dd if=/dev/zero of=$DIR/$tdir/$tfile-1 bs=1M count=1 ||
1772                 { error "dd $tfile-1 failed"; return 2; }
1773         $SETSTRIPE -c -1 -i $((OSTCOUNT - 1)) -S 1M $DIR/$tdir/$tfile-2 ||
1774                 { error "setstripe -c -1 failed"; return 3; }
1775         dd if=/dev/zero of=$DIR/$tdir/$tfile-2 bs=1M count=$OSTCOUNT ||
1776                 { error "dd $tfile-2 failed"; return 4; }
1777
1778         # make sure write RPCs have been sent to OSTs
1779         sync; sleep 5; sync
1780
1781         check_seq_oid $DIR/$tdir/$tfile-1 || return 5
1782         check_seq_oid $DIR/$tdir/$tfile-2 || return 6
1783 }
1784 run_test 27z "check SEQ/OID on the MDT and OST filesystems"
1785
1786 test_27A() { # b=19102
1787         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1788         local restore_size=$($GETSTRIPE -S $MOUNT)
1789         local restore_count=$($GETSTRIPE -c $MOUNT)
1790         local restore_offset=$($GETSTRIPE -i $MOUNT)
1791         $SETSTRIPE -c 0 -i -1 -S 0 $MOUNT
1792         local default_size=$($GETSTRIPE -S $MOUNT)
1793         local default_count=$($GETSTRIPE -c $MOUNT)
1794         local default_offset=$($GETSTRIPE -i $MOUNT)
1795         local dsize=$((1024 * 1024))
1796         [ $default_size -eq $dsize ] ||
1797                 error "stripe size $default_size != $dsize"
1798         [ $default_count -eq 1 ] || error "stripe count $default_count != 1"
1799         [ $default_offset -eq -1 ] ||error "stripe offset $default_offset != -1"
1800         $SETSTRIPE -c $restore_count -i $restore_offset -S $restore_size $MOUNT
1801 }
1802 run_test 27A "check filesystem-wide default LOV EA values"
1803
1804 test_27B() { # LU-2523
1805         test_mkdir -p $DIR/$tdir
1806         rm -f $DIR/$tdir/f0 $DIR/$tdir/f1
1807         touch $DIR/$tdir/f0
1808         # open f1 with O_LOV_DELAY_CREATE
1809         # rename f0 onto f1
1810         # call setstripe ioctl on open file descriptor for f1
1811         # close
1812         multiop $DIR/$tdir/f1 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:nB1c \
1813                 $DIR/$tdir/f0
1814
1815         rm -f $DIR/$tdir/f1
1816         # open f1 with O_LOV_DELAY_CREATE
1817         # unlink f1
1818         # call setstripe ioctl on open file descriptor for f1
1819         # close
1820         multiop $DIR/$tdir/f1 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:uB1c
1821
1822         # Allow multiop to fail in imitation of NFS's busted semantics.
1823         true
1824 }
1825 run_test 27B "call setstripe on open unlinked file/rename victim"
1826
1827 test_27C() { #LU-2871
1828         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
1829
1830         declare -a ost_idx
1831         local index
1832         local found
1833         local i
1834         local j
1835
1836         test_mkdir -p $DIR/$tdir
1837         cd $DIR/$tdir
1838         for i in $(seq 0 $((OSTCOUNT - 1))); do
1839                 # set stripe across all OSTs starting from OST$i
1840                 $SETSTRIPE -i $i -c -1 $tfile$i
1841                 # get striping information
1842                 ost_idx=($($GETSTRIPE $tfile$i |
1843                          tail -n $((OSTCOUNT + 1)) | awk '{print $1}'))
1844                 echo ${ost_idx[@]}
1845
1846                 # check the layout
1847                 [ ${#ost_idx[@]} -eq $OSTCOUNT ] ||
1848                         error "${#ost_idx[@]} != $OSTCOUNT"
1849
1850                 for index in $(seq 0 $((OSTCOUNT - 1))); do
1851                         found=0
1852                         for j in $(echo ${ost_idx[@]}); do
1853                                 if [ $index -eq $j ]; then
1854                                         found=1
1855                                         break
1856                                 fi
1857                         done
1858                         [ $found = 1 ] ||
1859                                 error "Can not find $index in ${ost_idx[@]}"
1860                 done
1861         done
1862 }
1863 run_test 27C "check full striping across all OSTs"
1864
1865 # createtest also checks that device nodes are created and
1866 # then visible correctly (#2091)
1867 test_28() { # bug 2091
1868         test_mkdir $DIR/d28
1869         $CREATETEST $DIR/d28/ct || error
1870 }
1871 run_test 28 "create/mknod/mkdir with bad file types ============"
1872
1873 test_29() {
1874         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1875         cancel_lru_locks mdc
1876         test_mkdir $DIR/d29
1877         touch $DIR/d29/foo
1878         log 'first d29'
1879         ls -l $DIR/d29
1880
1881         declare -i LOCKCOUNTORIG=0
1882         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
1883                 let LOCKCOUNTORIG=$LOCKCOUNTORIG+$lock_count
1884         done
1885         [ $LOCKCOUNTORIG -eq 0 ] && echo "No mdc lock count" && return 1
1886
1887         declare -i LOCKUNUSEDCOUNTORIG=0
1888         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
1889                 let LOCKUNUSEDCOUNTORIG=$LOCKUNUSEDCOUNTORIG+$unused_count
1890         done
1891
1892         log 'second d29'
1893         ls -l $DIR/d29
1894         log 'done'
1895
1896         declare -i LOCKCOUNTCURRENT=0
1897         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
1898                 let LOCKCOUNTCURRENT=$LOCKCOUNTCURRENT+$lock_count
1899         done
1900
1901         declare -i LOCKUNUSEDCOUNTCURRENT=0
1902         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
1903                 let LOCKUNUSEDCOUNTCURRENT=$LOCKUNUSEDCOUNTCURRENT+$unused_count
1904         done
1905
1906         if [ "$LOCKCOUNTCURRENT" -gt "$LOCKCOUNTORIG" ]; then
1907                 lctl set_param -n ldlm.dump_namespaces ""
1908                 error "CURRENT: $LOCKCOUNTCURRENT > $LOCKCOUNTORIG"
1909                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
1910                 log "dumped log to $TMP/test_29.dk (bug 5793)"
1911                 return 2
1912         fi
1913         if [ "$LOCKUNUSEDCOUNTCURRENT" -gt "$LOCKUNUSEDCOUNTORIG" ]; then
1914                 error "UNUSED: $LOCKUNUSEDCOUNTCURRENT > $LOCKUNUSEDCOUNTORIG"
1915                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
1916                 log "dumped log to $TMP/test_29.dk (bug 5793)"
1917                 return 3
1918         fi
1919 }
1920 run_test 29 "IT_GETATTR regression  ============================"
1921
1922 test_30a() { # was test_30
1923         cp `which ls` $DIR || cp /bin/ls $DIR
1924         $DIR/ls / || error
1925         rm $DIR/ls
1926 }
1927 run_test 30a "execute binary from Lustre (execve) =============="
1928
1929 test_30b() {
1930         cp `which ls` $DIR || cp /bin/ls $DIR
1931         chmod go+rx $DIR/ls
1932         $RUNAS $DIR/ls / || error
1933         rm $DIR/ls
1934 }
1935 run_test 30b "execute binary from Lustre as non-root ==========="
1936
1937 test_30c() { # b=22376
1938         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1939         cp `which ls` $DIR || cp /bin/ls $DIR
1940         chmod a-rw $DIR/ls
1941         cancel_lru_locks mdc
1942         cancel_lru_locks osc
1943         $RUNAS $DIR/ls / || error
1944         rm -f $DIR/ls
1945 }
1946 run_test 30c "execute binary from Lustre without read perms ===="
1947
1948 test_31a() {
1949         $OPENUNLINK $DIR/f31 $DIR/f31 || error
1950         $CHECKSTAT -a $DIR/f31 || error
1951 }
1952 run_test 31a "open-unlink file =================================="
1953
1954 test_31b() {
1955         touch $DIR/f31 || error
1956         ln $DIR/f31 $DIR/f31b || error
1957         $MULTIOP $DIR/f31b Ouc || error
1958         $CHECKSTAT -t file $DIR/f31 || error
1959 }
1960 run_test 31b "unlink file with multiple links while open ======="
1961
1962 test_31c() {
1963         touch $DIR/f31 || error
1964         ln $DIR/f31 $DIR/f31c || error
1965         multiop_bg_pause $DIR/f31 O_uc || return 1
1966         MULTIPID=$!
1967         $MULTIOP $DIR/f31c Ouc
1968         kill -USR1 $MULTIPID
1969         wait $MULTIPID
1970 }
1971 run_test 31c "open-unlink file with multiple links ============="
1972
1973 test_31d() {
1974         opendirunlink $DIR/d31d $DIR/d31d || error
1975         $CHECKSTAT -a $DIR/d31d || error
1976 }
1977 run_test 31d "remove of open directory ========================="
1978
1979 test_31e() { # bug 2904
1980         check_kernel_version 34 || return 0
1981         openfilleddirunlink $DIR/d31e || error
1982 }
1983 run_test 31e "remove of open non-empty directory ==============="
1984
1985 test_31f() { # bug 4554
1986         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1987         set -vx
1988         test_mkdir $DIR/d31f
1989         $SETSTRIPE -S 1048576 -c 1 $DIR/d31f
1990         cp /etc/hosts $DIR/d31f
1991         ls -l $DIR/d31f
1992         $GETSTRIPE $DIR/d31f/hosts
1993         multiop_bg_pause $DIR/d31f D_c || return 1
1994         MULTIPID=$!
1995
1996         rm -rv $DIR/d31f || error "first of $DIR/d31f"
1997         test_mkdir $DIR/d31f
1998         $SETSTRIPE -S 1048576 -c 1 $DIR/d31f
1999         cp /etc/hosts $DIR/d31f
2000         ls -l $DIR/d31f
2001         $GETSTRIPE $DIR/d31f/hosts
2002         multiop_bg_pause $DIR/d31f D_c || return 1
2003         MULTIPID2=$!
2004
2005         kill -USR1 $MULTIPID || error "first opendir $MULTIPID not running"
2006         wait $MULTIPID || error "first opendir $MULTIPID failed"
2007
2008         sleep 6
2009
2010         kill -USR1 $MULTIPID2 || error "second opendir $MULTIPID not running"
2011         wait $MULTIPID2 || error "second opendir $MULTIPID2 failed"
2012         set +vx
2013 }
2014 run_test 31f "remove of open directory with open-unlink file ==="
2015
2016 test_31g() {
2017         echo "-- cross directory link --"
2018         test_mkdir $DIR/d31ga
2019         test_mkdir $DIR/d31gb
2020         touch $DIR/d31ga/f
2021         ln $DIR/d31ga/f $DIR/d31gb/g
2022         $CHECKSTAT -t file $DIR/d31ga/f || error "source"
2023         [ `stat -c%h $DIR/d31ga/f` == '2' ] || error "source nlink"
2024         $CHECKSTAT -t file $DIR/d31gb/g || error "target"
2025         [ `stat -c%h $DIR/d31gb/g` == '2' ] || error "target nlink"
2026 }
2027 run_test 31g "cross directory link==============="
2028
2029 test_31h() {
2030         echo "-- cross directory link --"
2031         test_mkdir $DIR/d31h
2032         test_mkdir $DIR/d31h/dir
2033         touch $DIR/d31h/f
2034         ln $DIR/d31h/f $DIR/d31h/dir/g
2035         $CHECKSTAT -t file $DIR/d31h/f || error "source"
2036         [ `stat -c%h $DIR/d31h/f` == '2' ] || error "source nlink"
2037         $CHECKSTAT -t file $DIR/d31h/dir/g || error "target"
2038         [ `stat -c%h $DIR/d31h/dir/g` == '2' ] || error "target nlink"
2039 }
2040 run_test 31h "cross directory link under child==============="
2041
2042 test_31i() {
2043         echo "-- cross directory link --"
2044         test_mkdir $DIR/d31i
2045         test_mkdir $DIR/d31i/dir
2046         touch $DIR/d31i/dir/f
2047         ln $DIR/d31i/dir/f $DIR/d31i/g
2048         $CHECKSTAT -t file $DIR/d31i/dir/f || error "source"
2049         [ `stat -c%h $DIR/d31i/dir/f` == '2' ] || error "source nlink"
2050         $CHECKSTAT -t file $DIR/d31i/g || error "target"
2051         [ `stat -c%h $DIR/d31i/g` == '2' ] || error "target nlink"
2052 }
2053 run_test 31i "cross directory link under parent==============="
2054
2055
2056 test_31j() {
2057         test_mkdir $DIR/d31j
2058         test_mkdir $DIR/d31j/dir1
2059         ln $DIR/d31j/dir1 $DIR/d31j/dir2 && error "ln for dir"
2060         link $DIR/d31j/dir1 $DIR/d31j/dir3 && error "link for dir"
2061         mlink $DIR/d31j/dir1 $DIR/d31j/dir4 && error "mlink for dir"
2062         mlink $DIR/d31j/dir1 $DIR/d31j/dir1 && error "mlink to the same dir"
2063         return 0
2064 }
2065 run_test 31j "link for directory==============="
2066
2067
2068 test_31k() {
2069         test_mkdir $DIR/d31k
2070         touch $DIR/d31k/s
2071         touch $DIR/d31k/exist
2072         mlink $DIR/d31k/s $DIR/d31k/t || error "mlink"
2073         mlink $DIR/d31k/s $DIR/d31k/exist && error "mlink to exist file"
2074         mlink $DIR/d31k/s $DIR/d31k/s && error "mlink to the same file"
2075         mlink $DIR/d31k/s $DIR/d31k && error "mlink to parent dir"
2076         mlink $DIR/d31k $DIR/d31k/s && error "mlink parent dir to target"
2077         mlink $DIR/d31k/not-exist $DIR/d31k/foo && error "mlink non-existing to new"
2078         mlink $DIR/d31k/not-exist $DIR/d31k/s && error "mlink non-existing to exist"
2079         return 0
2080 }
2081 run_test 31k "link to file: the same, non-existing, dir==============="
2082
2083 test_31m() {
2084         test_mkdir $DIR/d31m
2085         touch $DIR/d31m/s
2086         test_mkdir $DIR/d31m2
2087         touch $DIR/d31m2/exist
2088         mlink $DIR/d31m/s $DIR/d31m2/t || error "mlink"
2089         mlink $DIR/d31m/s $DIR/d31m2/exist && error "mlink to exist file"
2090         mlink $DIR/d31m/s $DIR/d31m2 && error "mlink to parent dir"
2091         mlink $DIR/d31m2 $DIR/d31m/s && error "mlink parent dir to target"
2092         mlink $DIR/d31m/not-exist $DIR/d31m2/foo && error "mlink non-existing to new"
2093         mlink $DIR/d31m/not-exist $DIR/d31m2/s && error "mlink non-existing to exist"
2094         return 0
2095 }
2096 run_test 31m "link to file: the same, non-existing, dir==============="
2097
2098 test_31n() {
2099         [ -e /proc/self/fd/173 ] && echo "skipping, fd 173 is in use" && return
2100         touch $DIR/$tfile || error "cannot create '$DIR/$tfile'"
2101         nlink=$(stat --format=%h $DIR/$tfile)
2102         [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
2103         exec 173<$DIR/$tfile
2104         trap "exec 173<&-" EXIT
2105         nlink=$(stat --dereference --format=%h /proc/self/fd/173)
2106         [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
2107         rm $DIR/$tfile || error "cannot remove '$DIR/$tfile'"
2108         nlink=$(stat --dereference --format=%h /proc/self/fd/173)
2109         [ ${nlink:--1} -eq 0 ] || error "nlink is $nlink, expected 0"
2110         exec 173<&-
2111 }
2112 run_test 31n "check link count of unlinked file"
2113
2114 cleanup_test32_mount() {
2115         trap 0
2116         $UMOUNT $DIR/$tdir/ext2-mountpoint
2117 }
2118
2119 test_32a() {
2120         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2121         echo "== more mountpoints and symlinks ================="
2122         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2123         trap cleanup_test32_mount EXIT
2124         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2125         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2126         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/.. || error
2127         cleanup_test32_mount
2128 }
2129 run_test 32a "stat d32a/ext2-mountpoint/.. ====================="
2130
2131 test_32b() {
2132         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2133         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2134         trap cleanup_test32_mount EXIT
2135         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2136         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2137         ls -al $DIR/$tdir/ext2-mountpoint/.. || error
2138         cleanup_test32_mount
2139 }
2140 run_test 32b "open d32b/ext2-mountpoint/.. ====================="
2141
2142 test_32c() {
2143         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2144         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2145         trap cleanup_test32_mount EXIT
2146         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2147         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2148         test_mkdir -p $DIR/$tdir/d2/test_dir
2149         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/../d2/test_dir || error
2150         cleanup_test32_mount
2151 }
2152 run_test 32c "stat d32c/ext2-mountpoint/../d2/test_dir ========="
2153
2154 test_32d() {
2155         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2156         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2157         trap cleanup_test32_mount EXIT
2158         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2159         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2160         test_mkdir -p $DIR/$tdir/d2/test_dir
2161         ls -al $DIR/$tdir/ext2-mountpoint/../d2/test_dir || error
2162         cleanup_test32_mount
2163 }
2164 run_test 32d "open d32d/ext2-mountpoint/../d2/test_dir ========="
2165
2166 test_32e() {
2167         [ -e $DIR/d32e ] && rm -fr $DIR/d32e
2168         test_mkdir -p $DIR/d32e/tmp
2169         TMP_DIR=$DIR/d32e/tmp
2170         ln -s $DIR/d32e $TMP_DIR/symlink11
2171         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2172         $CHECKSTAT -t link $DIR/d32e/tmp/symlink11 || error
2173         $CHECKSTAT -t link $DIR/d32e/symlink01 || error
2174 }
2175 run_test 32e "stat d32e/symlink->tmp/symlink->lustre-subdir ===="
2176
2177 test_32f() {
2178         [ -e $DIR/d32f ] && rm -fr $DIR/d32f
2179         test_mkdir -p $DIR/d32f/tmp
2180         TMP_DIR=$DIR/d32f/tmp
2181         ln -s $DIR/d32f $TMP_DIR/symlink11
2182         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2183         ls $DIR/d32f/tmp/symlink11  || error
2184         ls $DIR/d32f/symlink01 || error
2185 }
2186 run_test 32f "open d32f/symlink->tmp/symlink->lustre-subdir ===="
2187
2188 test_32g() {
2189         TMP_DIR=$DIR/$tdir/tmp
2190         test_mkdir -p $DIR/$tdir/tmp
2191         test_mkdir $DIR/${tdir}2
2192         ln -s $DIR/${tdir}2 $TMP_DIR/symlink12
2193         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2194         $CHECKSTAT -t link $TMP_DIR/symlink12 || error
2195         $CHECKSTAT -t link $DIR/$tdir/symlink02 || error
2196         $CHECKSTAT -t dir -f $TMP_DIR/symlink12 || error
2197         $CHECKSTAT -t dir -f $DIR/$tdir/symlink02 || error
2198 }
2199 run_test 32g "stat d32g/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2200
2201 test_32h() {
2202         rm -fr $DIR/$tdir $DIR/${tdir}2
2203         TMP_DIR=$DIR/$tdir/tmp
2204         test_mkdir -p $DIR/$tdir/tmp
2205         test_mkdir $DIR/${tdir}2
2206         ln -s $DIR/${tdir}2 $TMP_DIR/symlink12
2207         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2208         ls $TMP_DIR/symlink12 || error
2209         ls $DIR/$tdir/symlink02  || error
2210 }
2211 run_test 32h "open d32h/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2212
2213 test_32i() {
2214         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2215         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2216         trap cleanup_test32_mount EXIT
2217         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2218         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2219         touch $DIR/$tdir/test_file
2220         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../test_file || error
2221         cleanup_test32_mount
2222 }
2223 run_test 32i "stat d32i/ext2-mountpoint/../test_file ==========="
2224
2225 test_32j() {
2226         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2227         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2228         trap cleanup_test32_mount EXIT
2229         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2230         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2231         touch $DIR/$tdir/test_file
2232         cat $DIR/$tdir/ext2-mountpoint/../test_file || error
2233         cleanup_test32_mount
2234 }
2235 run_test 32j "open d32j/ext2-mountpoint/../test_file ==========="
2236
2237 test_32k() {
2238         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2239         rm -fr $DIR/$tdir
2240         trap cleanup_test32_mount EXIT
2241         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2242         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint
2243         test_mkdir -p $DIR/$tdir/d2
2244         touch $DIR/$tdir/d2/test_file || error
2245         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../d2/test_file || error
2246         cleanup_test32_mount
2247 }
2248 run_test 32k "stat d32k/ext2-mountpoint/../d2/test_file ========"
2249
2250 test_32l() {
2251         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2252         rm -fr $DIR/$tdir
2253         trap cleanup_test32_mount EXIT
2254         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2255         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2256         test_mkdir -p $DIR/$tdir/d2
2257         touch $DIR/$tdir/d2/test_file
2258         cat  $DIR/$tdir/ext2-mountpoint/../d2/test_file || error
2259         cleanup_test32_mount
2260 }
2261 run_test 32l "open d32l/ext2-mountpoint/../d2/test_file ========"
2262
2263 test_32m() {
2264         rm -fr $DIR/d32m
2265         test_mkdir -p $DIR/d32m/tmp
2266         TMP_DIR=$DIR/d32m/tmp
2267         ln -s $DIR $TMP_DIR/symlink11
2268         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2269         $CHECKSTAT -t link $DIR/d32m/tmp/symlink11 || error
2270         $CHECKSTAT -t link $DIR/d32m/symlink01 || error
2271 }
2272 run_test 32m "stat d32m/symlink->tmp/symlink->lustre-root ======"
2273
2274 test_32n() {
2275         rm -fr $DIR/d32n
2276         test_mkdir -p $DIR/d32n/tmp
2277         TMP_DIR=$DIR/d32n/tmp
2278         ln -s $DIR $TMP_DIR/symlink11
2279         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2280         ls -l $DIR/d32n/tmp/symlink11  || error
2281         ls -l $DIR/d32n/symlink01 || error
2282 }
2283 run_test 32n "open d32n/symlink->tmp/symlink->lustre-root ======"
2284
2285 test_32o() {
2286         rm -fr $DIR/d32o $DIR/$tfile
2287         touch $DIR/$tfile
2288         test_mkdir -p $DIR/d32o/tmp
2289         TMP_DIR=$DIR/d32o/tmp
2290         ln -s $DIR/$tfile $TMP_DIR/symlink12
2291         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2292         $CHECKSTAT -t link $DIR/d32o/tmp/symlink12 || error
2293         $CHECKSTAT -t link $DIR/d32o/symlink02 || error
2294         $CHECKSTAT -t file -f $DIR/d32o/tmp/symlink12 || error
2295         $CHECKSTAT -t file -f $DIR/d32o/symlink02 || error
2296 }
2297 run_test 32o "stat d32o/symlink->tmp/symlink->lustre-root/$tfile"
2298
2299 test_32p() {
2300     log 32p_1
2301         rm -fr $DIR/d32p
2302     log 32p_2
2303         rm -f $DIR/$tfile
2304     log 32p_3
2305         touch $DIR/$tfile
2306     log 32p_4
2307         test_mkdir -p $DIR/d32p/tmp
2308     log 32p_5
2309         TMP_DIR=$DIR/d32p/tmp
2310     log 32p_6
2311         ln -s $DIR/$tfile $TMP_DIR/symlink12
2312     log 32p_7
2313         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2314     log 32p_8
2315         cat $DIR/d32p/tmp/symlink12 || error
2316     log 32p_9
2317         cat $DIR/d32p/symlink02 || error
2318     log 32p_10
2319 }
2320 run_test 32p "open d32p/symlink->tmp/symlink->lustre-root/$tfile"
2321
2322 cleanup_testdir_mount() {
2323         trap 0
2324         $UMOUNT $DIR/$tdir
2325 }
2326
2327 test_32q() {
2328         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2329         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2330         trap cleanup_testdir_mount EXIT
2331         test_mkdir -p $DIR/$tdir
2332         touch $DIR/$tdir/under_the_mount
2333         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir
2334         ls $DIR/$tdir | grep "\<under_the_mount\>" && error
2335         cleanup_testdir_mount
2336 }
2337 run_test 32q "stat follows mountpoints in Lustre (should return error)"
2338
2339 test_32r() {
2340         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2341         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2342         trap cleanup_testdir_mount EXIT
2343         test_mkdir -p $DIR/$tdir
2344         touch $DIR/$tdir/under_the_mount
2345         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir
2346         ls $DIR/$tdir | grep -q under_the_mount && error || true
2347         cleanup_testdir_mount
2348 }
2349 run_test 32r "opendir follows mountpoints in Lustre (should return error)"
2350
2351 test_33aa() {
2352         rm -f $DIR/$tfile
2353         touch $DIR/$tfile
2354         chmod 444 $DIR/$tfile
2355         chown $RUNAS_ID $DIR/$tfile
2356         log 33_1
2357         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
2358         log 33_2
2359 }
2360 run_test 33aa "write file with mode 444 (should return error) ===="
2361
2362 test_33a() {
2363         rm -fr $DIR/d33
2364         test_mkdir -p $DIR/d33
2365         chown $RUNAS_ID $DIR/d33
2366         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/d33/f33|| error "create"
2367         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/d33/f33 && \
2368                 error "open RDWR" || true
2369 }
2370 run_test 33a "test open file(mode=0444) with O_RDWR (should return error)"
2371
2372 test_33b() {
2373         rm -fr $DIR/d33
2374         test_mkdir -p $DIR/d33
2375         chown $RUNAS_ID $DIR/d33
2376         $RUNAS $OPENFILE -f 1286739555 $DIR/d33/f33 && error "create" || true
2377 }
2378 run_test 33b "test open file with malformed flags (No panic and return error)"
2379
2380 test_33c() {
2381         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2382         local ostnum
2383         local ostname
2384         local write_bytes
2385         local all_zeros
2386
2387         remote_ost_nodsh && skip "remote OST with nodsh" && return
2388         all_zeros=:
2389         rm -fr $DIR/d33
2390         test_mkdir -p $DIR/d33
2391         # Read: 0, Write: 4, create/destroy: 2/0, stat: 1, punch: 0
2392
2393         sync
2394         for ostnum in $(seq $OSTCOUNT); do
2395                 # test-framework's OST numbering is one-based, while Lustre's
2396                 # is zero-based
2397                 ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2398                 # Parsing llobdstat's output sucks; we could grep the /proc
2399                 # path, but that's likely to not be as portable as using the
2400                 # llobdstat utility.  So we parse lctl output instead.
2401                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2402                         obdfilter/$ostname/stats |
2403                         awk '/^write_bytes/ {print $7}' )
2404                 echo "baseline_write_bytes@$OSTnum/$ostname=$write_bytes"
2405                 if (( ${write_bytes:-0} > 0 ))
2406                 then
2407                         all_zeros=false
2408                         break;
2409                 fi
2410         done
2411
2412         $all_zeros || return 0
2413
2414         # Write four bytes
2415         echo foo > $DIR/d33/bar
2416         # Really write them
2417         sync
2418
2419         # Total up write_bytes after writing.  We'd better find non-zeros.
2420         for ostnum in $(seq $OSTCOUNT); do
2421                 ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2422                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2423                         obdfilter/$ostname/stats |
2424                         awk '/^write_bytes/ {print $7}' )
2425                 echo "write_bytes@$OSTnum/$ostname=$write_bytes"
2426                 if (( ${write_bytes:-0} > 0 ))
2427                 then
2428                         all_zeros=false
2429                         break;
2430                 fi
2431         done
2432
2433         if $all_zeros
2434         then
2435                 for ostnum in $(seq $OSTCOUNT); do
2436                         ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2437                         echo "Check that write_bytes is present in obdfilter/*/stats:"
2438                         do_facet ost$ostnum lctl get_param -n \
2439                                 obdfilter/$ostname/stats
2440                 done
2441                 error "OST not keeping write_bytes stats (b22312)"
2442         fi
2443 }
2444 run_test 33c "test llobdstat and write_bytes"
2445
2446 test_33d() {
2447         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2448         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2449         local MDTIDX=1
2450         local remote_dir=$DIR/$tdir/remote_dir
2451
2452         mkdir -p $DIR/$tdir
2453         $LFS mkdir -i $MDTIDX $remote_dir ||
2454                 error "create remote directory failed"
2455
2456         touch $remote_dir/$tfile
2457         chmod 444 $remote_dir/$tfile
2458         chown $RUNAS_ID $remote_dir/$tfile
2459
2460         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
2461
2462         chown $RUNAS_ID $remote_dir
2463         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 ||
2464                                         error "create" || true
2465         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 &&
2466                                     error "open RDWR" || true
2467         $RUNAS $OPENFILE -f 1286739555 $remote_dir/f33 &&
2468                                     error "create" || true
2469 }
2470 run_test 33d "openfile with 444 modes and malformed flags under remote dir"
2471
2472 TEST_34_SIZE=${TEST_34_SIZE:-2000000000000}
2473 test_34a() {
2474         rm -f $DIR/f34
2475         $MCREATE $DIR/f34 || error
2476         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2477         $TRUNCATE $DIR/f34 $TEST_34_SIZE || error
2478         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2479         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2480 }
2481 run_test 34a "truncate file that has not been opened ==========="
2482
2483 test_34b() {
2484         [ ! -f $DIR/f34 ] && test_34a
2485         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2486         $OPENFILE -f O_RDONLY $DIR/f34
2487         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2488         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2489 }
2490 run_test 34b "O_RDONLY opening file doesn't create objects ====="
2491
2492 test_34c() {
2493         [ ! -f $DIR/f34 ] && test_34a
2494         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2495         $OPENFILE -f O_RDWR $DIR/f34
2496         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" && error
2497         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2498 }
2499 run_test 34c "O_RDWR opening file-with-size works =============="
2500
2501 test_34d() {
2502         [ ! -f $DIR/f34 ] && test_34a
2503         dd if=/dev/zero of=$DIR/f34 conv=notrunc bs=4k count=1 || error
2504         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2505         rm $DIR/f34
2506 }
2507 run_test 34d "write to sparse file ============================="
2508
2509 test_34e() {
2510         rm -f $DIR/f34e
2511         $MCREATE $DIR/f34e || error
2512         $TRUNCATE $DIR/f34e 1000 || error
2513         $CHECKSTAT -s 1000 $DIR/f34e || error
2514         $OPENFILE -f O_RDWR $DIR/f34e
2515         $CHECKSTAT -s 1000 $DIR/f34e || error
2516 }
2517 run_test 34e "create objects, some with size and some without =="
2518
2519 test_34f() { # bug 6242, 6243
2520         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2521         SIZE34F=48000
2522         rm -f $DIR/f34f
2523         $MCREATE $DIR/f34f || error
2524         $TRUNCATE $DIR/f34f $SIZE34F || error "truncating $DIR/f3f to $SIZE34F"
2525         dd if=$DIR/f34f of=$TMP/f34f
2526         $CHECKSTAT -s $SIZE34F $TMP/f34f || error "$TMP/f34f not $SIZE34F bytes"
2527         dd if=/dev/zero of=$TMP/f34fzero bs=$SIZE34F count=1
2528         cmp $DIR/f34f $TMP/f34fzero || error "$DIR/f34f not all zero"
2529         cmp $TMP/f34f $TMP/f34fzero || error "$TMP/f34f not all zero"
2530         rm $TMP/f34f $TMP/f34fzero $DIR/f34f
2531 }
2532 run_test 34f "read from a file with no objects until EOF ======="
2533
2534 test_34g() {
2535         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2536         dd if=/dev/zero of=$DIR/$tfile bs=1 count=100 seek=$TEST_34_SIZE || error
2537         $TRUNCATE $DIR/$tfile $((TEST_34_SIZE / 2))|| error
2538         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile || error "truncate failed"
2539         cancel_lru_locks osc
2540         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile || \
2541                 error "wrong size after lock cancel"
2542
2543         $TRUNCATE $DIR/$tfile $TEST_34_SIZE || error
2544         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile || \
2545                 error "expanding truncate failed"
2546         cancel_lru_locks osc
2547         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile || \
2548                 error "wrong expanded size after lock cancel"
2549 }
2550 run_test 34g "truncate long file ==============================="
2551
2552 test_34h() {
2553         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2554         local gid=10
2555         local sz=1000
2556
2557         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10 || error
2558         sync # Flush the cache so that multiop below does not block on cache
2559              # flush when getting the group lock
2560         $MULTIOP $DIR/$tfile OG${gid}T${sz}g${gid}c &
2561         MULTIPID=$!
2562
2563         # Since just timed wait is not good enough, let's do a sync write
2564         # that way we are sure enough time for a roundtrip + processing
2565         # passed + 2 seconds of extra margin.
2566         dd if=/dev/zero of=$DIR/${tfile}-1 bs=4096 oflag=direct count=1
2567         rm $DIR/${tfile}-1
2568         sleep 2
2569
2570         if [[ `ps h -o comm -p $MULTIPID` == "multiop" ]]; then
2571                 error "Multiop blocked on ftruncate, pid=$MULTIPID"
2572                 kill -9 $MULTIPID
2573         fi
2574         wait $MULTIPID
2575         local nsz=`stat -c %s $DIR/$tfile`
2576         [[ $nsz == $sz ]] || error "New size wrong $nsz != $sz"
2577 }
2578 run_test 34h "ftruncate file under grouplock should not block"
2579
2580 test_35a() {
2581         cp /bin/sh $DIR/f35a
2582         chmod 444 $DIR/f35a
2583         chown $RUNAS_ID $DIR/f35a
2584         $RUNAS $DIR/f35a && error || true
2585         rm $DIR/f35a
2586 }
2587 run_test 35a "exec file with mode 444 (should return and not leak) ====="
2588
2589 test_36a() {
2590         rm -f $DIR/f36
2591         utime $DIR/f36 || error
2592 }
2593 run_test 36a "MDS utime check (mknod, utime) ==================="
2594
2595 test_36b() {
2596         echo "" > $DIR/f36
2597         utime $DIR/f36 || error
2598 }
2599 run_test 36b "OST utime check (open, utime) ===================="
2600
2601 test_36c() {
2602         rm -f $DIR/d36/f36
2603         test_mkdir $DIR/d36
2604         chown $RUNAS_ID $DIR/d36
2605         $RUNAS utime $DIR/d36/f36 || error
2606 }
2607 run_test 36c "non-root MDS utime check (mknod, utime) =========="
2608
2609 test_36d() {
2610         [ ! -d $DIR/d36 ] && test_36c
2611         echo "" > $DIR/d36/f36
2612         $RUNAS utime $DIR/d36/f36 || error
2613 }
2614 run_test 36d "non-root OST utime check (open, utime) ==========="
2615
2616 test_36e() {
2617         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID -- skipping" && return
2618         test_mkdir -p $DIR/$tdir
2619         touch $DIR/$tdir/$tfile
2620         $RUNAS utime $DIR/$tdir/$tfile && \
2621                 error "utime worked, expected failure" || true
2622 }
2623 run_test 36e "utime on non-owned file (should return error) ===="
2624
2625 subr_36fh() {
2626         local fl="$1"
2627         local LANG_SAVE=$LANG
2628         local LC_LANG_SAVE=$LC_LANG
2629         export LANG=C LC_LANG=C # for date language
2630
2631         DATESTR="Dec 20  2000"
2632         test_mkdir -p $DIR/$tdir
2633         lctl set_param fail_loc=$fl
2634         date; date +%s
2635         cp /etc/hosts $DIR/$tdir/$tfile
2636         sync & # write RPC generated with "current" inode timestamp, but delayed
2637         sleep 1
2638         touch --date="$DATESTR" $DIR/$tdir/$tfile # setattr timestamp in past
2639         LS_BEFORE="`ls -l $DIR/$tdir/$tfile`" # old timestamp from client cache
2640         cancel_lru_locks osc
2641         LS_AFTER="`ls -l $DIR/$tdir/$tfile`"  # timestamp from OST object
2642         date; date +%s
2643         [ "$LS_BEFORE" != "$LS_AFTER" ] && \
2644                 echo "BEFORE: $LS_BEFORE" && \
2645                 echo "AFTER : $LS_AFTER" && \
2646                 echo "WANT  : $DATESTR" && \
2647                 error "$DIR/$tdir/$tfile timestamps changed" || true
2648
2649         export LANG=$LANG_SAVE LC_LANG=$LC_LANG_SAVE
2650 }
2651
2652 test_36f() {
2653         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2654         #define OBD_FAIL_OST_BRW_PAUSE_BULK 0x214
2655         subr_36fh "0x80000214"
2656 }
2657 run_test 36f "utime on file racing with OST BRW write =========="
2658
2659 test_36g() {
2660         remote_ost_nodsh && skip "remote OST with nodsh" && return
2661         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2662         local fmd_max_age
2663         local fmd_before
2664         local fmd_after
2665
2666         test_mkdir -p $DIR/$tdir
2667         fmd_max_age=$(do_facet ost1 \
2668                 "lctl get_param -n obdfilter.*.client_cache_seconds 2> /dev/null | \
2669                 head -n 1")
2670
2671         fmd_before=$(do_facet ost1 \
2672                 "awk '/ll_fmd_cache/ {print \\\$2}' /proc/slabinfo")
2673         touch $DIR/$tdir/$tfile
2674         sleep $((fmd_max_age + 12))
2675         fmd_after=$(do_facet ost1 \
2676                 "awk '/ll_fmd_cache/ {print \\\$2}' /proc/slabinfo")
2677
2678         echo "fmd_before: $fmd_before"
2679         echo "fmd_after: $fmd_after"
2680         [ "$fmd_after" -gt "$fmd_before" ] && \
2681                 echo "AFTER: $fmd_after > BEFORE: $fmd_before" && \
2682                 error "fmd didn't expire after ping" || true
2683 }
2684 run_test 36g "filter mod data cache expiry ====================="
2685
2686 test_36h() {
2687         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2688         #define OBD_FAIL_OST_BRW_PAUSE_BULK2 0x227
2689         subr_36fh "0x80000227"
2690 }
2691 run_test 36h "utime on file racing with OST BRW write =========="
2692
2693 # test_37 - duplicate with tests 32q 32r
2694
2695 test_38() {
2696         local file=$DIR/$tfile
2697         touch $file
2698         openfile -f O_DIRECTORY $file
2699         local RC=$?
2700         local ENOTDIR=20
2701         [ $RC -eq 0 ] && error "opened file $file with O_DIRECTORY" || true
2702         [ $RC -eq $ENOTDIR ] || error "error $RC should be ENOTDIR ($ENOTDIR)"
2703 }
2704 run_test 38 "open a regular file with O_DIRECTORY should return -ENOTDIR ==="
2705
2706 test_39() {
2707         touch $DIR/$tfile
2708         touch $DIR/${tfile}2
2709 #       ls -l  $DIR/$tfile $DIR/${tfile}2
2710 #       ls -lu  $DIR/$tfile $DIR/${tfile}2
2711 #       ls -lc  $DIR/$tfile $DIR/${tfile}2
2712         sleep 2
2713         $OPENFILE -f O_CREAT:O_TRUNC:O_WRONLY $DIR/${tfile}2
2714         if [ ! $DIR/${tfile}2 -nt $DIR/$tfile ]; then
2715                 echo "mtime"
2716                 ls -l --full-time $DIR/$tfile $DIR/${tfile}2
2717                 echo "atime"
2718                 ls -lu --full-time $DIR/$tfile $DIR/${tfile}2
2719                 echo "ctime"
2720                 ls -lc --full-time $DIR/$tfile $DIR/${tfile}2
2721                 error "O_TRUNC didn't change timestamps"
2722         fi
2723 }
2724 run_test 39 "mtime changed on create ==========================="
2725
2726 test_39b() {
2727         test_mkdir -p $DIR/$tdir
2728         cp -p /etc/passwd $DIR/$tdir/fopen
2729         cp -p /etc/passwd $DIR/$tdir/flink
2730         cp -p /etc/passwd $DIR/$tdir/funlink
2731         cp -p /etc/passwd $DIR/$tdir/frename
2732         ln $DIR/$tdir/funlink $DIR/$tdir/funlink2
2733
2734         sleep 1
2735         echo "aaaaaa" >> $DIR/$tdir/fopen
2736         echo "aaaaaa" >> $DIR/$tdir/flink
2737         echo "aaaaaa" >> $DIR/$tdir/funlink
2738         echo "aaaaaa" >> $DIR/$tdir/frename
2739
2740         local open_new=`stat -c %Y $DIR/$tdir/fopen`
2741         local link_new=`stat -c %Y $DIR/$tdir/flink`
2742         local unlink_new=`stat -c %Y $DIR/$tdir/funlink`
2743         local rename_new=`stat -c %Y $DIR/$tdir/frename`
2744
2745         cat $DIR/$tdir/fopen > /dev/null
2746         ln $DIR/$tdir/flink $DIR/$tdir/flink2
2747         rm -f $DIR/$tdir/funlink2
2748         mv -f $DIR/$tdir/frename $DIR/$tdir/frename2
2749
2750         for (( i=0; i < 2; i++ )) ; do
2751                 local open_new2=`stat -c %Y $DIR/$tdir/fopen`
2752                 local link_new2=`stat -c %Y $DIR/$tdir/flink`
2753                 local unlink_new2=`stat -c %Y $DIR/$tdir/funlink`
2754                 local rename_new2=`stat -c %Y $DIR/$tdir/frename2`
2755
2756                 [ $open_new2 -eq $open_new ] || error "open file reverses mtime"
2757                 [ $link_new2 -eq $link_new ] || error "link file reverses mtime"
2758                 [ $unlink_new2 -eq $unlink_new ] || error "unlink file reverses mtime"
2759                 [ $rename_new2 -eq $rename_new ] || error "rename file reverses mtime"
2760
2761                 cancel_lru_locks osc
2762                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2763         done
2764 }
2765 run_test 39b "mtime change on open, link, unlink, rename  ======"
2766
2767 # this should be set to past
2768 TEST_39_MTIME=`date -d "1 year ago" +%s`
2769
2770 # bug 11063
2771 test_39c() {
2772         touch $DIR1/$tfile
2773         sleep 2
2774         local mtime0=`stat -c %Y $DIR1/$tfile`
2775
2776         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
2777         local mtime1=`stat -c %Y $DIR1/$tfile`
2778         [ "$mtime1" = $TEST_39_MTIME ] || \
2779                 error "mtime is not set to past: $mtime1, should be $TEST_39_MTIME"
2780
2781         local d1=`date +%s`
2782         echo hello >> $DIR1/$tfile
2783         local d2=`date +%s`
2784         local mtime2=`stat -c %Y $DIR1/$tfile`
2785         [ "$mtime2" -ge "$d1" ] && [ "$mtime2" -le "$d2" ] || \
2786                 error "mtime is not updated on write: $d1 <= $mtime2 <= $d2"
2787
2788         mv $DIR1/$tfile $DIR1/$tfile-1
2789
2790         for (( i=0; i < 2; i++ )) ; do
2791                 local mtime3=`stat -c %Y $DIR1/$tfile-1`
2792                 [ "$mtime2" = "$mtime3" ] || \
2793                         error "mtime ($mtime2) changed (to $mtime3) on rename"
2794
2795                 cancel_lru_locks osc
2796                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2797         done
2798 }
2799 run_test 39c "mtime change on rename ==========================="
2800
2801 # bug 21114
2802 test_39d() {
2803         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2804         touch $DIR1/$tfile
2805
2806         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
2807
2808         for (( i=0; i < 2; i++ )) ; do
2809                 local mtime=`stat -c %Y $DIR1/$tfile`
2810                 [ $mtime = $TEST_39_MTIME ] || \
2811                         error "mtime($mtime) is not set to $TEST_39_MTIME"
2812
2813                 cancel_lru_locks osc
2814                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2815         done
2816 }
2817 run_test 39d "create, utime, stat =============================="
2818
2819 # bug 21114
2820 test_39e() {
2821         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2822         touch $DIR1/$tfile
2823         local mtime1=`stat -c %Y $DIR1/$tfile`
2824
2825         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
2826
2827         for (( i=0; i < 2; i++ )) ; do
2828                 local mtime2=`stat -c %Y $DIR1/$tfile`
2829                 [ $mtime2 = $TEST_39_MTIME ] || \
2830                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
2831
2832                 cancel_lru_locks osc
2833                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2834         done
2835 }
2836 run_test 39e "create, stat, utime, stat ========================"
2837
2838 # bug 21114
2839 test_39f() {
2840         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2841         touch $DIR1/$tfile
2842         mtime1=`stat -c %Y $DIR1/$tfile`
2843
2844         sleep 2
2845         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
2846
2847         for (( i=0; i < 2; i++ )) ; do
2848                 local mtime2=`stat -c %Y $DIR1/$tfile`
2849                 [ $mtime2 = $TEST_39_MTIME ] || \
2850                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
2851
2852                 cancel_lru_locks osc
2853                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2854         done
2855 }
2856 run_test 39f "create, stat, sleep, utime, stat ================="
2857
2858 # bug 11063
2859 test_39g() {
2860         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2861         echo hello >> $DIR1/$tfile
2862         local mtime1=`stat -c %Y $DIR1/$tfile`
2863
2864         sleep 2
2865         chmod o+r $DIR1/$tfile
2866
2867         for (( i=0; i < 2; i++ )) ; do
2868                 local mtime2=`stat -c %Y $DIR1/$tfile`
2869                 [ "$mtime1" = "$mtime2" ] || \
2870                         error "lost mtime: $mtime2, should be $mtime1"
2871
2872                 cancel_lru_locks osc
2873                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2874         done
2875 }
2876 run_test 39g "write, chmod, stat ==============================="
2877
2878 # bug 11063
2879 test_39h() {
2880         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2881         touch $DIR1/$tfile
2882         sleep 1
2883
2884         local d1=`date`
2885         echo hello >> $DIR1/$tfile
2886         local mtime1=`stat -c %Y $DIR1/$tfile`
2887
2888         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
2889         local d2=`date`
2890         if [ "$d1" != "$d2" ]; then
2891                 echo "write and touch not within one second"
2892         else
2893                 for (( i=0; i < 2; i++ )) ; do
2894                         local mtime2=`stat -c %Y $DIR1/$tfile`
2895                         [ "$mtime2" = $TEST_39_MTIME ] || \
2896                                 error "lost mtime: $mtime2, should be $TEST_39_MTIME"
2897
2898                         cancel_lru_locks osc
2899                         if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2900                 done
2901         fi
2902 }
2903 run_test 39h "write, utime within one second, stat ============="
2904
2905 test_39i() {
2906         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2907         touch $DIR1/$tfile
2908         sleep 1
2909
2910         echo hello >> $DIR1/$tfile
2911         local mtime1=`stat -c %Y $DIR1/$tfile`
2912
2913         mv $DIR1/$tfile $DIR1/$tfile-1
2914
2915         for (( i=0; i < 2; i++ )) ; do
2916                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
2917
2918                 [ "$mtime1" = "$mtime2" ] || \
2919                         error "lost mtime: $mtime2, should be $mtime1"
2920
2921                 cancel_lru_locks osc
2922                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2923         done
2924 }
2925 run_test 39i "write, rename, stat =============================="
2926
2927 test_39j() {
2928         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2929         start_full_debug_logging
2930         touch $DIR1/$tfile
2931         sleep 1
2932
2933         #define OBD_FAIL_OSC_DELAY_SETTIME       0x412
2934         lctl set_param fail_loc=0x80000412
2935         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c ||
2936                 error "multiop failed"
2937         local multipid=$!
2938         local mtime1=`stat -c %Y $DIR1/$tfile`
2939
2940         mv $DIR1/$tfile $DIR1/$tfile-1
2941
2942         kill -USR1 $multipid
2943         wait $multipid || error "multiop close failed"
2944
2945         for (( i=0; i < 2; i++ )) ; do
2946                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
2947                 [ "$mtime1" = "$mtime2" ] ||
2948                         error "mtime is lost on close: $mtime2, " \
2949                               "should be $mtime1"
2950
2951                 cancel_lru_locks osc
2952                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2953         done
2954         lctl set_param fail_loc=0
2955         stop_full_debug_logging
2956 }
2957 run_test 39j "write, rename, close, stat ======================="
2958
2959 test_39k() {
2960         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2961         touch $DIR1/$tfile
2962         sleep 1
2963
2964         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c || error "multiop failed"
2965         local multipid=$!
2966         local mtime1=`stat -c %Y $DIR1/$tfile`
2967
2968         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
2969
2970         kill -USR1 $multipid
2971         wait $multipid || error "multiop close failed"
2972
2973         for (( i=0; i < 2; i++ )) ; do
2974                 local mtime2=`stat -c %Y $DIR1/$tfile`
2975
2976                 [ "$mtime2" = $TEST_39_MTIME ] || \
2977                         error "mtime is lost on close: $mtime2, should be $TEST_39_MTIME"
2978
2979                 cancel_lru_locks osc
2980                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2981         done
2982 }
2983 run_test 39k "write, utime, close, stat ========================"
2984
2985 # this should be set to future
2986 TEST_39_ATIME=`date -d "1 year" +%s`
2987
2988 test_39l() {
2989         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2990         remote_mds_nodsh && skip "remote MDS with nodsh" && return
2991         local atime_diff=$(do_facet $SINGLEMDS \
2992                                 lctl get_param -n mdd.*MDT0000*.atime_diff)
2993         rm -rf $DIR/$tdir
2994         mkdir -p $DIR/$tdir
2995
2996         # test setting directory atime to future
2997         touch -a -d @$TEST_39_ATIME $DIR/$tdir
2998         local atime=$(stat -c %X $DIR/$tdir)
2999         [ "$atime" = $TEST_39_ATIME ] || \
3000                 error "atime is not set to future: $atime, $TEST_39_ATIME"
3001
3002         # test setting directory atime from future to now
3003         local d1=$(date +%s)
3004         ls $DIR/$tdir
3005         local d2=$(date +%s)
3006
3007         cancel_lru_locks mdc
3008         atime=$(stat -c %X $DIR/$tdir)
3009         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] || \
3010                 error "atime is not updated from future: $atime, $d1<atime<$d2"
3011
3012         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=2
3013         sleep 3
3014
3015         # test setting directory atime when now > dir atime + atime_diff
3016         d1=$(date +%s)
3017         ls $DIR/$tdir
3018         d2=$(date +%s)
3019         cancel_lru_locks mdc
3020         atime=$(stat -c %X $DIR/$tdir)
3021         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] || \
3022                 error "atime is not updated  : $atime, should be $d2"
3023
3024         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=60
3025         sleep 3
3026
3027         # test not setting directory atime when now < dir atime + atime_diff
3028         ls $DIR/$tdir
3029         cancel_lru_locks mdc
3030         atime=$(stat -c %X $DIR/$tdir)
3031         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] || \
3032                 error "atime is updated to $atime, should remain $d1<atime<$d2"
3033
3034         do_facet $SINGLEMDS \
3035                 lctl set_param -n mdd.*MDT0000*.atime_diff=$atime_diff
3036 }
3037 run_test 39l "directory atime update ==========================="
3038
3039 test_39m() {
3040         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3041         touch $DIR1/$tfile
3042         sleep 2
3043         local far_past_mtime=$(date -d "May 29 1953" +%s)
3044         local far_past_atime=$(date -d "Dec 17 1903" +%s)
3045
3046         touch -m -d @$far_past_mtime $DIR1/$tfile
3047         touch -a -d @$far_past_atime $DIR1/$tfile
3048
3049         for (( i=0; i < 2; i++ )) ; do
3050                 local timestamps=$(stat -c "%X %Y" $DIR1/$tfile)
3051                 [ "$timestamps" = "$far_past_atime $far_past_mtime" ] || \
3052                         error "atime or mtime set incorrectly"
3053
3054                 cancel_lru_locks osc
3055                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3056         done
3057 }
3058 run_test 39m "test atime and mtime before 1970"
3059
3060 test_40() {
3061         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
3062         $RUNAS $OPENFILE -f O_WRONLY:O_TRUNC $DIR/$tfile &&
3063                 error "openfile O_WRONLY:O_TRUNC $tfile failed"
3064         $CHECKSTAT -t file -s 4096 $DIR/$tfile ||
3065                 error "$tfile is not 4096 bytes in size"
3066 }
3067 run_test 40 "failed open(O_TRUNC) doesn't truncate ============="
3068
3069 test_41() {
3070         # bug 1553
3071         small_write $DIR/f41 18
3072 }
3073 run_test 41 "test small file write + fstat ====================="
3074
3075 count_ost_writes() {
3076         lctl get_param -n osc.*.stats |
3077             awk -vwrites=0 '/ost_write/ { writes += $2 } END { print writes; }'
3078 }
3079
3080 # decent default
3081 WRITEBACK_SAVE=500
3082 DIRTY_RATIO_SAVE=40
3083 MAX_DIRTY_RATIO=50
3084 BG_DIRTY_RATIO_SAVE=10
3085 MAX_BG_DIRTY_RATIO=25
3086
3087 start_writeback() {
3088         trap 0
3089         # in 2.6, restore /proc/sys/vm/dirty_writeback_centisecs,
3090         # dirty_ratio, dirty_background_ratio
3091         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
3092                 sysctl -w vm.dirty_writeback_centisecs=$WRITEBACK_SAVE
3093                 sysctl -w vm.dirty_background_ratio=$BG_DIRTY_RATIO_SAVE
3094                 sysctl -w vm.dirty_ratio=$DIRTY_RATIO_SAVE
3095         else
3096                 # if file not here, we are a 2.4 kernel
3097                 kill -CONT `pidof kupdated`
3098         fi
3099 }
3100
3101 stop_writeback() {
3102         # setup the trap first, so someone cannot exit the test at the
3103         # exact wrong time and mess up a machine
3104         trap start_writeback EXIT
3105         # in 2.6, save and 0 /proc/sys/vm/dirty_writeback_centisecs
3106         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
3107                 WRITEBACK_SAVE=`sysctl -n vm.dirty_writeback_centisecs`
3108                 sysctl -w vm.dirty_writeback_centisecs=0
3109                 sysctl -w vm.dirty_writeback_centisecs=0
3110                 # save and increase /proc/sys/vm/dirty_ratio
3111                 DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_ratio`
3112                 sysctl -w vm.dirty_ratio=$MAX_DIRTY_RATIO
3113                 # save and increase /proc/sys/vm/dirty_background_ratio
3114                 BG_DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_background_ratio`
3115                 sysctl -w vm.dirty_background_ratio=$MAX_BG_DIRTY_RATIO
3116         else
3117                 # if file not here, we are a 2.4 kernel
3118                 kill -STOP `pidof kupdated`
3119         fi
3120 }
3121
3122 # ensure that all stripes have some grant before we test client-side cache
3123 setup_test42() {
3124         for i in `seq -f $DIR/f42-%g 1 $OSTCOUNT`; do
3125                 dd if=/dev/zero of=$i bs=4k count=1
3126                 rm $i
3127         done
3128 }
3129
3130 # Tests 42* verify that our behaviour is correct WRT caching, file closure,
3131 # file truncation, and file removal.
3132 test_42a() {
3133         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3134         setup_test42
3135         cancel_lru_locks osc
3136         stop_writeback
3137         sync; sleep 1; sync # just to be safe
3138         BEFOREWRITES=`count_ost_writes`
3139         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur_grant_bytes | grep "[0-9]"
3140         dd if=/dev/zero of=$DIR/f42a bs=1024 count=100
3141         AFTERWRITES=`count_ost_writes`
3142         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
3143                 error "$BEFOREWRITES < $AFTERWRITES"
3144         start_writeback
3145 }
3146 run_test 42a "ensure that we don't flush on close =============="
3147
3148 test_42b() {
3149         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3150         setup_test42
3151         cancel_lru_locks osc
3152         stop_writeback
3153         sync
3154         dd if=/dev/zero of=$DIR/f42b bs=1024 count=100
3155         BEFOREWRITES=`count_ost_writes`
3156         $MUNLINK $DIR/f42b || error "$MUNLINK $DIR/f42b: $?"
3157         AFTERWRITES=`count_ost_writes`
3158         if [ $BEFOREWRITES -lt $AFTERWRITES ]; then
3159                 error "$BEFOREWRITES < $AFTERWRITES on unlink"
3160         fi
3161         BEFOREWRITES=`count_ost_writes`
3162         sync || error "sync: $?"
3163         AFTERWRITES=`count_ost_writes`
3164         if [ $BEFOREWRITES -lt $AFTERWRITES ]; then
3165                 error "$BEFOREWRITES < $AFTERWRITES on sync"
3166         fi
3167         dmesg | grep 'error from obd_brw_async' && error 'error writing back'
3168         start_writeback
3169         return 0
3170 }
3171 run_test 42b "test destroy of file with cached dirty data ======"
3172
3173 # if these tests just want to test the effect of truncation,
3174 # they have to be very careful.  consider:
3175 # - the first open gets a {0,EOF}PR lock
3176 # - the first write conflicts and gets a {0, count-1}PW
3177 # - the rest of the writes are under {count,EOF}PW
3178 # - the open for truncate tries to match a {0,EOF}PR
3179 #   for the filesize and cancels the PWs.
3180 # any number of fixes (don't get {0,EOF} on open, match
3181 # composite locks, do smarter file size management) fix
3182 # this, but for now we want these tests to verify that
3183 # the cancellation with truncate intent works, so we
3184 # start the file with a full-file pw lock to match against
3185 # until the truncate.
3186 trunc_test() {
3187         test=$1
3188         file=$DIR/$test
3189         offset=$2
3190         cancel_lru_locks osc
3191         stop_writeback
3192         # prime the file with 0,EOF PW to match
3193         touch $file
3194         $TRUNCATE $file 0
3195         sync; sync
3196         # now the real test..
3197         dd if=/dev/zero of=$file bs=1024 count=100
3198         BEFOREWRITES=`count_ost_writes`
3199         $TRUNCATE $file $offset
3200         cancel_lru_locks osc
3201         AFTERWRITES=`count_ost_writes`
3202         start_writeback
3203 }
3204
3205 test_42c() {
3206         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3207         trunc_test 42c 1024
3208         [ $BEFOREWRITES -eq $AFTERWRITES ] && \
3209             error "beforewrites $BEFOREWRITES == afterwrites $AFTERWRITES on truncate"
3210         rm $file
3211 }
3212 run_test 42c "test partial truncate of file with cached dirty data"
3213
3214 test_42d() {
3215         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3216         trunc_test 42d 0
3217         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
3218             error "beforewrites $BEFOREWRITES != afterwrites $AFTERWRITES on truncate"
3219         rm $file
3220 }
3221 run_test 42d "test complete truncate of file with cached dirty data"
3222
3223 test_42e() { # bug22074
3224         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3225         local TDIR=$DIR/${tdir}e
3226         local pagesz=$(page_size)
3227         local pages=16 # hardcoded 16 pages, don't change it.
3228         local files=$((OSTCOUNT * 500)) # hopefully 500 files on each OST
3229         local proc_osc0="osc.${FSNAME}-OST0000-osc-[^MDT]*"
3230         local max_dirty_mb
3231         local warmup_files
3232
3233         test_mkdir -p $DIR/${tdir}e
3234         $SETSTRIPE -c 1 $TDIR
3235         createmany -o $TDIR/f $files
3236
3237         max_dirty_mb=$($LCTL get_param -n $proc_osc0/max_dirty_mb)
3238
3239         # we assume that with $OSTCOUNT files, at least one of them will
3240         # be allocated on OST0.
3241         warmup_files=$((OSTCOUNT * max_dirty_mb))
3242         createmany -o $TDIR/w $warmup_files
3243
3244         # write a large amount of data into one file and sync, to get good
3245         # avail_grant number from OST.
3246         for ((i=0; i<$warmup_files; i++)); do
3247                 idx=$($GETSTRIPE -i $TDIR/w$i)
3248                 [ $idx -ne 0 ] && continue
3249                 dd if=/dev/zero of=$TDIR/w$i bs="$max_dirty_mb"M count=1
3250                 break
3251         done
3252         [ $i -gt $warmup_files ] && error "OST0 is still cold"
3253         sync
3254         $LCTL get_param $proc_osc0/cur_dirty_bytes
3255         $LCTL get_param $proc_osc0/cur_grant_bytes
3256
3257         # create as much dirty pages as we can while not to trigger the actual
3258         # RPCs directly. but depends on the env, VFS may trigger flush during this
3259         # period, hopefully we are good.
3260         for ((i=0; i<$warmup_files; i++)); do
3261                 idx=$($GETSTRIPE -i $TDIR/w$i)
3262                 [ $idx -ne 0 ] && continue
3263                 dd if=/dev/zero of=$TDIR/w$i bs=1M count=1 2>/dev/null
3264         done
3265         $LCTL get_param $proc_osc0/cur_dirty_bytes
3266         $LCTL get_param $proc_osc0/cur_grant_bytes
3267
3268         # perform the real test
3269         $LCTL set_param $proc_osc0/rpc_stats 0
3270         for ((;i<$files; i++)); do
3271                 [ $($GETSTRIPE -i $TDIR/f$i) -eq 0 ] || continue
3272                 dd if=/dev/zero of=$TDIR/f$i bs=$pagesz count=$pages 2>/dev/null
3273         done
3274         sync
3275         $LCTL get_param $proc_osc0/rpc_stats
3276
3277         local percent=0
3278         local have_ppr=false
3279         $LCTL get_param $proc_osc0/rpc_stats |
3280                 while read PPR RRPC RPCT RCUM BAR WRPC WPCT WCUM; do
3281                         # skip lines until we are at the RPC histogram data
3282                         [ "$PPR" == "pages" ] && have_ppr=true && continue
3283                         $have_ppr || continue
3284
3285                         # we only want the percent stat for < 16 pages
3286                         [ $(echo $PPR | tr -d ':') -ge $pages ] && break
3287
3288                         percent=$((percent + WPCT))
3289                         if [ $percent -gt 15 ]; then
3290                                 error "less than 16-pages write RPCs" \
3291                                       "$percent% > 15%"
3292                                 break
3293                         fi
3294                 done
3295         rm -rf $TDIR
3296 }
3297 run_test 42e "verify sub-RPC writes are not done synchronously"
3298
3299 test_43() {
3300         test_mkdir -p $DIR/$tdir
3301         cp -p /bin/ls $DIR/$tdir/$tfile
3302         $MULTIOP $DIR/$tdir/$tfile Ow_c &
3303         pid=$!
3304         # give multiop a chance to open
3305         sleep 1
3306
3307         $DIR/$tdir/$tfile && error || true
3308         kill -USR1 $pid
3309 }
3310 run_test 43 "execution of file opened for write should return -ETXTBSY"
3311
3312 test_43a() {
3313         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3314         test_mkdir -p $DIR/$tdir
3315         cp -p `which $MULTIOP` $DIR/$tdir/multiop ||
3316                         cp -p multiop $DIR/$tdir/multiop
3317         MULTIOP_PROG=$DIR/$tdir/multiop multiop_bg_pause $TMP/test43.junk O_c ||
3318                         return 1
3319         MULTIOP_PID=$!
3320         $MULTIOP $DIR/$tdir/multiop Oc && error "expected error, got success"
3321         kill -USR1 $MULTIOP_PID || return 2
3322         wait $MULTIOP_PID || return 3
3323         rm $TMP/test43.junk
3324 }
3325 run_test 43a "open(RDWR) of file being executed should return -ETXTBSY"
3326
3327 test_43b() {
3328         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3329         test_mkdir -p $DIR/$tdir
3330         cp -p `which $MULTIOP` $DIR/$tdir/multiop ||
3331                         cp -p multiop $DIR/$tdir/multiop
3332         MULTIOP_PROG=$DIR/$tdir/multiop multiop_bg_pause $TMP/test43.junk O_c ||
3333                         return 1
3334         MULTIOP_PID=$!
3335         $TRUNCATE $DIR/$tdir/multiop 0 && error "expected error, got success"
3336         kill -USR1 $MULTIOP_PID || return 2
3337         wait $MULTIOP_PID || return 3
3338         rm $TMP/test43.junk
3339 }
3340 run_test 43b "truncate of file being executed should return -ETXTBSY"
3341
3342 test_43c() {
3343         local testdir="$DIR/$tdir"
3344         test_mkdir -p $DIR/$tdir
3345         cp $SHELL $testdir/
3346         ( cd $(dirname $SHELL) && md5sum $(basename $SHELL) ) | \
3347                 ( cd $testdir && md5sum -c)
3348 }
3349 run_test 43c "md5sum of copy into lustre========================"
3350
3351 test_44() {
3352         [  "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
3353         dd if=/dev/zero of=$DIR/f1 bs=4k count=1 seek=1023
3354         dd if=$DIR/f1 bs=4k count=1 > /dev/null
3355 }
3356 run_test 44 "zero length read from a sparse stripe ============="
3357
3358 test_44a() {
3359     local nstripe=`$LCTL lov_getconfig $DIR | grep default_stripe_count: | \
3360                          awk '{print $2}'`
3361     [ -z "$nstripe" ] && skip "can't get stripe info" && return
3362     [ "$nstripe" -gt "$OSTCOUNT" ] && skip "Wrong default_stripe_count: $nstripe (OSTCOUNT: $OSTCOUNT)" && return
3363     local stride=`$LCTL lov_getconfig $DIR | grep default_stripe_size: | \
3364                       awk '{print $2}'`
3365     if [ $nstripe -eq 0 -o $nstripe -eq -1 ] ; then
3366         nstripe=`$LCTL lov_getconfig $DIR | grep obd_count: | awk '{print $2}'`
3367     fi
3368
3369     OFFSETS="0 $((stride/2)) $((stride-1))"
3370     for offset in $OFFSETS ; do
3371       for i in `seq 0 $((nstripe-1))`; do
3372         local GLOBALOFFSETS=""
3373         local size=$((((i + 2 * $nstripe )*$stride + $offset)))  # Bytes
3374         local myfn=$DIR/d44a-$size
3375         echo "--------writing $myfn at $size"
3376         ll_sparseness_write $myfn $size  || error "ll_sparseness_write"
3377         GLOBALOFFSETS="$GLOBALOFFSETS $size"
3378         ll_sparseness_verify $myfn $GLOBALOFFSETS \
3379                             || error "ll_sparseness_verify $GLOBALOFFSETS"
3380
3381         for j in `seq 0 $((nstripe-1))`; do
3382             size=$((((j + $nstripe )*$stride + $offset)))  # Bytes
3383             ll_sparseness_write $myfn $size || error "ll_sparseness_write"
3384             GLOBALOFFSETS="$GLOBALOFFSETS $size"
3385         done
3386         ll_sparseness_verify $myfn $GLOBALOFFSETS \
3387                             || error "ll_sparseness_verify $GLOBALOFFSETS"
3388         rm -f $myfn
3389       done
3390     done
3391 }
3392 run_test 44a "test sparse pwrite ==============================="
3393
3394 dirty_osc_total() {
3395         tot=0
3396         for d in `lctl get_param -n osc.*.cur_dirty_bytes`; do
3397                 tot=$(($tot + $d))
3398         done
3399         echo $tot
3400 }
3401 do_dirty_record() {
3402         before=`dirty_osc_total`
3403         echo executing "\"$*\""
3404         eval $*
3405         after=`dirty_osc_total`
3406         echo before $before, after $after
3407 }
3408 test_45() {
3409         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3410         f="$DIR/f45"
3411         # Obtain grants from OST if it supports it
3412         echo blah > ${f}_grant
3413         stop_writeback
3414         sync
3415         do_dirty_record "echo blah > $f"
3416         [ $before -eq $after ] && error "write wasn't cached"
3417         do_dirty_record "> $f"
3418         [ $before -gt $after ] || error "truncate didn't lower dirty count"
3419         do_dirty_record "echo blah > $f"
3420         [ $before -eq $after ] && error "write wasn't cached"
3421         do_dirty_record "sync"
3422         [ $before -gt $after ] || error "writeback didn't lower dirty count"
3423         do_dirty_record "echo blah > $f"
3424         [ $before -eq $after ] && error "write wasn't cached"
3425         do_dirty_record "cancel_lru_locks osc"
3426         [ $before -gt $after ] || error "lock cancellation didn't lower dirty count"
3427         start_writeback
3428 }
3429 run_test 45 "osc io page accounting ============================"
3430
3431 # in a 2 stripe file (lov.sh), page 1023 maps to page 511 in its object.  this
3432 # test tickles a bug where re-dirtying a page was failing to be mapped to the
3433 # objects offset and an assert hit when an rpc was built with 1023's mapped
3434 # offset 511 and 511's raw 511 offset. it also found general redirtying bugs.
3435 test_46() {
3436         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3437         f="$DIR/f46"
3438         stop_writeback
3439         sync
3440         dd if=/dev/zero of=$f bs=`page_size` seek=511 count=1
3441         sync
3442         dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=1023 count=1
3443         dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=511 count=1
3444         sync
3445         start_writeback
3446 }
3447 run_test 46 "dirtying a previously written page ================"
3448
3449 # test_47 is removed "Device nodes check" is moved to test_28
3450
3451 test_48a() { # bug 2399
3452         check_kernel_version 34 || return 0
3453         test_mkdir -p $DIR/$tdir
3454         cd $DIR/$tdir
3455         mv $DIR/$tdir $DIR/d48.new || error "move directory failed"
3456         test_mkdir $DIR/$tdir || error "recreate directory failed"
3457         touch foo || error "'touch foo' failed after recreating cwd"
3458         test_mkdir $DIR/$tdir/bar ||
3459                      error "'mkdir foo' failed after recreating cwd"
3460         if check_kernel_version 44; then
3461                 touch .foo || error "'touch .foo' failed after recreating cwd"
3462                 test_mkdir $DIR/$tdir/.bar ||
3463                               error "'mkdir .foo' failed after recreating cwd"
3464         fi
3465         ls . > /dev/null || error "'ls .' failed after recreating cwd"
3466         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
3467         cd . || error "'cd .' failed after recreating cwd"
3468         test_mkdir . && error "'mkdir .' worked after recreating cwd"
3469         rmdir . && error "'rmdir .' worked after recreating cwd"
3470         ln -s . baz || error "'ln -s .' failed after recreating cwd"
3471         cd .. || error "'cd ..' failed after recreating cwd"
3472 }
3473 run_test 48a "Access renamed working dir (should return errors)="
3474
3475 test_48b() { # bug 2399
3476         check_kernel_version 34 || return 0
3477         rm -rf $DIR/$tdir
3478         test_mkdir -p $DIR/$tdir
3479         cd $DIR/$tdir
3480         rmdir $DIR/$tdir || error "remove cwd $DIR/$tdir failed"
3481         touch foo && error "'touch foo' worked after removing cwd"
3482         test_mkdir $DIR/$tdir/foo &&
3483                      error "'mkdir foo' worked after removing cwd"
3484         if check_kernel_version 44; then
3485                 touch .foo && error "'touch .foo' worked after removing cwd"
3486                 test_mkdir $DIR/$tdir/.foo &&
3487                               error "'mkdir .foo' worked after removing cwd"
3488         fi
3489         ls . > /dev/null && error "'ls .' worked after removing cwd"
3490         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
3491         is_patchless || ( cd . && error "'cd .' worked after removing cwd" )
3492         test_mkdir $DIR/$tdir/. && error "'mkdir .' worked after removing cwd"
3493         rmdir . && error "'rmdir .' worked after removing cwd"
3494         ln -s . foo && error "'ln -s .' worked after removing cwd"
3495         cd .. || echo "'cd ..' failed after removing cwd `pwd`"  #bug 3517
3496 }
3497 run_test 48b "Access removed working dir (should return errors)="
3498
3499 test_48c() { # bug 2350
3500         check_kernel_version 36 || return 0
3501         #lctl set_param debug=-1
3502         #set -vx
3503         rm -rf $DIR/$tdir
3504         test_mkdir -p $DIR/$tdir/dir
3505         cd $DIR/$tdir/dir
3506         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
3507         $TRACE touch foo && error "touch foo worked after removing cwd"
3508         $TRACE test_mkdir foo && error "'mkdir foo' worked after removing cwd"
3509         if check_kernel_version 44; then
3510                 touch .foo && error "touch .foo worked after removing cwd"
3511                 test_mkdir .foo && error "mkdir .foo worked after removing cwd"
3512         fi
3513         $TRACE ls . && error "'ls .' worked after removing cwd"
3514         $TRACE ls .. || error "'ls ..' failed after removing cwd"
3515         is_patchless || ( $TRACE cd . &&
3516                         error "'cd .' worked after removing cwd" )
3517         $TRACE test_mkdir . && error "'mkdir .' worked after removing cwd"
3518         $TRACE rmdir . && error "'rmdir .' worked after removing cwd"
3519         $TRACE ln -s . foo && error "'ln -s .' worked after removing cwd"
3520         $TRACE cd .. || echo "'cd ..' failed after removing cwd `pwd`" #bug 3415
3521 }
3522 run_test 48c "Access removed working subdir (should return errors)"
3523
3524 test_48d() { # bug 2350
3525         check_kernel_version 36 || return 0
3526         #lctl set_param debug=-1
3527         #set -vx
3528         rm -rf $DIR/$tdir
3529         test_mkdir -p $DIR/$tdir/dir
3530         cd $DIR/$tdir/dir
3531         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
3532         $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
3533         $TRACE touch foo && error "'touch foo' worked after removing parent"
3534         $TRACE test_mkdir foo && error "mkdir foo worked after removing parent"
3535         if check_kernel_version 44; then
3536                 touch .foo && error "'touch .foo' worked after removing parent"
3537                 test_mkdir .foo &&
3538                               error "mkdir .foo worked after removing parent"
3539         fi
3540         $TRACE ls . && error "'ls .' worked after removing parent"
3541         $TRACE ls .. && error "'ls ..' worked after removing parent"
3542         is_patchless || ( $TRACE cd . &&
3543                         error "'cd .' worked after recreate parent" )
3544         $TRACE test_mkdir . && error "'mkdir .' worked after removing parent"
3545         $TRACE rmdir . && error "'rmdir .' worked after removing parent"
3546         $TRACE ln -s . foo && error "'ln -s .' worked after removing parent"
3547         is_patchless || ( $TRACE cd .. &&
3548                         error "'cd ..' worked after removing parent" || true )
3549 }
3550 run_test 48d "Access removed parent subdir (should return errors)"
3551
3552 test_48e() { # bug 4134
3553         check_kernel_version 41 || return 0
3554         #lctl set_param debug=-1
3555         #set -vx
3556         rm -rf $DIR/$tdir
3557         test_mkdir -p $DIR/$tdir/dir
3558         cd $DIR/$tdir/dir
3559         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
3560         $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
3561         $TRACE touch $DIR/$tdir || error "'touch $DIR/$tdir' failed"
3562         $TRACE chmod +x $DIR/$tdir || error "'chmod +x $DIR/$tdir' failed"
3563         # On a buggy kernel addition of "touch foo" after cd .. will
3564         # produce kernel oops in lookup_hash_it
3565         touch ../foo && error "'cd ..' worked after recreate parent"
3566         cd $DIR
3567         $TRACE rm $DIR/$tdir || error "rm '$DIR/$tdir' failed"
3568 }
3569 run_test 48e "Access to recreated parent subdir (should return errors)"
3570
3571 test_49() { # LU-1030
3572         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3573         # get ost1 size - lustre-OST0000
3574         ost1_size=$(do_facet ost1 lfs df |grep ${ost1_svc} |awk '{print $4}')
3575         # write 800M at maximum
3576         [ $ost1_size -gt 819200 ] && ost1_size=819200
3577
3578         lfs setstripe -c 1 -i 0 $DIR/$tfile
3579         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((ost1_size >> 2)) &
3580         local dd_pid=$!
3581
3582         # change max_pages_per_rpc while writing the file
3583         local osc1_mppc=osc.$(get_osc_import_name client ost1).max_pages_per_rpc
3584         local orig_mppc=`$LCTL get_param -n $osc1_mppc`
3585         # loop until dd process exits
3586         while ps ax -opid | grep -wq $dd_pid; do
3587                 $LCTL set_param $osc1_mppc=$((RANDOM % 256 + 1))
3588                 sleep $((RANDOM % 5 + 1))
3589         done
3590         # restore original max_pages_per_rpc
3591         $LCTL set_param $osc1_mppc=$orig_mppc
3592         rm $DIR/$tfile || error "rm $DIR/$tfile failed"
3593 }
3594 run_test 49 "Change max_pages_per_rpc won't break osc extent"
3595
3596 test_50() {
3597         # bug 1485
3598         test_mkdir $DIR/$tdir
3599         cd $DIR/$tdir
3600         ls /proc/$$/cwd || error "ls /proc/$$/cwd failed"
3601 }
3602 run_test 50 "special situations: /proc symlinks  ==============="
3603
3604 test_51a() {    # was test_51
3605         # bug 1516 - create an empty entry right after ".." then split dir
3606         test_mkdir -p $DIR/$tdir
3607         touch $DIR/$tdir/foo
3608         $MCREATE $DIR/$tdir/bar
3609         rm $DIR/$tdir/foo
3610         createmany -m $DIR/$tdir/longfile 201
3611         FNUM=202
3612         while [ $(ls -sd $DIR/$tdir | awk '{ print $1 }') -eq 4 ]; do
3613                 $MCREATE $DIR/$tdir/longfile$FNUM
3614                 FNUM=$(($FNUM + 1))
3615                 echo -n "+"
3616         done
3617         echo
3618         ls -l $DIR/$tdir > /dev/null || error "ls -l $DIR/$tdir failed"
3619 }
3620 run_test 51a "special situations: split htree with empty entry =="
3621
3622 export NUMTEST=70000
3623 test_51b() {
3624         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3625         local BASE=$DIR/$tdir
3626
3627         # cleanup the directory
3628         rm -fr $BASE
3629
3630         test_mkdir -p $BASE
3631
3632         local mdtidx=$(printf "%04x" $($LFS getstripe -M $BASE))
3633         local numfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.filesfree)
3634         [ $numfree -lt 21000 ] && skip "not enough free inodes ($numfree)" &&
3635                 return
3636
3637         [ $numfree -lt $NUMTEST ] && NUMTEST=$(($numfree - 50)) &&
3638                 echo "reduced count to $NUMTEST due to inodes"
3639
3640         # need to check free space for the directories as well
3641         local blkfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.kbytesavail)
3642         numfree=$((blkfree / 4))
3643         [ $numfree -lt $NUMTEST ] && NUMTEST=$(($numfree - 50)) &&
3644                 echo "reduced count to $NUMTEST due to blocks"
3645
3646         createmany -d $BASE/d $NUMTEST && echo $NUMTEST > $BASE/fnum ||
3647                 echo "failed" > $BASE/fnum
3648 }
3649 run_test 51b "exceed 64k subdirectory nlink limit"
3650
3651 test_51ba() { # LU-993
3652         local BASE=$DIR/$tdir
3653         # unlink all but 100 subdirectories, then check it still works
3654         local LEFT=100
3655         [ -f $BASE/fnum ] && local NUMPREV=$(cat $BASE/fnum) && rm $BASE/fnum
3656
3657         [ "$NUMPREV" != "failed" ] && NUMTEST=$NUMPREV
3658         local DELETE=$((NUMTEST - LEFT))
3659
3660         # continue on to run this test even if 51b didn't finish,
3661         # just to delete the many subdirectories created.
3662         [ ! -d "${BASE}/d1" ] && skip "test_51b() not run" && return 0
3663
3664         # for ldiskfs the nlink count should be 1, but this is OSD specific
3665         # and so this is listed for informational purposes only
3666         echo "nlink before: $(stat -c %h $BASE), created before: $NUMTEST"
3667         unlinkmany -d $BASE/d $DELETE
3668         RC=$?
3669
3670         if [ $RC -ne 0 ]; then
3671                 if [ "$NUMPREV" == "failed" ]; then
3672                         skip "previous setup failed"
3673                         return 0
3674                 else
3675                         error "unlink of first $DELETE subdirs failed"
3676                         return $RC
3677                 fi
3678         fi
3679
3680         echo "nlink between: $(stat -c %h $BASE)"
3681         # trim the first line of ls output
3682         local FOUND=$(($(ls -l ${BASE} | wc -l) - 1))
3683         [ $FOUND -ne $LEFT ] &&
3684                 error "can't find subdirs: found only $FOUND/$LEFT"
3685
3686         unlinkmany -d $BASE/d $DELETE $LEFT ||
3687                 error "unlink of second $LEFT subdirs failed"
3688         # regardless of whether the backing filesystem tracks nlink accurately
3689         # or not, the nlink count shouldn't be more than "." and ".." here
3690         local AFTER=$(stat -c %h $BASE)
3691         [ $AFTER -gt 2 ] && error "nlink after: $AFTER > 2" ||
3692                 echo "nlink after: $AFTER"
3693 }
3694 run_test 51ba "verify nlink for many subdirectory cleanup"
3695
3696 test_51d() {
3697         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3698         [  "$OSTCOUNT" -lt "3" ] && skip_env "skipping test with few OSTs" && return
3699         test_mkdir -p $DIR/$tdir
3700         createmany -o $DIR/$tdir/t- 1000
3701         $GETSTRIPE $DIR/$tdir > $TMP/files
3702         for N in `seq 0 $((OSTCOUNT - 1))`; do
3703             OBJS[$N]=`awk -vobjs=0 '($1 == '$N') { objs += 1 } END { print objs;}' $TMP/files`
3704             OBJS0[$N]=`grep -A 1 idx $TMP/files | awk -vobjs=0 '($1 == '$N') { objs += 1 } END { print objs;}'`
3705             log "OST$N has ${OBJS[$N]} objects, ${OBJS0[$N]} are index 0"
3706         done
3707         unlinkmany $DIR/$tdir/t- 1000
3708
3709         NLAST=0
3710         for N in `seq 1 $((OSTCOUNT - 1))`; do
3711             [ ${OBJS[$N]} -lt $((${OBJS[$NLAST]} - 20)) ] && \
3712                 error "OST $N has less objects vs OST $NLAST (${OBJS[$N]} < ${OBJS[$NLAST]}"
3713             [ ${OBJS[$N]} -gt $((${OBJS[$NLAST]} + 20)) ] && \
3714                 error "OST $N has less objects vs OST $NLAST (${OBJS[$N]} < ${OBJS[$NLAST]}"
3715
3716             [ ${OBJS0[$N]} -lt $((${OBJS0[$NLAST]} - 20)) ] && \
3717                 error "OST $N has less #0 objects vs OST $NLAST (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
3718             [ ${OBJS0[$N]} -gt $((${OBJS0[$NLAST]} + 20)) ] && \
3719                 error "OST $N has less #0 objects vs OST $NLAST (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
3720             NLAST=$N
3721         done
3722 }
3723 run_test 51d "check object distribution ===================="
3724
3725 test_52a() {
3726         [ -f $DIR/$tdir/foo ] && chattr -a $DIR/$tdir/foo
3727         test_mkdir -p $DIR/$tdir
3728         touch $DIR/$tdir/foo
3729         chattr +a $DIR/$tdir/foo || error "chattr +a failed"
3730         echo bar >> $DIR/$tdir/foo || error "append bar failed"
3731         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
3732         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
3733         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
3734                                         error "link worked"
3735         echo foo >> $DIR/$tdir/foo || error "append foo failed"
3736         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
3737         lsattr $DIR/$tdir/foo | egrep -q "^-+a[-e]+ $DIR/$tdir/foo" ||
3738                                                      error "lsattr"
3739         chattr -a $DIR/$tdir/foo || error "chattr -a failed"
3740         cp -r $DIR/$tdir /tmp/
3741         rm -fr $DIR/$tdir || error "cleanup rm failed"
3742 }
3743 run_test 52a "append-only flag test (should return errors) ====="
3744
3745 test_52b() {
3746         [ -f $DIR/$tdir/foo ] && chattr -i $DIR/$tdir/foo
3747         test_mkdir -p $DIR/$tdir
3748         touch $DIR/$tdir/foo
3749         chattr +i $DIR/$tdir/foo || error "chattr +i failed"
3750         cat test > $DIR/$tdir/foo && error "cat test worked"
3751         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
3752         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
3753         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
3754                                         error "link worked"
3755         echo foo >> $DIR/$tdir/foo && error "echo worked"
3756         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
3757         [ -f $DIR/$tdir/foo ] || error "$tdir/foo is not a file"
3758         [ -f $DIR/$tdir/foo_ren ] && error "$tdir/foo_ren is not a file"
3759         lsattr $DIR/$tdir/foo | egrep -q "^-+i[-e]+ $DIR/$tdir/foo" ||
3760                                                         error "lsattr"
3761         chattr -i $DIR/$tdir/foo || error "chattr failed"
3762
3763         rm -fr $DIR/$tdir || error "unable to remove $DIR/$tdir"
3764 }
3765 run_test 52b "immutable flag test (should return errors) ======="
3766
3767 test_53() {
3768         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3769         remote_mds_nodsh && skip "remote MDS with nodsh" && return
3770         remote_ost_nodsh && skip "remote OST with nodsh" && return
3771
3772         local param
3773         local param_seq
3774         local ostname
3775         local mds_last
3776         local mds_last_seq
3777         local ost_last
3778         local ost_last_seq
3779         local ost_last_id
3780         local ostnum
3781         local node
3782         local found=0
3783
3784         # only test MDT0000
3785         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS)
3786         for value in $(do_facet $SINGLEMDS lctl get_param osc.$mdtosc.prealloc_last_id) ; do
3787                 param=$(echo ${value[0]} | cut -d "=" -f1)
3788                 ostname=$(echo $param | cut -d "." -f2 | cut -d - -f 1-2)
3789                 param_seq=$(echo ${param} |
3790                             sed -e s/prealloc_last_id/prealloc_last_seq/g)
3791                 mds_last_seq=$(do_facet $SINGLEMDS lctl get_param -n $param_seq)
3792                 mds_last=$(do_facet $SINGLEMDS lctl get_param -n $param)
3793
3794                 ostnum=$(index_from_ostuuid ${ostname}_UUID)
3795                 node=$(facet_active_host ost$((ostnum+1)))
3796                 param="obdfilter.$ostname.last_id"
3797                 for ost_last in $(do_node $node lctl get_param -n $param) ; do
3798                         echo "$ostname.last_id=$ost_last ;MDS.last_id=$mds_last"
3799                         ost_last_id=$(echo $ost_last | awk -F':' '{print $2}' |
3800                                       sed -e "s/^0x//g")
3801                         ost_last_seq=$(echo $ost_last | awk -F':' '{print $1}')
3802                         if [ $ost_last_seq = $mds_last_seq ]; then
3803                                 if [ $ost_last_id != $mds_last ]; then
3804                                         error "$ost_last != $mds_last_id"
3805                                 else
3806                                         found=1
3807                                         break
3808                                 fi
3809                         fi
3810                 done
3811         done
3812         [ $found = 0 ] && error "can not match last_seq/last_id for $mdtosc"
3813         return 0
3814 }
3815 run_test 53 "verify that MDS and OSTs agree on pre-creation ===="
3816
3817 test_54a() {
3818         [ ! -f "$SOCKETSERVER" ] &&
3819                 skip_env "no socketserver, skipping" && return
3820         [ ! -f "$SOCKETCLIENT" ] &&
3821                 skip_env "no socketclient, skipping" && return
3822         $SOCKETSERVER $DIR/socket
3823         $SOCKETCLIENT $DIR/socket || error "$SOCKETCLIENT $DIR/socket failed"
3824         $MUNLINK $DIR/socket
3825 }
3826 run_test 54a "unix domain socket test =========================="
3827
3828 test_54b() {
3829         f="$DIR/f54b"
3830         mknod $f c 1 3
3831         chmod 0666 $f
3832         dd if=/dev/zero of=$f bs=$(page_size) count=1
3833 }
3834 run_test 54b "char device works in lustre ======================"
3835
3836 find_loop_dev() {
3837         [ -b /dev/loop/0 ] && LOOPBASE=/dev/loop/
3838         [ -b /dev/loop0 ] && LOOPBASE=/dev/loop
3839         [ -z "$LOOPBASE" ] && echo "/dev/loop/0 and /dev/loop0 gone?" && return
3840
3841         for i in $(seq 3 7); do
3842                 losetup $LOOPBASE$i > /dev/null 2>&1 && continue
3843                 LOOPDEV=$LOOPBASE$i
3844                 LOOPNUM=$i
3845                 break
3846         done
3847 }
3848
3849 test_54c() {
3850         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3851         tfile="$DIR/f54c"
3852         tdir="$DIR/d54c"
3853         loopdev="$DIR/loop54c"
3854
3855         find_loop_dev
3856         [ -z "$LOOPNUM" ] && echo "couldn't find empty loop device" && return
3857         mknod $loopdev b 7 $LOOPNUM
3858         echo "make a loop file system with $tfile on $loopdev ($LOOPNUM)..."
3859         dd if=/dev/zero of=$tfile bs=`page_size` seek=1024 count=1 > /dev/null
3860         losetup $loopdev $tfile || error "can't set up $loopdev for $tfile"
3861         mkfs.ext2 $loopdev || error "mke2fs on $loopdev"
3862         test_mkdir -p $tdir
3863         mount -t ext2 $loopdev $tdir || error "error mounting $loopdev on $tdir"
3864         dd if=/dev/zero of=$tdir/tmp bs=`page_size` count=30 || error "dd write"
3865         df $tdir
3866         dd if=$tdir/tmp of=/dev/zero bs=`page_size` count=30 || error "dd read"
3867         $UMOUNT $tdir
3868         losetup -d $loopdev
3869         rm $loopdev
3870 }
3871 run_test 54c "block device works in lustre ====================="
3872
3873 test_54d() {
3874         f="$DIR/f54d"
3875         string="aaaaaa"
3876         mknod $f p
3877         [ "$string" = $(echo $string > $f | cat $f) ] || error "$f != $string"
3878 }
3879 run_test 54d "fifo device works in lustre ======================"
3880
3881 test_54e() {
3882         check_kernel_version 46 || return 0
3883         f="$DIR/f54e"
3884         string="aaaaaa"
3885         cp -aL /dev/console $f
3886         echo $string > $f || error "echo $string to $f failed"
3887 }
3888 run_test 54e "console/tty device works in lustre ======================"
3889
3890 #The test_55 used to be iopen test and it was removed by bz#24037.
3891 #run_test 55 "check iopen_connect_dentry() ======================"
3892
3893 test_56a() {    # was test_56
3894         rm -rf $DIR/$tdir
3895         $SETSTRIPE -d $DIR
3896         test_mkdir $DIR/$tdir
3897         test_mkdir $DIR/$tdir/dir
3898         NUMFILES=3
3899         NUMFILESx2=$(($NUMFILES * 2))
3900         for i in `seq 1 $NUMFILES` ; do
3901                 touch $DIR/$tdir/file$i
3902                 touch $DIR/$tdir/dir/file$i
3903         done
3904
3905         # test lfs getstripe with --recursive
3906         FILENUM=`$GETSTRIPE --recursive $DIR/$tdir | grep -c obdidx`
3907         [ $FILENUM -eq $NUMFILESx2 ] ||
3908                 error "$GETSTRIPE --recursive: found $FILENUM, not $NUMFILESx2"
3909         FILENUM=`$GETSTRIPE $DIR/$tdir | grep -c obdidx`
3910         [ $FILENUM -eq $NUMFILES ] ||
3911                 error "$GETSTRIPE $DIR/$tdir: found $FILENUM, not $NUMFILES"
3912         echo "$GETSTRIPE --recursive passed."
3913
3914         # test lfs getstripe with file instead of dir
3915         FILENUM=`$GETSTRIPE $DIR/$tdir/file1 | grep -c obdidx`
3916         [ $FILENUM  -eq 1 ] || error \
3917                  "$GETSTRIPE $DIR/$tdir/file1: found $FILENUM, not 1"
3918         echo "$GETSTRIPE file1 passed."
3919
3920         #test lfs getstripe with --verbose
3921         [ `$GETSTRIPE --verbose $DIR/$tdir |
3922                         grep -c lmm_magic` -eq $NUMFILES ] ||
3923                 error "$GETSTRIPE --verbose $DIR/$tdir: want $NUMFILES"
3924         [ `$GETSTRIPE $DIR/$tdir | grep -c lmm_magic` -eq 0 ] ||
3925             error "$GETSTRIPE $DIR/$tdir: showed lmm_magic"
3926         echo "$GETSTRIPE --verbose passed."
3927
3928         #test lfs getstripe with --obd
3929         $GETSTRIPE --obd wrong_uuid $DIR/$tdir 2>&1 |
3930                                         grep -q "unknown obduuid" ||
3931                 error "$GETSTRIPE --obd wrong_uuid should return error message"
3932
3933         [  "$OSTCOUNT" -lt 2 ] &&
3934                 skip_env "skipping other $GETSTRIPE --obd test" && return
3935
3936         OSTIDX=1
3937         OBDUUID=$(ostuuid_from_index $OSTIDX)
3938         FILENUM=`$GETSTRIPE -ir $DIR/$tdir | grep -x $OSTIDX | wc -l`
3939         FOUND=`$GETSTRIPE -r --obd $OBDUUID $DIR/$tdir | grep obdidx | wc -l`
3940         [ $FOUND -eq $FILENUM ] ||
3941                 error "$GETSTRIPE --obd wrong: found $FOUND, expected $FILENUM"
3942         [ `$GETSTRIPE -r -v --obd $OBDUUID $DIR/$tdir |
3943                 sed '/^[         ]*'${OSTIDX}'[  ]/d' |
3944                 sed -n '/^[      ]*[0-9][0-9]*[  ]/p' | wc -l` -eq 0 ] ||
3945                 error "$GETSTRIPE --obd: should not show file on other obd"
3946         echo "$GETSTRIPE --obd passed"
3947 }
3948 run_test 56a "check $GETSTRIPE"
3949
3950 NUMFILES=3
3951 NUMDIRS=3
3952 setup_56() {
3953         local LOCAL_NUMFILES="$1"
3954         local LOCAL_NUMDIRS="$2"
3955         local MKDIR_PARAMS="$3"
3956
3957         if [ ! -d "$TDIR" ] ; then
3958                 test_mkdir -p $TDIR
3959                 [ "$MKDIR_PARAMS" ] && $SETSTRIPE $MKDIR_PARAMS $TDIR
3960                 for i in `seq 1 $LOCAL_NUMFILES` ; do
3961                         touch $TDIR/file$i
3962                 done
3963                 for i in `seq 1 $LOCAL_NUMDIRS` ; do
3964                         test_mkdir $TDIR/dir$i
3965                         for j in `seq 1 $LOCAL_NUMFILES` ; do
3966                                 touch $TDIR/dir$i/file$j
3967                         done
3968                 done
3969         fi
3970 }
3971
3972 setup_56_special() {
3973         LOCAL_NUMFILES=$1
3974         LOCAL_NUMDIRS=$2
3975         setup_56 $1 $2
3976         if [ ! -e "$TDIR/loop1b" ] ; then
3977                 for i in `seq 1 $LOCAL_NUMFILES` ; do
3978                         mknod $TDIR/loop${i}b b 7 $i
3979                         mknod $TDIR/null${i}c c 1 3
3980                         ln -s $TDIR/file1 $TDIR/link${i}l
3981                 done
3982                 for i in `seq 1 $LOCAL_NUMDIRS` ; do
3983                         mknod $TDIR/dir$i/loop${i}b b 7 $i
3984                         mknod $TDIR/dir$i/null${i}c c 1 3
3985                         ln -s $TDIR/dir$i/file1 $TDIR/dir$i/link${i}l
3986                 done
3987         fi
3988 }
3989
3990 test_56g() {
3991         $SETSTRIPE -d $DIR
3992
3993         TDIR=$DIR/${tdir}g
3994         setup_56 $NUMFILES $NUMDIRS
3995
3996         EXPECTED=$(($NUMDIRS + 2))
3997         # test lfs find with -name
3998         for i in $(seq 1 $NUMFILES) ; do
3999                 NUMS=$($LFIND -name "*$i" $TDIR | wc -l)
4000                 [ $NUMS -eq $EXPECTED ] ||
4001                         error "lfs find -name \"*$i\" $TDIR wrong: "\
4002                               "found $NUMS, expected $EXPECTED"
4003         done
4004 }
4005 run_test 56g "check lfs find -name ============================="
4006
4007 test_56h() {
4008         $SETSTRIPE -d $DIR
4009
4010         TDIR=$DIR/${tdir}g
4011         setup_56 $NUMFILES $NUMDIRS
4012
4013         EXPECTED=$(((NUMDIRS + 1) * (NUMFILES - 1) + NUMFILES))
4014         # test lfs find with ! -name
4015         for i in $(seq 1 $NUMFILES) ; do
4016                 NUMS=$($LFIND ! -name "*$i" $TDIR | wc -l)
4017                 [ $NUMS -eq $EXPECTED ] ||
4018                         error "lfs find ! -name \"*$i\" $TDIR wrong: "\
4019                               "found $NUMS, expected $EXPECTED"
4020         done
4021 }
4022 run_test 56h "check lfs find ! -name ============================="
4023
4024 test_56i() {
4025        tdir=${tdir}i
4026        test_mkdir -p $DIR/$tdir
4027        UUID=$(ostuuid_from_index 0 $DIR/$tdir)
4028        CMD="$LFIND -ost $UUID $DIR/$tdir"
4029        OUT=$($CMD)
4030        [ -z "$OUT" ] || error "\"$CMD\" returned directory '$OUT'"
4031 }
4032 run_test 56i "check 'lfs find -ost UUID' skips directories ======="
4033
4034 test_56j() {
4035         TDIR=$DIR/${tdir}g
4036         setup_56_special $NUMFILES $NUMDIRS
4037
4038         EXPECTED=$((NUMDIRS + 1))
4039         CMD="$LFIND -type d $TDIR"
4040         NUMS=$($CMD | wc -l)
4041         [ $NUMS -eq $EXPECTED ] ||
4042                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4043 }
4044 run_test 56j "check lfs find -type d ============================="
4045
4046 test_56k() {
4047         TDIR=$DIR/${tdir}g
4048         setup_56_special $NUMFILES $NUMDIRS
4049
4050         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4051         CMD="$LFIND -type f $TDIR"
4052         NUMS=$($CMD | wc -l)
4053         [ $NUMS -eq $EXPECTED ] ||
4054                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4055 }
4056 run_test 56k "check lfs find -type f ============================="
4057
4058 test_56l() {
4059         TDIR=$DIR/${tdir}g
4060         setup_56_special $NUMFILES $NUMDIRS
4061
4062         EXPECTED=$((NUMDIRS + NUMFILES))
4063         CMD="$LFIND -type b $TDIR"
4064         NUMS=$($CMD | wc -l)
4065         [ $NUMS -eq $EXPECTED ] ||
4066                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4067 }
4068 run_test 56l "check lfs find -type b ============================="
4069
4070 test_56m() {
4071         TDIR=$DIR/${tdir}g
4072         setup_56_special $NUMFILES $NUMDIRS
4073
4074         EXPECTED=$((NUMDIRS + NUMFILES))
4075         CMD="$LFIND -type c $TDIR"
4076         NUMS=$($CMD | wc -l)
4077         [ $NUMS -eq $EXPECTED ] ||
4078                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4079 }
4080 run_test 56m "check lfs find -type c ============================="
4081
4082 test_56n() {
4083         TDIR=$DIR/${tdir}g
4084         setup_56_special $NUMFILES $NUMDIRS
4085
4086         EXPECTED=$((NUMDIRS + NUMFILES))
4087         CMD="$LFIND -type l $TDIR"
4088         NUMS=$($CMD | wc -l)
4089         [ $NUMS -eq $EXPECTED ] ||
4090                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4091 }
4092 run_test 56n "check lfs find -type l ============================="
4093
4094 test_56o() {
4095         TDIR=$DIR/${tdir}o
4096         setup_56 $NUMFILES $NUMDIRS
4097
4098         utime $TDIR/file1 > /dev/null || error "utime (1)"
4099         utime $TDIR/file2 > /dev/null || error "utime (2)"
4100         utime $TDIR/dir1 > /dev/null || error "utime (3)"
4101         utime $TDIR/dir2 > /dev/null || error "utime (4)"
4102         utime $TDIR/dir1/file1 > /dev/null || error "utime (5)"
4103         dd if=/dev/zero count=1 >> $TDIR/dir1/file1 && sync
4104
4105         EXPECTED=4
4106         NUMS=`$LFIND -mtime +0 $TDIR | wc -l`
4107         [ $NUMS -eq $EXPECTED ] || \
4108                 error "lfs find -mtime +0 $TDIR wrong: found $NUMS, expected $EXPECTED"
4109
4110         EXPECTED=12
4111         CMD="$LFIND -mtime 0 $TDIR"
4112         NUMS=$($CMD | wc -l)
4113         [ $NUMS -eq $EXPECTED ] ||
4114                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4115 }
4116 run_test 56o "check lfs find -mtime for old files =========================="
4117
4118 test_56p() {
4119         [ $RUNAS_ID -eq $UID ] &&
4120                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
4121
4122         TDIR=$DIR/${tdir}p
4123         setup_56 $NUMFILES $NUMDIRS
4124
4125         chown $RUNAS_ID $TDIR/file* || error "chown $DIR/${tdir}g/file$i failed"
4126         EXPECTED=$NUMFILES
4127         CMD="$LFIND -uid $RUNAS_ID $TDIR"
4128         NUMS=$($CMD | wc -l)
4129         [ $NUMS -eq $EXPECTED ] || \
4130                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4131
4132         EXPECTED=$(((NUMFILES + 1) * NUMDIRS + 1))
4133         CMD="$LFIND ! -uid $RUNAS_ID $TDIR"
4134         NUMS=$($CMD | wc -l)
4135         [ $NUMS -eq $EXPECTED ] || \
4136                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4137 }
4138 run_test 56p "check lfs find -uid and ! -uid ==============================="
4139
4140 test_56q() {
4141         [ $RUNAS_ID -eq $UID ] &&
4142                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
4143
4144         TDIR=$DIR/${tdir}q
4145         setup_56 $NUMFILES $NUMDIRS
4146
4147         chgrp $RUNAS_GID $TDIR/file* || error "chown $TDIR/file$i failed"
4148
4149         EXPECTED=$NUMFILES
4150         CMD="$LFIND -gid $RUNAS_GID $TDIR"
4151         NUMS=$($CMD | wc -l)
4152         [ $NUMS -eq $EXPECTED ] ||
4153                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4154
4155         EXPECTED=$(( ($NUMFILES+1) * $NUMDIRS + 1))
4156         CMD="$LFIND ! -gid $RUNAS_GID $TDIR"
4157         NUMS=$($CMD | wc -l)
4158         [ $NUMS -eq $EXPECTED ] ||
4159                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4160 }
4161 run_test 56q "check lfs find -gid and ! -gid ==============================="
4162
4163 test_56r() {
4164         TDIR=$DIR/${tdir}r
4165         setup_56 $NUMFILES $NUMDIRS
4166
4167         EXPECTED=12
4168         CMD="$LFIND -size 0 -type f $TDIR"
4169         NUMS=$($CMD | wc -l)
4170         [ $NUMS -eq $EXPECTED ] ||
4171                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4172         EXPECTED=0
4173         CMD="$LFIND ! -size 0 -type f $TDIR"
4174         NUMS=$($CMD | wc -l)
4175         [ $NUMS -eq $EXPECTED ] ||
4176                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4177         echo "test" > $TDIR/$tfile
4178         echo "test2" > $TDIR/$tfile.2 && sync
4179         EXPECTED=1
4180         CMD="$LFIND -size 5 -type f $TDIR"
4181         NUMS=$($CMD | wc -l)
4182         [ $NUMS -eq $EXPECTED ] ||
4183                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4184         EXPECTED=1
4185         CMD="$LFIND -size +5 -type f $TDIR"
4186         NUMS=$($CMD | wc -l)
4187         [ $NUMS -eq $EXPECTED ] ||
4188                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4189         EXPECTED=2
4190         CMD="$LFIND -size +0 -type f $TDIR"
4191         NUMS=$($CMD | wc -l)
4192         [ $NUMS -eq $EXPECTED ] ||
4193                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4194         EXPECTED=2
4195         CMD="$LFIND ! -size -5 -type f $TDIR"
4196         NUMS=$($CMD | wc -l)
4197         [ $NUMS -eq $EXPECTED ] ||
4198                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4199         EXPECTED=12
4200         CMD="$LFIND -size -5 -type f $TDIR"
4201         NUMS=$($CMD | wc -l)
4202         [ $NUMS -eq $EXPECTED ] ||
4203                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4204 }
4205 run_test 56r "check lfs find -size works =========================="
4206
4207 test_56s() { # LU-611
4208         TDIR=$DIR/${tdir}s
4209         setup_56 $NUMFILES $NUMDIRS "-c $OSTCOUNT"
4210
4211         if [ $OSTCOUNT -gt 1 ]; then
4212                 $SETSTRIPE -c 1 $TDIR/$tfile.{0,1,2,3}
4213                 ONESTRIPE=4
4214                 EXTRA=4
4215         else
4216                 ONESTRIPE=$(((NUMDIRS + 1) * NUMFILES))
4217                 EXTRA=0
4218         fi
4219
4220         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4221         CMD="$LFIND -stripe-count $OSTCOUNT -type f $TDIR"
4222         NUMS=$($CMD | wc -l)
4223         [ $NUMS -eq $EXPECTED ] ||
4224                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4225
4226         EXPECTED=$(((NUMDIRS + 1) * NUMFILES + EXTRA))
4227         CMD="$LFIND -stripe-count +0 -type f $TDIR"
4228         NUMS=$($CMD | wc -l)
4229         [ $NUMS -eq $EXPECTED ] ||
4230                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4231
4232         EXPECTED=$ONESTRIPE
4233         CMD="$LFIND -stripe-count 1 -type f $TDIR"
4234         NUMS=$($CMD | wc -l)
4235         [ $NUMS -eq $EXPECTED ] ||
4236                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4237
4238         CMD="$LFIND -stripe-count -2 -type f $TDIR"
4239         NUMS=$($CMD | wc -l)
4240         [ $NUMS -eq $EXPECTED ] ||
4241                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4242
4243         EXPECTED=0
4244         CMD="$LFIND -stripe-count $((OSTCOUNT + 1)) -type f $TDIR"
4245         NUMS=$($CMD | wc -l)
4246         [ $NUMS -eq $EXPECTED ] ||
4247                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4248 }
4249 run_test 56s "check lfs find -stripe-count works"
4250
4251 test_56t() { # LU-611
4252         TDIR=$DIR/${tdir}t
4253         setup_56 $NUMFILES $NUMDIRS "-s 512k"
4254
4255         $SETSTRIPE -S 256k $TDIR/$tfile.{0,1,2,3}
4256
4257         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4258         CMD="$LFIND -stripe-size 512k -type f $TDIR"
4259         NUMS=$($CMD | wc -l)
4260         [ $NUMS -eq $EXPECTED ] ||
4261                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4262
4263         CMD="$LFIND -stripe-size +320k -type f $TDIR"
4264         NUMS=$($CMD | wc -l)
4265         [ $NUMS -eq $EXPECTED ] ||
4266                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4267
4268         EXPECTED=$(((NUMDIRS + 1) * NUMFILES + 4))
4269         CMD="$LFIND -stripe-size +200k -type f $TDIR"
4270         NUMS=$($CMD | wc -l)
4271         [ $NUMS -eq $EXPECTED ] ||
4272                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4273
4274         CMD="$LFIND -stripe-size -640k -type f $TDIR"
4275         NUMS=$($CMD | wc -l)
4276         [ $NUMS -eq $EXPECTED ] ||
4277                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4278
4279         EXPECTED=4
4280         CMD="$LFIND -stripe-size 256k -type f $TDIR"
4281         NUMS=$($CMD | wc -l)
4282         [ $NUMS -eq $EXPECTED ] ||
4283                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4284
4285         CMD="$LFIND -stripe-size -320k -type f $TDIR"
4286         NUMS=$($CMD | wc -l)
4287         [ $NUMS -eq $EXPECTED ] ||
4288                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4289
4290         EXPECTED=0
4291         CMD="$LFIND -stripe-size 1024k -type f $TDIR"
4292         NUMS=$($CMD | wc -l)
4293         [ $NUMS -eq $EXPECTED ] ||
4294                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4295 }
4296 run_test 56t "check lfs find -stripe-size works"
4297
4298 test_56u() { # LU-611
4299         TDIR=$DIR/${tdir}u
4300         setup_56 $NUMFILES $NUMDIRS "-i 0"
4301
4302         if [ $OSTCOUNT -gt 1 ]; then
4303                 $SETSTRIPE -i 1 $TDIR/$tfile.{0,1,2,3}
4304                 ONESTRIPE=4
4305         else
4306                 ONESTRIPE=0
4307         fi
4308
4309         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4310         CMD="$LFIND -stripe-index 0 -type f $TDIR"
4311         NUMS=$($CMD | wc -l)
4312         [ $NUMS -eq $EXPECTED ] ||
4313                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4314
4315         EXPECTED=$ONESTRIPE
4316         CMD="$LFIND -stripe-index 1 -type f $TDIR"
4317         NUMS=$($CMD | wc -l)
4318         [ $NUMS -eq $EXPECTED ] ||
4319                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4320
4321         CMD="$LFIND ! -stripe-index 0 -type f $TDIR"
4322         NUMS=$($CMD | wc -l)
4323         [ $NUMS -eq $EXPECTED ] ||
4324                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4325
4326         EXPECTED=0
4327         # This should produce an error and not return any files
4328         CMD="$LFIND -stripe-index $OSTCOUNT -type f $TDIR"
4329         NUMS=$($CMD 2>/dev/null | wc -l)
4330         [ $NUMS -eq $EXPECTED ] ||
4331                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4332
4333         if [ $OSTCOUNT -gt 1 ]; then
4334                 EXPECTED=$(((NUMDIRS + 1) * NUMFILES + ONESTRIPE))
4335                 CMD="$LFIND -stripe-index 0,1 -type f $TDIR"
4336                 NUMS=$($CMD | wc -l)
4337                 [ $NUMS -eq $EXPECTED ] ||
4338                         error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4339         fi
4340 }
4341 run_test 56u "check lfs find -stripe-index works"
4342
4343 test_56v() {
4344     local MDT_IDX=0
4345
4346     TDIR=$DIR/${tdir}v
4347     rm -rf $TDIR
4348     setup_56 $NUMFILES $NUMDIRS
4349
4350     UUID=$(mdtuuid_from_index $MDT_IDX $TDIR)
4351     [ -z "$UUID" ] && error "mdtuuid_from_index cannot find MDT index $MDT_IDX"
4352
4353     for file in $($LFIND -mdt $UUID $TDIR); do
4354         file_mdt_idx=$($GETSTRIPE -M $file)
4355         [ $file_mdt_idx -eq $MDT_IDX ] ||
4356             error "'lfind -mdt $UUID' != 'getstripe -M' ($file_mdt_idx)"
4357     done
4358 }
4359 run_test 56v "check 'lfs find -mdt match with lfs getstripe -M' ======="
4360
4361 # Get and check the actual stripe count of one file.
4362 # Usage: check_stripe_count <file> <expected_stripe_count>
4363 check_stripe_count() {
4364     local file=$1
4365     local expected=$2
4366     local actual
4367
4368     [[ -z "$file" || -z "$expected" ]] &&
4369         error "check_stripe_count: invalid argument!"
4370
4371     local cmd="$GETSTRIPE -c $file"
4372     actual=$($cmd) || error "$cmd failed"
4373     actual=${actual%% *}
4374
4375     if [[ $actual -ne $expected ]]; then
4376         [[ $expected -eq -1 ]] ||
4377             error "$cmd wrong: found $actual, expected $expected"
4378         [[ $actual -eq $OSTCOUNT ]] ||
4379             error "$cmd wrong: found $actual, expected $OSTCOUNT"
4380     fi
4381 }
4382
4383 test_56w() {
4384         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4385         TDIR=$DIR/${tdir}w
4386
4387     rm -rf $TDIR || error "remove $TDIR failed"
4388     setup_56 $NUMFILES $NUMDIRS "-c $OSTCOUNT"
4389
4390     local stripe_size
4391     stripe_size=$($GETSTRIPE -S -d $TDIR) ||
4392         error "$GETSTRIPE -S -d $TDIR failed"
4393     stripe_size=${stripe_size%% *}
4394
4395     local file_size=$((stripe_size * OSTCOUNT))
4396     local file_num=$((NUMDIRS * NUMFILES + NUMFILES))
4397     local required_space=$((file_num * file_size))
4398     local free_space=$($LCTL get_param -n lov.$LOVNAME.kbytesavail)
4399     [[ $free_space -le $((required_space / 1024)) ]] &&
4400         skip_env "need at least $required_space bytes free space," \
4401                  "have $free_space kbytes" && return
4402
4403     local dd_bs=65536
4404     local dd_count=$((file_size / dd_bs))
4405
4406     # write data into the files
4407     local i
4408     local j
4409     local file
4410     for i in $(seq 1 $NUMFILES); do
4411         file=$TDIR/file$i
4412         yes | dd bs=$dd_bs count=$dd_count of=$file >/dev/null 2>&1 ||
4413             error "write data into $file failed"
4414     done
4415     for i in $(seq 1 $NUMDIRS); do
4416         for j in $(seq 1 $NUMFILES); do
4417             file=$TDIR/dir$i/file$j
4418             yes | dd bs=$dd_bs count=$dd_count of=$file \
4419                 >/dev/null 2>&1 ||
4420                 error "write data into $file failed"
4421         done
4422     done
4423
4424     local expected=-1
4425     [[ $OSTCOUNT -gt 1 ]] && expected=$((OSTCOUNT - 1))
4426
4427     # lfs_migrate file
4428     local cmd="$LFS_MIGRATE -y -c $expected $TDIR/file1"
4429     echo "$cmd"
4430     eval $cmd || error "$cmd failed"
4431
4432     check_stripe_count $TDIR/file1 $expected
4433
4434     # lfs_migrate dir
4435     cmd="$LFS_MIGRATE -y -c $expected $TDIR/dir1"
4436     echo "$cmd"
4437     eval $cmd || error "$cmd failed"
4438
4439     for j in $(seq 1 $NUMFILES); do
4440         check_stripe_count $TDIR/dir1/file$j $expected
4441     done
4442
4443     # lfs_migrate works with lfs find
4444     cmd="$LFIND -stripe_count $OSTCOUNT -type f $TDIR |
4445          $LFS_MIGRATE -y -c $expected"
4446     echo "$cmd"
4447     eval $cmd || error "$cmd failed"
4448
4449     for i in $(seq 2 $NUMFILES); do
4450         check_stripe_count $TDIR/file$i $expected
4451     done
4452     for i in $(seq 2 $NUMDIRS); do
4453         for j in $(seq 1 $NUMFILES); do
4454             check_stripe_count $TDIR/dir$i/file$j $expected
4455         done
4456     done
4457 }
4458 run_test 56w "check lfs_migrate -c stripe_count works"
4459
4460 test_56x() {
4461         check_swap_layouts_support && return 0
4462         [ "$OSTCOUNT" -lt "2" ] &&
4463                 skip_env "need 2 OST, skipping test" && return
4464
4465         local dir0=$DIR/$tdir/$testnum
4466         mkdir -p $dir0 || error "creating dir $dir0"
4467
4468         local ref1=/etc/passwd
4469         local file1=$dir0/file1
4470
4471         $SETSTRIPE -c 2 $file1
4472         cp $ref1 $file1
4473         $LFS migrate -c 1 $file1 || error "migrate failed rc = $?"
4474         stripe=$($GETSTRIPE -c $file1)
4475         [[ $stripe == 1 ]] || error "stripe of $file1 is $stripe != 1"
4476         cmp $file1 $ref1 || error "content mismatch $file1 differs from $ref1"
4477
4478         # clean up
4479         rm -f $file1
4480 }
4481 run_test 56x "lfs migration support"
4482
4483 test_57a() {
4484         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4485         # note test will not do anything if MDS is not local
4486         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
4487                 skip "Only applicable to ldiskfs-based MDTs"
4488                 return
4489         fi
4490
4491         remote_mds_nodsh && skip "remote MDS with nodsh" && return
4492         local MNTDEV="osd*.*MDT*.mntdev"
4493         DEV=$(do_facet $SINGLEMDS lctl get_param -n $MNTDEV)
4494         [ -z "$DEV" ] && error "can't access $MNTDEV"
4495         for DEV in $(do_facet $SINGLEMDS lctl get_param -n $MNTDEV); do
4496                 do_facet $SINGLEMDS $DUMPE2FS -h $DEV > $TMP/t57a.dump ||
4497                         error "can't access $DEV"
4498                 DEVISIZE=`awk '/Inode size:/ { print $3 }' $TMP/t57a.dump`
4499                 [ "$DEVISIZE" -gt 128 ] || error "inode size $DEVISIZE"
4500                 rm $TMP/t57a.dump
4501         done
4502 }
4503 run_test 57a "verify MDS filesystem created with large inodes =="
4504
4505 test_57b() {
4506         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4507         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
4508                 skip "Only applicable to ldiskfs-based MDTs"
4509                 return
4510         fi
4511
4512         remote_mds_nodsh && skip "remote MDS with nodsh" && return
4513         local dir=$DIR/d57b
4514
4515         local FILECOUNT=100
4516         local FILE1=$dir/f1
4517         local FILEN=$dir/f$FILECOUNT
4518
4519         rm -rf $dir || error "removing $dir"
4520         test_mkdir -p $dir || error "creating $dir"
4521         local num=$(get_mds_dir $dir)
4522         local mymds=mds$num
4523
4524         echo "mcreating $FILECOUNT files"
4525         createmany -m $dir/f 1 $FILECOUNT || \
4526                 error "creating files in $dir"
4527
4528         # verify that files do not have EAs yet
4529         $GETSTRIPE $FILE1 2>&1 | grep -q "no stripe" || error "$FILE1 has an EA"
4530         $GETSTRIPE $FILEN 2>&1 | grep -q "no stripe" || error "$FILEN has an EA"
4531
4532         sync
4533         sleep 1
4534         df $dir  #make sure we get new statfs data
4535         local MDSFREE=$(do_facet $mymds \
4536                 lctl get_param -n osd*.*MDT000$((num -1)).kbytesfree)
4537         local MDCFREE=$(lctl get_param -n mdc.*MDT000$((num -1))-mdc-*.kbytesfree)
4538         echo "opening files to create objects/EAs"
4539         local FILE
4540         for FILE in `seq -f $dir/f%g 1 $FILECOUNT`; do
4541                 $OPENFILE -f O_RDWR $FILE > /dev/null 2>&1 || error "opening $FILE"
4542         done
4543
4544         # verify that files have EAs now
4545         $GETSTRIPE $FILE1 | grep -q "obdidx" || error "$FILE1 missing EA"
4546         $GETSTRIPE $FILEN | grep -q "obdidx" || error "$FILEN missing EA"
4547
4548         sleep 1  #make sure we get new statfs data
4549         df $dir
4550         local MDSFREE2=$(do_facet $mymds \
4551                 lctl get_param -n osd*.*MDT000$((num -1)).kbytesfree)
4552         local MDCFREE2=$(lctl get_param -n mdc.*MDT000$((num -1))-mdc-*.kbytesfree)
4553         if [ "$MDCFREE2" -lt "$((MDCFREE - 8))" ]; then
4554                 if [ "$MDSFREE" != "$MDSFREE2" ]; then
4555                         error "MDC before $MDCFREE != after $MDCFREE2"
4556                 else
4557                         echo "MDC before $MDCFREE != after $MDCFREE2"
4558                         echo "unable to confirm if MDS has large inodes"
4559                 fi
4560         fi
4561         rm -rf $dir
4562 }
4563 run_test 57b "default LOV EAs are stored inside large inodes ==="
4564
4565 test_58() {
4566         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4567         [ -z "$(which wiretest 2>/dev/null)" ] &&
4568                         skip_env "could not find wiretest" && return
4569         wiretest
4570 }
4571 run_test 58 "verify cross-platform wire constants =============="
4572
4573 test_59() {
4574         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4575         echo "touch 130 files"
4576         createmany -o $DIR/f59- 130
4577         echo "rm 130 files"
4578         unlinkmany $DIR/f59- 130
4579         sync
4580         # wait for commitment of removal
4581         wait_delete_completed
4582 }
4583 run_test 59 "verify cancellation of llog records async ========="
4584
4585 TEST60_HEAD="test_60 run $RANDOM"
4586 test_60a() {
4587         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4588         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
4589         [ ! -f run-llog.sh ] && skip_env "missing subtest run-llog.sh" && return
4590         log "$TEST60_HEAD - from kernel mode"
4591         do_facet mgs sh run-llog.sh
4592 }
4593 run_test 60a "llog sanity tests run from kernel module =========="
4594
4595 test_60b() { # bug 6411
4596         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4597         dmesg > $DIR/$tfile
4598         LLOG_COUNT=`dmesg | awk "/$TEST60_HEAD/{marker = 1; from_marker = 0;}
4599                                  /llog.test/ {
4600                                          if (marker)
4601                                                  from_marker++
4602                                          from_begin++
4603                                  }
4604                                  END {
4605                                          if (marker)
4606                                                  print from_marker
4607                                          else
4608                                                  print from_begin
4609                                  }"`
4610         [ $LLOG_COUNT -gt 50 ] && error "CDEBUG_LIMIT not limiting messages ($LLOG_COUNT)"|| true
4611 }
4612 run_test 60b "limit repeated messages from CERROR/CWARN ========"
4613
4614 test_60c() {
4615         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4616         echo "create 5000 files"
4617         createmany -o $DIR/f60c- 5000
4618 #define OBD_FAIL_MDS_LLOG_CREATE_FAILED  0x137
4619         lctl set_param fail_loc=0x80000137
4620         unlinkmany $DIR/f60c- 5000
4621         lctl set_param fail_loc=0
4622 }
4623 run_test 60c "unlink file when mds full"
4624
4625 test_60d() {
4626         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4627         SAVEPRINTK=$(lctl get_param -n printk)
4628
4629         # verify "lctl mark" is even working"
4630         MESSAGE="test message ID $RANDOM $$"
4631         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
4632         dmesg | grep -q "$MESSAGE" || error "didn't find debug marker in log"
4633
4634         lctl set_param printk=0 || error "set lnet.printk failed"
4635         lctl get_param -n printk | grep emerg || error "lnet.printk dropped emerg"
4636         MESSAGE="new test message ID $RANDOM $$"
4637         # Assume here that libcfs_debug_mark_buffer() uses D_WARNING
4638         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
4639         dmesg | grep -q "$MESSAGE" && error "D_WARNING wasn't masked" || true
4640
4641         lctl set_param -n printk="$SAVEPRINTK"
4642 }
4643 run_test 60d "test printk console message masking"
4644
4645 test_61() {
4646         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4647         f="$DIR/f61"
4648         dd if=/dev/zero of=$f bs=$(page_size) count=1 || error "dd $f failed"
4649         cancel_lru_locks osc
4650         $MULTIOP $f OSMWUc || error "$MULTIOP $f failed"
4651         sync
4652 }
4653 run_test 61 "mmap() writes don't make sync hang ================"
4654
4655 # bug 2330 - insufficient obd_match error checking causes LBUG
4656 test_62() {
4657         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4658         f="$DIR/f62"
4659         echo foo > $f
4660         cancel_lru_locks osc
4661         lctl set_param fail_loc=0x405
4662         cat $f && error "cat succeeded, expect -EIO"
4663         lctl set_param fail_loc=0
4664 }
4665 # This test is now irrelevant (as of bug 10718 inclusion), we no longer
4666 # match every page all of the time.
4667 #run_test 62 "verify obd_match failure doesn't LBUG (should -EIO)"
4668
4669 # bug 2319 - oig_wait() interrupted causes crash because of invalid waitq.
4670 test_63a() {    # was test_63
4671         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4672         MAX_DIRTY_MB=`lctl get_param -n osc.*.max_dirty_mb | head -n 1`
4673         lctl set_param -n osc.*.max_dirty_mb 0
4674         for i in `seq 10` ; do
4675                 dd if=/dev/zero of=$DIR/f63 bs=8k &
4676                 sleep 5
4677                 kill $!
4678                 sleep 1
4679         done
4680
4681         lctl set_param -n osc.*.max_dirty_mb $MAX_DIRTY_MB
4682         rm -f $DIR/f63 || true
4683 }
4684 run_test 63a "Verify oig_wait interruption does not crash ======="
4685
4686 # bug 2248 - async write errors didn't return to application on sync
4687 # bug 3677 - async write errors left page locked
4688 test_63b() {
4689         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4690         debugsave
4691         lctl set_param debug=-1
4692
4693         # ensure we have a grant to do async writes
4694         dd if=/dev/zero of=$DIR/$tfile bs=4k count=1
4695         rm $DIR/$tfile
4696
4697         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
4698         lctl set_param fail_loc=0x80000406
4699         $MULTIOP $DIR/$tfile Owy && \
4700                 error "sync didn't return ENOMEM"
4701         sync; sleep 2; sync     # do a real sync this time to flush page
4702         lctl get_param -n llite.*.dump_page_cache | grep locked && \
4703                 error "locked page left in cache after async error" || true
4704         debugrestore
4705 }
4706 run_test 63b "async write errors should be returned to fsync ==="
4707
4708 test_64a () {
4709         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4710         df $DIR
4711         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur* | grep "[0-9]"
4712 }
4713 run_test 64a "verify filter grant calculations (in kernel) ====="
4714
4715 test_64b () {
4716         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4717         [ ! -f oos.sh ] && skip_env "missing subtest oos.sh" && return
4718         sh oos.sh $MOUNT
4719 }
4720 run_test 64b "check out-of-space detection on client ==========="
4721
4722 test_64c() {
4723         $LCTL set_param osc.*OST0000-osc-[^mM]*.cur_grant_bytes=0
4724 }
4725 run_test 64c "verify grant shrink ========================------"
4726
4727 # bug 1414 - set/get directories' stripe info
4728 test_65a() {
4729         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4730         test_mkdir -p $DIR/$tdir
4731         touch $DIR/$tdir/f1
4732         $LVERIFY $DIR/$tdir $DIR/$tdir/f1 || error "lverify failed"
4733 }
4734 run_test 65a "directory with no stripe info ===================="
4735
4736 test_65b() {
4737         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4738         test_mkdir -p $DIR/$tdir
4739         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
4740                                                 error "setstripe"
4741         touch $DIR/$tdir/f2
4742         $LVERIFY $DIR/$tdir $DIR/$tdir/f2 || error "lverify failed"
4743 }
4744 run_test 65b "directory setstripe -S $((STRIPESIZE * 2)) -i 0 -c 1"
4745
4746 test_65c() {
4747         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4748         if [ $OSTCOUNT -gt 1 ]; then
4749                 test_mkdir -p $DIR/$tdir
4750                 $SETSTRIPE -S $(($STRIPESIZE * 4)) -i 1 \
4751                         -c $(($OSTCOUNT - 1)) $DIR/$tdir || error "setstripe"
4752                 touch $DIR/$tdir/f3
4753                 $LVERIFY $DIR/$tdir $DIR/$tdir/f3 || error "lverify failed"
4754         fi
4755 }
4756 run_test 65c "directory setstripe -S $((STRIPESIZE*4)) -i 1 -c $((OSTCOUNT-1))"
4757
4758 test_65d() {
4759         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4760         test_mkdir -p $DIR/$tdir
4761         if [ $STRIPECOUNT -le 0 ]; then
4762                 sc=1
4763         elif [ $STRIPECOUNT -gt 2000 ]; then
4764 #LOV_MAX_STRIPE_COUNT is 2000
4765                 [ $OSTCOUNT -gt 2000 ] && sc=2000 || sc=$(($OSTCOUNT - 1))
4766         else
4767                 sc=$(($STRIPECOUNT - 1))
4768         fi
4769         $SETSTRIPE -S $STRIPESIZE -c $sc $DIR/$tdir || error "setstripe"
4770         touch $DIR/$tdir/f4 $DIR/$tdir/f5
4771         $LVERIFY $DIR/$tdir $DIR/$tdir/f4 $DIR/$tdir/f5 ||
4772                                                 error "lverify failed"
4773 }
4774 run_test 65d "directory setstripe -S $STRIPESIZE -c stripe_count"
4775
4776 test_65e() {
4777         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4778         test_mkdir -p $DIR/$tdir
4779
4780         $SETSTRIPE $DIR/$tdir || error "setstripe"
4781         $GETSTRIPE -v $DIR/$tdir | grep "Default" ||
4782                                         error "no stripe info failed"
4783         touch $DIR/$tdir/f6
4784         $LVERIFY $DIR/$tdir $DIR/$tdir/f6 || error "lverify failed"
4785 }
4786 run_test 65e "directory setstripe defaults ======================="
4787
4788 test_65f() {
4789         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4790         test_mkdir -p $DIR/${tdir}f
4791         $RUNAS $SETSTRIPE $DIR/${tdir}f && error "setstripe succeeded" || true
4792 }
4793 run_test 65f "dir setstripe permission (should return error) ==="
4794
4795 test_65g() {
4796         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4797         test_mkdir -p $DIR/$tdir
4798         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
4799                                                         error "setstripe"
4800         $SETSTRIPE -d $DIR/$tdir || error "setstripe"
4801         $GETSTRIPE -v $DIR/$tdir | grep "Default" ||
4802                 error "delete default stripe failed"
4803 }
4804 run_test 65g "directory setstripe -d ==========================="
4805
4806 test_65h() {
4807         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4808         test_mkdir -p $DIR/$tdir
4809         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
4810                                                         error "setstripe"
4811         test_mkdir -p $DIR/$tdir/dd1
4812         [ $($GETSTRIPE -c $DIR/$tdir) == $($GETSTRIPE -c $DIR/$tdir/dd1) ] ||
4813                 error "stripe info inherit failed"
4814 }
4815 run_test 65h "directory stripe info inherit ===================="
4816
4817 test_65i() { # bug6367
4818         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4819         $SETSTRIPE -S 65536 -c -1 $MOUNT
4820 }
4821 run_test 65i "set non-default striping on root directory (bug 6367)="
4822
4823 test_65ia() { # bug12836
4824         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4825         $GETSTRIPE $MOUNT || error "getstripe $MOUNT failed"
4826 }
4827 run_test 65ia "getstripe on -1 default directory striping"
4828
4829 test_65ib() { # bug12836
4830         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4831         $GETSTRIPE -v $MOUNT || error "getstripe -v $MOUNT failed"
4832 }
4833 run_test 65ib "getstripe -v on -1 default directory striping"
4834
4835 test_65ic() { # bug12836
4836         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4837         $LFS find -mtime -1 $MOUNT > /dev/null || error "find $MOUNT failed"
4838 }
4839 run_test 65ic "new find on -1 default directory striping"
4840
4841 test_65j() { # bug6367
4842         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4843         sync; sleep 1
4844         # if we aren't already remounting for each test, do so for this test
4845         if [ "$CLEANUP" = ":" -a "$I_MOUNTED" = "yes" ]; then
4846                 cleanup || error "failed to unmount"
4847                 setup
4848         fi
4849         $SETSTRIPE -d $MOUNT || error "setstripe failed"
4850 }
4851 run_test 65j "set default striping on root directory (bug 6367)="
4852
4853 test_65k() { # bug11679
4854         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4855         [ "$OSTCOUNT" -lt 2 ] && skip_env "too few OSTs" && return
4856         remote_mds_nodsh && skip "remote MDS with nodsh" && return
4857
4858     echo "Check OST status: "
4859     local MDS_OSCS=`do_facet $SINGLEMDS lctl dl |
4860               awk '/[oO][sS][cC].*md[ts]/ { print $4 }'`
4861
4862     for OSC in $MDS_OSCS; do
4863         echo $OSC "is activate"
4864         do_facet $SINGLEMDS lctl --device %$OSC activate
4865     done
4866
4867     mkdir -p $DIR/$tdir
4868     for INACTIVE_OSC in $MDS_OSCS; do
4869         echo "Deactivate: " $INACTIVE_OSC
4870         do_facet $SINGLEMDS lctl --device %$INACTIVE_OSC deactivate
4871         for STRIPE_OSC in $MDS_OSCS; do
4872             OST=`osc_to_ost $STRIPE_OSC`
4873             IDX=`do_facet $SINGLEMDS lctl get_param -n lov.*md*.target_obd |
4874                  awk -F: /$OST/'{ print $1 }' | head -n 1`
4875
4876             [ -f $DIR/$tdir/$IDX ] && continue
4877             echo "$SETSTRIPE -i $IDX -c 1 $DIR/$tdir/$IDX"
4878             $SETSTRIPE -i $IDX -c 1 $DIR/$tdir/$IDX
4879             RC=$?
4880             [ $RC -ne 0 ] && error "setstripe should have succeeded"
4881         done
4882         rm -f $DIR/$tdir/*
4883         echo $INACTIVE_OSC "is Activate."
4884         do_facet $SINGLEMDS lctl --device  %$INACTIVE_OSC activate
4885     done
4886 }
4887 run_test 65k "validate manual striping works properly with deactivated OSCs"
4888
4889 test_65l() { # bug 12836
4890         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4891         test_mkdir -p $DIR/$tdir/test_dir
4892         $SETSTRIPE -c -1 $DIR/$tdir/test_dir
4893         $LFS find -mtime -1 $DIR/$tdir >/dev/null
4894 }
4895 run_test 65l "lfs find on -1 stripe dir ========================"
4896
4897 # bug 2543 - update blocks count on client
4898 test_66() {
4899         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4900         COUNT=${COUNT:-8}
4901         dd if=/dev/zero of=$DIR/f66 bs=1k count=$COUNT
4902         sync; sync_all_data; sync; sync_all_data
4903         cancel_lru_locks osc
4904         BLOCKS=`ls -s $DIR/f66 | awk '{ print $1 }'`
4905         [ $BLOCKS -ge $COUNT ] || error "$DIR/f66 blocks $BLOCKS < $COUNT"
4906 }
4907 run_test 66 "update inode blocks count on client ==============="
4908
4909 LLOOP=
4910 LLITELOOPLOAD=
4911 cleanup_68() {
4912         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4913         trap 0
4914         if [ ! -z "$LLOOP" ]; then
4915                 if swapon -s | grep -q $LLOOP; then
4916                         swapoff $LLOOP || error "swapoff failed"
4917                 fi
4918
4919                 $LCTL blockdev_detach $LLOOP || error "detach failed"
4920                 rm -f $LLOOP
4921                 unset LLOOP
4922         fi
4923         if [ ! -z "$LLITELOOPLOAD" ]; then
4924                 rmmod llite_lloop
4925                 unset LLITELOOPLOAD
4926         fi
4927         rm -f $DIR/f68*
4928 }
4929
4930 meminfo() {
4931         awk '($1 == "'$1':") { print $2 }' /proc/meminfo
4932 }
4933
4934 swap_used() {
4935         swapon -s | awk '($1 == "'$1'") { print $4 }'
4936 }
4937
4938 # test case for lloop driver, basic function
4939 test_68a() {
4940         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4941         [ "$UID" != 0 ] && skip_env "must run as root" && return
4942         llite_lloop_enabled || \
4943                 { skip_env "llite_lloop module disabled" && return; }
4944
4945         trap cleanup_68 EXIT
4946
4947         if ! module_loaded llite_lloop; then
4948                 if load_module llite/llite_lloop; then
4949                         LLITELOOPLOAD=yes
4950                 else
4951                         skip_env "can't find module llite_lloop"
4952                         return
4953                 fi
4954         fi
4955
4956         LLOOP=$TMP/lloop.`date +%s`.`date +%N`
4957         dd if=/dev/zero of=$DIR/f68a bs=4k count=1024
4958         $LCTL blockdev_attach $DIR/f68a $LLOOP || error "attach failed"
4959
4960         directio rdwr $LLOOP 0 1024 4096 || error "direct write failed"
4961         directio rdwr $LLOOP 0 1025 4096 && error "direct write should fail"
4962
4963         cleanup_68
4964 }
4965 run_test 68a "lloop driver - basic test ========================"
4966
4967 # excercise swapping to lustre by adding a high priority swapfile entry
4968 # and then consuming memory until it is used.
4969 test_68b() {  # was test_68
4970         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4971         [ "$UID" != 0 ] && skip_env "must run as root" && return
4972         lctl get_param -n devices | grep -q obdfilter && \
4973                 skip "local OST" && return
4974
4975         grep -q llite_lloop /proc/modules
4976         [ $? -ne 0 ] && skip "can't find module llite_lloop" && return
4977
4978         [ -z "`$LCTL list_nids | grep -v tcp`" ] && \
4979                 skip "can't reliably test swap with TCP" && return
4980
4981         MEMTOTAL=`meminfo MemTotal`
4982         NR_BLOCKS=$((MEMTOTAL>>8))
4983         [[ $NR_BLOCKS -le 2048 ]] && NR_BLOCKS=2048
4984
4985         LLOOP=$TMP/lloop.`date +%s`.`date +%N`
4986         dd if=/dev/zero of=$DIR/f68b bs=64k seek=$NR_BLOCKS count=1
4987         mkswap $DIR/f68b
4988
4989         $LCTL blockdev_attach $DIR/f68b $LLOOP || error "attach failed"
4990
4991         trap cleanup_68 EXIT
4992
4993         swapon -p 32767 $LLOOP || error "swapon $LLOOP failed"
4994
4995         echo "before: `swapon -s | grep $LLOOP`"
4996         $MEMHOG $MEMTOTAL || error "error allocating $MEMTOTAL kB"
4997         echo "after: `swapon -s | grep $LLOOP`"
4998         SWAPUSED=`swap_used $LLOOP`
4999
5000         cleanup_68
5001
5002         [ $SWAPUSED -eq 0 ] && echo "no swap used???" || true
5003 }
5004 run_test 68b "support swapping to Lustre ========================"
5005
5006 # bug5265, obdfilter oa2dentry return -ENOENT
5007 # #define OBD_FAIL_OST_ENOENT 0x217
5008 test_69() {
5009         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5010         remote_ost_nodsh && skip "remote OST with nodsh" && return
5011
5012         f="$DIR/$tfile"
5013         $SETSTRIPE -c 1 -i 0 $f
5014
5015         $DIRECTIO write ${f}.2 0 1 || error "directio write error"
5016
5017         do_facet ost1 lctl set_param fail_loc=0x217
5018         $TRUNCATE $f 1 # vmtruncate() will ignore truncate() error.
5019         $DIRECTIO write $f 0 2 && error "write succeeded, expect -ENOENT"
5020
5021         do_facet ost1 lctl set_param fail_loc=0
5022         $DIRECTIO write $f 0 2 || error "write error"
5023
5024         cancel_lru_locks osc
5025         $DIRECTIO read $f 0 1 || error "read error"
5026
5027         do_facet ost1 lctl set_param fail_loc=0x217
5028         $DIRECTIO read $f 1 1 && error "read succeeded, expect -ENOENT"
5029
5030         do_facet ost1 lctl set_param fail_loc=0
5031         rm -f $f
5032 }
5033 run_test 69 "verify oa2dentry return -ENOENT doesn't LBUG ======"
5034
5035 test_71() {
5036     test_mkdir -p $DIR/$tdir
5037     sh rundbench -C -D $DIR/$tdir 2 || error "dbench failed!"
5038 }
5039 run_test 71 "Running dbench on lustre (don't segment fault) ===="
5040
5041 test_72a() { # bug 5695 - Test that on 2.6 remove_suid works properly
5042         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5043         [ "$RUNAS_ID" = "$UID" ] &&
5044                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
5045
5046         # Check that testing environment is properly set up. Skip if not
5047         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_GID $RUNAS || {
5048                 skip_env "User $RUNAS_ID does not exist - skipping"
5049                 return 0
5050         }
5051         # We had better clear the $DIR to get enough space for dd
5052         rm -rf $DIR/*
5053         touch $DIR/$tfile
5054         chmod 777 $DIR/$tfile
5055         chmod ug+s $DIR/$tfile
5056         $RUNAS dd if=/dev/zero of=$DIR/$tfile bs=512 count=1 ||
5057                 error "$RUNAS dd $DIR/$tfile failed"
5058         # See if we are still setuid/sgid
5059         test -u $DIR/$tfile -o -g $DIR/$tfile &&
5060                 error "S/gid is not dropped on write"
5061         # Now test that MDS is updated too
5062         cancel_lru_locks mdc
5063         test -u $DIR/$tfile -o -g $DIR/$tfile &&
5064                 error "S/gid is not dropped on MDS"
5065         rm -f $DIR/$tfile
5066 }
5067 run_test 72a "Test that remove suid works properly (bug5695) ===="
5068
5069 test_72b() { # bug 24226 -- keep mode setting when size is not changing
5070         local perm
5071
5072         [ "$RUNAS_ID" = "$UID" ] && \
5073                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
5074         [ "$RUNAS_ID" -eq 0 ] && \
5075                 skip_env "RUNAS_ID = 0 -- skipping" && return
5076
5077         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5078         # Check that testing environment is properly set up. Skip if not
5079         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_ID $RUNAS || {
5080                 skip_env "User $RUNAS_ID does not exist - skipping"
5081                 return 0
5082         }
5083         touch $DIR/${tfile}-f{g,u}
5084         test_mkdir $DIR/${tfile}-dg
5085         test_mkdir $DIR/${tfile}-du
5086         chmod 770 $DIR/${tfile}-{f,d}{g,u}
5087         chmod g+s $DIR/${tfile}-{f,d}g
5088         chmod u+s $DIR/${tfile}-{f,d}u
5089         for perm in 777 2777 4777; do
5090                 $RUNAS chmod $perm $DIR/${tfile}-fg && error "S/gid file allowed improper chmod to $perm"
5091                 $RUNAS chmod $perm $DIR/${tfile}-fu && error "S/uid file allowed improper chmod to $perm"
5092                 $RUNAS chmod $perm $DIR/${tfile}-dg && error "S/gid dir allowed improper chmod to $perm"
5093                 $RUNAS chmod $perm $DIR/${tfile}-du && error "S/uid dir allowed improper chmod to $perm"
5094         done
5095         true
5096 }
5097 run_test 72b "Test that we keep mode setting if without file data changed (bug 24226)"
5098
5099 # bug 3462 - multiple simultaneous MDC requests
5100 test_73() {
5101         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5102         test_mkdir $DIR/d73-1
5103         test_mkdir $DIR/d73-2
5104         multiop_bg_pause $DIR/d73-1/f73-1 O_c || return 1
5105         pid1=$!
5106
5107         lctl set_param fail_loc=0x80000129
5108         $MULTIOP $DIR/d73-1/f73-2 Oc &
5109         sleep 1
5110         lctl set_param fail_loc=0
5111
5112         $MULTIOP $DIR/d73-2/f73-3 Oc &
5113         pid3=$!
5114
5115         kill -USR1 $pid1
5116         wait $pid1 || return 1
5117
5118         sleep 25
5119
5120         $CHECKSTAT -t file $DIR/d73-1/f73-1 || return 4
5121         $CHECKSTAT -t file $DIR/d73-1/f73-2 || return 5
5122         $CHECKSTAT -t file $DIR/d73-2/f73-3 || return 6
5123
5124         rm -rf $DIR/d73-*
5125 }
5126 run_test 73 "multiple MDC requests (should not deadlock)"
5127
5128 test_74a() { # bug 6149, 6184
5129         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5130         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
5131         #
5132         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
5133         # will spin in a tight reconnection loop
5134         touch $DIR/f74a
5135         lctl set_param fail_loc=0x8000030e
5136         # get any lock that won't be difficult - lookup works.
5137         ls $DIR/f74a
5138         lctl set_param fail_loc=0
5139         true
5140         rm -f $DIR/f74a
5141 }
5142 run_test 74a "ldlm_enqueue freed-export error path, ls (shouldn't LBUG)"
5143
5144 test_74b() { # bug 13310
5145         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5146         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
5147         #
5148         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
5149         # will spin in a tight reconnection loop
5150         lctl set_param fail_loc=0x8000030e
5151         # get a "difficult" lock
5152         touch $DIR/f74b
5153         lctl set_param fail_loc=0
5154         true
5155         rm -f $DIR/f74b
5156 }
5157 run_test 74b "ldlm_enqueue freed-export error path, touch (shouldn't LBUG)"
5158
5159 test_74c() {
5160         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5161 #define OBD_FAIL_LDLM_NEW_LOCK
5162         lctl set_param fail_loc=0x80000319
5163         touch $DIR/$tfile && error "Touch successful"
5164         true
5165 }
5166 run_test 74c "ldlm_lock_create error path, (shouldn't LBUG)"
5167
5168 num_inodes() {
5169         awk '/lustre_inode_cache/ {print $2; exit}' /proc/slabinfo
5170 }
5171
5172 get_inode_slab_tunables() {
5173         awk '/lustre_inode_cache/ {print $9," ",$10," ",$11; exit}' /proc/slabinfo
5174 }
5175
5176 set_inode_slab_tunables() {
5177         echo "lustre_inode_cache $1" > /proc/slabinfo
5178 }
5179
5180 test_76() { # Now for bug 20433, added originally in bug 1443
5181         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5182         local SLAB_SETTINGS=`get_inode_slab_tunables`
5183         local CPUS=`getconf _NPROCESSORS_ONLN`
5184         # we cannot set limit below 1 which means 1 inode in each
5185         # per-cpu cache is still allowed
5186         set_inode_slab_tunables "1 1 0"
5187         cancel_lru_locks osc
5188         BEFORE_INODES=`num_inodes`
5189         echo "before inodes: $BEFORE_INODES"
5190         local COUNT=1000
5191         [ "$SLOW" = "no" ] && COUNT=100
5192         for i in `seq $COUNT`; do
5193                 touch $DIR/$tfile
5194                 rm -f $DIR/$tfile
5195         done
5196         cancel_lru_locks osc
5197         AFTER_INODES=`num_inodes`
5198         echo "after inodes: $AFTER_INODES"
5199         local wait=0
5200         while [ $((AFTER_INODES-1*CPUS)) -gt $BEFORE_INODES ]; do
5201                 sleep 2
5202                 AFTER_INODES=`num_inodes`
5203                 wait=$((wait+2))
5204                 echo "wait $wait seconds inodes: $AFTER_INODES"
5205                 if [ $wait -gt 30 ]; then
5206                         error "inode slab grew from $BEFORE_INODES to $AFTER_INODES"
5207                 fi
5208         done
5209         set_inode_slab_tunables "$SLAB_SETTINGS"
5210 }
5211 run_test 76 "confirm clients recycle inodes properly ===="
5212
5213
5214 export ORIG_CSUM=""
5215 set_checksums()
5216 {
5217         # Note: in sptlrpc modes which enable its own bulk checksum, the
5218         # original crc32_le bulk checksum will be automatically disabled,
5219         # and the OBD_FAIL_OSC_CHECKSUM_SEND/OBD_FAIL_OSC_CHECKSUM_RECEIVE
5220         # will be checked by sptlrpc code against sptlrpc bulk checksum.
5221         # In this case set_checksums() will not be no-op, because sptlrpc
5222         # bulk checksum will be enabled all through the test.
5223
5224         [ "$ORIG_CSUM" ] || ORIG_CSUM=`lctl get_param -n osc.*.checksums | head -n1`
5225         lctl set_param -n osc.*.checksums $1
5226         return 0
5227 }
5228
5229 export ORIG_CSUM_TYPE="`lctl get_param -n osc.*osc-[^mM]*.checksum_type |
5230                         sed 's/.*\[\(.*\)\].*/\1/g' | head -n1`"
5231 CKSUM_TYPES=${CKSUM_TYPES:-"crc32 adler"}
5232 [ "$ORIG_CSUM_TYPE" = "crc32c" ] && CKSUM_TYPES="$CKSUM_TYPES crc32c"
5233 set_checksum_type()
5234 {
5235         lctl set_param -n osc.*osc-[^mM]*.checksum_type $1
5236         log "set checksum type to $1"
5237         return 0
5238 }
5239 F77_TMP=$TMP/f77-temp
5240 F77SZ=8
5241 setup_f77() {
5242         dd if=/dev/urandom of=$F77_TMP bs=1M count=$F77SZ || \
5243                 error "error writing to $F77_TMP"
5244 }
5245
5246 test_77a() { # bug 10889
5247         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5248         $GSS && skip "could not run with gss" && return
5249         [ ! -f $F77_TMP ] && setup_f77
5250         set_checksums 1
5251         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ || error "dd error"
5252         set_checksums 0
5253         rm -f $DIR/$tfile
5254 }
5255 run_test 77a "normal checksum read/write operation ============="
5256
5257 test_77b() { # bug 10889
5258         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5259         $GSS && skip "could not run with gss" && return
5260         [ ! -f $F77_TMP ] && setup_f77
5261         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
5262         lctl set_param fail_loc=0x80000409
5263         set_checksums 1
5264         dd if=$F77_TMP of=$DIR/f77b bs=1M count=$F77SZ conv=sync || \
5265                 error "dd error: $?"
5266         lctl set_param fail_loc=0
5267         set_checksums 0
5268 }
5269 run_test 77b "checksum error on client write ===================="
5270
5271 test_77c() { # bug 10889
5272         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5273         $GSS && skip "could not run with gss" && return
5274         [ ! -f $DIR/f77b ] && skip "requires 77b - skipping" && return
5275         set_checksums 1
5276         for algo in $CKSUM_TYPES; do
5277                 cancel_lru_locks osc
5278                 set_checksum_type $algo
5279                 #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
5280                 lctl set_param fail_loc=0x80000408
5281                 cmp $F77_TMP $DIR/f77b || error "file compare failed"
5282                 lctl set_param fail_loc=0
5283         done
5284         set_checksums 0
5285         set_checksum_type $ORIG_CSUM_TYPE
5286         rm -f $DIR/f77b
5287 }
5288 run_test 77c "checksum error on client read ==================="
5289
5290 test_77d() { # bug 10889
5291         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5292         $GSS && skip "could not run with gss" && return
5293         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
5294         lctl set_param fail_loc=0x80000409
5295         set_checksums 1
5296         directio write $DIR/f77 0 $F77SZ $((1024 * 1024)) || \
5297                 error "direct write: rc=$?"
5298         lctl set_param fail_loc=0
5299         set_checksums 0
5300 }
5301 run_test 77d "checksum error on OST direct write ==============="
5302
5303 test_77e() { # bug 10889
5304         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5305         $GSS && skip "could not run with gss" && return
5306         [ ! -f $DIR/f77 ] && skip "requires 77d - skipping" && return
5307         #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
5308         lctl set_param fail_loc=0x80000408
5309         set_checksums 1
5310         cancel_lru_locks osc
5311         directio read $DIR/f77 0 $F77SZ $((1024 * 1024)) || \
5312                 error "direct read: rc=$?"
5313         lctl set_param fail_loc=0
5314         set_checksums 0
5315 }
5316 run_test 77e "checksum error on OST direct read ================"
5317
5318 test_77f() { # bug 10889
5319         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5320         $GSS && skip "could not run with gss" && return
5321         set_checksums 1
5322         for algo in $CKSUM_TYPES; do
5323                 cancel_lru_locks osc
5324                 set_checksum_type $algo
5325                 #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
5326                 lctl set_param fail_loc=0x409
5327                 directio write $DIR/f77 0 $F77SZ $((1024 * 1024)) && \
5328                         error "direct write succeeded"
5329                 lctl set_param fail_loc=0
5330         done
5331         set_checksum_type $ORIG_CSUM_TYPE
5332         set_checksums 0
5333 }
5334 run_test 77f "repeat checksum error on write (expect error) ===="
5335
5336 test_77g() { # bug 10889
5337         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5338         $GSS && skip "could not run with gss" && return
5339         remote_ost_nodsh && skip "remote OST with nodsh" && return
5340
5341         [ ! -f $F77_TMP ] && setup_f77
5342
5343         $SETSTRIPE -c 1 -i 0 $DIR/f77g
5344         #define OBD_FAIL_OST_CHECKSUM_RECEIVE       0x21a
5345         do_facet ost1 lctl set_param fail_loc=0x8000021a
5346         set_checksums 1
5347         dd if=$F77_TMP of=$DIR/f77g bs=1M count=$F77SZ || \
5348                 error "write error: rc=$?"
5349         do_facet ost1 lctl set_param fail_loc=0
5350         set_checksums 0
5351 }
5352 run_test 77g "checksum error on OST write ======================"
5353
5354 test_77h() { # bug 10889
5355         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5356         $GSS && skip "could not run with gss" && return
5357         remote_ost_nodsh && skip "remote OST with nodsh" && return
5358
5359         [ ! -f $DIR/f77g ] && skip "requires 77g - skipping" && return
5360         cancel_lru_locks osc
5361         #define OBD_FAIL_OST_CHECKSUM_SEND          0x21b
5362         do_facet ost1 lctl set_param fail_loc=0x8000021b
5363         set_checksums 1
5364         cmp $F77_TMP $DIR/f77g || error "file compare failed"
5365         do_facet ost1 lctl set_param fail_loc=0
5366         set_checksums 0
5367 }
5368 run_test 77h "checksum error on OST read ======================="
5369
5370 test_77i() { # bug 13805
5371         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5372         $GSS && skip "could not run with gss" && return
5373         #define OBD_FAIL_OSC_CONNECT_CKSUM       0x40b
5374         lctl set_param fail_loc=0x40b
5375         remount_client $MOUNT
5376         lctl set_param fail_loc=0
5377         for VALUE in `lctl get_param osc.*osc-[^mM]*.checksum_type`; do
5378                 PARAM=`echo ${VALUE[0]} | cut -d "=" -f1`
5379                 algo=`lctl get_param -n $PARAM | sed 's/.*\[\(.*\)\].*/\1/g'`
5380                 [ "$algo" = "adler" ] || error "algo set to $algo instead of adler"
5381         done
5382         remount_client $MOUNT
5383 }
5384 run_test 77i "client not supporting OSD_CONNECT_CKSUM =========="
5385
5386 test_77j() { # bug 13805
5387         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5388         $GSS && skip "could not run with gss" && return
5389         #define OBD_FAIL_OSC_CKSUM_ADLER_ONLY    0x40c
5390         lctl set_param fail_loc=0x40c
5391         remount_client $MOUNT
5392         lctl set_param fail_loc=0
5393         sleep 2 # wait async osc connect to finish
5394         for VALUE in `lctl get_param osc.*osc-[^mM]*.checksum_type`; do
5395                 PARAM=`echo ${VALUE[0]} | cut -d "=" -f1`
5396                 algo=`lctl get_param -n $PARAM | sed 's/.*\[\(.*\)\].*/\1/g'`
5397                 [ "$algo" = "adler" ] || error "algo set to $algo instead of adler"
5398         done
5399         remount_client $MOUNT
5400 }
5401 run_test 77j "client only supporting ADLER32 ===================="
5402
5403 [ "$ORIG_CSUM" ] && set_checksums $ORIG_CSUM || true
5404 rm -f $F77_TMP
5405 unset F77_TMP
5406
5407 test_78() { # bug 10901
5408         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5409         remote_ost || { skip_env "local OST" && return; }
5410
5411         NSEQ=5
5412         F78SIZE=$(($(awk '/MemFree:/ { print $2 }' /proc/meminfo) / 1024))
5413         echo "MemFree: $F78SIZE, Max file size: $MAXFREE"
5414         MEMTOTAL=$(($(awk '/MemTotal:/ { print $2 }' /proc/meminfo) / 1024))
5415         echo "MemTotal: $MEMTOTAL"
5416 # reserve 256MB of memory for the kernel and other running processes,
5417 # and then take 1/2 of the remaining memory for the read/write buffers.
5418     if [ $MEMTOTAL -gt 512 ] ;then
5419         MEMTOTAL=$(((MEMTOTAL - 256 ) / 2))
5420     else
5421         # for those poor memory-starved high-end clusters...
5422         MEMTOTAL=$((MEMTOTAL / 2))
5423     fi
5424         echo "Mem to use for directio: $MEMTOTAL"
5425         [ $F78SIZE -gt $MEMTOTAL ] && F78SIZE=$MEMTOTAL
5426         [ $F78SIZE -gt 512 ] && F78SIZE=512
5427         [ $F78SIZE -gt $((MAXFREE / 1024)) ] && F78SIZE=$((MAXFREE / 1024))
5428         SMALLESTOST=`lfs df $DIR |grep OST | awk '{print $4}' |sort -n |head -1`
5429         echo "Smallest OST: $SMALLESTOST"
5430         [ $SMALLESTOST -lt 10240 ] && \
5431                 skip "too small OSTSIZE, useless to run large O_DIRECT test" && return 0
5432
5433         [ $F78SIZE -gt $((SMALLESTOST * $OSTCOUNT / 1024 - 80)) ] && \
5434                 F78SIZE=$((SMALLESTOST * $OSTCOUNT / 1024 - 80))
5435
5436         [ "$SLOW" = "no" ] && NSEQ=1 && [ $F78SIZE -gt 32 ] && F78SIZE=32
5437         echo "File size: $F78SIZE"
5438         $SETSTRIPE -c $OSTCOUNT $DIR/$tfile || error "setstripe failed"
5439         for i in `seq 1 $NSEQ`
5440         do
5441                 FSIZE=$(($F78SIZE / ($NSEQ - $i + 1)))
5442                 echo directIO rdwr round $i of $NSEQ
5443                 $DIRECTIO rdwr $DIR/$tfile 0 $FSIZE 1048576||error "rdwr failed"
5444         done
5445
5446         rm -f $DIR/$tfile
5447 }
5448 run_test 78 "handle large O_DIRECT writes correctly ============"
5449
5450 test_79() { # bug 12743
5451         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5452         wait_delete_completed
5453
5454         BKTOTAL=$(calc_osc_kbytes kbytestotal)
5455         BKFREE=$(calc_osc_kbytes kbytesfree)
5456         BKAVAIL=$(calc_osc_kbytes kbytesavail)
5457
5458         STRING=`df -P $MOUNT | tail -n 1 | awk '{print $2","$3","$4}'`
5459         DFTOTAL=`echo $STRING | cut -d, -f1`
5460         DFUSED=`echo $STRING  | cut -d, -f2`
5461         DFAVAIL=`echo $STRING | cut -d, -f3`
5462         DFFREE=$(($DFTOTAL - $DFUSED))
5463
5464         ALLOWANCE=$((64 * $OSTCOUNT))
5465
5466         if [ $DFTOTAL -lt $(($BKTOTAL - $ALLOWANCE)) ] ||
5467            [ $DFTOTAL -gt $(($BKTOTAL + $ALLOWANCE)) ] ; then
5468                 error "df total($DFTOTAL) mismatch OST total($BKTOTAL)"
5469         fi
5470         if [ $DFFREE -lt $(($BKFREE - $ALLOWANCE)) ] ||
5471            [ $DFFREE -gt $(($BKFREE + $ALLOWANCE)) ] ; then
5472                 error "df free($DFFREE) mismatch OST free($BKFREE)"
5473         fi
5474         if [ $DFAVAIL -lt $(($BKAVAIL - $ALLOWANCE)) ] ||
5475            [ $DFAVAIL -gt $(($BKAVAIL + $ALLOWANCE)) ] ; then
5476                 error "df avail($DFAVAIL) mismatch OST avail($BKAVAIL)"
5477         fi
5478 }
5479 run_test 79 "df report consistency check ======================="
5480
5481 test_80() { # bug 10718
5482         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5483         # relax strong synchronous semantics for slow backends like ZFS
5484         local soc="obdfilter.*.sync_on_lock_cancel"
5485         local soc_old=$(do_facet ost1 lctl get_param -n $soc | head -n1)
5486         local hosts=
5487         if [ "$soc_old" != "never" -a "$(facet_fstype ost1)" != "ldiskfs" ]; then
5488                 hosts=$(for host in $(seq -f "ost%g" 1 $OSTCOUNT); do
5489                           facet_active_host $host; done | sort -u)
5490                 do_nodes $hosts lctl set_param $soc=never
5491         fi
5492
5493         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1M
5494         sync; sleep 1; sync
5495         local BEFORE=`date +%s`
5496         cancel_lru_locks osc
5497         local AFTER=`date +%s`
5498         local DIFF=$((AFTER-BEFORE))
5499         if [ $DIFF -gt 1 ] ; then
5500                 error "elapsed for 1M@1T = $DIFF"
5501         fi
5502
5503         [ -n "$hosts" ] && do_nodes $hosts lctl set_param $soc=$soc_old
5504
5505         rm -f $DIR/$tfile
5506 }
5507 run_test 80 "Page eviction is equally fast at high offsets too  ===="
5508
5509 test_81a() { # LU-456
5510         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5511         remote_ost_nodsh && skip "remote OST with nodsh" && return
5512         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
5513         # MUST OR with the OBD_FAIL_ONCE (0x80000000)
5514         do_facet ost1 lctl set_param fail_loc=0x80000228
5515
5516         # write should trigger a retry and success
5517         $SETSTRIPE -i 0 -c 1 $DIR/$tfile
5518         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
5519         RC=$?
5520         if [ $RC -ne 0 ] ; then
5521                 error "write should success, but failed for $RC"
5522         fi
5523 }
5524 run_test 81a "OST should retry write when get -ENOSPC ==============="
5525
5526 test_81b() { # LU-456
5527         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5528         remote_ost_nodsh && skip "remote OST with nodsh" && return
5529         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
5530         # Don't OR with the OBD_FAIL_ONCE (0x80000000)
5531         do_facet ost1 lctl set_param fail_loc=0x228
5532
5533         # write should retry several times and return -ENOSPC finally
5534         $SETSTRIPE -i 0 -c 1 $DIR/$tfile
5535         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
5536         RC=$?
5537         ENOSPC=28
5538         if [ $RC -ne $ENOSPC ] ; then
5539                 error "dd should fail for -ENOSPC, but succeed."
5540         fi
5541 }
5542 run_test 81b "OST should return -ENOSPC when retry still fails ======="
5543
5544 test_82() { # LU-1031
5545         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10
5546         local gid1=14091995
5547         local gid2=16022000
5548
5549         multiop_bg_pause $DIR/$tfile OG${gid1}_g${gid1}c || return 1
5550         local MULTIPID1=$!
5551         multiop_bg_pause $DIR/$tfile O_G${gid2}r10g${gid2}c || return 2
5552         local MULTIPID2=$!
5553         kill -USR1 $MULTIPID2
5554         sleep 2
5555         if [[ `ps h -o comm -p $MULTIPID2` == "" ]]; then
5556                 error "First grouplock does not block second one"
5557         else
5558                 echo "Second grouplock blocks first one"
5559         fi
5560         kill -USR1 $MULTIPID1
5561         wait $MULTIPID1
5562         wait $MULTIPID2
5563 }
5564 run_test 82 "Basic grouplock test ==============================="
5565
5566 test_99a() {
5567         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" &&
5568                 return
5569         test_mkdir -p $DIR/d99cvsroot
5570         chown $RUNAS_ID $DIR/d99cvsroot
5571         local oldPWD=$PWD       # bug 13584, use $TMP as working dir
5572         cd $TMP
5573
5574         $RUNAS cvs -d $DIR/d99cvsroot init || error "cvs init failed"
5575         cd $oldPWD
5576 }
5577 run_test 99a "cvs init ========================================="
5578
5579 test_99b() {
5580         [ -z "$(which cvs 2>/dev/null)" ] &&
5581                 skip_env "could not find cvs" && return
5582         [ ! -d $DIR/d99cvsroot ] && test_99a
5583         cd /etc/init.d
5584         # some versions of cvs import exit(1) when asked to import links or
5585         # files they can't read.  ignore those files.
5586         TOIGNORE=$(find . -type l -printf '-I %f\n' -o \
5587                         ! -perm +4 -printf '-I %f\n')
5588         $RUNAS cvs -d $DIR/d99cvsroot import -m "nomesg" $TOIGNORE \
5589                 d99reposname vtag rtag
5590 }
5591 run_test 99b "cvs import ======================================="
5592
5593 test_99c() {
5594         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
5595         [ ! -d $DIR/d99cvsroot ] && test_99b
5596         cd $DIR
5597         test_mkdir -p $DIR/d99reposname
5598         chown $RUNAS_ID $DIR/d99reposname
5599         $RUNAS cvs -d $DIR/d99cvsroot co d99reposname
5600 }
5601 run_test 99c "cvs checkout ====================================="
5602
5603 test_99d() {
5604         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
5605         [ ! -d $DIR/d99cvsroot ] && test_99c
5606         cd $DIR/d99reposname
5607         $RUNAS touch foo99
5608         $RUNAS cvs add -m 'addmsg' foo99
5609 }
5610 run_test 99d "cvs add =========================================="
5611
5612 test_99e() {
5613         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
5614         [ ! -d $DIR/d99cvsroot ] && test_99c
5615         cd $DIR/d99reposname
5616         $RUNAS cvs update
5617 }
5618 run_test 99e "cvs update ======================================="
5619
5620 test_99f() {
5621         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
5622         [ ! -d $DIR/d99cvsroot ] && test_99d
5623         cd $DIR/d99reposname
5624         $RUNAS cvs commit -m 'nomsg' foo99
5625     rm -fr $DIR/d99cvsroot
5626 }
5627 run_test 99f "cvs commit ======================================="
5628
5629 test_100() {
5630         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5631         [ "$NETTYPE" = tcp ] || \
5632                 { skip "TCP secure port test, not useful for NETTYPE=$NETTYPE" && \
5633                         return ; }
5634
5635         remote_ost_nodsh && skip "remote OST with nodsh" && return
5636         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5637         remote_servers || \
5638                 { skip "useless for local single node setup" && return; }
5639
5640         netstat -tna | ( rc=1; while read PROT SND RCV LOCAL REMOTE STAT; do
5641                 [ "$PROT" != "tcp" ] && continue
5642                 RPORT=$(echo $REMOTE | cut -d: -f2)
5643                 [ "$RPORT" != "$ACCEPTOR_PORT" ] && continue
5644
5645                 rc=0
5646                 LPORT=`echo $LOCAL | cut -d: -f2`
5647                 if [ $LPORT -ge 1024 ]; then
5648                         echo "bad: $PROT $SND $RCV $LOCAL $REMOTE $STAT"
5649                         netstat -tna
5650                         error_exit "local: $LPORT > 1024, remote: $RPORT"
5651                 fi
5652         done
5653         [ "$rc" = 0 ] || error_exit "privileged port not found" )
5654 }
5655 run_test 100 "check local port using privileged port ==========="
5656
5657 function get_named_value()
5658 {
5659     local tag
5660
5661     tag=$1
5662     while read ;do
5663         line=$REPLY
5664         case $line in
5665         $tag*)
5666             echo $line | sed "s/^$tag[ ]*//"
5667             break
5668             ;;
5669         esac
5670     done
5671 }
5672
5673 export CACHE_MAX=$($LCTL get_param -n llite.*.max_cached_mb |
5674                    awk '/^max_cached_mb/ { print $2 }')
5675
5676 cleanup_101a() {
5677         $LCTL set_param -n llite.*.max_cached_mb $CACHE_MAX
5678         trap 0
5679 }
5680
5681 test_101a() {
5682         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5683         local s
5684         local discard
5685         local nreads=10000
5686         local cache_limit=32
5687
5688         $LCTL set_param -n osc.*-osc*.rpc_stats 0
5689         trap cleanup_101a EXIT
5690         $LCTL set_param -n llite.*.read_ahead_stats 0
5691         $LCTL set_param -n llite.*.max_cached_mb $cache_limit
5692
5693         #
5694         # randomly read 10000 of 64K chunks from file 3x 32MB in size
5695         #
5696         echo "nreads: $nreads file size: $((cache_limit * 3))MB"
5697         $READS -f $DIR/$tfile -s$((cache_limit * 3192 * 1024)) -b65536 -C -n$nreads -t 180
5698
5699         discard=0
5700         for s in `$LCTL get_param -n llite.*.read_ahead_stats | \
5701                 get_named_value 'read but discarded' | cut -d" " -f1`; do
5702                         discard=$(($discard + $s))
5703         done
5704         cleanup_101a
5705
5706         if [ $(($discard * 10)) -gt $nreads ] ;then
5707                 $LCTL get_param osc.*-osc*.rpc_stats
5708                 $LCTL get_param llite.*.read_ahead_stats
5709                 error "too many ($discard) discarded pages"
5710         fi
5711         rm -f $DIR/$tfile || true
5712 }
5713 run_test 101a "check read-ahead for random reads ================"
5714
5715 setup_test101bc() {
5716         test_mkdir -p $DIR/$tdir
5717         STRIPE_SIZE=1048576
5718         STRIPE_COUNT=$OSTCOUNT
5719         STRIPE_OFFSET=0
5720
5721         local list=$(comma_list $(osts_nodes))
5722         set_osd_param $list '' read_cache_enable 0
5723         set_osd_param $list '' writethrough_cache_enable 0
5724
5725         trap cleanup_test101bc EXIT
5726         # prepare the read-ahead file
5727         $SETSTRIPE -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $OSTCOUNT $DIR/$tfile
5728
5729         dd if=/dev/zero of=$DIR/$tfile bs=1024k count=100 2> /dev/null
5730 }
5731
5732 cleanup_test101bc() {
5733         trap 0
5734         rm -rf $DIR/$tdir
5735         rm -f $DIR/$tfile
5736
5737         local list=$(comma_list $(osts_nodes))
5738         set_osd_param $list '' read_cache_enable 1
5739         set_osd_param $list '' writethrough_cache_enable 1
5740 }
5741
5742 calc_total() {
5743         awk 'BEGIN{total=0}; {total+=$1}; END{print total}'
5744 }
5745
5746 ra_check_101() {
5747         local READ_SIZE=$1
5748         local STRIPE_SIZE=1048576
5749         local RA_INC=1048576
5750         local STRIDE_LENGTH=$((STRIPE_SIZE/READ_SIZE))
5751         local FILE_LENGTH=$((64*100))
5752         local discard_limit=$((((STRIDE_LENGTH - 1)*3/(STRIDE_LENGTH*OSTCOUNT))* \
5753                              (STRIDE_LENGTH*OSTCOUNT - STRIDE_LENGTH)))
5754         DISCARD=`$LCTL get_param -n llite.*.read_ahead_stats | \
5755                         get_named_value 'read but discarded' | \
5756                         cut -d" " -f1 | calc_total`
5757         if [ $DISCARD -gt $discard_limit ]; then
5758                 $LCTL get_param llite.*.read_ahead_stats
5759                 error "Too many ($DISCARD) discarded pages with size (${READ_SIZE})"
5760         else
5761                 echo "Read-ahead success for size ${READ_SIZE}"
5762         fi
5763 }
5764
5765 test_101b() {
5766         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5767         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping stride IO stride-ahead test" && return
5768         local STRIPE_SIZE=1048576
5769         local STRIDE_SIZE=$((STRIPE_SIZE*OSTCOUNT))
5770         local FILE_LENGTH=$((STRIPE_SIZE*100))
5771         local ITERATION=$((FILE_LENGTH/STRIDE_SIZE))
5772         # prepare the read-ahead file
5773         setup_test101bc
5774         cancel_lru_locks osc
5775         for BIDX in 2 4 8 16 32 64 128 256
5776         do
5777                 local BSIZE=$((BIDX*4096))
5778                 local READ_COUNT=$((STRIPE_SIZE/BSIZE))
5779                 local STRIDE_LENGTH=$((STRIDE_SIZE/BSIZE))
5780                 local OFFSET=$((STRIPE_SIZE/BSIZE*(OSTCOUNT - 1)))
5781                 $LCTL set_param -n llite.*.read_ahead_stats 0
5782                 $READS -f $DIR/$tfile  -l $STRIDE_LENGTH -o $OFFSET \
5783                               -s $FILE_LENGTH -b $STRIPE_SIZE -a $READ_COUNT -n $ITERATION
5784                 cancel_lru_locks osc
5785                 ra_check_101 $BSIZE
5786         done
5787         cleanup_test101bc
5788         true
5789 }
5790 run_test 101b "check stride-io mode read-ahead ================="
5791
5792 test_101c() {
5793         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5794         local STRIPE_SIZE=1048576
5795         local FILE_LENGTH=$((STRIPE_SIZE*100))
5796         local nreads=10000
5797         local osc
5798
5799     setup_test101bc
5800
5801     cancel_lru_locks osc
5802     $LCTL set_param osc.*.rpc_stats 0
5803     $READS -f $DIR/$tfile -s$FILE_LENGTH -b65536 -n$nreads -t 180
5804     for osc in $($LCTL get_param -N osc.*); do
5805         if [ "$osc" == "osc.num_refs" ]; then
5806             continue
5807         fi
5808
5809         local lines=$($LCTL get_param -n ${osc}.rpc_stats | wc | awk '{print $1}')
5810         if [ $lines -le 20 ]; then
5811             continue
5812         fi
5813
5814         local rpc4k=$($LCTL get_param -n ${osc}.rpc_stats |
5815                                      awk '$1 == "1:" { print $2; exit; }')
5816         local rpc8k=$($LCTL get_param -n ${osc}.rpc_stats |
5817                                      awk '$1 == "2:" { print $2; exit; }')
5818         local rpc16k=$($LCTL get_param -n ${osc}.rpc_stats |
5819                                      awk '$1 == "4:" { print $2; exit; }')
5820         local rpc32k=$($LCTL get_param -n ${osc}.rpc_stats |
5821                                      awk '$1 == "8:" { print $2; exit; }')
5822
5823         [ $rpc4k != 0 ]  && error "Small 4k read IO ${rpc4k}!"
5824         [ $rpc8k != 0 ]  && error "Small 8k read IO ${rpc8k}!"
5825         [ $rpc16k != 0 ] && error "Small 16k read IO ${rpc16k}!"
5826         [ $rpc32k != 0 ] && error "Small 32k read IO ${rpc32k}!"
5827         echo "${osc} rpc check passed!"
5828     done
5829     cleanup_test101bc
5830     true
5831 }
5832 run_test 101c "check stripe_size aligned read-ahead ================="
5833
5834 set_read_ahead() {
5835    $LCTL get_param -n llite.*.max_read_ahead_mb | head -n 1
5836    $LCTL set_param -n llite.*.max_read_ahead_mb $1 > /dev/null 2>&1
5837 }
5838
5839 test_101d() {
5840         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5841         local file=$DIR/$tfile
5842         local size=${FILESIZE_101c:-500}
5843         local ra_MB=${READAHEAD_MB:-40}
5844
5845         local space=$(df -P $DIR | tail -n 1 | awk '{ print $4 }')
5846         [ $space -gt $((size * 1024)) ] ||
5847                 { skip "Need free space ${size}M, have $space" && return; }
5848
5849     echo Creating ${size}M test file $file
5850     dd if=/dev/zero of=$file bs=1M count=$size || error "dd failed"
5851     echo Cancel LRU locks on lustre client to flush the client cache
5852     cancel_lru_locks osc
5853
5854     echo Disable read-ahead
5855     local old_READAHEAD=$(set_read_ahead 0)
5856
5857     echo Reading the test file $file with read-ahead disabled
5858     time_ra_OFF=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$size")
5859
5860     echo Cancel LRU locks on lustre client to flush the client cache
5861     cancel_lru_locks osc
5862     echo Enable read-ahead with ${ra_MB}MB
5863     set_read_ahead $ra_MB
5864
5865     echo Reading the test file $file with read-ahead enabled
5866     time_ra_ON=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$size")
5867
5868     echo read-ahead disabled time read $time_ra_OFF
5869     echo read-ahead enabled  time read $time_ra_ON
5870
5871         set_read_ahead $old_READAHEAD
5872         rm -f $file
5873         wait_delete_completed
5874
5875     [ $time_ra_ON -lt $time_ra_OFF ] ||
5876         error "read-ahead enabled  time read (${time_ra_ON}s) is more than
5877                read-ahead disabled time read (${time_ra_OFF}s) filesize ${size}M"
5878 }
5879 run_test 101d "file read with and without read-ahead enabled  ================="
5880
5881 test_101e() {
5882         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5883     local file=$DIR/$tfile
5884     local size=500  #KB
5885     local count=100
5886     local blksize=1024
5887
5888     local space=$(df -P $DIR | tail -n 1 | awk '{ print $4 }')
5889     local need_space=$((count * size))
5890     [ $space -gt $need_space ] ||
5891         { skip_env "Need free space $need_space, have $space" && return; }
5892
5893     echo Creating $count ${size}K test files
5894     for ((i = 0; i < $count; i++)); do
5895         dd if=/dev/zero of=${file}_${i} bs=$blksize count=$size 2>/dev/null
5896     done
5897
5898     echo Cancel LRU locks on lustre client to flush the client cache
5899     cancel_lru_locks osc
5900
5901     echo Reset readahead stats
5902     $LCTL set_param -n llite.*.read_ahead_stats 0
5903
5904     for ((i = 0; i < $count; i++)); do
5905         dd if=${file}_${i} of=/dev/null bs=$blksize count=$size 2>/dev/null
5906     done
5907
5908     local miss=$($LCTL get_param -n llite.*.read_ahead_stats | \
5909           get_named_value 'misses' | cut -d" " -f1 | calc_total)
5910
5911     for ((i = 0; i < $count; i++)); do
5912         rm -rf ${file}_${i} 2>/dev/null
5913     done
5914
5915     #10000 means 20% reads are missing in readahead
5916     [ $miss -lt 10000 ] ||  error "misses too much for small reads"
5917 }
5918 run_test 101e "check read-ahead for small read(1k) for small files(500k)"
5919
5920 cleanup_test101f() {
5921     trap 0
5922     $LCTL set_param -n llite.*.max_read_ahead_whole_mb $MAX_WHOLE_MB
5923     rm -rf $DIR/$tfile 2>/dev/null
5924 }
5925
5926 test_101f() {
5927         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5928     local file=$DIR/$tfile
5929     local nreads=1000
5930
5931     MAX_WHOLE_MB=$($LCTL get_param -n llite.*.max_read_ahead_whole_mb)
5932     $LCTL set_param -n llite.*.max_read_ahead_whole_mb 2
5933     dd if=/dev/zero of=${file} bs=2097152 count=1 2>/dev/null
5934     trap cleanup_test101f EXIT
5935
5936     echo Cancel LRU locks on lustre client to flush the client cache
5937     cancel_lru_locks osc
5938
5939     echo Reset readahead stats
5940     $LCTL set_param -n llite.*.read_ahead_stats 0
5941     # Random read in a 2M file, because max_read_ahead_whole_mb = 2M,
5942     # readahead should read in 2M file on second read, so only miss
5943     # 2 pages.
5944     echo Random 4K reads on 2M file for 1000 times
5945     $READS -f $file -s 2097152 -b 4096 -n $nreads
5946
5947     echo checking missing pages
5948     local miss=$($LCTL get_param -n llite.*.read_ahead_stats |
5949           get_named_value 'misses' | cut -d" " -f1 | calc_total)
5950
5951     [ $miss -lt 3 ] || error "misses too much pages!"
5952     cleanup_test101f
5953 }
5954 run_test 101f "check read-ahead for max_read_ahead_whole_mb"
5955
5956 setup_test102() {
5957         test_mkdir -p $DIR/$tdir
5958         chown $RUNAS_ID $DIR/$tdir
5959         STRIPE_SIZE=65536
5960         STRIPE_OFFSET=1
5961         STRIPE_COUNT=$OSTCOUNT
5962         [ $OSTCOUNT -gt 4 ] && STRIPE_COUNT=4
5963
5964         trap cleanup_test102 EXIT
5965         cd $DIR
5966         $1 $SETSTRIPE -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $STRIPE_COUNT $tdir
5967         cd $DIR/$tdir
5968         for num in 1 2 3 4; do
5969                 for count in $(seq 1 $STRIPE_COUNT); do
5970                         for idx in $(seq 0 $[$STRIPE_COUNT - 1]); do
5971                                 local size=`expr $STRIPE_SIZE \* $num`
5972                                 local file=file"$num-$idx-$count"
5973                                 $1 $SETSTRIPE -S $size -i $idx -c $count $file
5974                         done
5975                 done
5976         done
5977
5978         cd $DIR
5979         $1 $TAR cf $TMP/f102.tar $tdir --xattrs
5980 }
5981
5982 cleanup_test102() {
5983         trap 0
5984         rm -f $TMP/f102.tar
5985         rm -rf $DIR/d0.sanity/d102
5986 }
5987
5988 test_102a() {
5989         local testfile=$DIR/xattr_testfile
5990
5991         touch $testfile
5992
5993         [ "$UID" != 0 ] && skip_env "must run as root" && return
5994         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep xattr)" ] &&
5995                 skip_env "must have user_xattr" && return
5996
5997         [ -z "$(which setfattr 2>/dev/null)" ] &&
5998                 skip_env "could not find setfattr" && return
5999
6000         echo "set/get xattr..."
6001         setfattr -n trusted.name1 -v value1 $testfile ||
6002                 error "setfattr -n trusted.name1=value1 $testfile failed"
6003         getfattr -n trusted.name1 $testfile 2> /dev/null |
6004           grep "trusted.name1=.value1" ||
6005                 error "$testfile missing trusted.name1=value1"
6006
6007         setfattr -n user.author1 -v author1 $testfile ||
6008                 error "setfattr -n user.author1=author1 $testfile failed"
6009         getfattr -n user.author1 $testfile 2> /dev/null |
6010           grep "user.author1=.author1" ||
6011                 error "$testfile missing trusted.author1=author1"
6012
6013         echo "listxattr..."
6014         setfattr -n trusted.name2 -v value2 $testfile ||
6015                 error "$testfile unable to set trusted.name2"
6016         setfattr -n trusted.name3 -v value3 $testfile ||
6017                 error "$testfile unable to set trusted.name3"
6018         [ $(getfattr -d -m "^trusted" $testfile 2> /dev/null |
6019             grep "trusted.name" | wc -l) -eq 3 ] ||
6020                 error "$testfile missing 3 trusted.name xattrs"
6021
6022         setfattr -n user.author2 -v author2 $testfile ||
6023                 error "$testfile unable to set user.author2"
6024         setfattr -n user.author3 -v author3 $testfile ||
6025                 error "$testfile unable to set user.author3"
6026         [ $(getfattr -d -m "^user" $testfile 2> /dev/null |
6027             grep "user.author" | wc -l) -eq 3 ] ||
6028                 error "$testfile missing 3 user.author xattrs"
6029
6030         echo "remove xattr..."
6031         setfattr -x trusted.name1 $testfile ||
6032                 error "$testfile error deleting trusted.name1"
6033         getfattr -d -m trusted $testfile 2> /dev/null | grep "trusted.name1" &&
6034                 error "$testfile did not delete trusted.name1 xattr"
6035
6036         setfattr -x user.author1 $testfile ||
6037                 error "$testfile error deleting user.author1"
6038         getfattr -d -m user $testfile 2> /dev/null | grep "user.author1" &&
6039                 error "$testfile did not delete trusted.name1 xattr"
6040
6041         # b10667: setting lustre special xattr be silently discarded
6042         echo "set lustre special xattr ..."
6043         setfattr -n "trusted.lov" -v "invalid value" $testfile ||
6044                 error "$testfile allowed setting trusted.lov"
6045 }
6046 run_test 102a "user xattr test =================================="
6047
6048 test_102b() {
6049         # b10930: get/set/list trusted.lov xattr
6050         echo "get/set/list trusted.lov xattr ..."
6051         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
6052         local testfile=$DIR/$tfile
6053         $SETSTRIPE -S 65536 -i 1 -c $OSTCOUNT $testfile ||
6054                 error "setstripe failed"
6055         local STRIPECOUNT=$($GETSTRIPE -c $testfile) ||
6056                 error "getstripe failed"
6057         getfattr -d -m "^trusted" $testfile 2> /dev/null | \
6058         grep "trusted.lov" || error "can't get trusted.lov from $testfile"
6059
6060         local testfile2=${testfile}2
6061         local value=`getfattr -n trusted.lov $testfile 2> /dev/null | \
6062                      grep "trusted.lov" |sed -e 's/[^=]\+=//'`
6063
6064         $MCREATE $testfile2
6065         setfattr -n trusted.lov -v $value $testfile2
6066         local stripe_size=$($GETSTRIPE -S $testfile2)
6067         local stripe_count=$($GETSTRIPE -c $testfile2)
6068         [ $stripe_size -eq 65536 ] || error "stripe size $stripe_size != 65536"
6069         [ $stripe_count -eq $STRIPECOUNT ] ||
6070                 error "stripe count $stripe_count != $STRIPECOUNT"
6071         rm -f $DIR/$tfile
6072 }
6073 run_test 102b "getfattr/setfattr for trusted.lov EAs ============"
6074
6075 test_102c() {
6076         # b10930: get/set/list lustre.lov xattr
6077         echo "get/set/list lustre.lov xattr ..."
6078         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
6079         test_mkdir -p $DIR/$tdir
6080         chown $RUNAS_ID $DIR/$tdir
6081         local testfile=$DIR/$tdir/$tfile
6082         $RUNAS $SETSTRIPE -S 65536 -i 1 -c $OSTCOUNT $testfile ||
6083                 error "setstripe failed"
6084         local STRIPECOUNT=$($RUNAS $GETSTRIPE -c $testfile) ||
6085                 error "getstripe failed"
6086         $RUNAS getfattr -d -m "^lustre" $testfile 2> /dev/null | \
6087         grep "lustre.lov" || error "can't get lustre.lov from $testfile"
6088
6089         local testfile2=${testfile}2
6090         local value=`getfattr -n lustre.lov $testfile 2> /dev/null | \
6091                      grep "lustre.lov" |sed -e 's/[^=]\+=//'  `
6092
6093         $RUNAS $MCREATE $testfile2
6094         $RUNAS setfattr -n lustre.lov -v $value $testfile2
6095         local stripe_size=$($RUNAS $GETSTRIPE -S $testfile2)
6096         local stripe_count=$($RUNAS $GETSTRIPE -c $testfile2)
6097         [ $stripe_size -eq 65536 ] || error "stripe size $stripe_size != 65536"
6098         [ $stripe_count -eq $STRIPECOUNT ] ||
6099                 error "stripe count $stripe_count != $STRIPECOUNT"
6100 }
6101 run_test 102c "non-root getfattr/setfattr for lustre.lov EAs ==========="
6102
6103 compare_stripe_info1() {
6104         local stripe_index_all_zero=true
6105
6106         for num in 1 2 3 4; do
6107                 for count in $(seq 1 $STRIPE_COUNT); do
6108                         for offset in $(seq 0 $[$STRIPE_COUNT - 1]); do
6109                                 local size=$((STRIPE_SIZE * num))
6110                                 local file=file"$num-$offset-$count"
6111                                 stripe_size=$(lfs getstripe -S $PWD/$file)
6112                                 [ $stripe_size -ne $size ] &&
6113                                     error "$file: size $stripe_size != $size"
6114                                 stripe_count=$(lfs getstripe -c $PWD/$file)
6115                                 # allow fewer stripes to be created, ORI-601
6116                                 [ $stripe_count -lt $(((3 * count + 3) / 4)) ]&&
6117                                     error "$file: count $stripe_count != $count"
6118                                 stripe_index=$(lfs getstripe -i $PWD/$file)
6119                                 [ $stripe_index -ne 0 ] &&
6120                                         stripe_index_all_zero=false
6121                         done
6122                 done
6123         done
6124         $stripe_index_all_zero &&
6125                 error "all files are being extracted starting from OST index 0"
6126         return 0
6127 }
6128
6129 find_lustre_tar() {
6130         [ -n "$(which tar 2>/dev/null)" ] &&
6131                 strings $(which tar) | grep -q "lustre" && echo tar
6132 }
6133
6134 test_102d() {
6135         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6136         # b10930: tar test for trusted.lov xattr
6137         TAR=$(find_lustre_tar)
6138         [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
6139         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping N-stripe test" && return
6140         setup_test102
6141         test_mkdir -p $DIR/d102d
6142         $TAR xf $TMP/f102.tar -C $DIR/d102d --xattrs
6143         cd $DIR/d102d/$tdir
6144         compare_stripe_info1
6145 }
6146 run_test 102d "tar restore stripe info from tarfile,not keep osts ==========="
6147
6148 test_102f() {
6149         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6150         # b10930: tar test for trusted.lov xattr
6151         TAR=$(find_lustre_tar)
6152         [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
6153         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping N-stripe test" && return
6154         setup_test102
6155         test_mkdir -p $DIR/d102f
6156         cd $DIR
6157         $TAR cf - --xattrs $tdir | $TAR xf - --xattrs -C $DIR/d102f
6158         cd $DIR/d102f/$tdir
6159         compare_stripe_info1
6160 }
6161 run_test 102f "tar copy files, not keep osts ==========="
6162
6163 grow_xattr() {
6164         local xsize=${1:-1024}  # in bytes
6165         local file=$DIR/$tfile
6166
6167         [ -z $(lctl get_param -n mdc.*.connect_flags | grep xattr) ] &&
6168                 skip "must have user_xattr" && return 0
6169         [ -z "$(which setfattr 2>/dev/null)" ] &&
6170                 skip_env "could not find setfattr" && return 0
6171         [ -z "$(which getfattr 2>/dev/null)" ] &&
6172                 skip_env "could not find getfattr" && return 0
6173
6174         touch $file
6175
6176         local value="$(generate_string $xsize)"
6177
6178         local xbig=trusted.big
6179         log "save $xbig on $file"
6180         setfattr -n $xbig -v $value $file ||
6181                 error "saving $xbig on $file failed"
6182
6183         local orig=$(get_xattr_value $xbig $file)
6184         [[ "$orig" != "$value" ]] && error "$xbig different after saving $xbig"
6185
6186         local xsml=trusted.sml
6187         log "save $xsml on $file"
6188         setfattr -n $xsml -v val $file || error "saving $xsml on $file failed"
6189
6190         local new=$(get_xattr_value $xbig $file)
6191         [[ "$new" != "$orig" ]] && error "$xbig different after saving $xsml"
6192
6193         log "grow $xsml on $file"
6194         setfattr -n $xsml -v "$value" $file ||
6195                 error "growing $xsml on $file failed"
6196
6197         new=$(get_xattr_value $xbig $file)
6198         [[ "$new" != "$orig" ]] && error "$xbig different after growing $xsml"
6199         log "$xbig still valid after growing $xsml"
6200
6201         rm -f $file
6202 }
6203
6204 test_102h() { # bug 15777
6205         grow_xattr 1024
6206 }
6207 run_test 102h "grow xattr from inside inode to external block"
6208
6209 test_102ha() {
6210         large_xattr_enabled || { skip "large_xattr disabled" && return; }
6211         grow_xattr $(max_xattr_size)
6212 }
6213 run_test 102ha "grow xattr from inside inode to external inode"
6214
6215 test_102i() { # bug 17038
6216         touch $DIR/$tfile
6217         ln -s $DIR/$tfile $DIR/${tfile}link
6218         getfattr -n trusted.lov $DIR/$tfile || error "lgetxattr on $DIR/$tfile failed"
6219         getfattr -h -n trusted.lov $DIR/${tfile}link 2>&1 | grep -i "no such attr" || error "error for lgetxattr on $DIR/${tfile}link is not ENODATA"
6220         rm -f $DIR/$tfile $DIR/${tfile}link
6221 }
6222 run_test 102i "lgetxattr test on symbolic link ============"
6223
6224 test_102j() {
6225         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6226         TAR=$(find_lustre_tar)
6227         [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
6228         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping N-stripe test" && return
6229         setup_test102 "$RUNAS"
6230         test_mkdir -p $DIR/d102j
6231         chown $RUNAS_ID $DIR/d102j
6232         $RUNAS $TAR xf $TMP/f102.tar -C $DIR/d102j --xattrs
6233         cd $DIR/d102j/$tdir
6234         compare_stripe_info1 "$RUNAS"
6235 }
6236 run_test 102j "non-root tar restore stripe info from tarfile, not keep osts ==="
6237
6238 test_102k() {
6239         touch $DIR/$tfile
6240         # b22187 just check that does not crash for regular file.
6241         setfattr -n trusted.lov $DIR/$tfile
6242         # b22187 'setfattr -n trusted.lov' should work as remove LOV EA for directories
6243         local test_kdir=$DIR/d102k
6244         test_mkdir $test_kdir
6245         local default_size=`$GETSTRIPE -S $test_kdir`
6246         local default_count=`$GETSTRIPE -c $test_kdir`
6247         local default_offset=`$GETSTRIPE -i $test_kdir`
6248         $SETSTRIPE -S 65536 -i 0 -c $OSTCOUNT $test_kdir ||
6249                 error 'dir setstripe failed'
6250         setfattr -n trusted.lov $test_kdir
6251         local stripe_size=`$GETSTRIPE -S $test_kdir`
6252         local stripe_count=`$GETSTRIPE -c $test_kdir`
6253         local stripe_offset=`$GETSTRIPE -i $test_kdir`
6254         [ $stripe_size -eq $default_size ] ||
6255                 error "stripe size $stripe_size != $default_size"
6256         [ $stripe_count -eq $default_count ] ||
6257                 error "stripe count $stripe_count != $default_count"
6258         [ $stripe_offset -eq $default_offset ] ||
6259                 error "stripe offset $stripe_offset != $default_offset"
6260         rm -rf $DIR/$tfile $test_kdir
6261 }
6262 run_test 102k "setfattr without parameter of value shouldn't cause a crash"
6263
6264 test_102l() {
6265         # LU-532 trusted. xattr is invisible to non-root
6266         local testfile=$DIR/$tfile
6267
6268         touch $testfile
6269
6270         echo "listxattr as user..."
6271         chown $RUNAS_ID $testfile
6272         $RUNAS getfattr -d -m '.*' $testfile 2>&1 |
6273             grep -q "trusted" &&
6274                 error "$testfile trusted xattrs are user visible"
6275
6276         return 0;
6277 }
6278 run_test 102l "listxattr filter test =================================="
6279
6280 cleanup_test102
6281
6282 run_acl_subtest()
6283 {
6284     $LUSTRE/tests/acl/run $LUSTRE/tests/acl/$1.test
6285     return $?
6286 }
6287
6288 test_103 () {
6289         [ "$UID" != 0 ] && skip_env "must run as root" && return
6290         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl)" ] &&
6291                 skip "must have acl enabled" && return
6292         [ -z "$(which setfacl 2>/dev/null)" ] &&
6293                 skip_env "could not find setfacl" && return
6294         $GSS && skip "could not run under gss" && return
6295
6296         declare -a identity_old
6297
6298         for num in $(seq $MDSCOUNT); do
6299                 switch_identity $num true || identity_old[$num]=$?
6300         done
6301
6302         SAVE_UMASK=$(umask)
6303         umask 0022
6304         cd $DIR
6305
6306         echo "performing cp ..."
6307         run_acl_subtest cp || error "run_acl_subtest cp failed"
6308         echo "performing getfacl-noacl..."
6309         run_acl_subtest getfacl-noacl || error "getfacl-noacl test failed"
6310         echo "performing misc..."
6311         run_acl_subtest misc || error  "misc test failed"
6312         echo "performing permissions..."
6313         run_acl_subtest permissions || error "permissions failed"
6314         echo "performing setfacl..."
6315         run_acl_subtest setfacl || error  "setfacl test failed"
6316
6317         # inheritance test got from HP
6318         echo "performing inheritance..."
6319         cp $LUSTRE/tests/acl/make-tree . || error "cannot copy make-tree"
6320         chmod +x make-tree || error "chmod +x failed"
6321         run_acl_subtest inheritance || error "inheritance test failed"
6322         rm -f make-tree
6323
6324         echo "LU-974 ignore umask when acl is enabled..."
6325         run_acl_subtest 974 || error "LU-974 umask test failed"
6326         if [ $MDSCOUNT -ge 2 ]; then
6327                 run_acl_subtest 974_remote ||
6328                         error "LU-974 umask test failed under remote dir"
6329         fi
6330
6331         echo "LU-2561 newly created file is same size as directory..."
6332         run_acl_subtest 2561 || error "LU-2561 test failed"
6333
6334         cd $SAVE_PWD
6335         umask $SAVE_UMASK
6336
6337         for num in $(seq $MDSCOUNT); do
6338                 if [ "${identity_old[$num]}" = 1 ]; then
6339                         switch_identity $num false || identity_old[$num]=$?
6340                 fi
6341         done
6342 }
6343 run_test 103 "acl test ========================================="
6344
6345 test_104a() {
6346         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6347         touch $DIR/$tfile
6348         lfs df || error "lfs df failed"
6349         lfs df -ih || error "lfs df -ih failed"
6350         lfs df -h $DIR || error "lfs df -h $DIR failed"
6351         lfs df -i $DIR || error "lfs df -i $DIR failed"
6352         lfs df $DIR/$tfile || error "lfs df $DIR/$tfile failed"
6353         lfs df -ih $DIR/$tfile || error "lfs df -ih $DIR/$tfile failed"
6354
6355         local OSC=$(lctl dl | grep OST0000-osc-[^M] | awk '{ print $4 }')
6356         lctl --device %$OSC deactivate
6357         lfs df || error "lfs df with deactivated OSC failed"
6358         lctl --device %$OSC activate
6359         # wait the osc back to normal
6360         wait_osc_import_state client ost FULL
6361
6362         lfs df || error "lfs df with reactivated OSC failed"
6363         rm -f $DIR/$tfile
6364 }
6365 run_test 104a "lfs df [-ih] [path] test ========================="
6366
6367 test_104b() {
6368         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6369         [ $RUNAS_ID -eq $UID ] &&
6370                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
6371         chmod 666 /dev/obd
6372         denied_cnt=$(($($RUNAS $LFS check servers 2>&1 |
6373                         grep "Permission denied" | wc -l)))
6374         if [ $denied_cnt -ne 0 ]; then
6375                 error "lfs check servers test failed"
6376         fi
6377 }
6378 run_test 104b "$RUNAS lfs check servers test ===================="
6379
6380 test_105a() {
6381         # doesn't work on 2.4 kernels
6382         touch $DIR/$tfile
6383         if [ -n "$(mount | grep "$MOUNT.*flock" | grep -v noflock)" ]; then
6384                 flocks_test 1 on -f $DIR/$tfile || error "fail flock on"
6385         else
6386                 flocks_test 1 off -f $DIR/$tfile || error "fail flock off"
6387         fi
6388         rm -f $DIR/$tfile
6389 }
6390 run_test 105a "flock when mounted without -o flock test ========"
6391
6392 test_105b() {
6393         touch $DIR/$tfile
6394         if [ -n "$(mount | grep "$MOUNT.*flock" | grep -v noflock)" ]; then
6395                 flocks_test 1 on -c $DIR/$tfile || error "fail flock on"
6396         else
6397                 flocks_test 1 off -c $DIR/$tfile || error "fail flock off"
6398         fi
6399         rm -f $DIR/$tfile
6400 }
6401 run_test 105b "fcntl when mounted without -o flock test ========"
6402
6403 test_105c() {
6404         touch $DIR/$tfile
6405         if [ -n "$(mount | grep "$MOUNT.*flock" | grep -v noflock)" ]; then
6406                 flocks_test 1 on -l $DIR/$tfile || error "fail flock on"
6407         else
6408                 flocks_test 1 off -l $DIR/$tfile || error "fail flock off"
6409         fi
6410         rm -f $DIR/$tfile
6411 }
6412 run_test 105c "lockf when mounted without -o flock test ========"
6413
6414 test_105d() { # bug 15924
6415         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6416         test_mkdir -p $DIR/$tdir
6417         [ -z "$(mount | grep "$MOUNT.*flock" | grep -v noflock)" ] &&
6418                 skip "mount w/o flock enabled" && return
6419         #define OBD_FAIL_LDLM_CP_CB_WAIT  0x315
6420         $LCTL set_param fail_loc=0x80000315
6421         flocks_test 2 $DIR/$tdir
6422 }
6423 run_test 105d "flock race (should not freeze) ========"
6424
6425 test_105e() { # bug 22660 && 22040
6426         [ -z "$(mount | grep "$MOUNT.*flock" | grep -v noflock)" ] &&
6427                 skip "mount w/o flock enabled" && return
6428         touch $DIR/$tfile
6429         flocks_test 3 $DIR/$tfile
6430 }
6431 run_test 105e "Two conflicting flocks from same process ======="
6432
6433 test_106() { #bug 10921
6434         test_mkdir -p $DIR/$tdir
6435         $DIR/$tdir && error "exec $DIR/$tdir succeeded"
6436         chmod 777 $DIR/$tdir || error "chmod $DIR/$tdir failed"
6437 }
6438 run_test 106 "attempt exec of dir followed by chown of that dir"
6439
6440 test_107() {
6441         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6442         CDIR=`pwd`
6443         cd $DIR
6444
6445         local file=core
6446         rm -f $file
6447
6448         local save_pattern=$(sysctl -n kernel.core_pattern)
6449         local save_uses_pid=$(sysctl -n kernel.core_uses_pid)
6450         sysctl -w kernel.core_pattern=$file
6451         sysctl -w kernel.core_uses_pid=0
6452
6453         ulimit -c unlimited
6454         sleep 60 &
6455         SLEEPPID=$!
6456
6457         sleep 1
6458
6459         kill -s 11 $SLEEPPID
6460         wait $SLEEPPID
6461         if [ -e $file ]; then
6462                 size=`stat -c%s $file`
6463                 [ $size -eq 0 ] && error "Fail to create core file $file"
6464         else
6465                 error "Fail to create core file $file"
6466         fi
6467         rm -f $file
6468         sysctl -w kernel.core_pattern=$save_pattern
6469         sysctl -w kernel.core_uses_pid=$save_uses_pid
6470         cd $CDIR
6471 }
6472 run_test 107 "Coredump on SIG"
6473
6474 test_110() {
6475         test_mkdir -p $DIR/$tdir
6476         test_mkdir $DIR/$tdir/$(str_repeat 'a' 255) ||
6477                 error "mkdir with 255 char failed"
6478         test_mkdir $DIR/$tdir/$(str_repeat 'b' 256) &&
6479                 error "mkdir with 256 char should fail, but did not"
6480         touch $DIR/$tdir/$(str_repeat 'x' 255) ||
6481                 error "create with 255 char failed"
6482         touch $DIR/$tdir/$(str_repeat 'y' 256) &&
6483                 error "create with 256 char should fail, but did not"
6484
6485         ls -l $DIR/$tdir
6486         rm -rf $DIR/$tdir
6487 }
6488 run_test 110 "filename length checking"
6489
6490 test_115() {
6491         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6492         OSTIO_pre=$(ps -e|grep ll_ost_io|awk '{print $4}'|sort -n|tail -1|\
6493             cut -c11-20)
6494         [ -z "$OSTIO_pre" ] && skip "no OSS threads" && \
6495             return
6496         echo "Starting with $OSTIO_pre threads"
6497
6498         NUMTEST=20000
6499         NUMFREE=`df -i -P $DIR | tail -n 1 | awk '{ print $4 }'`
6500         [ $NUMFREE -lt $NUMTEST ] && NUMTEST=$(($NUMFREE - 1000))
6501         echo "$NUMTEST creates/unlinks"
6502         test_mkdir -p $DIR/$tdir
6503         createmany -o $DIR/$tdir/$tfile $NUMTEST
6504         unlinkmany $DIR/$tdir/$tfile $NUMTEST
6505
6506         OSTIO_post=$(ps -e|grep ll_ost_io|awk '{print $4}'|sort -n|tail -1|\
6507             cut -c11-20)
6508
6509         # don't return an error
6510         [ $OSTIO_post == $OSTIO_pre ] && echo \
6511             "WARNING: No new ll_ost_io threads were created ($OSTIO_pre)" &&
6512             echo "This may be fine, depending on what ran before this test" &&
6513             echo "and how fast this system is." && return
6514
6515         echo "Started with $OSTIO_pre threads, ended with $OSTIO_post"
6516 }
6517 run_test 115 "verify dynamic thread creation===================="
6518
6519 free_min_max () {
6520         wait_delete_completed
6521         AVAIL=($(lctl get_param -n osc.*[oO][sS][cC]-[^M]*.kbytesavail))
6522         echo OST kbytes available: ${AVAIL[@]}
6523         MAXI=0; MAXV=${AVAIL[0]}
6524         MINI=0; MINV=${AVAIL[0]}
6525         for ((i = 0; i < ${#AVAIL[@]}; i++)); do
6526             #echo OST $i: ${AVAIL[i]}kb
6527             if [ ${AVAIL[i]} -gt $MAXV ]; then
6528                 MAXV=${AVAIL[i]}; MAXI=$i
6529             fi
6530             if [ ${AVAIL[i]} -lt $MINV ]; then
6531                 MINV=${AVAIL[i]}; MINI=$i
6532             fi
6533         done
6534         echo Min free space: OST $MINI: $MINV
6535         echo Max free space: OST $MAXI: $MAXV
6536 }
6537
6538 test_116a() { # was previously test_116()
6539         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6540         [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2 OSTs" && return
6541
6542         echo -n "Free space priority "
6543         lctl get_param -n lov.*-clilov-*.qos_prio_free
6544         declare -a AVAIL
6545         free_min_max
6546         [ $MINV -gt 960000 ] && skip "too much free space in OST$MINI, skip" &&\
6547                 return
6548
6549         # generate uneven OSTs
6550         test_mkdir -p $DIR/$tdir/OST${MINI}
6551         declare -i FILL
6552         FILL=$(($MINV / 4))
6553         echo "Filling 25% remaining space in OST${MINI} with ${FILL}Kb"
6554         $SETSTRIPE -i $MINI -c 1 $DIR/$tdir/OST${MINI}||error "setstripe failed"
6555         i=0
6556         while [ $FILL -gt 0 ]; do
6557             i=$(($i + 1))
6558             dd if=/dev/zero of=$DIR/$tdir/OST${MINI}/$tfile-$i bs=2M count=1 2>/dev/null
6559             FILL=$(($FILL - 2048))
6560             echo -n .
6561         done
6562         FILL=$(($MINV / 4))
6563         sync
6564         sleep_maxage
6565
6566         free_min_max
6567         DIFF=$(($MAXV - $MINV))
6568         DIFF2=$(($DIFF * 100 / $MINV))
6569         echo -n "diff=${DIFF}=${DIFF2}% must be > 20% for QOS mode..."
6570         if [ $DIFF2 -gt 20 ]; then
6571             echo "ok"
6572         else
6573             echo "failed - QOS mode won't be used"
6574             error_ignore "QOS imbalance criteria not met"
6575             return
6576         fi
6577
6578         MINI1=$MINI; MINV1=$MINV
6579         MAXI1=$MAXI; MAXV1=$MAXV
6580
6581         # now fill using QOS
6582         echo writing a bunch of files to QOS-assigned OSTs
6583         $SETSTRIPE -c 1 $DIR/$tdir
6584         i=0
6585         while [ $FILL -gt 0 ]; do
6586             i=$(($i + 1))
6587             dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=1024 count=200 2>/dev/null
6588             FILL=$(($FILL - 200))
6589             echo -n .
6590         done
6591         echo "wrote $i 200k files"
6592         sync
6593         sleep_maxage
6594
6595         echo "Note: free space may not be updated, so measurements might be off"
6596         free_min_max
6597         DIFF2=$(($MAXV - $MINV))
6598         echo "free space delta: orig $DIFF final $DIFF2"
6599         [ $DIFF2 -gt $DIFF ] && echo "delta got worse!"
6600         DIFF=$(($MINV1 - ${AVAIL[$MINI1]}))
6601         echo "Wrote $DIFF to smaller OST $MINI1"
6602         DIFF2=$(($MAXV1 - ${AVAIL[$MAXI1]}))
6603         echo "Wrote $DIFF2 to larger OST $MAXI1"
6604         [ $DIFF -gt 0 ] && echo "Wrote $(($DIFF2 * 100 / $DIFF - 100))% more data to larger OST $MAXI1"
6605
6606         # Figure out which files were written where
6607         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
6608                awk '/'$MINI1': / {print $2; exit}')
6609         echo $UUID
6610         MINC=$($GETSTRIPE --obd $UUID $DIR/$tdir | wc -l)
6611         echo "$MINC files created on smaller OST $MINI1"
6612         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
6613                awk '/'$MAXI1': / {print $2; exit}')
6614         echo $UUID
6615         MAXC=$($GETSTRIPE --obd $UUID $DIR/$tdir | wc -l)
6616         echo "$MAXC files created on larger OST $MAXI1"
6617         [ $MINC -gt 0 ] && echo "Wrote $(($MAXC * 100 / $MINC - 100))% more files to larger OST $MAXI1"
6618         [ $MAXC -gt $MINC ] || error_ignore "stripe QOS didn't balance free space"
6619
6620         rm -rf $DIR/$tdir
6621 }
6622 run_test 116a "stripe QOS: free space balance ==================="
6623
6624 test_116b() { # LU-2093
6625         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6626 #define OBD_FAIL_MDS_OSC_CREATE_FAIL     0x147
6627         local old_rr
6628         old_rr=$(do_facet $SINGLEMDS lctl get_param -n lov.*mdtlov*.qos_threshold_rr)
6629         do_facet $SINGLEMDS lctl set_param lov.*mdtlov*.qos_threshold_rr 0
6630         mkdir -p $DIR/$tdir
6631         do_facet $SINGLEMDS lctl set_param fail_loc=0x147
6632         createmany -o $DIR/$tdir/f- 20 || error "can't create"
6633         do_facet $SINGLEMDS lctl set_param fail_loc=0
6634         rm -rf $DIR/$tdir
6635         do_facet $SINGLEMDS lctl set_param lov.*mdtlov*.qos_threshold_rr $old_rr
6636 }
6637 run_test 116b "QoS shouldn't LBUG if not enough OSTs found on the 2nd pass"
6638
6639 test_117() # bug 10891
6640 {
6641         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6642         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1
6643         #define OBD_FAIL_OST_SETATTR_CREDITS 0x21e
6644         lctl set_param fail_loc=0x21e
6645         > $DIR/$tfile || error "truncate failed"
6646         lctl set_param fail_loc=0
6647         echo "Truncate succeeded."
6648         rm -f $DIR/$tfile
6649 }
6650 run_test 117 "verify fsfilt_extend =========="
6651
6652 NO_SLOW_RESENDCOUNT=4
6653 export OLD_RESENDCOUNT=""
6654 set_resend_count () {
6655         local PROC_RESENDCOUNT="osc.${FSNAME}-OST*-osc-*.resend_count"
6656         OLD_RESENDCOUNT=$(lctl get_param -n $PROC_RESENDCOUNT | head -1)
6657         lctl set_param -n $PROC_RESENDCOUNT $1
6658         echo resend_count is set to $(lctl get_param -n $PROC_RESENDCOUNT)
6659 }
6660
6661 # for reduce test_118* time (b=14842)
6662 [ "$SLOW" = "no" ] && set_resend_count $NO_SLOW_RESENDCOUNT
6663
6664 # Reset async IO behavior after error case
6665 reset_async() {
6666         FILE=$DIR/reset_async
6667
6668         # Ensure all OSCs are cleared
6669         $SETSTRIPE -c -1 $FILE
6670         dd if=/dev/zero of=$FILE bs=64k count=$OSTCOUNT
6671         sync
6672         rm $FILE
6673 }
6674
6675 test_118a() #bug 11710
6676 {
6677         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6678         reset_async
6679
6680         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6681         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6682         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
6683
6684         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
6685                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
6686                 return 1;
6687         fi
6688         rm -f $DIR/$tfile
6689 }
6690 run_test 118a "verify O_SYNC works =========="
6691
6692 test_118b()
6693 {
6694         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6695         remote_ost_nodsh && skip "remote OST with nodsh" && return
6696
6697         reset_async
6698
6699         #define OBD_FAIL_OST_ENOENT 0x217
6700         set_nodes_failloc "$(osts_nodes)" 0x217
6701         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6702         RC=$?
6703         set_nodes_failloc "$(osts_nodes)" 0
6704         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6705         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6706                     grep -c writeback)
6707
6708         if [[ $RC -eq 0 ]]; then
6709                 error "Must return error due to dropped pages, rc=$RC"
6710                 return 1;
6711         fi
6712
6713         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
6714                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
6715                 return 1;
6716         fi
6717
6718         echo "Dirty pages not leaked on ENOENT"
6719
6720         # Due to the above error the OSC will issue all RPCs syncronously
6721         # until a subsequent RPC completes successfully without error.
6722         $MULTIOP $DIR/$tfile Ow4096yc
6723         rm -f $DIR/$tfile
6724
6725         return 0
6726 }
6727 run_test 118b "Reclaim dirty pages on fatal error =========="
6728
6729 test_118c()
6730 {
6731         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6732
6733         # for 118c, restore the original resend count, LU-1940
6734         [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] &&
6735                                 set_resend_count $OLD_RESENDCOUNT
6736         remote_ost_nodsh && skip "remote OST with nodsh" && return
6737
6738         reset_async
6739
6740         #define OBD_FAIL_OST_EROFS               0x216
6741         set_nodes_failloc "$(osts_nodes)" 0x216
6742
6743         # multiop should block due to fsync until pages are written
6744         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
6745         MULTIPID=$!
6746         sleep 1
6747
6748         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
6749                 error "Multiop failed to block on fsync, pid=$MULTIPID"
6750         fi
6751
6752         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6753                     grep -c writeback)
6754         if [[ $WRITEBACK -eq 0 ]]; then
6755                 error "No page in writeback, writeback=$WRITEBACK"
6756         fi
6757
6758         set_nodes_failloc "$(osts_nodes)" 0
6759         wait $MULTIPID
6760         RC=$?
6761         if [[ $RC -ne 0 ]]; then
6762                 error "Multiop fsync failed, rc=$RC"
6763         fi
6764
6765         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6766         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6767                     grep -c writeback)
6768         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
6769                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
6770         fi
6771
6772         rm -f $DIR/$tfile
6773         echo "Dirty pages flushed via fsync on EROFS"
6774         return 0
6775 }
6776 run_test 118c "Fsync blocks on EROFS until dirty pages are flushed =========="
6777
6778 # continue to use small resend count to reduce test_118* time (b=14842)
6779 [ "$SLOW" = "no" ] && set_resend_count $NO_SLOW_RESENDCOUNT
6780
6781 test_118d()
6782 {
6783         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6784         remote_ost_nodsh && skip "remote OST with nodsh" && return
6785
6786         reset_async
6787
6788         #define OBD_FAIL_OST_BRW_PAUSE_BULK
6789         set_nodes_failloc "$(osts_nodes)" 0x214
6790         # multiop should block due to fsync until pages are written
6791         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
6792         MULTIPID=$!
6793         sleep 1
6794
6795         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
6796                 error "Multiop failed to block on fsync, pid=$MULTIPID"
6797         fi
6798
6799         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6800                     grep -c writeback)
6801         if [[ $WRITEBACK -eq 0 ]]; then
6802                 error "No page in writeback, writeback=$WRITEBACK"
6803         fi
6804
6805         wait $MULTIPID || error "Multiop fsync failed, rc=$?"
6806         set_nodes_failloc "$(osts_nodes)" 0
6807
6808         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6809         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6810                     grep -c writeback)
6811         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
6812                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
6813         fi
6814
6815         rm -f $DIR/$tfile
6816         echo "Dirty pages gaurenteed flushed via fsync"
6817         return 0
6818 }
6819 run_test 118d "Fsync validation inject a delay of the bulk =========="
6820
6821 test_118f() {
6822         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6823         reset_async
6824
6825         #define OBD_FAIL_OSC_BRW_PREP_REQ2        0x40a
6826         lctl set_param fail_loc=0x8000040a
6827
6828         # Should simulate EINVAL error which is fatal
6829         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6830         RC=$?
6831         if [[ $RC -eq 0 ]]; then
6832                 error "Must return error due to dropped pages, rc=$RC"
6833         fi
6834
6835         lctl set_param fail_loc=0x0
6836
6837         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
6838         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6839         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6840                     grep -c writeback)
6841         if [[ $LOCKED -ne 0 ]]; then
6842                 error "Locked pages remain in cache, locked=$LOCKED"
6843         fi
6844
6845         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
6846                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
6847         fi
6848
6849         rm -f $DIR/$tfile
6850         echo "No pages locked after fsync"
6851
6852         reset_async
6853         return 0
6854 }
6855 run_test 118f "Simulate unrecoverable OSC side error =========="
6856
6857 test_118g() {
6858         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6859         reset_async
6860
6861         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
6862         lctl set_param fail_loc=0x406
6863
6864         # simulate local -ENOMEM
6865         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6866         RC=$?
6867
6868         lctl set_param fail_loc=0
6869         if [[ $RC -eq 0 ]]; then
6870                 error "Must return error due to dropped pages, rc=$RC"
6871         fi
6872
6873         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
6874         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6875         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6876                         grep -c writeback)
6877         if [[ $LOCKED -ne 0 ]]; then
6878                 error "Locked pages remain in cache, locked=$LOCKED"
6879         fi
6880
6881         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
6882                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
6883         fi
6884
6885         rm -f $DIR/$tfile
6886         echo "No pages locked after fsync"
6887
6888         reset_async
6889         return 0
6890 }
6891 run_test 118g "Don't stay in wait if we got local -ENOMEM  =========="
6892
6893 test_118h() {
6894         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6895         remote_ost_nodsh && skip "remote OST with nodsh" && return
6896
6897         reset_async
6898
6899         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
6900         set_nodes_failloc "$(osts_nodes)" 0x20e
6901         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
6902         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6903         RC=$?
6904
6905         set_nodes_failloc "$(osts_nodes)" 0
6906         if [[ $RC -eq 0 ]]; then
6907                 error "Must return error due to dropped pages, rc=$RC"
6908         fi
6909
6910         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
6911         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6912         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6913                     grep -c writeback)
6914         if [[ $LOCKED -ne 0 ]]; then
6915                 error "Locked pages remain in cache, locked=$LOCKED"
6916         fi
6917
6918         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
6919                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
6920         fi
6921
6922         rm -f $DIR/$tfile
6923         echo "No pages locked after fsync"
6924
6925         return 0
6926 }
6927 run_test 118h "Verify timeout in handling recoverables errors  =========="
6928
6929 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
6930
6931 test_118i() {
6932         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6933         remote_ost_nodsh && skip "remote OST with nodsh" && return
6934
6935         reset_async
6936
6937         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
6938         set_nodes_failloc "$(osts_nodes)" 0x20e
6939
6940         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
6941         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
6942         PID=$!
6943         sleep 5
6944         set_nodes_failloc "$(osts_nodes)" 0
6945
6946         wait $PID
6947         RC=$?
6948         if [[ $RC -ne 0 ]]; then
6949                 error "got error, but should be not, rc=$RC"
6950         fi
6951
6952         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
6953         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6954         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
6955         if [[ $LOCKED -ne 0 ]]; then
6956                 error "Locked pages remain in cache, locked=$LOCKED"
6957         fi
6958
6959         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
6960                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
6961         fi
6962
6963         rm -f $DIR/$tfile
6964         echo "No pages locked after fsync"
6965
6966         return 0
6967 }
6968 run_test 118i "Fix error before timeout in recoverable error  =========="
6969
6970 [ "$SLOW" = "no" ] && set_resend_count 4
6971
6972 test_118j() {
6973         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6974         remote_ost_nodsh && skip "remote OST with nodsh" && return
6975
6976         reset_async
6977
6978         #define OBD_FAIL_OST_BRW_WRITE_BULK2     0x220
6979         set_nodes_failloc "$(osts_nodes)" 0x220
6980
6981         # return -EIO from OST
6982         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6983         RC=$?
6984         set_nodes_failloc "$(osts_nodes)" 0x0
6985         if [[ $RC -eq 0 ]]; then
6986                 error "Must return error due to dropped pages, rc=$RC"
6987         fi
6988
6989         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
6990         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6991         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
6992         if [[ $LOCKED -ne 0 ]]; then
6993                 error "Locked pages remain in cache, locked=$LOCKED"
6994         fi
6995
6996         # in recoverable error on OST we want resend and stay until it finished
6997         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
6998                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
6999         fi
7000
7001         rm -f $DIR/$tfile
7002         echo "No pages locked after fsync"
7003
7004         return 0
7005 }
7006 run_test 118j "Simulate unrecoverable OST side error =========="
7007
7008 test_118k()
7009 {
7010         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7011         remote_ost_nodsh && skip "remote OSTs with nodsh" && return
7012
7013         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
7014         set_nodes_failloc "$(osts_nodes)" 0x20e
7015         test_mkdir -p $DIR/$tdir
7016
7017         for ((i=0;i<10;i++)); do
7018                 (dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=1M count=10 || \
7019                         error "dd to $DIR/$tdir/$tfile-$i failed" )&
7020                 SLEEPPID=$!
7021                 sleep 0.500s
7022                 kill $SLEEPPID
7023                 wait $SLEEPPID
7024         done
7025
7026         set_nodes_failloc "$(osts_nodes)" 0
7027         rm -rf $DIR/$tdir
7028 }
7029 run_test 118k "bio alloc -ENOMEM and IO TERM handling ========="
7030
7031 test_118l()
7032 {
7033         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7034         # LU-646
7035         test_mkdir -p $DIR/$tdir
7036         $MULTIOP $DIR/$tdir Dy || error "fsync dir failed"
7037         rm -rf $DIR/$tdir
7038 }
7039 run_test 118l "fsync dir ========="
7040
7041 test_118m() # LU-3066
7042 {
7043         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7044         test_mkdir -p $DIR/$tdir
7045         $MULTIOP $DIR/$tdir DY || error "fdatasync dir failed"
7046         rm -rf $DIR/$tdir
7047 }
7048 run_test 118m "fdatasync dir ========="
7049
7050 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
7051
7052 test_119a() # bug 11737
7053 {
7054         BSIZE=$((512 * 1024))
7055         directio write $DIR/$tfile 0 1 $BSIZE
7056         # We ask to read two blocks, which is more than a file size.
7057         # directio will indicate an error when requested and actual
7058         # sizes aren't equeal (a normal situation in this case) and
7059         # print actual read amount.
7060         NOB=`directio read $DIR/$tfile 0 2 $BSIZE | awk '/error/ {print $6}'`
7061         if [ "$NOB" != "$BSIZE" ]; then
7062                 error "read $NOB bytes instead of $BSIZE"
7063         fi
7064         rm -f $DIR/$tfile
7065 }
7066 run_test 119a "Short directIO read must return actual read amount"
7067
7068 test_119b() # bug 11737
7069 {
7070         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
7071
7072         $SETSTRIPE -c 2 $DIR/$tfile || error "setstripe failed"
7073         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1 || error "dd failed"
7074         sync
7075         $MULTIOP $DIR/$tfile oO_RDONLY:O_DIRECT:r$((2048 * 1024)) || \
7076                 error "direct read failed"
7077         rm -f $DIR/$tfile
7078 }
7079 run_test 119b "Sparse directIO read must return actual read amount"
7080
7081 test_119c() # bug 13099
7082 {
7083         BSIZE=1048576
7084         directio write $DIR/$tfile 3 1 $BSIZE || error "direct write failed"
7085         directio readhole $DIR/$tfile 0 2 $BSIZE || error "reading hole failed"
7086         rm -f $DIR/$tfile
7087 }
7088 run_test 119c "Testing for direct read hitting hole"
7089
7090 test_119d() # bug 15950
7091 {
7092         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7093         MAX_RPCS_IN_FLIGHT=`$LCTL get_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight`
7094         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight 1
7095         BSIZE=1048576
7096         $SETSTRIPE $DIR/$tfile -i 0 -c 1 || error "setstripe failed"
7097         $DIRECTIO write $DIR/$tfile 0 1 $BSIZE || error "first directio failed"
7098         #define OBD_FAIL_OSC_DIO_PAUSE           0x40d
7099         lctl set_param fail_loc=0x40d
7100         $DIRECTIO write $DIR/$tfile 1 4 $BSIZE &
7101         pid_dio=$!
7102         sleep 1
7103         cat $DIR/$tfile > /dev/null &
7104         lctl set_param fail_loc=0
7105         pid_reads=$!
7106         wait $pid_dio
7107         log "the DIO writes have completed, now wait for the reads (should not block very long)"
7108         sleep 2
7109         [ -n "`ps h -p $pid_reads -o comm`" ] && \
7110         error "the read rpcs have not completed in 2s"
7111         rm -f $DIR/$tfile
7112         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight $MAX_RPCS_IN_FLIGHT
7113 }
7114 run_test 119d "The DIO path should try to send a new rpc once one is completed"
7115
7116 test_120a() {
7117         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7118         test_mkdir -p $DIR/$tdir
7119         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
7120                skip "no early lock cancel on server" && return 0
7121
7122         lru_resize_disable mdc
7123         lru_resize_disable osc
7124         cancel_lru_locks mdc
7125         # asynchronous object destroy at MDT could cause bl ast to client
7126         cancel_lru_locks osc
7127
7128         stat $DIR/$tdir > /dev/null
7129         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
7130         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
7131         test_mkdir $DIR/$tdir/d1
7132         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
7133         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
7134         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
7135         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
7136         lru_resize_enable mdc
7137         lru_resize_enable osc
7138 }
7139 run_test 120a "Early Lock Cancel: mkdir test"
7140
7141 test_120b() {
7142         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7143         test_mkdir -p $DIR/$tdir
7144         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
7145                skip "no early lock cancel on server" && return 0
7146         lru_resize_disable mdc
7147         lru_resize_disable osc
7148         cancel_lru_locks mdc
7149         stat $DIR/$tdir > /dev/null
7150         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
7151         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
7152         touch $DIR/$tdir/f1
7153         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
7154         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
7155         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
7156         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
7157         lru_resize_enable mdc
7158         lru_resize_enable osc
7159 }
7160 run_test 120b "Early Lock Cancel: create test"
7161
7162 test_120c() {
7163         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7164         test_mkdir -p $DIR/$tdir
7165         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
7166                skip "no early lock cancel on server" && return 0
7167         lru_resize_disable mdc
7168         lru_resize_disable osc
7169         test_mkdir -p $DIR/$tdir/d1 $DIR/$tdir/d2
7170         touch $DIR/$tdir/d1/f1
7171         cancel_lru_locks mdc
7172         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 > /dev/null
7173         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
7174         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
7175         ln $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
7176         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
7177         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
7178         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
7179         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
7180         lru_resize_enable mdc
7181         lru_resize_enable osc
7182 }
7183 run_test 120c "Early Lock Cancel: link test"
7184
7185 test_120d() {
7186         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7187         test_mkdir -p $DIR/$tdir
7188         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
7189                skip "no early lock cancel on server" && return 0
7190         lru_resize_disable mdc
7191         lru_resize_disable osc
7192         touch $DIR/$tdir
7193         cancel_lru_locks mdc
7194         stat $DIR/$tdir > /dev/null
7195         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
7196         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
7197         chmod a+x $DIR/$tdir
7198         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
7199         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
7200         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
7201         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
7202         lru_resize_enable mdc
7203         lru_resize_enable osc
7204 }
7205 run_test 120d "Early Lock Cancel: setattr test"
7206
7207 test_120e() {
7208         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7209         test_mkdir -p $DIR/$tdir
7210         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
7211                skip "no early lock cancel on server" && return 0
7212         lru_resize_disable mdc
7213         lru_resize_disable osc
7214         dd if=/dev/zero of=$DIR/$tdir/f1 count=1
7215         cancel_lru_locks mdc
7216         cancel_lru_locks osc
7217         dd if=$DIR/$tdir/f1 of=/dev/null
7218         stat $DIR/$tdir $DIR/$tdir/f1 > /dev/null
7219         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
7220               awk '/ldlm_cancel/ {print $2}'`
7221         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
7222               awk '/ldlm_bl_callback/ {print $2}'`
7223         unlink $DIR/$tdir/f1
7224         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
7225               awk '/ldlm_cancel/ {print $2}'`
7226         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
7227               awk '/ldlm_bl_callback/ {print $2}'`
7228         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
7229         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
7230         lru_resize_enable mdc
7231         lru_resize_enable osc
7232 }
7233 run_test 120e "Early Lock Cancel: unlink test"
7234
7235 test_120f() {
7236         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7237         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
7238                skip "no early lock cancel on server" && return 0
7239         test_mkdir -p $DIR/$tdir
7240         lru_resize_disable mdc
7241         lru_resize_disable osc
7242         test_mkdir -p $DIR/$tdir/d1 $DIR/$tdir/d2
7243         dd if=/dev/zero of=$DIR/$tdir/d1/f1 count=1
7244         dd if=/dev/zero of=$DIR/$tdir/d2/f2 count=1
7245         cancel_lru_locks mdc
7246         cancel_lru_locks osc
7247         dd if=$DIR/$tdir/d1/f1 of=/dev/null
7248         dd if=$DIR/$tdir/d2/f2 of=/dev/null
7249         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2 > /dev/null
7250         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
7251               awk '/ldlm_cancel/ {print $2}'`
7252         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
7253               awk '/ldlm_bl_callback/ {print $2}'`
7254         mv $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
7255         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
7256               awk '/ldlm_cancel/ {print $2}'`
7257         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
7258               awk '/ldlm_bl_callback/ {print $2}'`
7259         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
7260         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
7261         lru_resize_enable mdc
7262         lru_resize_enable osc
7263 }
7264 run_test 120f "Early Lock Cancel: rename test"
7265
7266 test_120g() {
7267         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7268         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
7269                skip "no early lock cancel on server" && return 0
7270         lru_resize_disable mdc
7271         lru_resize_disable osc
7272         count=10000
7273         echo create $count files
7274         test_mkdir -p $DIR/$tdir
7275         cancel_lru_locks mdc
7276         cancel_lru_locks osc
7277         t0=`date +%s`
7278
7279         can0=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
7280               awk '/ldlm_cancel/ {print $2}'`
7281         blk0=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
7282               awk '/ldlm_bl_callback/ {print $2}'`
7283         createmany -o $DIR/$tdir/f $count
7284         sync
7285         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
7286               awk '/ldlm_cancel/ {print $2}'`
7287         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
7288               awk '/ldlm_bl_callback/ {print $2}'`
7289         t1=`date +%s`
7290         echo total: $((can1-can0)) cancels, $((blk1-blk0)) blockings
7291         echo rm $count files
7292         rm -r $DIR/$tdir
7293         sync
7294         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
7295               awk '/ldlm_cancel/ {print $2}'`
7296         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
7297               awk '/ldlm_bl_callback/ {print $2}'`
7298         t2=`date +%s`
7299         echo total: $count removes in $((t2-t1))
7300         echo total: $((can2-can1)) cancels, $((blk2-blk1)) blockings
7301         sleep 2
7302         # wait for commitment of removal
7303         lru_resize_enable mdc
7304         lru_resize_enable osc
7305 }
7306 run_test 120g "Early Lock Cancel: performance test"
7307
7308 test_121() { #bug #10589
7309         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7310         rm -rf $DIR/$tfile
7311         writes=$(LANG=C dd if=/dev/zero of=$DIR/$tfile count=1 2>&1 | awk -F '+' '/out$/ {print $1}')
7312 #define OBD_FAIL_LDLM_CANCEL_RACE        0x310
7313         lctl set_param fail_loc=0x310
7314         cancel_lru_locks osc > /dev/null
7315         reads=$(LANG=C dd if=$DIR/$tfile of=/dev/null 2>&1 | awk -F '+' '/in$/ {print $1}')
7316         lctl set_param fail_loc=0
7317         [ "$reads" -eq "$writes" ] || error "read" $reads "blocks, must be" $writes
7318 }
7319 run_test 121 "read cancel race ========="
7320
7321 test_123a() { # was test 123, statahead(bug 11401)
7322         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7323         SLOWOK=0
7324         if [ -z "$(grep "processor.*: 1" /proc/cpuinfo)" ]; then
7325             log "testing on UP system. Performance may be not as good as expected."
7326                         SLOWOK=1
7327         fi
7328
7329         rm -rf $DIR/$tdir
7330         test_mkdir -p $DIR/$tdir
7331         NUMFREE=`df -i -P $DIR | tail -n 1 | awk '{ print $4 }'`
7332         [ $NUMFREE -gt 100000 ] && NUMFREE=100000 || NUMFREE=$((NUMFREE-1000))
7333         MULT=10
7334         for ((i=100, j=0; i<=$NUMFREE; j=$i, i=$((i * MULT)) )); do
7335                 createmany -o $DIR/$tdir/$tfile $j $((i - j))
7336
7337                 max=`lctl get_param -n llite.*.statahead_max | head -n 1`
7338                 lctl set_param -n llite.*.statahead_max 0
7339                 lctl get_param llite.*.statahead_max
7340                 cancel_lru_locks mdc
7341                 cancel_lru_locks osc
7342                 stime=`date +%s`
7343                 time ls -l $DIR/$tdir | wc -l
7344                 etime=`date +%s`
7345                 delta=$((etime - stime))
7346                 log "ls $i files without statahead: $delta sec"
7347                 lctl set_param llite.*.statahead_max=$max
7348
7349                 swrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
7350                 lctl get_param -n llite.*.statahead_max | grep '[0-9]'
7351                 cancel_lru_locks mdc
7352                 cancel_lru_locks osc
7353                 stime=`date +%s`
7354                 time ls -l $DIR/$tdir | wc -l
7355                 etime=`date +%s`
7356                 delta_sa=$((etime - stime))
7357                 log "ls $i files with statahead: $delta_sa sec"
7358                 lctl get_param -n llite.*.statahead_stats
7359                 ewrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
7360
7361                 [ $swrong -lt $ewrong ] && log "statahead was stopped, maybe too many locks held!"
7362                 [ $delta -eq 0 -o $delta_sa -eq 0 ] && continue
7363
7364                 if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
7365                     max=`lctl get_param -n llite.*.statahead_max | head -n 1`
7366                     lctl set_param -n llite.*.statahead_max 0
7367                     lctl get_param llite.*.statahead_max
7368                     cancel_lru_locks mdc
7369                     cancel_lru_locks osc
7370                     stime=`date +%s`
7371                     time ls -l $DIR/$tdir | wc -l
7372                     etime=`date +%s`
7373                     delta=$((etime - stime))
7374                     log "ls $i files again without statahead: $delta sec"
7375                     lctl set_param llite.*.statahead_max=$max
7376                     if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
7377                         if [  $SLOWOK -eq 0 ]; then
7378                                 error "ls $i files is slower with statahead!"
7379                         else
7380                                 log "ls $i files is slower with statahead!"
7381                         fi
7382                         break
7383                     fi
7384                 fi
7385
7386                 [ $delta -gt 20 ] && break
7387                 [ $delta -gt 8 ] && MULT=$((50 / delta))
7388                 [ "$SLOW" = "no" -a $delta -gt 5 ] && break
7389         done
7390         log "ls done"
7391
7392         stime=`date +%s`
7393         rm -r $DIR/$tdir
7394         sync
7395         etime=`date +%s`
7396         delta=$((etime - stime))
7397         log "rm -r $DIR/$tdir/: $delta seconds"
7398         log "rm done"
7399         lctl get_param -n llite.*.statahead_stats
7400 }
7401 run_test 123a "verify statahead work"
7402
7403 test_123b () { # statahead(bug 15027)
7404         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7405         test_mkdir -p $DIR/$tdir
7406         createmany -o $DIR/$tdir/$tfile-%d 1000
7407
7408         cancel_lru_locks mdc
7409         cancel_lru_locks osc
7410
7411 #define OBD_FAIL_MDC_GETATTR_ENQUEUE     0x803
7412         lctl set_param fail_loc=0x80000803
7413         ls -lR $DIR/$tdir > /dev/null
7414         log "ls done"
7415         lctl set_param fail_loc=0x0
7416         lctl get_param -n llite.*.statahead_stats
7417         rm -r $DIR/$tdir
7418         sync
7419
7420 }
7421 run_test 123b "not panic with network error in statahead enqueue (bug 15027)"
7422
7423 test_124a() {
7424         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7425         [ -z "`lctl get_param -n mdc.*.connect_flags | grep lru_resize`" ] && \
7426                skip "no lru resize on server" && return 0
7427         local NR=2000
7428         test_mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
7429
7430         log "create $NR files at $DIR/$tdir"
7431         createmany -o $DIR/$tdir/f $NR ||
7432                 error "failed to create $NR files in $DIR/$tdir"
7433
7434         cancel_lru_locks mdc
7435         ls -l $DIR/$tdir > /dev/null
7436
7437         local NSDIR=""
7438         local LRU_SIZE=0
7439         for VALUE in `lctl get_param ldlm.namespaces.*mdc-*.lru_size`; do
7440                 local PARAM=`echo ${VALUE[0]} | cut -d "=" -f1`
7441                 LRU_SIZE=$(lctl get_param -n $PARAM)
7442                 if [ $LRU_SIZE -gt $(default_lru_size) ]; then
7443                         NSDIR=$(echo $PARAM | cut -d "." -f1-3)
7444                                                 log "NSDIR=$NSDIR"
7445                         log "NS=$(basename $NSDIR)"
7446                         break
7447                 fi
7448         done
7449
7450         if [ -z "$NSDIR" -o $LRU_SIZE -lt $(default_lru_size) ]; then
7451                 skip "Not enough cached locks created!"
7452                 return 0
7453         fi
7454         log "LRU=$LRU_SIZE"
7455
7456         local SLEEP=30
7457
7458         # We know that lru resize allows one client to hold $LIMIT locks
7459         # for 10h. After that locks begin to be killed by client.
7460         local MAX_HRS=10
7461         local LIMIT=`lctl get_param -n $NSDIR.pool.limit`
7462                 log "LIMIT=$LIMIT"
7463
7464         # Make LVF so higher that sleeping for $SLEEP is enough to _start_
7465         # killing locks. Some time was spent for creating locks. This means
7466         # that up to the moment of sleep finish we must have killed some of
7467         # them (10-100 locks). This depends on how fast ther were created.
7468         # Many of them were touched in almost the same moment and thus will
7469         # be killed in groups.
7470         local LVF=$(($MAX_HRS * 60 * 60 / $SLEEP * $LIMIT / $LRU_SIZE))
7471
7472         # Use $LRU_SIZE_B here to take into account real number of locks
7473         # created in the case of CMD, LRU_SIZE_B != $NR in most of cases
7474         local LRU_SIZE_B=$LRU_SIZE
7475         log "LVF=$LVF"
7476         local OLD_LVF=`lctl get_param -n $NSDIR.pool.lock_volume_factor`
7477                 log "OLD_LVF=$OLD_LVF"
7478         lctl set_param -n $NSDIR.pool.lock_volume_factor $LVF
7479
7480         # Let's make sure that we really have some margin. Client checks
7481         # cached locks every 10 sec.
7482         SLEEP=$((SLEEP+20))
7483         log "Sleep ${SLEEP} sec"
7484         local SEC=0
7485         while ((SEC<$SLEEP)); do
7486                 echo -n "..."
7487                 sleep 5
7488                 SEC=$((SEC+5))
7489                 LRU_SIZE=`lctl get_param -n $NSDIR/lru_size`
7490                 echo -n "$LRU_SIZE"
7491         done
7492         echo ""
7493         lctl set_param -n $NSDIR.pool.lock_volume_factor $OLD_LVF
7494         local LRU_SIZE_A=`lctl get_param -n $NSDIR.lru_size`
7495
7496         [ $LRU_SIZE_B -gt $LRU_SIZE_A ] || {
7497                 error "No locks dropped in ${SLEEP}s. LRU size: $LRU_SIZE_A"
7498                 unlinkmany $DIR/$tdir/f $NR
7499                 return
7500         }
7501
7502         log "Dropped "$((LRU_SIZE_B-LRU_SIZE_A))" locks in ${SLEEP}s"
7503         log "unlink $NR files at $DIR/$tdir"
7504         unlinkmany $DIR/$tdir/f $NR
7505 }
7506 run_test 124a "lru resize ======================================="
7507
7508 get_max_pool_limit()
7509 {
7510         local limit=`lctl get_param -n ldlm.namespaces.*-MDT0000-mdc-*.pool.limit`
7511         local max=0
7512         for l in $limit; do
7513                 if test $l -gt $max; then
7514                         max=$l
7515                 fi
7516         done
7517         echo $max
7518 }
7519
7520 test_124b() {
7521         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7522         [ -z "`lctl get_param -n mdc.*.connect_flags | grep lru_resize`" ] && \
7523                skip "no lru resize on server" && return 0
7524
7525         LIMIT=`get_max_pool_limit`
7526
7527         NR=$(($(default_lru_size)*20))
7528         if [ $NR -gt $LIMIT ]; then
7529                 log "Limit lock number by $LIMIT locks"
7530                 NR=$LIMIT
7531         fi
7532         lru_resize_disable mdc
7533         test_mkdir -p $DIR/$tdir/disable_lru_resize ||
7534                 error "failed to create $DIR/$tdir/disable_lru_resize"
7535
7536         createmany -o $DIR/$tdir/disable_lru_resize/f $NR
7537         log "doing ls -la $DIR/$tdir/disable_lru_resize 3 times"
7538         cancel_lru_locks mdc
7539         stime=`date +%s`
7540         PID=""
7541         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
7542         PID="$PID $!"
7543         sleep 2
7544         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
7545         PID="$PID $!"
7546         sleep 2
7547         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
7548         PID="$PID $!"
7549         wait $PID
7550         etime=`date +%s`
7551         nolruresize_delta=$((etime-stime))
7552         log "ls -la time: $nolruresize_delta seconds"
7553         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
7554         unlinkmany $DIR/$tdir/disable_lru_resize/f $NR
7555
7556         lru_resize_enable mdc
7557         test_mkdir -p $DIR/$tdir/enable_lru_resize ||
7558                 error "failed to create $DIR/$tdir/enable_lru_resize"
7559
7560         createmany -o $DIR/$tdir/enable_lru_resize/f $NR
7561         log "doing ls -la $DIR/$tdir/enable_lru_resize 3 times"
7562         cancel_lru_locks mdc
7563         stime=`date +%s`
7564         PID=""
7565         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
7566         PID="$PID $!"
7567         sleep 2
7568         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
7569         PID="$PID $!"
7570         sleep 2
7571         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
7572         PID="$PID $!"
7573         wait $PID
7574         etime=`date +%s`
7575         lruresize_delta=$((etime-stime))
7576         log "ls -la time: $lruresize_delta seconds"
7577         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
7578
7579         if [ $lruresize_delta -gt $nolruresize_delta ]; then
7580                 log "ls -la is $(((lruresize_delta - $nolruresize_delta) * 100 / $nolruresize_delta))% slower with lru resize enabled"
7581         elif [ $nolruresize_delta -gt $lruresize_delta ]; then
7582                 log "ls -la is $(((nolruresize_delta - $lruresize_delta) * 100 / $nolruresize_delta))% faster with lru resize enabled"
7583         else
7584                 log "lru resize performs the same with no lru resize"
7585         fi
7586         unlinkmany $DIR/$tdir/enable_lru_resize/f $NR
7587 }
7588 run_test 124b "lru resize (performance test) ======================="
7589
7590 test_125() { # 13358
7591         [ -z "$(lctl get_param -n llite.*.client_type | grep local)" ] && skip "must run as local client" && return
7592         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl)" ] && skip "must have acl enabled" && return
7593         test_mkdir -p $DIR/d125 || error "mkdir failed"
7594         $SETSTRIPE -S 65536 -c -1 $DIR/d125 || error "setstripe failed"
7595         setfacl -R -m u:bin:rwx $DIR/d125 || error "setfacl $DIR/d125 failed"
7596         ls -ld $DIR/d125 || error "cannot access $DIR/d125"
7597 }
7598 run_test 125 "don't return EPROTO when a dir has a non-default striping and ACLs"
7599
7600 test_126() { # bug 12829/13455
7601         [ -z "$(lctl get_param -n llite.*.client_type | grep local)" ] && skip "must run as local client" && return
7602         [ "$UID" != 0 ] && skip_env "skipping $TESTNAME (must run as root)" && return
7603         $GSS && skip "must run as gss disabled" && return
7604
7605         $RUNAS -u 0 -g 1 touch $DIR/$tfile || error "touch failed"
7606         gid=`ls -n $DIR/$tfile | awk '{print $4}'`
7607         rm -f $DIR/$tfile
7608         [ $gid -eq "1" ] || error "gid is set to" $gid "instead of 1"
7609 }
7610 run_test 126 "check that the fsgid provided by the client is taken into account"
7611
7612 test_127a() { # bug 15521
7613         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7614         $SETSTRIPE -i 0 -c 1 $DIR/$tfile || error "setstripe failed"
7615         $LCTL set_param osc.*.stats=0
7616         FSIZE=$((2048 * 1024))
7617         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
7618         cancel_lru_locks osc
7619         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE
7620
7621         $LCTL get_param osc.*0000-osc-*.stats | grep samples > $DIR/${tfile}.tmp
7622         while read NAME COUNT SAMP UNIT MIN MAX SUM SUMSQ; do
7623                 echo "got $COUNT $NAME"
7624                 [ ! $MIN ] && error "Missing min value for $NAME proc entry"
7625                 eval $NAME=$COUNT || error "Wrong proc format"
7626
7627                 case $NAME in
7628                         read_bytes|write_bytes)
7629                         [ $MIN -lt 4096 ] && error "min is too small: $MIN"
7630                         [ $MIN -gt $FSIZE ] && error "min is too big: $MIN"
7631                         [ $MAX -lt 4096 ] && error "max is too small: $MAX"
7632                         [ $MAX -gt $FSIZE ] && error "max is too big: $MAX"
7633                         [ $SUM -ne $FSIZE ] && error "sum is wrong: $SUM"
7634                         [ $SUMSQ -lt $(((FSIZE /4096) * (4096 * 4096))) ] &&
7635                                 error "sumsquare is too small: $SUMSQ"
7636                         [ $SUMSQ -gt $((FSIZE * FSIZE)) ] &&
7637                                 error "sumsquare is too big: $SUMSQ"
7638                         ;;
7639                         *) ;;
7640                 esac
7641         done < $DIR/${tfile}.tmp
7642
7643         #check that we actually got some stats
7644         [ "$read_bytes" ] || error "Missing read_bytes stats"
7645         [ "$write_bytes" ] || error "Missing write_bytes stats"
7646         [ "$read_bytes" != 0 ] || error "no read done"
7647         [ "$write_bytes" != 0 ] || error "no write done"
7648 }
7649 run_test 127a "verify the client stats are sane"
7650
7651 test_127b() { # bug LU-333
7652         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7653         $LCTL set_param llite.*.stats=0
7654         FSIZE=65536 # sized fixed to match PAGE_SIZE for most clients
7655         # perform 2 reads and writes so MAX is different from SUM.
7656         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
7657         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
7658         cancel_lru_locks osc
7659         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE count=1
7660         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE count=1
7661
7662         $LCTL get_param llite.*.stats | grep samples > $TMP/${tfile}.tmp
7663         while read NAME COUNT SAMP UNIT MIN MAX SUM SUMSQ; do
7664                 echo "got $COUNT $NAME"
7665                 eval $NAME=$COUNT || error "Wrong proc format"
7666
7667         case $NAME in
7668                 read_bytes)
7669                         [ $COUNT -ne 2 ] && error "count is not 2: $COUNT"
7670                         [ $MIN -ne $FSIZE ] && error "min is not $FSIZE: $MIN"
7671                         [ $MAX -ne $FSIZE ] && error "max is incorrect: $MAX"
7672                         [ $SUM -ne $((FSIZE * 2)) ] && error "sum is wrong: $SUM"
7673                         ;;
7674                 write_bytes)
7675                         [ $COUNT -ne 2 ] && error "count is not 2: $COUNT"
7676                         [ $MIN -ne $FSIZE ] && error "min is not $FSIZE: $MIN"
7677                         [ $MAX -ne $FSIZE ] && error "max is incorrect: $MAX"
7678                         [ $SUM -ne $((FSIZE * 2)) ] && error "sum is wrong: $SUM"
7679                         ;;
7680                         *) ;;
7681                 esac
7682         done < $TMP/${tfile}.tmp
7683
7684         #check that we actually got some stats
7685         [ "$read_bytes" ] || error "Missing read_bytes stats"
7686         [ "$write_bytes" ] || error "Missing write_bytes stats"
7687         [ "$read_bytes" != 0 ] || error "no read done"
7688         [ "$write_bytes" != 0 ] || error "no write done"
7689 }
7690 run_test 127b "verify the llite client stats are sane"
7691
7692 test_128() { # bug 15212
7693         touch $DIR/$tfile
7694         $LFS 2>&1 <<-EOF | tee $TMP/$tfile.log
7695                 find $DIR/$tfile
7696                 find $DIR/$tfile
7697         EOF
7698
7699         result=$(grep error $TMP/$tfile.log)
7700         rm -f $DIR/$tfile
7701         [ -z "$result" ] || error "consecutive find's under interactive lfs failed"
7702 }
7703 run_test 128 "interactive lfs for 2 consecutive find's"
7704
7705 set_dir_limits () {
7706         local mntdev
7707         local canondev
7708         local node
7709
7710         local LDPROC=/proc/fs/ldiskfs
7711         local facets=$(get_facets MDS)
7712
7713         for facet in ${facets//,/ }; do
7714                 canondev=$(ldiskfs_canon \
7715                            *.$(convert_facet2label $facet).mntdev $facet)
7716                 do_facet $facet "test -e $LDPROC/$canondev/max_dir_size" ||
7717                                                 LDPROC=/sys/fs/ldiskfs
7718                 do_facet $facet "echo $1 >$LDPROC/$canondev/max_dir_size"
7719         done
7720 }
7721
7722 test_129() {
7723         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7724         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
7725                 skip "Only applicable to ldiskfs-based MDTs"
7726                 return
7727         fi
7728         remote_mds_nodsh && skip "remote MDS with nodsh" && return
7729
7730         ENOSPC=28
7731         EFBIG=27
7732
7733         test_mkdir -p $DIR/$tdir
7734
7735         MAX=$(stat -c%s "$DIR/$tdir")
7736         set_dir_limits $MAX
7737         local I=0
7738         local J=0
7739         while [ ! $I -gt $MAX ]; do
7740                 $MULTIOP $DIR/$tdir/$J Oc
7741                 rc=$?
7742                 #check two errors ENOSPC for new version of ext4 max_dir_size patch
7743                 #mainline kernel commit df981d03eeff7971ac7e6ff37000bfa702327ef1
7744                 #and EFBIG for previous versions
7745                 if [ $rc -eq $EFBIG -o $rc -eq $ENOSPC ] && [ $I -gt 0 ]; then
7746                         set_dir_limits 0
7747                         echo "return code $rc received as expected"
7748                         multiop $DIR/$tdir/$J Oc
7749                         rc=$?
7750                         I=$(stat -c%s "$DIR/$tdir")
7751                         if [ $I -gt $MAX ] && [ $rc -eq 0 ]; then
7752                                 return 0
7753                         else
7754                                 error_exit "return code $rc current dir size $I " \
7755                                            "previous limit $MAX"
7756                         fi
7757                 elif [ $rc -ne 0 ]; then
7758                         set_dir_limits 0
7759                         error_exit "return code $rc received instead of expected " \
7760                                    "$EFBIG or $ENOSPC, files in dir $I"
7761                 fi
7762                 J=$((J+1))
7763                 I=$(stat -c%s "$DIR/$tdir")
7764         done
7765
7766         set_dir_limits 0
7767         error "exceeded dir size limit $MAX x $MDSCOUNT $MAX : $I bytes"
7768 }
7769 run_test 129 "test directory size limit ========================"
7770
7771 OLDIFS="$IFS"
7772 cleanup_130() {
7773         trap 0
7774         IFS="$OLDIFS"
7775 }
7776
7777 test_130a() {
7778         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
7779         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP" &&
7780                 return
7781
7782         trap cleanup_130 EXIT RETURN
7783
7784         local fm_file=$DIR/$tfile
7785         $SETSTRIPE -S 65536 -c 1 $fm_file || error "setstripe on $fm_file"
7786         dd if=/dev/zero of=$fm_file bs=65536 count=1 ||
7787                 error "dd failed for $fm_file"
7788
7789         # LU-1795: test filefrag/FIEMAP once, even if unsupported
7790         filefrag -ves $fm_file
7791         RC=$?
7792         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
7793                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
7794         [ $RC != 0 ] && error "filefrag $fm_file failed"
7795
7796         filefrag_op=$(filefrag -ve $fm_file | grep -A 100 "ext:" |
7797                       grep -v "ext:" | grep -v "found")
7798         lun=$($GETSTRIPE -i $fm_file)
7799
7800         start_blk=`echo $filefrag_op | cut -d: -f2 | cut -d. -f1`
7801         IFS=$'\n'
7802         tot_len=0
7803         for line in $filefrag_op
7804         do
7805                 frag_lun=`echo $line | cut -d: -f5`
7806                 ext_len=`echo $line | cut -d: -f4`
7807                 if (( $frag_lun != $lun )); then
7808                         cleanup_130
7809                         error "FIEMAP on 1-stripe file($fm_file) failed"
7810                         return
7811                 fi
7812                 (( tot_len += ext_len ))
7813         done
7814
7815         if (( lun != frag_lun || start_blk != 0 || tot_len != 64 )); then
7816                 cleanup_130
7817                 error "FIEMAP on 1-stripe file($fm_file) failed;"
7818                 return
7819         fi
7820
7821         cleanup_130
7822
7823         echo "FIEMAP on single striped file succeeded"
7824 }
7825 run_test 130a "FIEMAP (1-stripe file)"
7826
7827 test_130b() {
7828         [ "$OSTCOUNT" -lt "2" ] &&
7829                 skip_env "skipping FIEMAP on 2-stripe file test" && return
7830
7831         [ "$OSTCOUNT" -ge "10" ] &&
7832                 skip_env "skipping FIEMAP with >= 10 OSTs" && return
7833
7834         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
7835         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP" &&
7836                 return
7837
7838         trap cleanup_130 EXIT RETURN
7839
7840         local fm_file=$DIR/$tfile
7841         $SETSTRIPE -S 65536 -c 2 $fm_file || error "setstripe on $fm_file"
7842         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
7843                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
7844
7845         dd if=/dev/zero of=$fm_file bs=1M count=2 ||
7846                 error "dd failed on $fm_file"
7847
7848         filefrag -ves $fm_file || error "filefrag $fm_file failed"
7849         filefrag_op=$(filefrag -ve $fm_file | grep -A 100 "ext:" |
7850                       grep -v "ext:" | grep -v "found")
7851
7852         last_lun=$(echo $filefrag_op | cut -d: -f5)
7853
7854         IFS=$'\n'
7855         tot_len=0
7856         num_luns=1
7857         for line in $filefrag_op
7858         do
7859                 frag_lun=`echo $line | cut -d: -f5`
7860                 ext_len=`echo $line | cut -d: -f4`
7861                 if (( $frag_lun != $last_lun )); then
7862                         if (( tot_len != 1024 )); then
7863                                 cleanup_130
7864                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of 256"
7865                                 return
7866                         else
7867                                 (( num_luns += 1 ))
7868                                 tot_len=0
7869                         fi
7870                 fi
7871                 (( tot_len += ext_len ))
7872                 last_lun=$frag_lun
7873         done
7874         if (( num_luns != 2 || tot_len != 1024 )); then
7875                 cleanup_130
7876                 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
7877                 return
7878         fi
7879
7880         cleanup_130
7881
7882         echo "FIEMAP on 2-stripe file succeeded"
7883 }
7884 run_test 130b "FIEMAP (2-stripe file)"
7885
7886 test_130c() {
7887         [ "$OSTCOUNT" -lt "2" ] &&
7888                 skip_env "skipping FIEMAP on 2-stripe file" && return
7889
7890         [ "$OSTCOUNT" -ge "10" ] &&
7891                 skip_env "skipping FIEMAP with >= 10 OSTs" && return
7892
7893         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
7894         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" &&
7895                 return
7896
7897         trap cleanup_130 EXIT RETURN
7898
7899         local fm_file=$DIR/$tfile
7900         $SETSTRIPE -S 65536 -c 2 $fm_file || error "setstripe on $fm_file"
7901         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
7902                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
7903
7904         dd if=/dev/zero of=$fm_file seek=1 bs=1M count=1 || error "dd failed on $fm_file"
7905
7906         filefrag -ves $fm_file || error "filefrag $fm_file failed"
7907         filefrag_op=`filefrag -ve $fm_file | grep -A 100 "ext:" | grep -v "ext:" | grep -v "found"`
7908
7909         last_lun=`echo $filefrag_op | cut -d: -f5`
7910
7911         IFS=$'\n'
7912         tot_len=0
7913         num_luns=1
7914         for line in $filefrag_op
7915         do
7916                 frag_lun=`echo $line | cut -d: -f5`
7917                 ext_len=`echo $line | cut -d: -f4`
7918                 if (( $frag_lun != $last_lun )); then
7919                         logical=`echo $line | cut -d: -f2 | cut -d. -f1`
7920                         if (( logical != 512 )); then
7921                                 cleanup_130
7922                                 error "FIEMAP on $fm_file failed; returned logical start for lun $logical instead of 512"
7923                                 return
7924                         fi
7925                         if (( tot_len != 512 )); then
7926                                 cleanup_130
7927                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of 1024"
7928                                 return
7929                         else
7930                                 (( num_luns += 1 ))
7931                                 tot_len=0
7932                         fi
7933                 fi
7934                 (( tot_len += ext_len ))
7935                 last_lun=$frag_lun
7936         done
7937         if (( num_luns != 2 || tot_len != 512 )); then
7938                 cleanup_130
7939                 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
7940                 return
7941         fi
7942
7943         cleanup_130
7944
7945         echo "FIEMAP on 2-stripe file with hole succeeded"
7946 }
7947 run_test 130c "FIEMAP (2-stripe file with hole)"
7948
7949 test_130d() {
7950         [ "$OSTCOUNT" -lt "3" ] && skip_env "skipping FIEMAP on N-stripe file test" && return
7951
7952         [ "$OSTCOUNT" -ge "10" ] &&
7953                 skip_env "skipping FIEMAP with >= 10 OSTs" && return
7954
7955         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
7956         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" && return
7957
7958         trap cleanup_130 EXIT RETURN
7959
7960         local fm_file=$DIR/$tfile
7961         $SETSTRIPE -S 65536 -c $OSTCOUNT $fm_file||error "setstripe on $fm_file"
7962         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
7963                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
7964         dd if=/dev/zero of=$fm_file bs=1M count=$OSTCOUNT || error "dd failed on $fm_file"
7965
7966         filefrag -ves $fm_file || error "filefrag $fm_file failed"
7967         filefrag_op=`filefrag -ve $fm_file | grep -A 100 "ext:" | grep -v "ext:" | grep -v "found"`
7968
7969         last_lun=`echo $filefrag_op | cut -d: -f5`
7970
7971         IFS=$'\n'
7972         tot_len=0
7973         num_luns=1
7974         for line in $filefrag_op
7975         do
7976                 frag_lun=`echo $line | cut -d: -f5`
7977                 ext_len=`echo $line | cut -d: -f4`
7978                 if (( $frag_lun != $last_lun )); then
7979                         if (( tot_len != 1024 )); then
7980                                 cleanup_130
7981                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of 1024"
7982                                 return
7983                         else
7984                                 (( num_luns += 1 ))
7985                                 tot_len=0
7986                         fi
7987                 fi
7988                 (( tot_len += ext_len ))
7989                 last_lun=$frag_lun
7990         done
7991         if (( num_luns != OSTCOUNT || tot_len != 1024 )); then
7992                 cleanup_130
7993                 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
7994                 return
7995         fi
7996
7997         cleanup_130
7998
7999         echo "FIEMAP on N-stripe file succeeded"
8000 }
8001 run_test 130d "FIEMAP (N-stripe file)"
8002
8003 test_130e() {
8004         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping continuation FIEMAP test" && return
8005
8006         [ "$OSTCOUNT" -ge "10" ] &&
8007                 skip_env "skipping FIEMAP with >= 10 OSTs" && return
8008
8009         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
8010         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" && return
8011
8012         trap cleanup_130 EXIT RETURN
8013
8014         local fm_file=$DIR/$tfile
8015         $SETSTRIPE -S 131072 -c 2 $fm_file || error "setstripe on $fm_file"
8016         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
8017                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
8018
8019         NUM_BLKS=512
8020         EXPECTED_LEN=$(( (NUM_BLKS / 2) * 64 ))
8021         for ((i = 0; i < $NUM_BLKS; i++))
8022         do
8023                 dd if=/dev/zero of=$fm_file count=1 bs=64k seek=$((2*$i)) conv=notrunc > /dev/null 2>&1
8024         done
8025
8026         filefrag -ves $fm_file || error "filefrag $fm_file failed"
8027         filefrag_op=`filefrag -ve $fm_file | grep -A 12000 "ext:" | grep -v "ext:" | grep -v "found"`
8028
8029         last_lun=`echo $filefrag_op | cut -d: -f5`
8030
8031         IFS=$'\n'
8032         tot_len=0
8033         num_luns=1
8034         for line in $filefrag_op
8035         do
8036                 frag_lun=`echo $line | cut -d: -f5`
8037                 ext_len=`echo $line | cut -d: -f4`
8038                 if (( $frag_lun != $last_lun )); then
8039                         if (( tot_len != $EXPECTED_LEN )); then
8040                                 cleanup_130
8041                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of $EXPECTED_LEN"
8042                                 return
8043                         else
8044                                 (( num_luns += 1 ))
8045                                 tot_len=0
8046                         fi
8047                 fi
8048                 (( tot_len += ext_len ))
8049                 last_lun=$frag_lun
8050         done
8051         if (( num_luns != 2 || tot_len != $EXPECTED_LEN )); then
8052                 cleanup_130
8053                 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
8054                 return
8055         fi
8056
8057         cleanup_130
8058
8059         echo "FIEMAP with continuation calls succeeded"
8060 }
8061 run_test 130e "FIEMAP (test continuation FIEMAP calls)"
8062
8063 # Test for writev/readv
8064 test_131a() {
8065         rwv -f $DIR/$tfile -w -n 3 524288 1048576 1572864 || \
8066         error "writev test failed"
8067         rwv -f $DIR/$tfile -r -v -n 2 1572864 1048576 || \
8068         error "readv failed"
8069         rm -f $DIR/$tfile
8070 }
8071 run_test 131a "test iov's crossing stripe boundary for writev/readv"
8072
8073 test_131b() {
8074         rwv -f $DIR/$tfile -w -a -n 3 524288 1048576 1572864 || \
8075         error "append writev test failed"
8076         rwv -f $DIR/$tfile -w -a -n 2 1572864 1048576 || \
8077         error "append writev test failed"
8078         rm -f $DIR/$tfile
8079 }
8080 run_test 131b "test append writev"
8081
8082 test_131c() {
8083         rwv -f $DIR/$tfile -w -d -n 1 1048576 || return 0
8084         error "NOT PASS"
8085 }
8086 run_test 131c "test read/write on file w/o objects"
8087
8088 test_131d() {
8089         rwv -f $DIR/$tfile -w -n 1 1572864
8090         NOB=`rwv -f $DIR/$tfile -r -n 3 524288 524288 1048576 | awk '/error/ {print $6}'`
8091         if [ "$NOB" != 1572864 ]; then
8092                 error "Short read filed: read $NOB bytes instead of 1572864"
8093         fi
8094         rm -f $DIR/$tfile
8095 }
8096 run_test 131d "test short read"
8097
8098 test_131e() {
8099         rwv -f $DIR/$tfile -w -s 1048576 -n 1 1048576
8100         rwv -f $DIR/$tfile -r -z -s 0 -n 1 524288 || \
8101         error "read hitting hole failed"
8102         rm -f $DIR/$tfile
8103 }
8104 run_test 131e "test read hitting hole"
8105
8106 get_ost_param() {
8107         local token=$1
8108         local gl_sum=0
8109         for node in $(osts_nodes); do
8110                 gl=$(do_node $node "$LCTL get_param -n ost.OSS.ost.stats" | awk '/'$token'/ {print $2}' | head -n 1)
8111                 [ x$gl = x"" ] && gl=0
8112                 gl_sum=$((gl_sum + gl))
8113         done
8114         echo $gl_sum
8115 }
8116
8117 som_mode_switch() {
8118         local som=$1
8119         local gl1=$2
8120         local gl2=$3
8121
8122         if [ x$som = x"enabled" ]; then
8123                 [ $((gl2 - gl1)) -gt 0 ] && error "no glimpse RPC is expected"
8124                 MOUNTOPT=`echo $MOUNTOPT | sed 's/som_preview//g'`
8125                 do_facet mgs "$LCTL conf_param $FSNAME.mdt.som=disabled"
8126         else
8127                 [ $((gl2 - gl1)) -gt 0 ] || error "some glimpse RPC is expected"
8128                 MOUNTOPT="$MOUNTOPT,som_preview"
8129                 do_facet mgs "$LCTL conf_param $FSNAME.mdt.som=enabled"
8130         fi
8131
8132         # do remount to make new mount-conf parameters actual
8133         echo remounting...
8134         sync
8135         stopall
8136         setupall
8137 }
8138
8139 test_132() { #1028, SOM
8140         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8141         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8142         local num=$(get_mds_dir $DIR)
8143         local mymds=mds${num}
8144         local MOUNTOPT_SAVE=$MOUNTOPT
8145
8146         dd if=/dev/zero of=$DIR/$tfile count=1 2>/dev/null
8147         cancel_lru_locks osc
8148
8149         som1=$(do_facet $mymds "$LCTL get_param mdt.*.som" |  awk -F= ' {print $2}' | head -n 1)
8150
8151         gl1=$(get_ost_param "ldlm_glimpse_enqueue")
8152         stat $DIR/$tfile >/dev/null
8153         gl2=$(get_ost_param "ldlm_glimpse_enqueue")
8154         echo "====> SOM is "$som1", "$((gl2 - gl1))" glimpse RPC occured"
8155         rm $DIR/$tfile
8156         som_mode_switch $som1 $gl1 $gl2
8157
8158         dd if=/dev/zero of=$DIR/$tfile count=1 2>/dev/null
8159         cancel_lru_locks osc
8160
8161         som2=$(do_facet $mymds "$LCTL get_param mdt.*.som" |  awk -F= ' {print $2}' | head -n 1)
8162         if [ $som1 == $som2 ]; then
8163             error "som is still "$som2
8164             if [ x$som2 = x"enabled" ]; then
8165                 som2="disabled"
8166             else
8167                 som2="enabled"
8168             fi
8169         fi
8170
8171         gl1=$(get_ost_param "ldlm_glimpse_enqueue")
8172         stat $DIR/$tfile >/dev/null
8173         gl2=$(get_ost_param "ldlm_glimpse_enqueue")
8174         echo "====> SOM is "$som2", "$((gl2 - gl1))" glimpse RPC occured"
8175         som_mode_switch $som2 $gl1 $gl2
8176         MOUNTOPT=$MOUNTOPT_SAVE
8177 }
8178 run_test 132 "som avoids glimpse rpc"
8179
8180 check_stats() {
8181         local res
8182         local count
8183         case $1 in
8184         $SINGLEMDS) res=`do_facet $SINGLEMDS $LCTL get_param mdt.$FSNAME-MDT0000.md_stats | grep "$2"`
8185                  ;;
8186         ost) res=`do_facet ost1 $LCTL get_param obdfilter.$FSNAME-OST0000.stats | grep "$2"`
8187                  ;;
8188         *) error "Wrong argument $1" ;;
8189         esac
8190         echo $res
8191         count=`echo $res | awk '{print $2}'`
8192         [ -z "$res" ] && error "The counter for $2 on $1 was not incremented"
8193         # if the argument $3 is zero, it means any stat increment is ok.
8194         if [ $3 -gt 0 ] ; then
8195                 [ $count -ne $3 ] && error "The $2 counter on $1 is wrong - expected $3"
8196         fi
8197 }
8198
8199 test_133a() {
8200         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8201         remote_ost_nodsh && skip "remote OST with nodsh" && return
8202         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8203
8204         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
8205                 { skip "MDS doesn't support rename stats"; return; }
8206         local testdir=$DIR/${tdir}/stats_testdir
8207         mkdir -p $DIR/${tdir}
8208
8209         # clear stats.
8210         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
8211         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
8212
8213         # verify mdt stats first.
8214         mkdir ${testdir} || error "mkdir failed"
8215         check_stats $SINGLEMDS "mkdir" 1
8216         touch ${testdir}/${tfile} || "touch failed"
8217         check_stats $SINGLEMDS "open" 1
8218         check_stats $SINGLEMDS "close" 1
8219         mknod ${testdir}/${tfile}-pipe p || "mknod failed"
8220         check_stats $SINGLEMDS "mknod" 1
8221         rm -f ${testdir}/${tfile}-pipe || "pipe remove failed"
8222         check_stats $SINGLEMDS "unlink" 1
8223         rm -f ${testdir}/${tfile} || error "file remove failed"
8224         check_stats $SINGLEMDS "unlink" 2
8225
8226         # remove working dir and check mdt stats again.
8227         rmdir ${testdir} || error "rmdir failed"
8228         check_stats $SINGLEMDS "rmdir" 1
8229
8230         local testdir1=$DIR/${tdir}/stats_testdir1
8231         mkdir -p ${testdir}
8232         mkdir -p ${testdir1}
8233         touch ${testdir1}/test1
8234         mv ${testdir1}/test1 ${testdir} || error "file crossdir rename"
8235         check_stats $SINGLEMDS "crossdir_rename" 1
8236
8237         mv ${testdir}/test1 ${testdir}/test0 || error "file samedir rename"
8238         check_stats $SINGLEMDS "samedir_rename" 1
8239
8240         rm -rf $DIR/${tdir}
8241 }
8242 run_test 133a "Verifying MDT stats ========================================"
8243
8244 test_133b() {
8245         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8246         remote_ost_nodsh && skip "remote OST with nodsh" && return
8247         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8248         local testdir=$DIR/${tdir}/stats_testdir
8249         mkdir -p ${testdir} || error "mkdir failed"
8250         touch ${testdir}/${tfile} || "touch failed"
8251         cancel_lru_locks mdc
8252
8253         # clear stats.
8254         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
8255         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
8256
8257         # extra mdt stats verification.
8258         chmod 444 ${testdir}/${tfile} || error "chmod failed"
8259         check_stats $SINGLEMDS "setattr" 1
8260         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
8261         if [ $(lustre_version_code $SINGLEMDS) -ne $(version_code 2.2.0) ]
8262         then            # LU-1740
8263                 ls -l ${testdir}/${tfile} > /dev/null|| error "ls failed"
8264                 check_stats $SINGLEMDS "getattr" 1
8265         fi
8266         $LFS df || error "lfs failed"
8267         check_stats $SINGLEMDS "statfs" 1
8268
8269         rm -rf $DIR/${tdir}
8270 }
8271 run_test 133b "Verifying extra MDT stats =================================="
8272
8273 test_133c() {
8274         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8275         remote_ost_nodsh && skip "remote OST with nodsh" && return
8276         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8277         local testdir=$DIR/${tdir}/stats_testdir
8278         test_mkdir -p ${testdir} || error "mkdir failed"
8279
8280         # verify obdfilter stats.
8281         $SETSTRIPE -c 1 -i 0 ${testdir}/${tfile}
8282         sync
8283         cancel_lru_locks osc
8284         wait_delete_completed
8285
8286         # clear stats.
8287         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
8288         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
8289
8290         dd if=/dev/zero of=${testdir}/${tfile} conv=notrunc bs=512k count=1 || error "dd failed"
8291         sync
8292         cancel_lru_locks osc
8293         check_stats ost "write" 1
8294
8295         dd if=${testdir}/${tfile} of=/dev/null bs=1k count=1 || error "dd failed"
8296         check_stats ost "read" 1
8297
8298         > ${testdir}/${tfile} || error "truncate failed"
8299         check_stats ost "punch" 1
8300
8301         rm -f ${testdir}/${tfile} || error "file remove failed"
8302         wait_delete_completed
8303         check_stats ost "destroy" 1
8304
8305         rm -rf $DIR/${tdir}
8306 }
8307 run_test 133c "Verifying OST stats ========================================"
8308
8309 order_2() {
8310     local value=$1
8311     local orig=$value
8312     local order=1
8313
8314     while [ $value -ge 2 ]; do
8315         order=$((order*2))
8316         value=$((value/2))
8317     done
8318
8319     if [ $orig -gt $order ]; then
8320         order=$((order*2))
8321     fi
8322     echo $order
8323 }
8324
8325 size_in_KMGT() {
8326     local value=$1
8327     local size=('K' 'M' 'G' 'T');
8328     local i=0
8329     local size_string=$value
8330
8331     while [ $value -ge 1024 ]; do
8332         if [ $i -gt 3 ]; then
8333             #T is the biggest unit we get here, if that is bigger,
8334             #just return XXXT
8335             size_string=${value}T
8336             break
8337         fi
8338         value=$((value >> 10))
8339         if [ $value -lt 1024 ]; then
8340             size_string=${value}${size[$i]}
8341             break
8342         fi
8343         i=$((i + 1))
8344     done
8345
8346     echo $size_string
8347 }
8348
8349 get_rename_size() {
8350     local size=$1
8351     local context=${2:-.}
8352     local sample=$(do_facet $SINGLEMDS $LCTL get_param mdt.*.rename_stats |
8353                 grep -A1 $context |
8354                 awk '/ '${size}'/ {print $4}' | sed -e "s/,//g")
8355     echo $sample
8356 }
8357
8358 test_133d() {
8359         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8360         remote_ost_nodsh && skip "remote OST with nodsh" && return
8361         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8362         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
8363         { skip "MDS doesn't support rename stats"; return; }
8364
8365         local testdir1=$DIR/${tdir}/stats_testdir1
8366         local testdir2=$DIR/${tdir}/stats_testdir2
8367
8368         do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
8369
8370         mkdir -p ${testdir1} || error "mkdir failed"
8371         mkdir -p ${testdir2} || error "mkdir failed"
8372
8373         createmany -o $testdir1/test 512 || error "createmany failed"
8374
8375         # check samedir rename size
8376         mv ${testdir1}/test0 ${testdir1}/test_0
8377
8378         local testdir1_size=$(ls -l $DIR/${tdir} |
8379                 awk '/stats_testdir1/ {print $5}')
8380         local testdir2_size=$(ls -l $DIR/${tdir} |
8381                 awk '/stats_testdir2/ {print $5}')
8382
8383         testdir1_size=$(order_2 $testdir1_size)
8384         testdir2_size=$(order_2 $testdir2_size)
8385
8386         testdir1_size=$(size_in_KMGT $testdir1_size)
8387         testdir2_size=$(size_in_KMGT $testdir2_size)
8388
8389         echo "source rename dir size: ${testdir1_size}"
8390         echo "target rename dir size: ${testdir2_size}"
8391
8392         local cmd="do_facet $SINGLEMDS $LCTL get_param mdt.*.rename_stats"
8393         eval $cmd || error "$cmd failed"
8394         local samedir=$($cmd | grep 'same_dir')
8395         local same_sample=$(get_rename_size $testdir1_size)
8396         [ -z "$samedir" ] && error "samedir_rename_size count error"
8397         [ "$same_sample" -eq 1 ] || error "samedir_rename_size error $same_sample"
8398         echo "Check same dir rename stats success"
8399
8400         do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
8401
8402         # check crossdir rename size
8403         mv ${testdir1}/test_0 ${testdir2}/test_0
8404
8405         testdir1_size=$(ls -l $DIR/${tdir} |
8406                 awk '/stats_testdir1/ {print $5}')
8407         testdir2_size=$(ls -l $DIR/${tdir} |
8408                 awk '/stats_testdir2/ {print $5}')
8409
8410         testdir1_size=$(order_2 $testdir1_size)
8411         testdir2_size=$(order_2 $testdir2_size)
8412
8413         testdir1_size=$(size_in_KMGT $testdir1_size)
8414         testdir2_size=$(size_in_KMGT $testdir2_size)
8415
8416         echo "source rename dir size: ${testdir1_size}"
8417         echo "target rename dir size: ${testdir2_size}"
8418
8419         eval $cmd || error "$cmd failed"
8420         local crossdir=$($cmd | grep 'crossdir')
8421         local src_sample=$(get_rename_size $testdir1_size crossdir_src)
8422         local tgt_sample=$(get_rename_size $testdir2_size crossdir_tgt)
8423         [ -z "$crossdir" ] && error "crossdir_rename_size count error"
8424         [ "$src_sample" -eq 1 ] || error "crossdir_rename_size error $src_sample"
8425         [ "$tgt_sample" -eq 1 ] || error "crossdir_rename_size error $tgt_sample"
8426         echo "Check cross dir rename stats success"
8427         rm -rf $DIR/${tdir}
8428 }
8429 run_test 133d "Verifying rename_stats ========================================"
8430
8431 test_133e() {
8432         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8433         local testdir=$DIR/${tdir}/stats_testdir
8434         local ctr f0 f1 bs=32768 count=42 sum
8435
8436         remote_ost_nodsh && skip "remote OST with nodsh" && return
8437         mkdir -p ${testdir} || error "mkdir failed"
8438
8439         $SETSTRIPE -c 1 -i 0 ${testdir}/${tfile}
8440
8441         for ctr in {write,read}_bytes; do
8442                 sync
8443                 cancel_lru_locks osc
8444
8445                 do_facet ost1 $LCTL set_param -n \
8446                         "obdfilter.*.exports.clear=clear"
8447
8448                 if [ $ctr = write_bytes ]; then
8449                         f0=/dev/zero
8450                         f1=${testdir}/${tfile}
8451                 else
8452                         f0=${testdir}/${tfile}
8453                         f1=/dev/null
8454                 fi
8455
8456                 dd if=$f0 of=$f1 conv=notrunc bs=$bs count=$count || \
8457                         error "dd failed"
8458                 sync
8459                 cancel_lru_locks osc
8460
8461                 sum=$(do_facet ost1 $LCTL get_param \
8462                                 "obdfilter.*.exports.*.stats" | \
8463                           awk -v ctr=$ctr '\
8464                                 BEGIN { sum = 0 }
8465                                 $1 == ctr { sum += $7 }
8466                                 END { print sum }')
8467
8468                 if ((sum != bs * count)); then
8469                         error "Bad $ctr sum, expected $((bs * count)), got $sum"
8470                 fi
8471         done
8472
8473         rm -rf $DIR/${tdir}
8474 }
8475 run_test 133e "Verifying OST {read,write}_bytes nid stats ================="
8476
8477 test_133f() {
8478         local proc_dirs="/proc/fs/lustre/ /proc/sys/lnet/ /proc/sys/lustre/"
8479         local facet
8480
8481         # First without trusting modes.
8482         find $proc_dirs \
8483                 -exec cat '{}' \; &> /dev/null
8484
8485         # Second verifying readability.
8486         find $proc_dirs \
8487                 -type f \
8488                 -readable \
8489                 -exec cat '{}' \; > /dev/null ||
8490                         error "proc file read failed"
8491
8492         for facet in $SINGLEMDS ost1; do
8493                 do_facet $facet find $proc_dirs \
8494                         -not -name req_history \
8495                         -exec cat '{}' \\\; &> /dev/null
8496
8497             do_facet $facet     find $proc_dirs \
8498                         -not -name req_history \
8499                         -type f \
8500                         -readable \
8501                         -exec cat '{}' \\\; > /dev/null ||
8502                                 error "proc file read failed"
8503         done
8504 }
8505 run_test 133f "Check for LBUGs/Oopses/unreadable files in /proc"
8506
8507 test_140() { #bug-17379
8508         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8509         test_mkdir -p $DIR/$tdir || error "Creating dir $DIR/$tdir"
8510         cd $DIR/$tdir || error "Changing to $DIR/$tdir"
8511         cp /usr/bin/stat . || error "Copying stat to $DIR/$tdir"
8512
8513         # VFS limits max symlink depth to 5(4KSTACK) or 7(8KSTACK) or 8
8514         # For kernel > 3.5, bellow only tests consecutive symlink (MAX 40)
8515         local i=0
8516         while i=`expr $i + 1`; do
8517                 test_mkdir -p $i || error "Creating dir $i"
8518                 cd $i || error "Changing to $i"
8519                 ln -s ../stat stat || error "Creating stat symlink"
8520                 # Read the symlink until ELOOP present,
8521                 # not LBUGing the system is considered success,
8522                 # we didn't overrun the stack.
8523                 $OPENFILE -f O_RDONLY stat >/dev/null 2>&1; ret=$?
8524                 [ $ret -ne 0 ] && {
8525                         if [ $ret -eq 40 ]; then
8526                                 break  # -ELOOP
8527                         else
8528                                 error "Open stat symlink"
8529                                 return
8530                         fi
8531                 }
8532         done
8533         i=`expr $i - 1`
8534         echo "The symlink depth = $i"
8535         [ $i -eq 5 -o $i -eq 7 -o $i -eq 8 -o $i -eq 40 ] ||
8536                                         error "Invalid symlink depth"
8537
8538         # Test recursive symlink
8539         ln -s symlink_self symlink_self
8540         $OPENFILE -f O_RDONLY symlink_self >/dev/null 2>&1; ret=$?
8541         echo "open symlink_self returns $ret"
8542         [ $ret -eq 40 ] || error "recursive symlink doesn't return -ELOOP"
8543 }
8544 run_test 140 "Check reasonable stack depth (shouldn't LBUG) ===="
8545
8546 test_150() {
8547         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8548         local TF="$TMP/$tfile"
8549
8550         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
8551         cp $TF $DIR/$tfile
8552         cancel_lru_locks osc
8553         cmp $TF $DIR/$tfile || error "$TMP/$tfile $DIR/$tfile differ"
8554         remount_client $MOUNT
8555         df -P $MOUNT
8556         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (remount)"
8557
8558         $TRUNCATE $TF 6000
8559         $TRUNCATE $DIR/$tfile 6000
8560         cancel_lru_locks osc
8561         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (truncate1)"
8562
8563         echo "12345" >>$TF
8564         echo "12345" >>$DIR/$tfile
8565         cancel_lru_locks osc
8566         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append1)"
8567
8568         echo "12345" >>$TF
8569         echo "12345" >>$DIR/$tfile
8570         cancel_lru_locks osc
8571         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append2)"
8572
8573         rm -f $TF
8574         true
8575 }
8576 run_test 150 "truncate/append tests"
8577
8578 function roc_hit() {
8579         local list=$(comma_list $(osts_nodes))
8580         #debug temp debug for LU-2902: lets see what values we get back
8581         echo $(get_osd_param $list '' stats) 1>&2
8582         echo $(get_osd_param $list '' stats |
8583                awk '/'cache_hit'/ {sum+=$2} END {print sum}')
8584 }
8585
8586 function set_cache() {
8587         local on=1
8588
8589         if [ "$2" == "off" ]; then
8590                 on=0;
8591         fi
8592         local list=$(comma_list $(osts_nodes))
8593         set_osd_param $list '' $1_cache_enable $on
8594
8595         cancel_lru_locks osc
8596 }
8597
8598 test_151() {
8599         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8600         remote_ost_nodsh && skip "remote OST with nodsh" && return
8601
8602         local CPAGES=3
8603         local list=$(comma_list $(osts_nodes))
8604
8605         # check whether obdfilter is cache capable at all
8606         if ! get_osd_param $list '' read_cache_enable >/dev/null; then
8607                 echo "not cache-capable obdfilter"
8608                 return 0
8609         fi
8610
8611         # check cache is enabled on all obdfilters
8612         if get_osd_param $list '' read_cache_enable | grep 0; then
8613                 echo "oss cache is disabled"
8614                 return 0
8615         fi
8616
8617         set_osd_param $list '' writethrough_cache_enable 1
8618
8619         # check write cache is enabled on all obdfilters
8620         if get_osd_param $list '' writethrough_cache_enable | grep 0; then
8621                 echo "oss write cache is NOT enabled"
8622                 return 0
8623         fi
8624
8625         #define OBD_FAIL_OBD_NO_LRU  0x609
8626         do_nodes $list $LCTL set_param fail_loc=0x609
8627
8628         # pages should be in the case right after write
8629         dd if=/dev/urandom of=$DIR/$tfile bs=4k count=$CPAGES ||
8630                 error "dd failed"
8631
8632         local BEFORE=$(roc_hit)
8633         cancel_lru_locks osc
8634         cat $DIR/$tfile >/dev/null
8635         local AFTER=$(roc_hit)
8636
8637         do_nodes $list $LCTL set_param fail_loc=0
8638
8639         if ! let "AFTER - BEFORE == CPAGES"; then
8640                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
8641         fi
8642
8643         # the following read invalidates the cache
8644         cancel_lru_locks osc
8645         set_osd_param $list '' read_cache_enable 0
8646         cat $DIR/$tfile >/dev/null
8647
8648         # now data shouldn't be found in the cache
8649         BEFORE=$(roc_hit)
8650         cancel_lru_locks osc
8651         cat $DIR/$tfile >/dev/null
8652         AFTER=$(roc_hit)
8653         if let "AFTER - BEFORE != 0"; then
8654                 error "IN CACHE: before: $BEFORE, after: $AFTER"
8655         fi
8656
8657         set_osd_param $list '' read_cache_enable 1
8658         rm -f $DIR/$tfile
8659 }
8660 run_test 151 "test cache on oss and controls ==============================="
8661
8662 test_152() {
8663         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8664         local TF="$TMP/$tfile"
8665
8666         # simulate ENOMEM during write
8667 #define OBD_FAIL_OST_NOMEM      0x226
8668         lctl set_param fail_loc=0x80000226
8669         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
8670         cp $TF $DIR/$tfile
8671         sync || error "sync failed"
8672         lctl set_param fail_loc=0
8673
8674         # discard client's cache
8675         cancel_lru_locks osc
8676
8677         # simulate ENOMEM during read
8678         lctl set_param fail_loc=0x80000226
8679         cmp $TF $DIR/$tfile || error "cmp failed"
8680         lctl set_param fail_loc=0
8681
8682         rm -f $TF
8683 }
8684 run_test 152 "test read/write with enomem ============================"
8685
8686 test_153() {
8687         $MULTIOP $DIR/$tfile Ow4096Ycu || error "multiop failed"
8688 }
8689 run_test 153 "test if fdatasync does not crash ======================="
8690
8691 dot_lustre_fid_permission_check() {
8692         local fid=$1
8693         local ffid=$MOUNT/.lustre/fid/$fid
8694         local test_dir=$2
8695
8696         echo "stat fid $fid"
8697         stat $ffid > /dev/null || error "stat $ffid failed."
8698         echo "touch fid $fid"
8699         touch $ffid || error "touch $ffid failed."
8700         echo "write to fid $fid"
8701         cat /etc/hosts > $ffid || error "write $ffid failed."
8702         echo "read fid $fid"
8703         diff /etc/hosts $ffid || error "read $ffid failed."
8704         echo "append write to fid $fid"
8705         cat /etc/hosts >> $ffid || error "append write $ffid failed."
8706         echo "rename fid $fid"
8707         mv $ffid $test_dir/$tfile.1 &&
8708                 error "rename $ffid to $tfile.1 should fail."
8709         touch $test_dir/$tfile.1
8710         mv $test_dir/$tfile.1 $ffid &&
8711                 error "rename $tfile.1 to $ffid should fail."
8712         rm -f $test_dir/$tfile.1
8713         echo "truncate fid $fid"
8714         $TRUNCATE $ffid 777 || error "truncate $ffid failed."
8715         echo "link fid $fid"
8716         ln -f $ffid $test_dir/tfile.lnk || error "link $ffid failed."
8717         if [ -n $(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl) ]; then
8718                 echo "setfacl fid $fid"
8719                 setfacl -R -m u:bin:rwx $ffid || error "setfacl $ffid failed."
8720                 echo "getfacl fid $fid"
8721                 getfacl $ffid >/dev/null || error "getfacl $ffid failed."
8722         fi
8723         echo "unlink fid $fid"
8724         unlink $MOUNT/.lustre/fid/$fid && error "unlink $ffid should fail."
8725         echo "mknod fid $fid"
8726         mknod $ffid c 1 3 && error "mknod $ffid should fail."
8727
8728         fid=[0xf00000400:0x1:0x0]
8729         ffid=$MOUNT/.lustre/fid/$fid
8730
8731         echo "stat non-exist fid $fid"
8732         stat $ffid > /dev/null && error "stat non-exist $ffid should fail."
8733         echo "write to non-exist fid $fid"
8734         cat /etc/hosts > $ffid && error "write non-exist $ffid should fail."
8735         echo "link new fid $fid"
8736         ln $test_dir/$tfile $ffid && error "link $ffid should fail."
8737
8738         mkdir -p $test_dir/$tdir
8739         touch $test_dir/$tdir/$tfile
8740         fid=$($LFS path2fid $test_dir/$tdir)
8741         rc=$?
8742         [ $rc -ne 0 ] &&
8743                 error "error: could not get fid for $test_dir/$dir/$tfile."
8744
8745         ffid=$MOUNT/.lustre/fid/$fid
8746
8747         echo "ls $fid"
8748         ls $ffid > /dev/null || error "ls $ffid failed."
8749         echo "touch $fid/$tfile.1"
8750         touch $ffid/$tfile.1 || error "touch $ffid/$tfile.1 failed."
8751
8752         echo "touch $MOUNT/.lustre/fid/$tfile"
8753         touch $MOUNT/.lustre/fid/$tfile && \
8754                 error "touch $MOUNT/.lustre/fid/$tfile should fail."
8755
8756         echo "setxattr to $MOUNT/.lustre/fid"
8757         setfattr -n trusted.name1 -v value1 $MOUNT/.lustre/fid
8758
8759         echo "listxattr for $MOUNT/.lustre/fid"
8760         getfattr -d -m "^trusted" $MOUNT/.lustre/fid
8761
8762         echo "delxattr from $MOUNT/.lustre/fid"
8763         setfattr -x trusted.name1 $MOUNT/.lustre/fid
8764
8765         echo "touch invalid fid: $MOUNT/.lustre/fid/[0x200000400:0x2:0x3]"
8766         touch $MOUNT/.lustre/fid/[0x200000400:0x2:0x3] &&
8767                 error "touch invalid fid should fail."
8768
8769         echo "touch non-normal fid: $MOUNT/.lustre/fid/[0x1:0x2:0x0]"
8770         touch $MOUNT/.lustre/fid/[0x1:0x2:0x0] &&
8771                 error "touch non-normal fid should fail."
8772
8773         echo "rename $tdir to $MOUNT/.lustre/fid"
8774         mrename $test_dir/$tdir $MOUNT/.lustre/fid &&
8775                 error "rename to $MOUNT/.lustre/fid should fail."
8776
8777         local old_obf_mode=$(stat --format="%a" $DIR/.lustre/fid)
8778         local new_obf_mode=777
8779
8780         echo "change mode of $DIR/.lustre/fid to $new_obf_mode"
8781         chmod $new_obf_mode $DIR/.lustre/fid ||
8782                 error "chmod $new_obf_mode $DIR/.lustre/fid failed"
8783
8784         local obf_mode=$(stat --format=%a $DIR/.lustre/fid)
8785         [ $obf_mode -eq $new_obf_mode ] ||
8786                 error "stat $DIR/.lustre/fid returned wrong mode $obf_mode"
8787
8788         echo "restore mode of $DIR/.lustre/fid to $old_obf_mode"
8789         chmod $old_obf_mode $DIR/.lustre/fid ||
8790                 error "chmod $old_obf_mode $DIR/.lustre/fid failed"
8791
8792         $OPENFILE -f O_LOV_DELAY_CREATE:O_CREAT $test_dir/$tfile-2
8793         fid=$($LFS path2fid $test_dir/$tfile-2)
8794         echo "cp /etc/passwd $MOUNT/.lustre/fid/$fid"
8795         cp /etc/passwd $MOUNT/.lustre/fid/$fid &&
8796                 error "create lov data thru .lustre should fail."
8797         echo "cp /etc/passwd $test_dir/$tfile-2"
8798         cp /etc/passwd $test_dir/$tfile-2 ||
8799                 error "copy to $test_dir/$tfile-2 failed."
8800         echo "diff /etc/passwd $MOUNT/.lustre/fid/$fid"
8801         diff /etc/passwd $MOUNT/.lustre/fid/$fid ||
8802                 error "diff /etc/passwd $MOUNT/.lustre/fid/$fid failed."
8803
8804         rm -rf $test_dir/tfile.lnk
8805         rm -rf $test_dir/$tfile-2
8806 }
8807
8808 test_154a() {
8809         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8810         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ]] ||
8811                 { skip "Need MDS version at least 2.2.51"; return 0; }
8812
8813         cp /etc/hosts $DIR/$tfile
8814
8815         fid=$($LFS path2fid $DIR/$tfile)
8816         rc=$?
8817         [ $rc -ne 0 ] && error "error: could not get fid for $DIR/$tfile."
8818
8819         dot_lustre_fid_permission_check "$fid" $DIR ||
8820                 error "dot lustre permission check $fid failed"
8821
8822         rm -rf $MOUNT/.lustre && error ".lustre is not allowed to be unlinked"
8823
8824         touch $MOUNT/.lustre/file &&
8825                 error "creation is not allowed under .lustre"
8826
8827         mkdir $MOUNT/.lustre/dir &&
8828                 error "mkdir is not allowed under .lustre"
8829
8830         rm -rf $DIR/$tfile
8831 }
8832 run_test 154a "Open-by-FID"
8833
8834 test_154b() {
8835         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8836         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ]] ||
8837                 { skip "Need MDS version at least 2.2.51"; return 0; }
8838
8839         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
8840
8841         local remote_dir=$DIR/$tdir/remote_dir
8842         local MDTIDX=1
8843         local rc=0
8844
8845         mkdir -p $DIR/$tdir
8846         $LFS mkdir -i $MDTIDX $remote_dir ||
8847                 error "create remote directory failed"
8848
8849         cp /etc/hosts $remote_dir/$tfile
8850
8851         fid=$($LFS path2fid $remote_dir/$tfile)
8852         rc=$?
8853         [ $rc -ne 0 ] && error "error: could not get fid for $remote_dir/$tfile"
8854
8855         dot_lustre_fid_permission_check "$fid" $remote_dir ||
8856                 error "dot lustre permission check $fid failed"
8857         rm -rf $DIR/$tdir
8858 }
8859 run_test 154b "Open-by-FID for remote directory"
8860
8861 test_155_small_load() {
8862     local temp=$TMP/$tfile
8863     local file=$DIR/$tfile
8864
8865     dd if=/dev/urandom of=$temp bs=6096 count=1 || \
8866         error "dd of=$temp bs=6096 count=1 failed"
8867     cp $temp $file
8868     cancel_lru_locks osc
8869     cmp $temp $file || error "$temp $file differ"
8870
8871     $TRUNCATE $temp 6000
8872     $TRUNCATE $file 6000
8873     cmp $temp $file || error "$temp $file differ (truncate1)"
8874
8875     echo "12345" >>$temp
8876     echo "12345" >>$file
8877     cmp $temp $file || error "$temp $file differ (append1)"
8878
8879     echo "12345" >>$temp
8880     echo "12345" >>$file
8881     cmp $temp $file || error "$temp $file differ (append2)"
8882
8883     rm -f $temp $file
8884     true
8885 }
8886
8887 test_155_big_load() {
8888     remote_ost_nodsh && skip "remote OST with nodsh" && return
8889     local temp=$TMP/$tfile
8890     local file=$DIR/$tfile
8891
8892     free_min_max
8893     local cache_size=$(do_facet ost$((MAXI+1)) \
8894         "awk '/cache/ {sum+=\\\$4} END {print sum}' /proc/cpuinfo")
8895     local large_file_size=$((cache_size * 2))
8896
8897     echo "OSS cache size: $cache_size KB"
8898     echo "Large file size: $large_file_size KB"
8899
8900     [ $MAXV -le $large_file_size ] && \
8901         skip_env "max available OST size needs > $large_file_size KB" && \
8902         return 0
8903
8904     $SETSTRIPE $file -c 1 -i $MAXI || error "$SETSTRIPE $file failed"
8905
8906     dd if=/dev/urandom of=$temp bs=$large_file_size count=1k || \
8907         error "dd of=$temp bs=$large_file_size count=1k failed"
8908     cp $temp $file
8909     ls -lh $temp $file
8910     cancel_lru_locks osc
8911     cmp $temp $file || error "$temp $file differ"
8912
8913     rm -f $temp $file
8914     true
8915 }
8916
8917 test_155a() {
8918         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8919         set_cache read on
8920         set_cache writethrough on
8921         test_155_small_load
8922 }
8923 run_test 155a "Verify small file correctness: read cache:on write_cache:on"
8924
8925 test_155b() {
8926         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8927         set_cache read on
8928         set_cache writethrough off
8929         test_155_small_load
8930 }
8931 run_test 155b "Verify small file correctness: read cache:on write_cache:off"
8932
8933 test_155c() {
8934         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8935         set_cache read off
8936         set_cache writethrough on
8937         test_155_small_load
8938 }
8939 run_test 155c "Verify small file correctness: read cache:off write_cache:on"
8940
8941 test_155d() {
8942         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8943         set_cache read off
8944         set_cache writethrough off
8945         test_155_small_load
8946 }
8947 run_test 155d "Verify small file correctness: read cache:off write_cache:off"
8948
8949 test_155e() {
8950         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8951         set_cache read on
8952         set_cache writethrough on
8953         test_155_big_load
8954 }
8955 run_test 155e "Verify big file correctness: read cache:on write_cache:on"
8956
8957 test_155f() {
8958         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8959         set_cache read on
8960         set_cache writethrough off
8961         test_155_big_load
8962 }
8963 run_test 155f "Verify big file correctness: read cache:on write_cache:off"
8964
8965 test_155g() {
8966         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8967         set_cache read off
8968         set_cache writethrough on
8969         test_155_big_load
8970 }
8971 run_test 155g "Verify big file correctness: read cache:off write_cache:on"
8972
8973 test_155h() {
8974         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8975         set_cache read off
8976         set_cache writethrough off
8977         test_155_big_load
8978 }
8979 run_test 155h "Verify big file correctness: read cache:off write_cache:off"
8980
8981 test_156() {
8982         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8983         local CPAGES=3
8984         local BEFORE
8985         local AFTER
8986         local file="$DIR/$tfile"
8987
8988         [ "$(facet_fstype ost1)" = "zfs" ] &&
8989                 skip "LU-1956/LU-2261: stats unimplemented on OSD ZFS" &&
8990                 return
8991
8992     log "Turn on read and write cache"
8993     set_cache read on
8994     set_cache writethrough on
8995
8996     log "Write data and read it back."
8997     log "Read should be satisfied from the cache."
8998     dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
8999     BEFORE=`roc_hit`
9000     cancel_lru_locks osc
9001     cat $file >/dev/null
9002     AFTER=`roc_hit`
9003     if ! let "AFTER - BEFORE == CPAGES"; then
9004         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
9005     else
9006         log "cache hits:: before: $BEFORE, after: $AFTER"
9007     fi
9008
9009     log "Read again; it should be satisfied from the cache."
9010     BEFORE=$AFTER
9011     cancel_lru_locks osc
9012     cat $file >/dev/null
9013     AFTER=`roc_hit`
9014     if ! let "AFTER - BEFORE == CPAGES"; then
9015         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
9016     else
9017         log "cache hits:: before: $BEFORE, after: $AFTER"
9018     fi
9019
9020
9021     log "Turn off the read cache and turn on the write cache"
9022     set_cache read off
9023     set_cache writethrough on
9024
9025     log "Read again; it should be satisfied from the cache."
9026     BEFORE=`roc_hit`
9027     cancel_lru_locks osc
9028     cat $file >/dev/null
9029     AFTER=`roc_hit`
9030     if ! let "AFTER - BEFORE == CPAGES"; then
9031         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
9032     else
9033         log "cache hits:: before: $BEFORE, after: $AFTER"
9034     fi
9035
9036     log "Read again; it should not be satisfied from the cache."
9037     BEFORE=$AFTER
9038     cancel_lru_locks osc
9039     cat $file >/dev/null
9040     AFTER=`roc_hit`
9041     if ! let "AFTER - BEFORE == 0"; then
9042         error "IN CACHE: before: $BEFORE, after: $AFTER"
9043     else
9044         log "cache hits:: before: $BEFORE, after: $AFTER"
9045     fi
9046
9047     log "Write data and read it back."
9048     log "Read should be satisfied from the cache."
9049     dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
9050     BEFORE=`roc_hit`
9051     cancel_lru_locks osc
9052     cat $file >/dev/null
9053     AFTER=`roc_hit`
9054     if ! let "AFTER - BEFORE == CPAGES"; then
9055         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
9056     else
9057         log "cache hits:: before: $BEFORE, after: $AFTER"
9058     fi
9059
9060     log "Read again; it should not be satisfied from the cache."
9061     BEFORE=$AFTER
9062     cancel_lru_locks osc
9063     cat $file >/dev/null
9064     AFTER=`roc_hit`
9065     if ! let "AFTER - BEFORE == 0"; then
9066         error "IN CACHE: before: $BEFORE, after: $AFTER"
9067     else
9068         log "cache hits:: before: $BEFORE, after: $AFTER"
9069     fi
9070
9071
9072     log "Turn off read and write cache"
9073     set_cache read off
9074     set_cache writethrough off
9075
9076     log "Write data and read it back"
9077     log "It should not be satisfied from the cache."
9078     rm -f $file
9079     dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
9080     cancel_lru_locks osc
9081     BEFORE=`roc_hit`
9082     cat $file >/dev/null
9083     AFTER=`roc_hit`
9084     if ! let "AFTER - BEFORE == 0"; then
9085         error_ignore 20762 "IN CACHE: before: $BEFORE, after: $AFTER"
9086     else
9087         log "cache hits:: before: $BEFORE, after: $AFTER"
9088     fi
9089
9090
9091     log "Turn on the read cache and turn off the write cache"
9092     set_cache read on
9093     set_cache writethrough off
9094
9095     log "Write data and read it back"
9096     log "It should not be satisfied from the cache."
9097     rm -f $file
9098     dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
9099     BEFORE=`roc_hit`
9100     cancel_lru_locks osc
9101     cat $file >/dev/null
9102     AFTER=`roc_hit`
9103     if ! let "AFTER - BEFORE == 0"; then
9104         error_ignore 20762 "IN CACHE: before: $BEFORE, after: $AFTER"
9105     else
9106         log "cache hits:: before: $BEFORE, after: $AFTER"
9107     fi
9108
9109     log "Read again; it should be satisfied from the cache."
9110     BEFORE=`roc_hit`
9111     cancel_lru_locks osc
9112     cat $file >/dev/null
9113     AFTER=`roc_hit`
9114     if ! let "AFTER - BEFORE == CPAGES"; then
9115         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
9116     else
9117         log "cache hits:: before: $BEFORE, after: $AFTER"
9118     fi
9119
9120     rm -f $file
9121 }
9122 run_test 156 "Verification of tunables ============================"
9123
9124 #Changelogs
9125 err17935 () {
9126     if [ $MDSCOUNT -gt 1 ]; then
9127         error_ignore 17935 $*
9128     else
9129         error $*
9130     fi
9131 }
9132
9133 changelog_chmask()
9134 {
9135     MASK=$(do_facet $SINGLEMDS $LCTL get_param mdd.$MDT0.changelog_mask |\
9136            grep -c $1)
9137
9138     if [ $MASK -eq 1 ]; then
9139         do_facet $SINGLEMDS $LCTL set_param mdd.$MDT0.changelog_mask="-$1"
9140     else
9141         do_facet $SINGLEMDS $LCTL set_param mdd.$MDT0.changelog_mask="+$1"
9142     fi
9143 }
9144
9145 test_160() {
9146         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9147     remote_mds_nodsh && skip "remote MDS with nodsh" && return
9148     [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] ||
9149         { skip "Need MDS version at least 2.2.0"; return; }
9150     USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_register -n)
9151     echo "Registered as changelog user $USER"
9152     do_facet $SINGLEMDS $LCTL get_param -n mdd.$MDT0.changelog_users | \
9153         grep -q $USER || error "User $USER not found in changelog_users"
9154
9155     # change something
9156     test_mkdir -p $DIR/$tdir/pics/2008/zachy
9157     touch $DIR/$tdir/pics/2008/zachy/timestamp
9158     cp /etc/hosts $DIR/$tdir/pics/2008/zachy/pic1.jpg
9159     mv $DIR/$tdir/pics/2008/zachy $DIR/$tdir/pics/zach
9160     ln $DIR/$tdir/pics/zach/pic1.jpg $DIR/$tdir/pics/2008/portland.jpg
9161     ln -s $DIR/$tdir/pics/2008/portland.jpg $DIR/$tdir/pics/desktop.jpg
9162     rm $DIR/$tdir/pics/desktop.jpg
9163
9164     $LFS changelog $MDT0 | tail -5
9165
9166     echo "verifying changelog mask"
9167     changelog_chmask "MKDIR"
9168     changelog_chmask "CLOSE"
9169
9170     test_mkdir -p $DIR/$tdir/pics/zach/sofia
9171     echo "zzzzzz" > $DIR/$tdir/pics/zach/file
9172
9173     changelog_chmask "MKDIR"
9174     changelog_chmask "CLOSE"
9175
9176     test_mkdir -p $DIR/$tdir/pics/2008/sofia
9177     echo "zzzzzz" > $DIR/$tdir/pics/zach/file
9178
9179     $LFS changelog $MDT0
9180     MKDIRS=$($LFS changelog $MDT0 | tail -5 | grep -c "MKDIR")
9181     CLOSES=$($LFS changelog $MDT0 | tail -5 | grep -c "CLOSE")
9182     [ $MKDIRS -eq 1 ] || err17935 "MKDIR changelog mask count $DIRS != 1"
9183     [ $CLOSES -eq 1 ] || err17935 "CLOSE changelog mask count $DIRS != 1"
9184
9185     # verify contents
9186     echo "verifying target fid"
9187     fidc=$($LFS changelog $MDT0 | grep timestamp | grep "CREAT" | \
9188         tail -1 | awk '{print $6}')
9189     fidf=$($LFS path2fid $DIR/$tdir/pics/zach/timestamp)
9190     [ "$fidc" == "t=$fidf" ] || \
9191         err17935 "fid in changelog $fidc != file fid $fidf"
9192     echo "verifying parent fid"
9193     fidc=$($LFS changelog $MDT0 | grep timestamp | grep "CREAT" | \
9194         tail -1 | awk '{print $7}')
9195     fidf=$($LFS path2fid $DIR/$tdir/pics/zach)
9196     [ "$fidc" == "p=$fidf" ] || \
9197         err17935 "pfid in changelog $fidc != dir fid $fidf"
9198
9199     USER_REC1=$(do_facet $SINGLEMDS $LCTL get_param -n \
9200         mdd.$MDT0.changelog_users | grep $USER | awk '{print $2}')
9201     $LFS changelog_clear $MDT0 $USER $(($USER_REC1 + 5))
9202     USER_REC2=$(do_facet $SINGLEMDS $LCTL get_param -n \
9203         mdd.$MDT0.changelog_users | grep $USER | awk '{print $2}')
9204     echo "verifying user clear: $(( $USER_REC1 + 5 )) == $USER_REC2"
9205     [ $USER_REC2 == $(($USER_REC1 + 5)) ] || \
9206         err17935 "user index should be $(($USER_REC1 + 5)); is $USER_REC2"
9207
9208     MIN_REC=$(do_facet $SINGLEMDS $LCTL get_param mdd.$MDT0.changelog_users | \
9209         awk 'min == "" || $2 < min {min = $2}; END {print min}')
9210     FIRST_REC=$($LFS changelog $MDT0 | head -1 | awk '{print $1}')
9211     echo "verifying min purge: $(( $MIN_REC + 1 )) == $FIRST_REC"
9212     [ $FIRST_REC == $(($MIN_REC + 1)) ] || \
9213         err17935 "first index should be $(($MIN_REC + 1)); is $FIRST_REC"
9214
9215     echo "verifying user deregister"
9216     do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister $USER
9217     do_facet $SINGLEMDS $LCTL get_param -n mdd.$MDT0.changelog_users | \
9218         grep -q $USER && error "User $USER still found in changelog_users"
9219
9220     USERS=$(( $(do_facet $SINGLEMDS $LCTL get_param -n \
9221         mdd.$MDT0.changelog_users | wc -l) - 2 ))
9222     if [ $USERS -eq 0 ]; then
9223         LAST_REC1=$(do_facet $SINGLEMDS $LCTL get_param -n \
9224             mdd.$MDT0.changelog_users | head -1 | awk '{print $3}')
9225         touch $DIR/$tdir/chloe
9226         LAST_REC2=$(do_facet $SINGLEMDS $LCTL get_param -n \
9227             mdd.$MDT0.changelog_users | head -1 | awk '{print $3}')
9228         echo "verify changelogs are off if we were the only user: $LAST_REC1 == $LAST_REC2"
9229         [ $LAST_REC1 == $LAST_REC2 ] || error "changelogs not off"
9230     else
9231         echo "$USERS other changelog users; can't verify off"
9232     fi
9233 }
9234 run_test 160 "changelog sanity"
9235
9236 test_161a() {
9237         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9238     test_mkdir -p $DIR/$tdir
9239     cp /etc/hosts $DIR/$tdir/$tfile
9240     test_mkdir $DIR/$tdir/foo1
9241     test_mkdir $DIR/$tdir/foo2
9242     ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/sofia
9243     ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/zachary
9244     ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/luna
9245     ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/thor
9246         local FID=$($LFS path2fid $DIR/$tdir/$tfile | tr -d '[]')
9247         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
9248                 $LFS fid2path $DIR $FID
9249                 err17935 "bad link ea"
9250         fi
9251     # middle
9252     rm $DIR/$tdir/foo2/zachary
9253     # last
9254     rm $DIR/$tdir/foo2/thor
9255     # first
9256     rm $DIR/$tdir/$tfile
9257     # rename
9258     mv $DIR/$tdir/foo1/sofia $DIR/$tdir/foo2/maggie
9259     if [ "$($LFS fid2path $FSNAME --link 1 $FID)" != "$tdir/foo2/maggie" ]
9260         then
9261         $LFS fid2path $DIR $FID
9262         err17935 "bad link rename"
9263     fi
9264     rm $DIR/$tdir/foo2/maggie
9265
9266     # overflow the EA
9267     local longname=filename_avg_len_is_thirty_two_
9268     createmany -l$DIR/$tdir/foo1/luna $DIR/$tdir/foo2/$longname 1000 || \
9269         error "failed to hardlink many files"
9270     links=$($LFS fid2path $DIR $FID | wc -l)
9271     echo -n "${links}/1000 links in link EA"
9272     [ ${links} -gt 60 ] || err17935 "expected at least 60 links in link EA"
9273     unlinkmany $DIR/$tdir/foo2/$longname 1000 || \
9274         error "failed to unlink many hardlinks"
9275 }
9276 run_test 161a "link ea sanity"
9277
9278 test_161b() {
9279         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9280         [ $MDSCOUNT -lt 2 ] &&
9281                 skip "skipping remote directory test" && return
9282         local MDTIDX=1
9283         local remote_dir=$DIR/$tdir/remote_dir
9284
9285         mkdir -p $DIR/$tdir
9286         $LFS mkdir -i $MDTIDX $remote_dir ||
9287                 error "create remote directory failed"
9288
9289         cp /etc/hosts $remote_dir/$tfile
9290         mkdir -p $remote_dir/foo1
9291         mkdir -p $remote_dir/foo2
9292         ln $remote_dir/$tfile $remote_dir/foo1/sofia
9293         ln $remote_dir/$tfile $remote_dir/foo2/zachary
9294         ln $remote_dir/$tfile $remote_dir/foo1/luna
9295         ln $remote_dir/$tfile $remote_dir/foo2/thor
9296
9297         local FID=$($LFS path2fid $remote_dir/$tfile | tr -d '[' |
9298                      tr -d ']')
9299         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
9300                 $LFS fid2path $DIR $FID
9301                 err17935 "bad link ea"
9302         fi
9303         # middle
9304         rm $remote_dir/foo2/zachary
9305         # last
9306         rm $remote_dir/foo2/thor
9307         # first
9308         rm $remote_dir/$tfile
9309         # rename
9310         mv $remote_dir/foo1/sofia $remote_dir/foo2/maggie
9311         local link_path=$($LFS fid2path $FSNAME --link 1 $FID)
9312         if [ "$DIR/$link_path" != "$remote_dir/foo2/maggie" ]; then
9313                 $LFS fid2path $DIR $FID
9314                 err17935 "bad link rename"
9315         fi
9316         rm $remote_dir/foo2/maggie
9317
9318         # overflow the EA
9319         local longname=filename_avg_len_is_thirty_two_
9320         createmany -l$remote_dir/foo1/luna $remote_dir/foo2/$longname 1000 ||
9321                 error "failed to hardlink many files"
9322         links=$($LFS fid2path $DIR $FID | wc -l)
9323         echo -n "${links}/1000 links in link EA"
9324         [ ${links} -gt 60 ] || err17935 "expected at least 60 links in link EA"
9325         unlinkmany $remote_dir/foo2/$longname 1000 ||
9326         error "failed to unlink many hardlinks"
9327 }
9328 run_test 161b "link ea sanity under remote directory"
9329
9330 check_path() {
9331     local expected=$1
9332     shift
9333     local fid=$2
9334
9335     local path=$(${LFS} fid2path $*)
9336     RC=$?
9337
9338     if [ $RC -ne 0 ]; then
9339         err17935 "path looked up of $expected failed. Error $RC"
9340         return $RC
9341     elif [ "${path}" != "${expected}" ]; then
9342         err17935 "path looked up \"${path}\" instead of \"${expected}\""
9343         return 2
9344     fi
9345     echo "fid $fid resolves to path $path (expected $expected)"
9346 }
9347
9348 test_162() {
9349         # Make changes to filesystem
9350         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9351         test_mkdir -p $DIR/$tdir/d2
9352         touch $DIR/$tdir/d2/$tfile
9353         touch $DIR/$tdir/d2/x1
9354         touch $DIR/$tdir/d2/x2
9355         test_mkdir -p $DIR/$tdir/d2/a/b/c
9356         test_mkdir -p $DIR/$tdir/d2/p/q/r
9357         # regular file
9358         FID=$($LFS path2fid $DIR/$tdir/d2/$tfile | tr -d '[]')
9359         check_path "$tdir/d2/$tfile" $FSNAME $FID --link 0
9360
9361         # softlink
9362         ln -s $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/slink
9363         FID=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink | tr -d '[]')
9364         check_path "$tdir/d2/p/q/r/slink" $FSNAME $FID --link 0
9365
9366         # softlink to wrong file
9367         ln -s /this/is/garbage $DIR/$tdir/d2/p/q/r/slink.wrong
9368         FID=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink.wrong | tr -d '[]')
9369         check_path "$tdir/d2/p/q/r/slink.wrong" $FSNAME $FID --link 0
9370
9371         # hardlink
9372         ln $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/hlink
9373         mv $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/a/b/c/new_file
9374         FID=$($LFS path2fid $DIR/$tdir/d2/a/b/c/new_file | tr -d '[]')
9375         # fid2path dir/fsname should both work
9376         check_path "$tdir/d2/a/b/c/new_file" $FSNAME $FID --link 1
9377         check_path "$DIR/$tdir/d2/p/q/r/hlink" $DIR $FID --link 0
9378
9379         # hardlink count: check that there are 2 links
9380         # Doesnt work with CMD yet: 17935
9381         ${LFS} fid2path $DIR $FID | wc -l | grep -q 2 || \
9382                 err17935 "expected 2 links"
9383
9384         # hardlink indexing: remove the first link
9385         rm $DIR/$tdir/d2/p/q/r/hlink
9386         check_path "$tdir/d2/a/b/c/new_file" $FSNAME $FID --link 0
9387
9388         return 0
9389 }
9390 run_test 162 "path lookup sanity"
9391
9392 test_163() {
9393         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9394         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9395         copytool --test $FSNAME || { skip "copytool not runnable: $?" && return; }
9396         copytool $FSNAME &
9397         sleep 1
9398         local uuid=$($LCTL get_param -n mdc.${FSNAME}-MDT0000-mdc-*.uuid)
9399         # this proc file is temporary and linux-only
9400         do_facet $SINGLEMDS lctl set_param mdt.${FSNAME}-MDT0000.mdccomm=$uuid ||\
9401          error "kernel->userspace send failed"
9402         kill -INT $!
9403 }
9404 run_test 163 "kernel <-> userspace comms"
9405
9406 test_169() {
9407         # do directio so as not to populate the page cache
9408         log "creating a 10 Mb file"
9409         $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
9410         log "starting reads"
9411         dd if=$DIR/$tfile of=/dev/null bs=4096 &
9412         log "truncating the file"
9413         $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
9414         log "killing dd"
9415         kill %+ || true # reads might have finished
9416         echo "wait until dd is finished"
9417         wait
9418         log "removing the temporary file"
9419         rm -rf $DIR/$tfile || error "tmp file removal failed"
9420 }
9421 run_test 169 "parallel read and truncate should not deadlock"
9422
9423 test_170() {
9424         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9425         $LCTL clear     # bug 18514
9426         $LCTL debug_daemon start $TMP/${tfile}_log_good
9427         touch $DIR/$tfile
9428         $LCTL debug_daemon stop
9429         sed -e "s/^...../a/g" $TMP/${tfile}_log_good > $TMP/${tfile}_log_bad ||
9430                error "sed failed to read log_good"
9431
9432         $LCTL debug_daemon start $TMP/${tfile}_log_good
9433         rm -rf $DIR/$tfile
9434         $LCTL debug_daemon stop
9435
9436         $LCTL df $TMP/${tfile}_log_bad > $TMP/${tfile}_log_bad.out 2>&1 ||
9437                error "lctl df log_bad failed"
9438
9439         local bad_line=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
9440         local good_line1=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
9441
9442         $LCTL df $TMP/${tfile}_log_good > $TMP/${tfile}_log_good.out 2>&1
9443         local good_line2=$(tail -n 1 $TMP/${tfile}_log_good.out | awk '{print $5}')
9444
9445         [ "$bad_line" ] && [ "$good_line1" ] && [ "$good_line2" ] ||
9446                 error "bad_line good_line1 good_line2 are empty"
9447
9448         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
9449         cat $TMP/${tfile}_log_bad >> $TMP/${tfile}_logs_corrupt
9450         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
9451
9452         $LCTL df $TMP/${tfile}_logs_corrupt > $TMP/${tfile}_log_bad.out 2>&1
9453         local bad_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
9454         local good_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
9455
9456         [ "$bad_line_new" ] && [ "$good_line_new" ] ||
9457                 error "bad_line_new good_line_new are empty"
9458
9459         local expected_good=$((good_line1 + good_line2*2))
9460
9461         rm -f $TMP/${tfile}*
9462         # LU-231, short malformed line may not be counted into bad lines
9463         if [ $bad_line -ne $bad_line_new ] &&
9464                    [ $bad_line -ne $((bad_line_new - 1)) ]; then
9465                 error "expected $bad_line bad lines, but got $bad_line_new"
9466                 return 1
9467         fi
9468
9469         if [ $expected_good -ne $good_line_new ]; then
9470                 error "expected $expected_good good lines, but got $good_line_new"
9471                 return 2
9472         fi
9473         true
9474 }
9475 run_test 170 "test lctl df to handle corrupted log ====================="
9476
9477 test_171() { # bug20592
9478         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9479 #define OBD_FAIL_PTLRPC_DUMP_LOG         0x50e
9480         $LCTL set_param fail_loc=0x50e
9481         $LCTL set_param fail_val=3000
9482         multiop_bg_pause $DIR/$tfile O_s || true
9483         local MULTIPID=$!
9484         kill -USR1 $MULTIPID
9485         # cause log dump
9486         sleep 3
9487         wait $MULTIPID
9488         if dmesg | grep "recursive fault"; then
9489                 error "caught a recursive fault"
9490         fi
9491         $LCTL set_param fail_loc=0
9492         true
9493 }
9494 run_test 171 "test libcfs_debug_dumplog_thread stuck in do_exit() ======"
9495
9496 # it would be good to share it with obdfilter-survey/libecho code
9497 setup_obdecho_osc () {
9498         local rc=0
9499         local ost_nid=$1
9500         local obdfilter_name=$2
9501         echo "Creating new osc for $obdfilter_name on $ost_nid"
9502         # make sure we can find loopback nid
9503         $LCTL add_uuid $ost_nid $ost_nid >/dev/null 2>&1
9504
9505         [ $rc -eq 0 ] && { $LCTL attach osc ${obdfilter_name}_osc     \
9506                            ${obdfilter_name}_osc_UUID || rc=2; }
9507         [ $rc -eq 0 ] && { $LCTL --device ${obdfilter_name}_osc setup \
9508                            ${obdfilter_name}_UUID  $ost_nid || rc=3; }
9509         return $rc
9510 }
9511
9512 cleanup_obdecho_osc () {
9513         local obdfilter_name=$1
9514         $LCTL --device ${obdfilter_name}_osc cleanup >/dev/null
9515         $LCTL --device ${obdfilter_name}_osc detach  >/dev/null
9516         return 0
9517 }
9518
9519 obdecho_test() {
9520         local OBD=$1
9521         local node=$2
9522         local pages=${3:-64}
9523         local rc=0
9524         local id
9525         do_facet $node "$LCTL attach echo_client ec ec_uuid" || rc=1
9526         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec setup $OBD" ||
9527                            rc=2; }
9528         if [ $rc -eq 0 ]; then
9529             id=$(do_facet $node "$LCTL --device ec create 1"  | awk '/object id/ {print $6}')
9530             [ ${PIPESTATUS[0]} -eq 0 -a -n "$id" ] || rc=3
9531         fi
9532         echo "New object id is $id"
9533         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec getattr $id" ||
9534                            rc=4; }
9535         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec "                 \
9536                            "test_brw 10 w v $pages $id" || rc=4; }
9537         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec destroy $id 1" ||
9538                            rc=4; }
9539         [ $rc -eq 0 -o $rc -gt 2 ] && { do_facet $node "$LCTL --device ec "    \
9540                                         "cleanup" || rc=5; }
9541         [ $rc -eq 0 -o $rc -gt 1 ] && { do_facet $node "$LCTL --device ec "    \
9542                                         "detach" || rc=6; }
9543         [ $rc -ne 0 ] && echo "obecho_create_test failed: $rc"
9544         return $rc
9545 }
9546
9547 test_180a() {
9548         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9549         remote_ost_nodsh && skip "remote OST with nodsh" && return
9550         local rc=0
9551         local rmmod_local=0
9552
9553         if ! module_loaded obdecho; then
9554             load_module obdecho/obdecho
9555             rmmod_local=1
9556         fi
9557
9558         local osc=$($LCTL dl | grep -v mdt | awk '$3 == "osc" {print $4; exit}')
9559         local host=$(lctl get_param -n osc.$osc.import |
9560                              awk '/current_connection:/ {print $2}' )
9561         local target=$(lctl get_param -n osc.$osc.import |
9562                              awk '/target:/ {print $2}' )
9563         target=${target%_UUID}
9564
9565         [[ -n $target ]]  && { setup_obdecho_osc $host $target || rc=1; } || rc=1
9566         [ $rc -eq 0 ] && { obdecho_test ${target}_osc client || rc=2; }
9567         [[ -n $target ]] && cleanup_obdecho_osc $target
9568         [ $rmmod_local -eq 1 ] && rmmod obdecho
9569         return $rc
9570 }
9571 run_test 180a "test obdecho on osc"
9572
9573 test_180b() {
9574         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9575         remote_ost_nodsh && skip "remote OST with nodsh" && return
9576         local rc=0
9577         local rmmod_remote=0
9578
9579         do_facet ost1 "lsmod | grep -q obdecho || "                      \
9580                       "{ insmod ${LUSTRE}/obdecho/obdecho.ko || "        \
9581                       "modprobe obdecho; }" && rmmod_remote=1
9582         target=$(do_facet ost1 $LCTL dl | awk '/obdfilter/ {print $4;exit}')
9583         [[ -n $target ]] && { obdecho_test $target ost1 || rc=1; }
9584         [ $rmmod_remote -eq 1 ] && do_facet ost1 "rmmod obdecho"
9585         return $rc
9586 }
9587 run_test 180b "test obdecho directly on obdfilter"
9588
9589 test_180c() { # LU-2598
9590         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9591         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.0) ]] &&
9592                 skip "Need MDS version at least 2.4.0" && return
9593
9594         local rc=0
9595         local rmmod_remote=false
9596         local pages=16384 # 64MB bulk I/O RPC size
9597         local target
9598
9599         do_rpc_nodes $(facet_active_host ost1) load_module obdecho/obdecho &&
9600                 rmmod_remote=true || error "failed to load module obdecho"
9601
9602         target=$(do_facet ost1 $LCTL dl | awk '/obdfilter/ {print $4}'|head -1)
9603         if [[ -n $target ]]; then
9604                 obdecho_test "$target" ost1 "$pages" ||
9605                         rc=${PIPESTATUS[0]}
9606         else
9607                 echo "there is no obdfilter target on ost1"
9608                 rc=2
9609         fi
9610         $rmmod_remote && do_facet ost1 "rmmod obdecho" || true
9611         return $rc
9612 }
9613 run_test 180c "test huge bulk I/O size on obdfilter, don't LASSERT"
9614
9615 test_181() { # bug 22177
9616         test_mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
9617         # create enough files to index the directory
9618         createmany -o $DIR/$tdir/foobar 4000
9619         # print attributes for debug purpose
9620         lsattr -d .
9621         # open dir
9622         multiop_bg_pause $DIR/$tdir D_Sc || return 1
9623         MULTIPID=$!
9624         # remove the files & current working dir
9625         unlinkmany $DIR/$tdir/foobar 4000
9626         rmdir $DIR/$tdir
9627         kill -USR1 $MULTIPID
9628         wait $MULTIPID
9629         stat $DIR/$tdir && error "open-unlinked dir was not removed!"
9630         return 0
9631 }
9632 run_test 181 "Test open-unlinked dir ========================"
9633
9634 test_182() {
9635         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9636         # disable MDC RPC lock wouldn't crash client
9637         local fcount=1000
9638         local tcount=4
9639
9640         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
9641 #define OBD_FAIL_MDC_RPCS_SEM           0x804
9642         $LCTL set_param fail_loc=0x804
9643
9644         for (( i=0; i < $tcount; i++ )) ; do
9645                 mkdir $DIR/$tdir/$i
9646                 createmany -o $DIR/$tdir/$i/f- $fcount &
9647         done
9648         wait
9649
9650         for (( i=0; i < $tcount; i++ )) ; do
9651                 unlinkmany $DIR/$tdir/$i/f- $fcount &
9652         done
9653         wait
9654
9655         rm -rf $DIR/$tdir
9656
9657         $LCTL set_param fail_loc=0
9658 }
9659 run_test 182 "Disable MDC RPCs semaphore wouldn't crash client ================"
9660
9661 test_183() { # LU-2275
9662         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9663         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
9664         echo aaa > $DIR/$tdir/$tfile
9665
9666 #define OBD_FAIL_MDS_NEGATIVE_POSITIVE  0x148
9667         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x148
9668
9669         ls -l $DIR/$tdir && error "ls succeeded, should have failed"
9670         cat $DIR/$tdir/$tfile && error "cat succeeded, should have failed"
9671
9672         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
9673
9674         # Flush negative dentry cache
9675         touch $DIR/$tdir/$tfile
9676
9677         # We are not checking for any leaked references here, they'll
9678         # become evident next time we do cleanup with module unload.
9679         rm -rf $DIR/$tdir
9680 }
9681 run_test 183 "No crash or request leak in case of strange dispositions ========"
9682
9683 # test suite 184 is for LU-2016, LU-2017
9684 test_184a() {
9685         check_swap_layouts_support && return 0
9686
9687         dir0=$DIR/$tdir/$testnum
9688         test_mkdir -p $dir0 || error "creating dir $dir0"
9689         ref1=/etc/passwd
9690         ref2=/etc/group
9691         file1=$dir0/f1
9692         file2=$dir0/f2
9693         $SETSTRIPE -c1 $file1
9694         cp $ref1 $file1
9695         $SETSTRIPE -c2 $file2
9696         cp $ref2 $file2
9697         gen1=$($GETSTRIPE -g $file1)
9698         gen2=$($GETSTRIPE -g $file2)
9699
9700         $LFS swap_layouts $file1 $file2 || error "swap of file layout failed"
9701         gen=$($GETSTRIPE -g $file1)
9702         [[ $gen1 != $gen ]] ||
9703                 "Layout generation on $file1 does not change"
9704         gen=$($GETSTRIPE -g $file2)
9705         [[ $gen2 != $gen ]] ||
9706                 "Layout generation on $file2 does not change"
9707
9708         cmp $ref1 $file2 || error "content compare failed ($ref1 != $file2)"
9709         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
9710 }
9711 run_test 184a "Basic layout swap"
9712
9713 test_184b() {
9714         check_swap_layouts_support && return 0
9715
9716         dir0=$DIR/$tdir/$testnum
9717         mkdir -p $dir0 || error "creating dir $dir0"
9718         file1=$dir0/f1
9719         file2=$dir0/f2
9720         file3=$dir0/f3
9721         dir1=$dir0/d1
9722         dir2=$dir0/d2
9723         mkdir $dir1 $dir2
9724         $SETSTRIPE -c1 $file1
9725         $SETSTRIPE -c2 $file2
9726         $SETSTRIPE -c1 $file3
9727         chown $RUNAS_ID $file3
9728         gen1=$($GETSTRIPE -g $file1)
9729         gen2=$($GETSTRIPE -g $file2)
9730
9731         $LFS swap_layouts $dir1 $dir2 &&
9732                 error "swap of directories layouts should fail"
9733         $LFS swap_layouts $dir1 $file1 &&
9734                 error "swap of directory and file layouts should fail"
9735         $RUNAS $LFS swap_layouts $file1 $file2 &&
9736                 error "swap of file we cannot write should fail"
9737         $LFS swap_layouts $file1 $file3 &&
9738                 error "swap of file with different owner should fail"
9739         /bin/true # to clear error code
9740 }
9741 run_test 184b "Forbidden layout swap (will generate errors)"
9742
9743 test_184c() {
9744         check_swap_layouts_support && return 0
9745
9746         local dir0=$DIR/$tdir/$testnum
9747         mkdir -p $dir0 || error "creating dir $dir0"
9748
9749         local ref1=$dir0/ref1
9750         local ref2=$dir0/ref2
9751         local file1=$dir0/file1
9752         local file2=$dir0/file2
9753         # create a file large enough for the concurent test
9754         dd if=/dev/urandom of=$ref1 bs=1M count=$((RANDOM % 50 + 20))
9755         dd if=/dev/urandom of=$ref2 bs=1M count=$((RANDOM % 50 + 20))
9756         echo "ref file size: ref1(`stat -c %s $ref1`), ref2(`stat -c %s $ref2`)"
9757
9758         cp $ref2 $file2
9759         dd if=$ref1 of=$file1 bs=16k &
9760         local DD_PID=$!
9761
9762         # Make sure dd starts to copy file
9763         while [ ! -f $file1 ]; do sleep 0.1; done
9764
9765         $LFS swap_layouts $file1 $file2
9766         local rc=$?
9767         wait $DD_PID
9768         [[ $? == 0 ]] || error "concurrent write on $file1 failed"
9769         [[ $rc == 0 ]] || error "swap of $file1 and $file2 failed"
9770
9771         # how many bytes copied before swapping layout
9772         local copied=`stat -c %s $file2`
9773         local remaining=`stat -c %s $ref1`
9774         remaining=$((remaining - copied))
9775         echo "Copied $copied bytes before swapping layout..."
9776
9777         cmp -n $copied $file1 $ref2 | grep differ &&
9778                 error "Content mismatch [0, $copied) of ref2 and file1"
9779         cmp -n $copied $file2 $ref1 ||
9780                 error "Content mismatch [0, $copied) of ref1 and file2"
9781         cmp -i $copied:$copied -n $remaining $file1 $ref1 ||
9782                 error "Content mismatch [$copied, EOF) of ref1 and file1"
9783
9784         # clean up
9785         rm -f $ref1 $ref2 $file1 $file2
9786 }
9787 run_test 184c "Concurrent write and layout swap"
9788
9789 test_184d() {
9790         check_swap_layouts_support && return 0
9791
9792         local file1=$DIR/$tdir/$tfile-1
9793         local file2=$DIR/$tdir/$tfile-2
9794         local file3=$DIR/$tdir/$tfile-3
9795         local lovea1
9796         local lovea2
9797
9798         mkdir -p $DIR/$tdir
9799         touch $file1 || error "create $file1 failed"
9800         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file2 ||
9801                 error "create $file2 failed"
9802         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file3 ||
9803                 error "create $file3 failed"
9804         lovea1=$($LFS getstripe $file1 | sed 1d)
9805
9806         $LFS swap_layouts $file2 $file3 ||
9807                 error "swap $file2 $file3 layouts failed"
9808         $LFS swap_layouts $file1 $file2 ||
9809                 error "swap $file1 $file2 layouts failed"
9810
9811         lovea2=$($LFS getstripe $file2 | sed 1d)
9812         [ "$lovea1" == "$lovea2" ] || error "lovea $lovea1 != $lovea2"
9813
9814         lovea1=$(getfattr -n trusted.lov $file1 | grep ^trusted)
9815         [ -z $lovea1 ] || error "$file1 shouldn't have lovea"
9816 }
9817 run_test 184d "allow stripeless layouts swap"
9818
9819
9820 test_185() { # LU-2441
9821         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
9822         touch $DIR/$tdir/spoo
9823         local mtime1=$(stat -c "%Y" $DIR/$tdir)
9824         local fid=$($MULTIOP $DIR/$tdir VFw4096c) ||
9825                 error "cannot create/write a volatile file"
9826         $CHECKSTAT -t file $MOUNT/.lustre/fid/$fid 2>/dev/null &&
9827                 error "FID is still valid after close"
9828
9829         multiop_bg_pause $DIR/$tdir vVw4096_c
9830         local multi_pid=$!
9831
9832         local OLD_IFS=$IFS
9833         IFS=":"
9834         local fidv=($fid)
9835         IFS=$OLD_IFS
9836         # assume that the next FID for this client is sequential, since stdout
9837         # is unfortunately eaten by multiop_bg_pause
9838         local n=$((${fidv[1]} + 1))
9839         local next_fid="${fidv[0]}:$(printf "0x%x" $n):${fidv[2]}"
9840         $CHECKSTAT -t file $MOUNT/.lustre/fid/$next_fid ||
9841                 error "FID is missing before close"
9842         kill -USR1 $multi_pid
9843         # 1 second delay, so if mtime change we will see it
9844         sleep 1
9845         local mtime2=$(stat -c "%Y" $DIR/$tdir)
9846         [[ $mtime1 == $mtime2 ]] || error "mtime has changed"
9847 }
9848 run_test 185 "Volatile file support"
9849
9850 test_187a() {
9851         local dir0=$DIR/$tdir/$testnum
9852         mkdir -p $dir0 || error "creating dir $dir0"
9853
9854         local file=$dir0/file1
9855         dd if=/dev/urandom of=$file count=10 bs=1M conv=fsync
9856         local dv1=$($LFS data_version $file)
9857         dd if=/dev/urandom of=$file seek=10 count=1 bs=1M conv=fsync
9858         local dv2=$($LFS data_version $file)
9859         [[ $dv1 != $dv2 ]] ||
9860                 error "data version did not change on write $dv1 == $dv2"
9861
9862         # clean up
9863         rm -f $file1
9864 }
9865 run_test 187a "Test data version change"
9866
9867 test_187b() {
9868         local dir0=$DIR/$tdir/$testnum
9869         mkdir -p $dir0 || error "creating dir $dir0"
9870
9871         declare -a DV=$($MULTIOP $dir0 Vw1000xYw1000xY | cut -f3 -d" ")
9872         [[ ${DV[0]} != ${DV[1]} ]] ||
9873                 error "data version did not change on write"\
9874                       " ${DV[0]} == ${DV[1]}"
9875
9876         # clean up
9877         rm -f $file1
9878 }
9879 run_test 187b "Test data version change on volatile file"
9880
9881 # OST pools tests
9882 check_file_in_pool()
9883 {
9884         local file=$1
9885         local pool=$2
9886         local tlist="$3"
9887         local res=$($GETSTRIPE $file | grep 0x | cut -f2)
9888         for i in $res
9889         do
9890                 for t in $tlist ; do
9891                         [ "$i" -eq "$t" ] && continue 2
9892                 done
9893
9894                 echo "pool list: $tlist"
9895                 echo "striping: $res"
9896                 error_noexit "$file not allocated in $pool"
9897                 return 1
9898         done
9899         return 0
9900 }
9901
9902 pool_add() {
9903         echo "Creating new pool"
9904         local pool=$1
9905
9906         create_pool $FSNAME.$pool ||
9907                 { error_noexit "No pool created, result code $?"; return 1; }
9908         [ $($LFS pool_list $FSNAME | grep -c $pool) -eq 1 ] ||
9909                 { error_noexit "$pool not in lfs pool_list"; return 2; }
9910 }
9911
9912 pool_add_targets() {
9913         echo "Adding targets to pool"
9914         local pool=$1
9915         local first=$2
9916         local last=$3
9917         local step=${4:-1}
9918
9919         local list=$(seq $first $step $last)
9920
9921         local t=$(for i in $list; do printf "$FSNAME-OST%04x_UUID " $i; done)
9922         do_facet mgs $LCTL pool_add \
9923                         $FSNAME.$pool $FSNAME-OST[$first-$last/$step]
9924         wait_update $HOSTNAME "lctl get_param -n lov.$FSNAME-*.pools.$pool \
9925                         | sort -u | tr '\n' ' ' " "$t" || { 
9926                 error_noexit "Add to pool failed"
9927                 return 1
9928         }
9929         local lfscount=$($LFS pool_list $FSNAME.$pool | grep -c "\-OST")
9930         local addcount=$(((last - first) / step + 1))
9931         [ $lfscount -eq $addcount ] || {
9932                 error_noexit "lfs pool_list bad ost count" \
9933                                                 "$lfscount != $addcount"
9934                 return 2
9935         }
9936 }
9937
9938 pool_set_dir() {
9939         local pool=$1
9940         local tdir=$2
9941         echo "Setting pool on directory $tdir"
9942
9943         $SETSTRIPE -c 2 -p $pool $tdir && return 0
9944
9945         error_noexit "Cannot set pool $pool to $tdir"
9946         return 1
9947 }
9948
9949 pool_check_dir() {
9950         local pool=$1
9951         local tdir=$2
9952         echo "Checking pool on directory $tdir"
9953
9954         local res=$($GETSTRIPE --pool $tdir | sed "s/\s*$//")
9955         [ "$res" = "$pool" ] && return 0
9956
9957         error_noexit "Pool on '$tdir' is '$res', not '$pool'"
9958         return 1
9959 }
9960
9961 pool_dir_rel_path() {
9962         echo "Testing relative path works well"
9963         local pool=$1
9964         local tdir=$2
9965         local root=$3
9966
9967         mkdir -p $root/$tdir/$tdir
9968         cd $root/$tdir
9969         pool_set_dir $pool $tdir          || return 1
9970         pool_set_dir $pool ./$tdir        || return 2
9971         pool_set_dir $pool ../$tdir       || return 3
9972         pool_set_dir $pool ../$tdir/$tdir || return 4
9973         rm -rf $tdir; cd - > /dev/null
9974 }
9975
9976 pool_alloc_files() {
9977         echo "Checking files allocation from directory pool"
9978         local pool=$1
9979         local tdir=$2
9980         local count=$3
9981         local tlist="$4"
9982
9983         local failed=0
9984         for i in $(seq -w 1 $count)
9985         do
9986                 local file=$tdir/file-$i
9987                 touch $file
9988                 check_file_in_pool $file $pool "$tlist" || \
9989                         failed=$((failed + 1))
9990         done
9991         [ "$failed" = 0 ] && return 0
9992
9993         error_noexit "$failed files not allocated in $pool"
9994         return 1
9995 }
9996
9997 pool_create_files() {
9998         echo "Creating files in pool"
9999         local pool=$1
10000         local tdir=$2
10001         local count=$3
10002         local tlist="$4"
10003
10004         mkdir -p $tdir
10005         local failed=0
10006         for i in $(seq -w 1 $count)
10007         do
10008                 local file=$tdir/spoo-$i
10009                 $SETSTRIPE -p $pool $file
10010                 check_file_in_pool $file $pool "$tlist" || \
10011                         failed=$((failed + 1))
10012         done
10013         [ "$failed" = 0 ] && return 0
10014
10015         error_noexit "$failed files not allocated in $pool"
10016         return 1
10017 }
10018
10019 pool_lfs_df() {
10020         echo "Checking 'lfs df' output"
10021         local pool=$1
10022
10023         local t=$($LCTL get_param -n lov.$FSNAME-clilov-*.pools.$pool |
10024                         tr '\n' ' ')
10025         local res=$($LFS df --pool $FSNAME.$pool |
10026                         awk '{print $1}' |
10027                         grep "$FSNAME-OST" |
10028                         tr '\n' ' ')
10029         [ "$res" = "$t" ] && return 0
10030
10031         error_noexit "Pools OSTs '$t' is not '$res' that lfs df reports"
10032         return 1
10033 }
10034
10035 pool_file_rel_path() {
10036         echo "Creating files in a pool with relative pathname"
10037         local pool=$1
10038         local tdir=$2
10039
10040         mkdir -p $tdir ||
10041                 { error_noexit "unable to create $tdir"; return 1 ; }
10042         local file="/..$tdir/$tfile-1"
10043         $SETSTRIPE -p $pool $file ||
10044                 { error_noexit "unable to create $file" ; return 2 ; }
10045
10046         cd $tdir
10047         $SETSTRIPE -p $pool $tfile-2 || {
10048                 error_noexit "unable to create $tfile-2 in $tdir"
10049                 return 3
10050         }
10051 }
10052
10053 pool_remove_first_target() {
10054         echo "Removing first target from a pool"
10055         local pool=$1
10056
10057         local pname="lov.$FSNAME-*.pools.$pool"
10058         local t=$($LCTL get_param -n $pname | head -1)
10059         do_facet mgs $LCTL pool_remove $FSNAME.$pool $t
10060         wait_update $HOSTNAME "lctl get_param -n $pname | grep $t" "" || {
10061                 error_noexit "$t not removed from $FSNAME.$pool"
10062                 return 1
10063         }
10064 }
10065
10066 pool_remove_all_targets() {
10067         echo "Removing all targets from pool"
10068         local pool=$1
10069         local file=$2
10070         local pname="lov.$FSNAME-*.pools.$pool"
10071         for t in $($LCTL get_param -n $pname | sort -u)
10072         do
10073                 do_facet mgs $LCTL pool_remove $FSNAME.$pool $t
10074         done
10075         wait_update $HOSTNAME "lctl get_param -n $pname" "" || {
10076                 error_noexit "Pool $FSNAME.$pool cannot be drained"
10077                 return 1
10078         }
10079         # striping on an empty/nonexistant pool should fall back 
10080         # to "pool of everything"
10081         touch $file || {
10082                 error_noexit "failed to use fallback striping for empty pool"
10083                 return 2
10084         }
10085         # setstripe on an empty pool should fail
10086         $SETSTRIPE -p $pool $file 2>/dev/null && {
10087                 error_noexit "expected failure when creating file" \
10088                                                         "with empty pool"
10089                 return 3
10090         }
10091         return 0
10092 }
10093
10094 pool_remove() {
10095         echo "Destroying pool"
10096         local pool=$1
10097         local file=$2
10098
10099         do_facet mgs $LCTL pool_destroy $FSNAME.$pool
10100
10101         sleep 2
10102         # striping on an empty/nonexistant pool should fall back 
10103         # to "pool of everything"
10104         touch $file || {
10105                 error_noexit "failed to use fallback striping for missing pool"
10106                 return 1
10107         }
10108         # setstripe on an empty pool should fail
10109         $SETSTRIPE -p $pool $file 2>/dev/null && {
10110                 error_noexit "expected failure when creating file" \
10111                                                         "with missing pool"
10112                 return 2
10113         }
10114
10115         # get param should return err once pool is gone
10116         if wait_update $HOSTNAME "lctl get_param -n \
10117                 lov.$FSNAME-*.pools.$pool 2>/dev/null || echo foo" "foo"
10118         then
10119                 remove_pool_from_list $FSNAME.$pool
10120                 return 0
10121         fi
10122         error_noexit "Pool $FSNAME.$pool is not destroyed"
10123         return 3
10124 }
10125
10126 test_200() {
10127         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10128         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
10129
10130         local POOL=${POOL:-cea1}
10131         local POOL_ROOT=${POOL_ROOT:-$DIR/d200.pools}
10132         local POOL_DIR_NAME=${POOL_DIR_NAME:-dir_tst}
10133         # Pool OST targets
10134         local first_ost=0
10135         local last_ost=$(($OSTCOUNT - 1))
10136         local ost_step=2
10137         local ost_list=$(seq $first_ost $ost_step $last_ost)
10138         local ost_range="$first_ost $last_ost $ost_step"
10139         local test_path=$POOL_ROOT/$POOL_DIR_NAME
10140         local file_dir=$POOL_ROOT/file_tst
10141
10142         local rc=0
10143         while : ; do
10144                 # former test_200a test_200b
10145                 pool_add $POOL                          || { rc=$? ; break; }
10146                 pool_add_targets  $POOL $ost_range      || { rc=$? ; break; }
10147                 # former test_200c test_200d
10148                 mkdir -p $test_path
10149                 pool_set_dir      $POOL $test_path      || { rc=$? ; break; }
10150                 pool_check_dir    $POOL $test_path      || { rc=$? ; break; }
10151                 pool_dir_rel_path $POOL $POOL_DIR_NAME $POOL_ROOT \
10152                                                         || { rc=$? ; break; }
10153                 # former test_200e test_200f
10154                 local files=$((OSTCOUNT*3))
10155                 pool_alloc_files  $POOL $test_path $files "$ost_list" \
10156                                                         || { rc=$? ; break; }
10157                 pool_create_files $POOL $file_dir $files "$ost_list" \
10158                                                         || { rc=$? ; break; }
10159                 # former test_200g test_200h
10160                 pool_lfs_df $POOL                       || { rc=$? ; break; }
10161                 pool_file_rel_path $POOL $test_path     || { rc=$? ; break; }
10162
10163                 # former test_201a test_201b test_201c
10164                 pool_remove_first_target $POOL          || { rc=$? ; break; }
10165
10166                 local f=$test_path/$tfile
10167                 pool_remove_all_targets $POOL $f        || { rc=$? ; break; }
10168                 pool_remove $POOL $f                    || { rc=$? ; break; }
10169                 break
10170         done
10171
10172         cleanup_pools
10173         return $rc
10174 }
10175 run_test 200 "OST pools"
10176
10177 # usage: default_attr <count | size | offset>
10178 default_attr() {
10179         $LCTL get_param -n lov.$FSNAME-clilov-\*.stripe${1}
10180 }
10181
10182 # usage: check_default_stripe_attr
10183 check_default_stripe_attr() {
10184         ACTUAL=$($GETSTRIPE $* $DIR/$tdir)
10185         case $1 in
10186         --stripe-count|--count)
10187                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr count);;
10188         --stripe-size|--size)
10189                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr size);;
10190         --stripe-index|--index)
10191                 EXPECTED=-1;;
10192         *)
10193                 error "unknown getstripe attr '$1'"
10194         esac
10195
10196         [ $ACTUAL != $EXPECTED ] &&
10197                 error "$DIR/$tdir has $1 '$ACTUAL', not '$EXPECTED'"
10198 }
10199
10200 test_204a() {
10201         test_mkdir -p $DIR/$tdir
10202         $SETSTRIPE --stripe-count 0 --stripe-size 0 --stripe-index -1 $DIR/$tdir
10203
10204         check_default_stripe_attr --stripe-count
10205         check_default_stripe_attr --stripe-size
10206         check_default_stripe_attr --stripe-index
10207
10208         return 0
10209 }
10210 run_test 204a "Print default stripe attributes ================="
10211
10212 test_204b() {
10213         test_mkdir -p $DIR/$tdir
10214         $SETSTRIPE --stripe-count 1 $DIR/$tdir
10215
10216         check_default_stripe_attr --stripe-size
10217         check_default_stripe_attr --stripe-index
10218
10219         return 0
10220 }
10221 run_test 204b "Print default stripe size and offset  ==========="
10222
10223 test_204c() {
10224         test_mkdir -p $DIR/$tdir
10225         $SETSTRIPE --stripe-size 65536 $DIR/$tdir
10226
10227         check_default_stripe_attr --stripe-count
10228         check_default_stripe_attr --stripe-index
10229
10230         return 0
10231 }
10232 run_test 204c "Print default stripe count and offset ==========="
10233
10234 test_204d() {
10235         test_mkdir -p $DIR/$tdir
10236         $SETSTRIPE --stripe-index 0 $DIR/$tdir
10237
10238         check_default_stripe_attr --stripe-count
10239         check_default_stripe_attr --stripe-size
10240
10241         return 0
10242 }
10243 run_test 204d "Print default stripe count and size ============="
10244
10245 test_204e() {
10246         test_mkdir -p $DIR/$tdir
10247         $SETSTRIPE -d $DIR/$tdir
10248
10249         check_default_stripe_attr --stripe-count --raw
10250         check_default_stripe_attr --stripe-size --raw
10251         check_default_stripe_attr --stripe-index --raw
10252
10253         return 0
10254 }
10255 run_test 204e "Print raw stripe attributes ================="
10256
10257 test_204f() {
10258         test_mkdir -p $DIR/$tdir
10259         $SETSTRIPE --stripe-count 1 $DIR/$tdir
10260
10261         check_default_stripe_attr --stripe-size --raw
10262         check_default_stripe_attr --stripe-index --raw
10263
10264         return 0
10265 }
10266 run_test 204f "Print raw stripe size and offset  ==========="
10267
10268 test_204g() {
10269         test_mkdir -p $DIR/$tdir
10270         $SETSTRIPE --stripe-size 65536 $DIR/$tdir
10271
10272         check_default_stripe_attr --stripe-count --raw
10273         check_default_stripe_attr --stripe-index --raw
10274
10275         return 0
10276 }
10277 run_test 204g "Print raw stripe count and offset ==========="
10278
10279 test_204h() {
10280         test_mkdir -p $DIR/$tdir
10281         $SETSTRIPE --stripe-index 0 $DIR/$tdir
10282
10283         check_default_stripe_attr --stripe-count --raw
10284         check_default_stripe_attr --stripe-size --raw
10285
10286         return 0
10287 }
10288 run_test 204h "Print raw stripe count and size ============="
10289
10290 # Figure out which job scheduler is being used, if any,
10291 # or use a fake one
10292 if [ -n "$SLURM_JOB_ID" ]; then # SLURM
10293         JOBENV=SLURM_JOB_ID
10294 elif [ -n "$LSB_JOBID" ]; then # Load Sharing Facility
10295         JOBENV=LSB_JOBID
10296 elif [ -n "$PBS_JOBID" ]; then # PBS/Maui/Moab
10297         JOBENV=PBS_JOBID
10298 elif [ -n "$LOADL_STEPID" ]; then # LoadLeveller
10299         JOBENV=LOADL_STEP_ID
10300 elif [ -n "$JOB_ID" ]; then # Sun Grid Engine
10301         JOBENV=JOB_ID
10302 else
10303         JOBENV=FAKE_JOBID
10304 fi
10305
10306 verify_jobstats() {
10307         local cmd=$1
10308         local target=$2
10309
10310         # clear old jobstats
10311         do_facet $SINGLEMDS lctl set_param mdt.*.job_stats="clear"
10312         do_facet ost1 lctl set_param obdfilter.*.job_stats="clear"
10313
10314         # use a new JobID for this test, or we might see an old one
10315         [ "$JOBENV" = "FAKE_JOBID" ] && FAKE_JOBID=test_id.$testnum.$RANDOM
10316
10317         JOBVAL=${!JOBENV}
10318         log "Test: $cmd"
10319         log "Using JobID environment variable $JOBENV=$JOBVAL"
10320
10321         if [ $JOBENV = "FAKE_JOBID" ]; then
10322                 FAKE_JOBID=$JOBVAL $cmd
10323         else
10324                 $cmd
10325         fi
10326
10327         if [ "$target" = "mdt" -o "$target" = "both" ]; then
10328                 FACET="$SINGLEMDS" # will need to get MDS number for DNE
10329                 do_facet $FACET lctl get_param mdt.*.job_stats |
10330                         grep $JOBVAL || error "No job stats found on MDT $FACET"
10331         fi
10332         if [ "$target" = "ost" -o "$target" = "both" ]; then
10333                 FACET=ost1
10334                 do_facet $FACET lctl get_param obdfilter.*.job_stats |
10335                         grep $JOBVAL || error "No job stats found on OST $FACET"
10336         fi
10337 }
10338
10339 jobstats_set() {
10340         trap 0
10341         NEW_JOBENV=${1:-$OLD_JOBENV}
10342         do_facet mgs $LCTL conf_param $FSNAME.sys.jobid_var=$NEW_JOBENV
10343         wait_update $HOSTNAME "$LCTL get_param -n jobid_var" $NEW_JOBENV
10344 }
10345
10346 test_205() { # Job stats
10347         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10348         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep jobstats)" ] &&
10349                 skip "Server doesn't support jobstats" && return 0
10350
10351         local cmd
10352         OLD_JOBENV=`$LCTL get_param -n jobid_var`
10353         if [ $OLD_JOBENV != $JOBENV ]; then
10354                 jobstats_set $JOBENV
10355                 trap jobstats_set EXIT
10356         fi
10357
10358         # mkdir
10359         cmd="mkdir $DIR/$tfile"
10360         verify_jobstats "$cmd" "mdt"
10361         # rmdir
10362         cmd="rm -fr $DIR/$tfile"
10363         verify_jobstats "$cmd" "mdt"
10364         # mknod
10365         cmd="mknod $DIR/$tfile c 1 3"
10366         verify_jobstats "$cmd" "mdt"
10367         # unlink
10368         cmd="rm -f $DIR/$tfile"
10369         verify_jobstats "$cmd" "mdt"
10370         # open & close
10371         cmd="$SETSTRIPE -i 0 -c 1 $DIR/$tfile"
10372         verify_jobstats "$cmd" "mdt"
10373         # setattr
10374         cmd="touch $DIR/$tfile"
10375         verify_jobstats "$cmd" "both"
10376         # write
10377         cmd="dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 oflag=sync"
10378         verify_jobstats "$cmd" "ost"
10379         # read
10380         cmd="dd if=$DIR/$tfile of=/dev/null bs=1M count=1 iflag=direct"
10381         verify_jobstats "$cmd" "ost"
10382         # truncate
10383         cmd="$TRUNCATE $DIR/$tfile 0"
10384         verify_jobstats "$cmd" "both"
10385         # rename
10386         cmd="mv -f $DIR/$tfile $DIR/jobstats_test_rename"
10387         verify_jobstats "$cmd" "mdt"
10388
10389         # cleanup
10390         rm -f $DIR/jobstats_test_rename
10391
10392         [ $OLD_JOBENV != $JOBENV ] && jobstats_set $OLD_JOBENV
10393 }
10394 run_test 205 "Verify job stats"
10395
10396 # LU-1480, LU-1773 and LU-1657
10397 test_206() {
10398         mkdir -p $DIR/$tdir
10399         lfs setstripe -c -1 $DIR/$tdir
10400 #define OBD_FAIL_LOV_INIT 0x1403
10401         $LCTL set_param fail_loc=0xa0001403
10402         $LCTL set_param fail_val=1
10403         touch $DIR/$tdir/$tfile || true
10404 }
10405 run_test 206 "fail lov_init_raid0() doesn't lbug"
10406
10407 test_207a() {
10408         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
10409         local fsz=`stat -c %s $DIR/$tfile`
10410         cancel_lru_locks mdc
10411
10412         # do not return layout in getattr intent
10413 #define OBD_FAIL_MDS_NO_LL_GETATTR 0x170
10414         $LCTL set_param fail_loc=0x170
10415         local sz=`stat -c %s $DIR/$tfile`
10416
10417         [ $fsz -eq $sz ] || error "file size expected $fsz, actual $sz"
10418
10419         rm -rf $DIR/$tfile
10420 }
10421 run_test 207a "can refresh layout at glimpse"
10422
10423 test_207b() {
10424         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
10425         local cksum=`md5sum $DIR/$tfile`
10426         local fsz=`stat -c %s $DIR/$tfile`
10427         cancel_lru_locks mdc
10428         cancel_lru_locks osc
10429
10430         # do not return layout in getattr intent
10431 #define OBD_FAIL_MDS_NO_LL_OPEN 0x171
10432         $LCTL set_param fail_loc=0x171
10433
10434         # it will refresh layout after the file is opened but before read issues
10435         echo checksum is "$cksum"
10436         echo "$cksum" |md5sum -c --quiet || error "file differs"
10437
10438         rm -rf $DIR/$tfile
10439 }
10440 run_test 207b "can refresh layout at open"
10441
10442 test_212() {
10443         size=`date +%s`
10444         size=$((size % 8192 + 1))
10445         dd if=/dev/urandom of=$DIR/f212 bs=1k count=$size
10446         sendfile $DIR/f212 $DIR/f212.xyz || error "sendfile wrong"
10447         rm -f $DIR/f212 $DIR/f212.xyz
10448 }
10449 run_test 212 "Sendfile test ============================================"
10450
10451 test_213() {
10452         dd if=/dev/zero of=$DIR/$tfile bs=4k count=4
10453         cancel_lru_locks osc
10454         lctl set_param fail_loc=0x8000040f
10455         # generate a read lock
10456         cat $DIR/$tfile > /dev/null
10457         # write to the file, it will try to cancel the above read lock.
10458         cat /etc/hosts >> $DIR/$tfile
10459 }
10460 run_test 213 "OSC lock completion and cancel race don't crash - bug 18829"
10461
10462 test_214() { # for bug 20133
10463         test_mkdir -p $DIR/d214p/d214c
10464         for (( i=0; i < 340; i++ )) ; do
10465                 touch $DIR/d214p/d214c/a$i
10466         done
10467
10468         ls -l $DIR/d214p || error "ls -l $DIR/d214p failed"
10469         mv $DIR/d214p/d214c $DIR/ || error "mv $DIR/d214p/d214c $DIR/ failed"
10470         ls $DIR/d214c || error "ls $DIR/d214c failed"
10471         rm -rf $DIR/d214* || error "rm -rf $DIR/d214* failed"
10472 }
10473 run_test 214 "hash-indexed directory test - bug 20133"
10474
10475 # having "abc" as 1st arg, creates $TMP/lnet_abc.out and $TMP/lnet_abc.sys
10476 create_lnet_proc_files() {
10477         cat /proc/sys/lnet/$1 >$TMP/lnet_$1.out || error "cannot read /proc/sys/lnet/$1"
10478         sysctl lnet.$1 >$TMP/lnet_$1.sys_tmp || error "cannot read lnet.$1"
10479
10480         sed "s/^lnet.$1\ =\ //g" "$TMP/lnet_$1.sys_tmp" >$TMP/lnet_$1.sys
10481         rm -f "$TMP/lnet_$1.sys_tmp"
10482 }
10483
10484 # counterpart of create_lnet_proc_files
10485 remove_lnet_proc_files() {
10486         rm -f $TMP/lnet_$1.out $TMP/lnet_$1.sys
10487 }
10488
10489 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
10490 # 3rd arg as regexp for body
10491 check_lnet_proc_stats() {
10492         local l=$(cat "$TMP/lnet_$1" |wc -l)
10493         [ $l = 1 ] || (cat "$TMP/lnet_$1" && error "$2 is not of 1 line: $l")
10494
10495         grep -E "$3" "$TMP/lnet_$1" || (cat "$TMP/lnet_$1" && error "$2 misformatted")
10496 }
10497
10498 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
10499 # 3rd arg as regexp for body, 4th arg as regexp for 1st line, 5th arg is
10500 # optional and can be regexp for 2nd line (lnet.routes case)
10501 check_lnet_proc_entry() {
10502         local blp=2            # blp stands for 'position of 1st line of body'
10503         [ "$5" = "" ] || blp=3 # lnet.routes case
10504
10505         local l=$(cat "$TMP/lnet_$1" |wc -l)
10506         # subtracting one from $blp because the body can be empty
10507         [ "$l" -ge "$(($blp - 1))" ] || (cat "$TMP/lnet_$1" && error "$2 is too short: $l")
10508
10509         sed -n '1 p' "$TMP/lnet_$1" |grep -E "$4" >/dev/null ||
10510                 (cat "$TMP/lnet_$1" && error "1st line of $2 misformatted")
10511
10512         [ "$5" = "" ] || sed -n '2 p' "$TMP/lnet_$1" |grep -E "$5" >/dev/null ||
10513                 (cat "$TMP/lnet_$1" && error "2nd line of $2 misformatted")
10514
10515         # bail out if any unexpected line happened
10516         sed -n "$blp~1 p" "$TMP/lnet_$1" |grep -Ev "$3"
10517         [ "$?" != 0 ] || error "$2 misformatted"
10518 }
10519
10520 test_215() { # for bugs 18102, 21079, 21517
10521         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10522         local N='(0|[1-9][0-9]*)'       # non-negative numeric
10523         local P='[1-9][0-9]*'           # positive numeric
10524         local I='(0|-?[1-9][0-9]*|NA)'  # any numeric (0 | >0 | <0) or NA if no value
10525         local NET='[a-z][a-z0-9]*'      # LNET net like o2ib2
10526         local ADDR='[0-9.]+'            # LNET addr like 10.0.0.1
10527         local NID="$ADDR@$NET"          # LNET nid like 10.0.0.1@o2ib2
10528
10529         local L1 # regexp for 1st line
10530         local L2 # regexp for 2nd line (optional)
10531         local BR # regexp for the rest (body)
10532
10533         # /proc/sys/lnet/stats should look as 11 space-separated non-negative numerics
10534         BR="^$N $N $N $N $N $N $N $N $N $N $N$"
10535         create_lnet_proc_files "stats"
10536         check_lnet_proc_stats "stats.out" "/proc/sys/lnet/stats" "$BR"
10537         check_lnet_proc_stats "stats.sys" "lnet.stats" "$BR"
10538         remove_lnet_proc_files "stats"
10539
10540         # /proc/sys/lnet/routes should look like this:
10541         # Routing disabled/enabled
10542         # net hops state router
10543         # where net is a string like tcp0, hops >= 0, state is up/down,
10544         # router is a string like 192.168.1.1@tcp2
10545         L1="^Routing (disabled|enabled)$"
10546         L2="^net +hops +state +router$"
10547         BR="^$NET +$N +(up|down) +$NID$"
10548         create_lnet_proc_files "routes"
10549         check_lnet_proc_entry "routes.out" "/proc/sys/lnet/routes" "$BR" "$L1" "$L2"
10550         check_lnet_proc_entry "routes.sys" "lnet.routes" "$BR" "$L1" "$L2"
10551         remove_lnet_proc_files "routes"
10552
10553         # /proc/sys/lnet/routers should look like this:
10554         # ref rtr_ref alive_cnt state last_ping ping_sent deadline down_ni router
10555         # where ref > 0, rtr_ref > 0, alive_cnt >= 0, state is up/down,
10556         # last_ping >= 0, ping_sent is boolean (0/1), deadline and down_ni are
10557         # numeric (0 or >0 or <0), router is a string like 192.168.1.1@tcp2
10558         L1="^ref +rtr_ref +alive_cnt +state +last_ping +ping_sent +deadline +down_ni +router$"
10559         BR="^$P +$P +$N +(up|down) +$N +(0|1) +$I +$I +$NID$"
10560         create_lnet_proc_files "routers"
10561         check_lnet_proc_entry "routers.out" "/proc/sys/lnet/routers" "$BR" "$L1"
10562         check_lnet_proc_entry "routers.sys" "lnet.routers" "$BR" "$L1"
10563         remove_lnet_proc_files "routers"
10564
10565         # /proc/sys/lnet/peers should look like this:
10566         # nid refs state last max rtr min tx min queue
10567         # where nid is a string like 192.168.1.1@tcp2, refs > 0,
10568         # state is up/down/NA, max >= 0. last, rtr, min, tx, min are
10569         # numeric (0 or >0 or <0), queue >= 0.
10570         L1="^nid +refs +state +last +max +rtr +min +tx +min +queue$"
10571         BR="^$NID +$P +(up|down|NA) +$I +$N +$I +$I +$I +$I +$N$"
10572         create_lnet_proc_files "peers"
10573         check_lnet_proc_entry "peers.out" "/proc/sys/lnet/peers" "$BR" "$L1"
10574         check_lnet_proc_entry "peers.sys" "lnet.peers" "$BR" "$L1"
10575         remove_lnet_proc_files "peers"
10576
10577         # /proc/sys/lnet/buffers  should look like this:
10578         # pages count credits min
10579         # where pages >=0, count >=0, credits and min are numeric (0 or >0 or <0)
10580         L1="^pages +count +credits +min$"
10581         BR="^ +$N +$N +$I +$I$"
10582         create_lnet_proc_files "buffers"
10583         check_lnet_proc_entry "buffers.out" "/proc/sys/lnet/buffers" "$BR" "$L1"
10584         check_lnet_proc_entry "buffers.sys" "lnet.buffers" "$BR" "$L1"
10585         remove_lnet_proc_files "buffers"
10586
10587         # /proc/sys/lnet/nis should look like this:
10588         # nid status alive refs peer rtr max tx min
10589         # where nid is a string like 192.168.1.1@tcp2, status is up/down,
10590         # alive is numeric (0 or >0 or <0), refs >= 0, peer >= 0,
10591         # rtr >= 0, max >=0, tx and min are numeric (0 or >0 or <0).
10592         L1="^nid +status +alive +refs +peer +rtr +max +tx +min$"
10593         BR="^$NID +(up|down) +$I +$N +$N +$N +$N +$I +$I$"
10594         create_lnet_proc_files "nis"
10595         check_lnet_proc_entry "nis.out" "/proc/sys/lnet/nis" "$BR" "$L1"
10596         check_lnet_proc_entry "nis.sys" "lnet.nis" "$BR" "$L1"
10597         remove_lnet_proc_files "nis"
10598
10599         # can we successfully write to /proc/sys/lnet/stats?
10600         echo "0" >/proc/sys/lnet/stats || error "cannot write to /proc/sys/lnet/stats"
10601         sysctl -w lnet.stats=0 || error "cannot write to lnet.stats"
10602 }
10603 run_test 215 "/proc/sys/lnet exists and has proper content - bugs 18102, 21079, 21517"
10604
10605 test_216() { # bug 20317
10606         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10607         remote_ost_nodsh && skip "remote OST with nodsh" && return
10608
10609         local node
10610         local facets=$(get_facets OST)
10611         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10612
10613         save_lustre_params client "osc.*.contention_seconds" > $p
10614         save_lustre_params $facets \
10615                 "ldlm.namespaces.filter-*.max_nolock_bytes" >> $p
10616         save_lustre_params $facets \
10617                 "ldlm.namespaces.filter-*.contended_locks" >> $p
10618         save_lustre_params $facets \
10619                 "ldlm.namespaces.filter-*.contention_seconds" >> $p
10620         clear_osc_stats
10621
10622         # agressive lockless i/o settings
10623         for node in $(osts_nodes); do
10624                 do_node $node 'lctl set_param -n ldlm.namespaces.filter-*.max_nolock_bytes 2000000; lctl set_param -n ldlm.namespaces.filter-*.contended_locks 0; lctl set_param -n ldlm.namespaces.filter-*.contention_seconds 60'
10625         done
10626         lctl set_param -n osc.*.contention_seconds 60
10627
10628         $DIRECTIO write $DIR/$tfile 0 10 4096
10629         $CHECKSTAT -s 40960 $DIR/$tfile
10630
10631         # disable lockless i/o
10632         for node in $(osts_nodes); do
10633                 do_node $node 'lctl set_param -n ldlm.namespaces.filter-*.max_nolock_bytes 0; lctl set_param -n ldlm.namespaces.filter-*.contended_locks 32; lctl set_param -n ldlm.namespaces.filter-*.contention_seconds 0'
10634         done
10635         lctl set_param -n osc.*.contention_seconds 0
10636         clear_osc_stats
10637
10638         dd if=/dev/zero of=$DIR/$tfile count=0
10639         $CHECKSTAT -s 0 $DIR/$tfile
10640
10641         restore_lustre_params <$p
10642         rm -f $p
10643         rm $DIR/$tfile
10644 }
10645 run_test 216 "check lockless direct write works and updates file size and kms correctly"
10646
10647 test_217() { # bug 22430
10648         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10649         local node
10650         local nid
10651
10652         for node in $(nodes_list); do
10653                 nid=$(host_nids_address $node $NETTYPE)
10654                 if [[ $nid = *-* ]] ; then
10655                         echo "lctl ping $nid@$NETTYPE"
10656                         lctl ping $nid@$NETTYPE
10657                 else
10658                         echo "skipping $node (no hyphen detected)"
10659                 fi
10660         done
10661 }
10662 run_test 217 "check lctl ping for hostnames with hiphen ('-')"
10663
10664 test_218() {
10665        # do directio so as not to populate the page cache
10666        log "creating a 10 Mb file"
10667        $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
10668        log "starting reads"
10669        dd if=$DIR/$tfile of=/dev/null bs=4096 &
10670        log "truncating the file"
10671        $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
10672        log "killing dd"
10673        kill %+ || true # reads might have finished
10674        echo "wait until dd is finished"
10675        wait
10676        log "removing the temporary file"
10677        rm -rf $DIR/$tfile || error "tmp file removal failed"
10678 }
10679 run_test 218 "parallel read and truncate should not deadlock ======================="
10680
10681 test_219() {
10682         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10683         # write one partial page
10684         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1
10685         # set no grant so vvp_io_commit_write will do sync write
10686         $LCTL set_param fail_loc=0x411
10687         # write a full page at the end of file
10688         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=1 conv=notrunc
10689
10690         $LCTL set_param fail_loc=0
10691         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=3
10692         $LCTL set_param fail_loc=0x411
10693         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1 seek=2 conv=notrunc
10694 }
10695 run_test 219 "LU-394: Write partial won't cause uncontiguous pages vec at LND"
10696
10697 test_220() { #LU-325
10698         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10699         remote_ost_nodsh && skip "remote OST with nodsh" && return
10700         local OSTIDX=0
10701
10702         test_mkdir -p $DIR/$tdir
10703         local OST=$(lfs osts | grep ${OSTIDX}": " | \
10704                 awk '{print $2}' | sed -e 's/_UUID$//')
10705
10706         # on the mdt's osc
10707         local mdtosc_proc1=$(get_mdtosc_proc_path $SINGLEMDS $OST)
10708         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
10709                         osc.$mdtosc_proc1.prealloc_last_id)
10710         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
10711                         osc.$mdtosc_proc1.prealloc_next_id)
10712
10713         $LFS df -i
10714
10715         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=-1
10716         #define OBD_FAIL_OST_ENOINO              0x229
10717         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0x229
10718         do_facet mgs $LCTL pool_new $FSNAME.$TESTNAME || return 1
10719         do_facet mgs $LCTL pool_add $FSNAME.$TESTNAME $OST || return 2
10720
10721         $SETSTRIPE $DIR/$tdir -i $OSTIDX -c 1 -p $FSNAME.$TESTNAME
10722
10723         MDSOBJS=$((last_id - next_id))
10724         echo "preallocated objects on MDS is $MDSOBJS" "($last_id - $next_id)"
10725
10726         blocks=$($LFS df $MOUNT | awk '($1 == '$OSTIDX') { print $4 }')
10727         echo "OST still has $count kbytes free"
10728
10729         echo "create $MDSOBJS files @next_id..."
10730         createmany -o $DIR/$tdir/f $MDSOBJS || return 3
10731
10732         local last_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
10733                         osc.$mdtosc_proc1.prealloc_last_id)
10734         local next_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
10735                         osc.$mdtosc_proc1.prealloc_next_id)
10736
10737         echo "after creation, last_id=$last_id2, next_id=$next_id2"
10738         $LFS df -i
10739
10740         echo "cleanup..."
10741
10742         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=0
10743         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0
10744
10745         do_facet mgs $LCTL pool_remove $FSNAME.$TESTNAME $OST || return 4
10746         do_facet mgs $LCTL pool_destroy $FSNAME.$TESTNAME || return 5
10747         echo "unlink $MDSOBJS files @$next_id..."
10748         unlinkmany $DIR/$tdir/f $MDSOBJS || return 6
10749 }
10750 run_test 220 "preallocated MDS objects still used if ENOSPC from OST"
10751
10752 test_221() {
10753         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10754         dd if=`which date` of=$MOUNT/date oflag=sync
10755         chmod +x $MOUNT/date
10756
10757         #define OBD_FAIL_LLITE_FAULT_TRUNC_RACE  0x1401
10758         $LCTL set_param fail_loc=0x80001401
10759
10760         $MOUNT/date > /dev/null
10761         rm -f $MOUNT/date
10762 }
10763 run_test 221 "make sure fault and truncate race to not cause OOM"
10764
10765 test_222a () {
10766         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10767        rm -rf $DIR/$tdir
10768        test_mkdir -p $DIR/$tdir
10769        $SETSTRIPE -c 1 -i 0 $DIR/$tdir
10770        createmany -o $DIR/$tdir/$tfile 10
10771        cancel_lru_locks mdc
10772        cancel_lru_locks osc
10773        #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
10774        $LCTL set_param fail_loc=0x31a
10775        ls -l $DIR/$tdir > /dev/null || error "AGL for ls failed"
10776        $LCTL set_param fail_loc=0
10777        rm -r $DIR/$tdir
10778 }
10779 run_test 222a "AGL for ls should not trigger CLIO lock failure ================"
10780
10781 test_222b () {
10782         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10783        rm -rf $DIR/$tdir
10784        test_mkdir -p $DIR/$tdir
10785        $SETSTRIPE -c 1 -i 0 $DIR/$tdir
10786        createmany -o $DIR/$tdir/$tfile 10
10787        cancel_lru_locks mdc
10788        cancel_lru_locks osc
10789        #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
10790        $LCTL set_param fail_loc=0x31a
10791        rm -r $DIR/$tdir || "AGL for rmdir failed"
10792        $LCTL set_param fail_loc=0
10793 }
10794 run_test 222b "AGL for rmdir should not trigger CLIO lock failure ============="
10795
10796 test_223 () {
10797         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10798        rm -rf $DIR/$tdir
10799        test_mkdir -p $DIR/$tdir
10800        $SETSTRIPE -c 1 -i 0 $DIR/$tdir
10801        createmany -o $DIR/$tdir/$tfile 10
10802        cancel_lru_locks mdc
10803        cancel_lru_locks osc
10804        #define OBD_FAIL_LDLM_AGL_NOLOCK          0x31b
10805        $LCTL set_param fail_loc=0x31b
10806        ls -l $DIR/$tdir > /dev/null || error "reenqueue failed"
10807        $LCTL set_param fail_loc=0
10808        rm -r $DIR/$tdir
10809 }
10810 run_test 223 "osc reenqueue if without AGL lock granted ======================="
10811
10812 test_224a() { # LU-1039, MRP-303
10813         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10814         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB   0x508
10815         $LCTL set_param fail_loc=0x508
10816         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 conv=fsync
10817         $LCTL set_param fail_loc=0
10818         df $DIR
10819 }
10820 run_test 224a "Don't panic on bulk IO failure"
10821
10822 test_224b() { # LU-1039, MRP-303
10823         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10824         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
10825         cancel_lru_locks osc
10826         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB2   0x515
10827         $LCTL set_param fail_loc=0x515
10828         dd of=/dev/null if=$DIR/$tfile bs=4096 count=1
10829         $LCTL set_param fail_loc=0
10830         df $DIR
10831 }
10832 run_test 224b "Don't panic on bulk IO failure"
10833
10834 MDSSURVEY=${MDSSURVEY:-$(which mds-survey 2>/dev/null || true)}
10835 test_225a () {
10836         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10837         if [ -z ${MDSSURVEY} ]; then
10838               skip_env "mds-survey not found" && return
10839         fi
10840
10841         [ $MDSCOUNT -ge 2 ] &&
10842                 skip "skipping now for more than one MDT" && return
10843
10844        [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ] ||
10845             { skip "Need MDS version at least 2.2.51"; return; }
10846
10847        local mds=$(facet_host $SINGLEMDS)
10848        local target=$(do_nodes $mds 'lctl dl' | \
10849                       awk "{if (\$2 == \"UP\" && \$3 == \"mdt\") {print \$4}}")
10850
10851        local cmd1="file_count=1000 thrhi=4"
10852        local cmd2="dir_count=2 layer=mdd stripe_count=0"
10853        local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
10854        local cmd="$cmd1 $cmd2 $cmd3"
10855
10856        rm -f ${TMP}/mds_survey*
10857        echo + $cmd
10858        eval $cmd || error "mds-survey with zero-stripe failed"
10859        cat ${TMP}/mds_survey*
10860        rm -f ${TMP}/mds_survey*
10861 }
10862 run_test 225a "Metadata survey sanity with zero-stripe"
10863
10864 test_225b () {
10865         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10866
10867         if [ -z ${MDSSURVEY} ]; then
10868               skip_env "mds-survey not found" && return
10869         fi
10870         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ] ||
10871             { skip "Need MDS version at least 2.2.51"; return; }
10872
10873         if [ $($LCTL dl | grep -c osc) -eq 0 ]; then
10874               skip_env "Need to mount OST to test" && return
10875         fi
10876
10877         [ $MDSCOUNT -ge 2 ] &&
10878                 skip "skipping now for more than one MDT" && return
10879        local mds=$(facet_host $SINGLEMDS)
10880        local target=$(do_nodes $mds 'lctl dl' | \
10881                       awk "{if (\$2 == \"UP\" && \$3 == \"mdt\") {print \$4}}")
10882
10883        local cmd1="file_count=1000 thrhi=4"
10884        local cmd2="dir_count=2 layer=mdd stripe_count=1"
10885        local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
10886        local cmd="$cmd1 $cmd2 $cmd3"
10887
10888        rm -f ${TMP}/mds_survey*
10889        echo + $cmd
10890        eval $cmd || error "mds-survey with stripe_count failed"
10891        cat ${TMP}/mds_survey*
10892        rm -f ${TMP}/mds_survey*
10893 }
10894 run_test 225b "Metadata survey sanity with stripe_count = 1"
10895
10896 mcreate_path2fid () {
10897         local mode=$1
10898         local major=$2
10899         local minor=$3
10900         local name=$4
10901         local desc=$5
10902         local path=$DIR/$tdir/$name
10903         local fid
10904         local rc
10905         local fid_path
10906
10907         $MCREATE --mode=$1 --major=$2 --minor=$3 $path ||
10908                 error "cannot create $desc"
10909
10910         fid=$($LFS path2fid $path | tr -d '[' | tr -d ']')
10911         rc=$?
10912         [ $rc -ne 0 ] && error "cannot get fid of a $desc"
10913
10914         fid_path=$($LFS fid2path $MOUNT $fid)
10915         rc=$?
10916         [ $rc -ne 0 ] && error "cannot get path of $desc by $DIR $path $fid"
10917
10918         [ "$path" == "$fid_path" ] ||
10919                 error "fid2path returned $fid_path, expected $path"
10920
10921         echo "pass with $path and $fid"
10922 }
10923
10924 test_226a () {
10925         rm -rf $DIR/$tdir
10926         mkdir -p $DIR/$tdir
10927
10928         mcreate_path2fid 0010666 0 0 fifo "FIFO"
10929         mcreate_path2fid 0020666 1 3 null "character special file (null)"
10930         mcreate_path2fid 0020666 1 255 none "character special file (no device)"
10931         mcreate_path2fid 0040666 0 0 dir "directory"
10932         mcreate_path2fid 0060666 7 0 loop0 "block special file (loop)"
10933         mcreate_path2fid 0100666 0 0 file "regular file"
10934         mcreate_path2fid 0120666 0 0 link "symbolic link"
10935         mcreate_path2fid 0140666 0 0 sock "socket"
10936 }
10937 run_test 226a "call path2fid and fid2path on files of all type"
10938
10939 test_226b () {
10940         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
10941         rm -rf $DIR/$tdir
10942         local MDTIDX=1
10943
10944         mkdir -p $DIR/$tdir
10945         $LFS setdirstripe -i $MDTIDX $DIR/$tdir/remote_dir ||
10946                 error "create remote directory failed"
10947         mcreate_path2fid 0010666 0 0 "remote_dir/fifo" "FIFO"
10948         mcreate_path2fid 0020666 1 3 "remote_dir/null" \
10949                                 "character special file (null)"
10950         mcreate_path2fid 0020666 1 255 "remote_dir/none" \
10951                                 "character special file (no device)"
10952         mcreate_path2fid 0040666 0 0 "remote_dir/dir" "directory"
10953         mcreate_path2fid 0060666 7 0 "remote_dir/loop0" \
10954                                 "block special file (loop)"
10955         mcreate_path2fid 0100666 0 0 "remote_dir/file" "regular file"
10956         mcreate_path2fid 0120666 0 0 "remote_dir/link" "symbolic link"
10957         mcreate_path2fid 0140666 0 0 "remote_dir/sock" "socket"
10958 }
10959 run_test 226b "call path2fid and fid2path on files of all type under remote dir"
10960
10961 # LU-1299 Executing or running ldd on a truncated executable does not
10962 # cause an out-of-memory condition.
10963 test_227() {
10964         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10965         dd if=`which date` of=$MOUNT/date bs=1k count=1
10966         chmod +x $MOUNT/date
10967
10968         $MOUNT/date > /dev/null
10969         ldd $MOUNT/date > /dev/null
10970         rm -f $MOUNT/date
10971 }
10972 run_test 227 "running truncated executable does not cause OOM"
10973
10974 # LU-1512 try to reuse idle OI blocks
10975 test_228a() {
10976         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10977         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
10978                 skip "non-ldiskfs backend" && return
10979
10980         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
10981         local myDIR=$DIR/$tdir
10982
10983         mkdir -p $myDIR
10984         #define OBD_FAIL_SEQ_EXHAUST             0x1002
10985         $LCTL set_param fail_loc=0x80001002
10986         createmany -o $myDIR/t- 10000
10987         $LCTL set_param fail_loc=0
10988         # The guard is current the largest FID holder
10989         touch $myDIR/guard
10990         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
10991                     tr -d '[')
10992         local IDX=$(($SEQ % 64))
10993
10994         do_facet $SINGLEMDS sync
10995         # Make sure journal flushed.
10996         sleep 6
10997         local blk1=$(do_facet $SINGLEMDS \
10998                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
10999                      grep Blockcount | awk '{print $4}')
11000
11001         # Remove old files, some OI blocks will become idle.
11002         unlinkmany $myDIR/t- 10000
11003         # Create new files, idle OI blocks should be reused.
11004         createmany -o $myDIR/t- 2000
11005         do_facet $SINGLEMDS sync
11006         # Make sure journal flushed.
11007         sleep 6
11008         local blk2=$(do_facet $SINGLEMDS \
11009                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
11010                      grep Blockcount | awk '{print $4}')
11011
11012         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
11013 }
11014 run_test 228a "try to reuse idle OI blocks"
11015
11016 test_228b() {
11017         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11018         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
11019                 skip "non-ldiskfs backend" && return
11020
11021         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
11022         local myDIR=$DIR/$tdir
11023
11024         mkdir -p $myDIR
11025         #define OBD_FAIL_SEQ_EXHAUST             0x1002
11026         $LCTL set_param fail_loc=0x80001002
11027         createmany -o $myDIR/t- 10000
11028         $LCTL set_param fail_loc=0
11029         # The guard is current the largest FID holder
11030         touch $myDIR/guard
11031         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
11032                     tr -d '[')
11033         local IDX=$(($SEQ % 64))
11034
11035         do_facet $SINGLEMDS sync
11036         # Make sure journal flushed.
11037         sleep 6
11038         local blk1=$(do_facet $SINGLEMDS \
11039                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
11040                      grep Blockcount | awk '{print $4}')
11041
11042         # Remove old files, some OI blocks will become idle.
11043         unlinkmany $myDIR/t- 10000
11044
11045         # stop the MDT
11046         stop $SINGLEMDS || error "Fail to stop MDT."
11047         # remount the MDT
11048         start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS || error "Fail to start MDT."
11049
11050         df $MOUNT || error "Fail to df."
11051         # Create new files, idle OI blocks should be reused.
11052         createmany -o $myDIR/t- 2000
11053         do_facet $SINGLEMDS sync
11054         # Make sure journal flushed.
11055         sleep 6
11056         local blk2=$(do_facet $SINGLEMDS \
11057                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
11058                      grep Blockcount | awk '{print $4}')
11059
11060         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
11061 }
11062 run_test 228b "idle OI blocks can be reused after MDT restart"
11063
11064 #LU-1881
11065 test_228c() {
11066         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11067         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
11068                 skip "non-ldiskfs backend" && return
11069
11070         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
11071         local myDIR=$DIR/$tdir
11072
11073         mkdir -p $myDIR
11074         #define OBD_FAIL_SEQ_EXHAUST             0x1002
11075         $LCTL set_param fail_loc=0x80001002
11076         # 20000 files can guarantee there are index nodes in the OI file
11077         createmany -o $myDIR/t- 20000
11078         $LCTL set_param fail_loc=0
11079         # The guard is current the largest FID holder
11080         touch $myDIR/guard
11081         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
11082                     tr -d '[')
11083         local IDX=$(($SEQ % 64))
11084
11085         do_facet $SINGLEMDS sync
11086         # Make sure journal flushed.
11087         sleep 6
11088         local blk1=$(do_facet $SINGLEMDS \
11089                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
11090                      grep Blockcount | awk '{print $4}')
11091
11092         # Remove old files, some OI blocks will become idle.
11093         unlinkmany $myDIR/t- 20000
11094         rm -f $myDIR/guard
11095         # The OI file should become empty now
11096
11097         # Create new files, idle OI blocks should be reused.
11098         createmany -o $myDIR/t- 2000
11099         do_facet $SINGLEMDS sync
11100         # Make sure journal flushed.
11101         sleep 6
11102         local blk2=$(do_facet $SINGLEMDS \
11103                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
11104                      grep Blockcount | awk '{print $4}')
11105
11106         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
11107 }
11108 run_test 228c "NOT shrink the last entry in OI index node to recycle idle leaf"
11109
11110 test_229() { # LU-2482
11111         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11112
11113         # Create a file with a release layout (stripe count = 0)
11114         $MULTIOP $DIR/$tfile H2c ||
11115                 error "failed to create file w. released layout"
11116
11117         $GETSTRIPE -v $DIR/$tfile
11118
11119         local pattern=$($GETSTRIPE -v $DIR/$tfile |
11120                         grep lmm_stripe_pattern | awk '{print $2}')
11121         [ X"$pattern" = X"80000001" ] || error "pattern error ($pattern)"
11122
11123         local stripe_count=$($GETSTRIPE -c $DIR/$tfile) || error "getstripe"
11124         [ $stripe_count -eq 2 ] || error "stripe count not 2 ($stripe_count)"
11125         stat $DIR/$tfile || error "failed to stat released file"
11126
11127         $TRUNCATE $DIR/$tfile 200000
11128         $CHECKSTAT -s 200000 $DIR/$tfile || error
11129
11130         # Stripe count should be no change after truncate
11131         stripe_count=$($GETSTRIPE -c $DIR/$tfile) || error "getstripe failed"
11132         [ $stripe_count -eq 2 ] || error "after trunc: ($stripe_count)"
11133
11134         rm $DIR/$tfile || error "failed to remove released file"
11135 }
11136 run_test 229 "getstripe/stat/rm work on released files (stripe count = 0)"
11137
11138 test_230a() {
11139         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11140         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
11141         local MDTIDX=1
11142
11143         mkdir -p $DIR/$tdir/test_230_local
11144         local mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230_local)
11145         [ $mdt_idx -ne 0 ] &&
11146                 error "create local directory on wrong MDT $mdt_idx"
11147
11148         $LFS mkdir -i $MDTIDX $DIR/$tdir/test_230 ||
11149                         error "create remote directory failed"
11150         local mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230)
11151         [ $mdt_idx -ne $MDTIDX ] &&
11152                 error "create remote directory on wrong MDT $mdt_idx"
11153
11154         createmany -o $DIR/$tdir/test_230/t- 10 ||
11155                 error "create files on remote directory failed"
11156         mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230/t-0)
11157         [ $mdt_idx -ne $MDTIDX ] && error "create files on wrong MDT $mdt_idx"
11158         rm -r $DIR/$tdir || error "unlink remote directory failed"
11159 }
11160 run_test 230a "Create remote directory and files under the remote directory"
11161
11162 test_230b() {
11163         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11164         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
11165         local MDTIDX=1
11166         local remote_dir=$DIR/$tdir/remote_dir
11167         local rc=0
11168
11169         mkdir -p $DIR/$tdir
11170         $LFS mkdir -i $MDTIDX $remote_dir ||
11171                 error "create remote directory failed"
11172
11173         $LFS mkdir -i 0 $remote_dir/new_dir &&
11174                 error "nested remote directory create succeed!"
11175
11176         do_facet mds$((MDTIDX + 1)) lctl set_param mdt.*.enable_remote_dir=1
11177         $LFS mkdir -i 0 $remote_dir/new_dir || rc=$?
11178         do_facet mds$((MDTIDX + 1)) lctl set_param mdt.*.enable_remote_dir=0
11179
11180         [ $rc -ne 0 ] &&
11181            error "create remote directory failed after set enable_remote_dir"
11182
11183         rm -rf $remote_dir || error "first unlink remote directory failed"
11184
11185         $RUNAS -G$RUNAS_GID $LFS mkdir -i $MDTIDX $DIR/$tfile &&
11186                                                         error "chown worked"
11187
11188         do_facet mds$MDTIDX lctl set_param \
11189                                 mdt.*.enable_remote_dir_gid=$RUNAS_GID
11190         $LFS mkdir -i $MDTIDX $remote_dir || rc=$?
11191         do_facet mds$MDTIDX lctl set_param mdt.*.enable_remote_dir_gid=0
11192
11193         [ $rc -ne 0 ] &&
11194            error "create remote dir failed after set enable_remote_dir_gid"
11195
11196         rm -r $DIR/$tdir || error "second unlink remote directory failed"
11197 }
11198 run_test 230b "nested remote directory should be failed"
11199
11200 test_231a()
11201 {
11202         # For simplicity this test assumes that max_pages_per_rpc
11203         # is the same across all OSCs
11204         local max_pages=$($LCTL get_param -n osc.*.max_pages_per_rpc | head -1)
11205         local bulk_size=$((max_pages * 4096))
11206
11207         mkdir -p $DIR/$tdir
11208
11209         # clear the OSC stats
11210         $LCTL set_param osc.*.stats=0 &>/dev/null
11211
11212         # Client writes $bulk_size - there must be 1 rpc for $max_pages.
11213         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=$bulk_size count=1 \
11214                 oflag=direct &>/dev/null || error "dd failed"
11215
11216         local nrpcs=$($LCTL get_param osc.*.stats |awk '/ost_write/ {print $2}')
11217         if [ x$nrpcs != "x1" ]; then
11218                 error "found $nrpc ost_write RPCs, not 1 as expected"
11219         fi
11220
11221         # Drop the OSC cache, otherwise we will read from it
11222         cancel_lru_locks osc
11223
11224         # clear the OSC stats
11225         $LCTL set_param osc.*.stats=0 &>/dev/null
11226
11227         # Client reads $bulk_size.
11228         dd if=$DIR/$tdir/$tfile of=/dev/null bs=$bulk_size count=1 \
11229                 iflag=direct &>/dev/null || error "dd failed"
11230
11231         nrpcs=$($LCTL get_param osc.*.stats | awk '/ost_read/ { print $2 }')
11232         if [ x$nrpcs != "x1" ]; then
11233                 error "found $nrpc ost_read RPCs, not 1 as expected"
11234         fi
11235 }
11236 run_test 231a "checking that reading/writing of BRW RPC size results in one RPC"
11237
11238 test_231b() {
11239         mkdir -p $DIR/$tdir
11240         local i
11241         for i in {0..1023}; do
11242                 dd if=/dev/zero of=$DIR/$tdir/$tfile conv=notrunc \
11243                         seek=$((2 * i)) bs=4096 count=1 &>/dev/null ||
11244                         error "dd of=$DIR/$tdir/$tfile seek=$((2 * i)) failed"
11245         done
11246         sync
11247 }
11248 run_test 231b "must not assert on fully utilized OST request buffer"
11249
11250 test_232() {
11251         mkdir -p $DIR/$tdir
11252         #define OBD_FAIL_LDLM_OST_LVB            0x31c
11253         $LCTL set_param fail_loc=0x31c
11254
11255         # ignore dd failure
11256         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=1 || true
11257
11258         $LCTL set_param fail_loc=0
11259         umount_client $MOUNT || error "umount failed"
11260         mount_client $MOUNT || error "mount failed"
11261 }
11262 run_test 232 "failed lock should not block umount"
11263
11264 test_233() {
11265         local fid=$($LFS path2fid $MOUNT)
11266         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
11267                 error "cannot access $MOUNT using its FID '$fid'"
11268 }
11269 run_test 233 "checking that OBF of the FS root succeeds"
11270
11271 #
11272 # tests that do cleanup/setup should be run at the end
11273 #
11274
11275 test_900() {
11276         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11277         local ls
11278         #define OBD_FAIL_MGC_PAUSE_PROCESS_LOG   0x903
11279         $LCTL set_param fail_loc=0x903
11280         # cancel_lru_locks mgc - does not work due to lctl set_param syntax
11281         for ls in /proc/fs/lustre/ldlm/namespaces/MGC*/lru_size; do
11282                 echo "clear" > $ls
11283         done
11284         FAIL_ON_ERROR=true cleanup
11285         FAIL_ON_ERROR=true setup
11286 }
11287 run_test 900 "umount should not race with any mgc requeue thread"
11288
11289 complete $SECONDS
11290 check_and_cleanup_lustre
11291 if [ "$I_MOUNTED" != "yes" ]; then
11292         lctl set_param debug="$OLDDEBUG" 2> /dev/null || true
11293 fi
11294 exit_status