Whamcloud - gitweb
LU-12350 tests: Do not use background failover
[fs/lustre-release.git] / lustre / tests / sanity-flr.sh
1 #!/bin/bash
2 #
3 # Run select tests by setting ONLY, or as arguments to the script.
4 # Skip specific tests by setting EXCEPT.
5 set -e
6 set +o posix
7
8 SRCDIR=$(dirname $0)
9 export PATH=$PWD/$SRCDIR:$SRCDIR:$PWD/$SRCDIR/../utils:$PATH:/sbin
10
11 ONLY=${ONLY:-"$*"}
12 # Bug number for skipped test:    LU-11381
13 ALWAYS_EXCEPT="$SANITY_FLR_EXCEPT 201"
14 # UPDATE THE COMMENT ABOVE WITH BUG NUMBERS WHEN CHANGING ALWAYS_EXCEPT!
15
16 LUSTRE=${LUSTRE:-$(cd $(dirname $0)/..; echo $PWD)}
17 . $LUSTRE/tests/test-framework.sh
18 init_test_env $@
19 . ${CONFIG:=$LUSTRE/tests/cfg/$NAME.sh}
20 get_lustre_env
21 init_logging
22
23 [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.10.56) ]] ||
24         { skip "Need MDS version at least 2.10.56"; exit 0; }
25
26 [ $UID -eq 0 -a $RUNAS_ID -eq 0 ] &&
27         error "\$RUNAS_ID set to 0, but \$UID is also 0!"
28 check_runas_id $RUNAS_ID $RUNAS_GID $RUNAS
29
30 check_and_setup_lustre
31 DIR=${DIR:-$MOUNT}
32 assert_DIR
33
34 build_test_filter
35
36 assert_DIR
37 rm -rf $DIR/[Rdfs][0-9]*
38
39 # global array to store mirror IDs
40 declare -a mirror_array
41 get_mirror_ids() {
42         local tf=$1
43         local id
44         local array
45
46         array=()
47         for id in $($LFS getstripe $tf | awk '/lcme_id/{print $2}'); do
48                 array[${#array[@]}]=$((id >> 16))
49         done
50
51         mirror_array=($(printf "%s\n" "${array[@]}" | sort -u))
52
53         echo ${#mirror_array[@]}
54 }
55
56 drop_client_cache() {
57         echo 3 > /proc/sys/vm/drop_caches
58 }
59
60 stop_osts() {
61         local idx
62
63         for idx in "$@"; do
64                 stop ost$idx
65         done
66
67         for idx in "$@"; do
68                 wait_osc_import_state client ost$idx "\(DISCONN\|IDLE\)"
69         done
70 }
71
72 start_osts() {
73         local idx
74
75         for idx in "$@"; do
76                 start ost$idx $(ostdevname $idx) $OST_MOUNT_OPTS ||
77                         error "start ost$idx failed"
78         done
79
80         for idx in "$@"; do
81                 wait_recovery_complete ost$idx
82         done
83 }
84
85 #
86 # Verify mirror count with an expected value for a given file.
87 #
88 verify_mirror_count() {
89         local tf=$1
90         local expected=$2
91         local mirror_count=$($LFS getstripe -N $tf)
92
93         [[ $mirror_count = $expected ]] || {
94                 $LFS getstripe -v $tf
95                 error "verify mirror count failed on $tf:" \
96                       "$mirror_count != $expected"
97         }
98 }
99
100 #
101 # Verify component count with an expected value for a given file.
102 #       $1 coposited layout file
103 #       $2 expected component number
104 #
105 verify_comp_count() {
106         local tf=$1
107         local expected=$2
108         local comp_count=$($LFS getstripe --component-count $tf)
109
110         [[ $comp_count = $expected ]] || {
111                 $LFS getstripe -v $tf
112                 error "verify component count failed on $tf:" \
113                       "$comp_count != $expected"
114         }
115 }
116
117 #
118 # Verify component attribute with an expected value for a given file
119 # and component ID.
120 #
121 verify_comp_attr() {
122         local attr=$1
123         local tf=$2
124         local comp_id=$3
125         local expected=$4
126         local cmd="$LFS getstripe -I$comp_id"
127         local getstripe_cmd="$cmd -v"
128         local value
129
130         case $attr in
131                 stripe-size) cmd+=" -S $tf" ;;
132                 stripe-count) cmd+=" -c $tf" ;;
133                 stripe-index) cmd+=" -i $tf" ;;
134                 pool) cmd+=" -p $tf" ;;
135                 comp-start) cmd+=" --component-start $tf" ;;
136                 comp-end) cmd+=" --component-end $tf" ;;
137                 lcme_flags) cmd+=" $tf | awk '/lcme_flags:/ { print \$2 }'" ;;
138                 *) error "invalid attribute $attr";;
139         esac
140
141         value=$(eval $cmd)
142
143         [ $attr = lcme_flags ] && {
144                 local fl
145                 local expected_list=$(comma_list $expected)
146                 for fl in ${expected_list//,/ }; do
147                         local neg=0
148
149                         [[ ${fl:0:1} = "^" ]] && neg=1
150                         [[ $neg = 1 ]] && fl=${fl:1}
151
152                         $(echo $value | grep -q $fl)
153                         local match=$?
154                         # 0: matched; 1: not matched
155
156                         if  [[ $neg = 0 && $match != 0 ||
157                                $neg = 1 && $match = 0 ]]; then
158                                 $getstripe_cmd $tf
159                                 [[ $neg = 0 ]] && # expect the flag
160                                     error "expected flag '$fl' not in $comp_id"
161                                 [[ $neg = 1 ]] && # not expect the flag
162                                     error "not expected flag '$fl' in $comp_id"
163                         fi
164                 done
165                 return
166         }
167
168         [[ $value = $expected ]] || {
169                 $getstripe_cmd $tf
170                 error "verify $attr failed on $tf: $value != $expected"
171         }
172 }
173
174 #
175 # Verify component extent with expected start and end extent values
176 # for a given file and component ID.
177 #
178 verify_comp_extent() {
179         local tf=$1
180         local comp_id=$2
181         local expected_start=$3
182         local expected_end=$4
183
184         verify_comp_attr comp-start $tf $comp_id $expected_start
185         verify_comp_attr comp-end $tf $comp_id $expected_end
186 }
187
188 #
189 # Verify component attribute with parent directory for a given file
190 # and component ID.
191 #
192 verify_comp_attr_with_parent() {
193         local attr=$1
194         local tf=$2
195         local comp_id=$3
196         local td=$(cd $(dirname $tf); echo $PWD)
197         local tf_cmd="$LFS getstripe -I$comp_id"
198         local td_cmd="$LFS getstripe"
199         local opt
200         local expected
201         local value
202
203         case $attr in
204                 stripe-size) opt="-S" ;;
205                 stripe-count) opt="-c" ;;
206                 pool) opt="-p" ;;
207                 *) error "invalid attribute $attr";;
208         esac
209
210         expected=$($td_cmd $opt $td)
211         [[ $expected = -1 ]] && expected=$OSTCOUNT
212
213         value=$($tf_cmd $opt $tf)
214         [[ $value = -1 ]] && value=$OSTCOUNT
215
216         [[ $value = $expected ]] || {
217                 $td_cmd -d $td
218                 $tf_cmd -v $tf
219                 error "verify $attr failed with parent on $tf:" \
220                       "$value != $expected"
221         }
222 }
223
224 #
225 # Verify component attribute with filesystem-wide default value for a given file
226 # and component ID.
227 #
228 verify_comp_attr_with_default() {
229         local attr=$1
230         local tf=$2
231         local comp_id=$3
232         local tf_cmd="$LFS getstripe -I$comp_id"
233         local opt
234         local expected
235         local value
236
237         case $attr in
238                 stripe-size)
239                         opt="-S"
240                         expected=$($LCTL get_param -n \
241                                    lov.$FSNAME-clilov-*.stripesize)
242                         ;;
243                 stripe-count)
244                         opt="-c"
245                         expected=$($LCTL get_param -n \
246                                    lov.$FSNAME-clilov-*.stripecount)
247                         [[ $expected = -1 ]] && expected=$OSTCOUNT
248                         ;;
249                 *) error "invalid attribute $attr";;
250         esac
251
252         value=$($tf_cmd $opt $tf)
253         [[ $value = -1 ]] && value=$OSTCOUNT
254
255         [[ $value = $expected ]] || {
256                 $tf_cmd -v $tf
257                 error "verify $attr failed with default value on $tf:" \
258                       "$value != $expected"
259         }
260 }
261
262 #
263 # Verify unspecified component attributes for a given file
264 # and component ID.
265 #
266 # This will only verify the inherited attributes:
267 # stripe size, stripe count and OST pool name
268 #
269 verify_comp_attrs() {
270         local tf=$1
271         local comp_id=$2
272
273         verify_comp_attr_with_default stripe-size $tf $comp_id
274         verify_comp_attr_with_default stripe-count $tf $comp_id
275         verify_comp_attr_with_parent pool $tf $comp_id
276 }
277
278 # command line test cases
279 test_0a() {
280         local td=$DIR/$tdir
281         local tf=$td/$tfile
282         local mirror_count=16 # LUSTRE_MIRROR_COUNT_MAX
283         local mirror_cmd="$LFS mirror create"
284         local id
285         local ids
286         local i
287
288         # create parent directory
289         mkdir $td || error "mkdir $td failed"
290
291         $mirror_cmd $tf &> /dev/null && error "miss -N option"
292
293         $mirror_cmd -N $tf || error "create mirrored file $tf failed"
294         verify_mirror_count $tf 1
295         id=$($LFS getstripe -I $tf)
296         verify_comp_attrs $tf $id
297         verify_comp_extent $tf $id 0 EOF
298
299         $mirror_cmd -N0 $tf-1 &> /dev/null && error "invalid mirror count 0"
300         $mirror_cmd -N$((mirror_count + 1)) $tf-1 &> /dev/null &&
301                 error "invalid mirror count $((mirror_count + 1))"
302
303         $mirror_cmd -N$mirror_count $tf-1 ||
304                 error "create mirrored file $tf-1 failed"
305         verify_mirror_count $tf-1 $mirror_count
306         ids=($($LFS getstripe $tf-1 | awk '/lcme_id/{print $2}' | tr '\n' ' '))
307         for ((i = 0; i < $mirror_count; i++)); do
308                 verify_comp_attrs $tf-1 ${ids[$i]}
309                 verify_comp_extent $tf-1 ${ids[$i]} 0 EOF
310         done
311
312         $mirror_cmd -N -N2 -N3 -N4 $tf-2 ||
313                 error "create mirrored file $tf-2 failed"
314         verify_mirror_count $tf-2 10
315         ids=($($LFS getstripe $tf-2 | awk '/lcme_id/{print $2}' | tr '\n' ' '))
316         for ((i = 0; i < 10; i++)); do
317                 verify_comp_attrs $tf-2 ${ids[$i]}
318                 verify_comp_extent $tf-2 ${ids[$i]} 0 EOF
319         done
320 }
321 run_test 0a "lfs mirror create with -N option"
322
323 test_0b() {
324         [[ $OSTCOUNT -lt 4 ]] && skip "need >= 4 OSTs" && return
325
326         local td=$DIR/$tdir
327         local tf=$td/$tfile
328         local mirror_cmd="$LFS mirror create"
329         local ids
330         local i
331
332         # create a new OST pool
333         local pool_name=$TESTNAME
334         create_pool $FSNAME.$pool_name ||
335                 error "create OST pool $pool_name failed"
336
337         # add OSTs into the pool
338         pool_add_targets $pool_name 0 $((OSTCOUNT - 1)) ||
339                 error "add OSTs into pool $pool_name failed"
340
341         # create parent directory
342         mkdir $td || error "mkdir $td failed"
343         $LFS setstripe -S 8M -c -1 -p $pool_name $td ||
344                 error "$LFS setstripe $td failed"
345
346         # create a mirrored file with plain layout mirrors
347         $mirror_cmd -N -N -S 4M -c 2 -p flash -i 2 -o 2,3 \
348                     -N -S 16M -N -c -1 -N -p archive -N -p none $tf ||
349                 error "create mirrored file $tf failed"
350         verify_mirror_count $tf 6
351         ids=($($LFS getstripe $tf | awk '/lcme_id/{print $2}' | tr '\n' ' '))
352         for ((i = 0; i < 6; i++)); do
353                 verify_comp_extent $tf ${ids[$i]} 0 EOF
354         done
355
356         # verify component ${ids[0]}
357         verify_comp_attrs $tf ${ids[0]}
358
359         # verify component ${ids[1]}
360         verify_comp_attr stripe-size $tf ${ids[1]} 4194304
361         verify_comp_attr stripe-count $tf ${ids[1]} 2
362         verify_comp_attr stripe-index $tf ${ids[1]} 2
363         verify_comp_attr pool $tf ${ids[1]} flash
364
365         # verify component ${ids[2]}
366         verify_comp_attr stripe-size $tf ${ids[2]} 16777216
367         verify_comp_attr stripe-count $tf ${ids[2]} 2
368         verify_comp_attr pool $tf ${ids[2]} flash
369
370         # verify component ${ids[3]}
371         verify_comp_attr stripe-size $tf ${ids[3]} 16777216
372         verify_comp_attr stripe-count $tf ${ids[3]} $OSTCOUNT
373         verify_comp_attr pool $tf ${ids[3]} flash
374
375         # verify component ${ids[4]}
376         verify_comp_attr stripe-size $tf ${ids[4]} 16777216
377         verify_comp_attr stripe-count $tf ${ids[4]} $OSTCOUNT
378         verify_comp_attr pool $tf ${ids[4]} archive
379
380         # verify component ${ids[5]}
381         verify_comp_attr stripe-size $tf ${ids[5]} 16777216
382         verify_comp_attr stripe-count $tf ${ids[5]} $OSTCOUNT
383         verify_comp_attr_with_parent pool $tf ${ids[5]}
384
385         # destroy OST pool
386         destroy_test_pools
387 }
388 run_test 0b "lfs mirror create plain layout mirrors"
389
390 test_0c() {
391         [[ $OSTCOUNT -lt 4 ]] && skip "need >= 4 OSTs" && return
392
393         local td=$DIR/$tdir
394         local tf=$td/$tfile
395         local mirror_cmd="$LFS mirror create"
396         local ids
397         local i
398
399         # create a new OST pool
400         local pool_name=$TESTNAME
401         create_pool $FSNAME.$pool_name ||
402                 error "create OST pool $pool_name failed"
403
404         # add OSTs into the pool
405         pool_add_targets $pool_name 0 $((OSTCOUNT - 1)) ||
406                 error "add OSTs into pool $pool_name failed"
407
408         # create parent directory
409         mkdir $td || error "mkdir $td failed"
410         $LFS setstripe -E 32M -S 8M -c -1 -p $pool_name -E eof -S 16M $td ||
411                 error "$LFS setstripe $td failed"
412
413         # create a mirrored file with composite layout mirrors
414         $mirror_cmd -N2 -E 4M -c 2 -p flash -i 1 -o 1,3 -E eof -S 4M \
415                     -N -c 4 -p none \
416                     -N3 -E 512M -S 16M -p archive -E -1 -i -1 -c -1 $tf ||
417                 error "create mirrored file $tf failed"
418         verify_mirror_count $tf 6
419         ids=($($LFS getstripe $tf | awk '/lcme_id/{print $2}' | tr '\n' ' '))
420
421         # verify components ${ids[0]} and ${ids[2]}
422         for i in 0 2; do
423                 verify_comp_attr_with_default stripe-size $tf ${ids[$i]}
424                 verify_comp_attr stripe-count $tf ${ids[$i]} 2
425                 verify_comp_attr stripe-index $tf ${ids[$i]} 1
426                 verify_comp_attr pool $tf ${ids[$i]} flash
427                 verify_comp_extent $tf ${ids[$i]} 0 4194304
428         done
429
430         # verify components ${ids[1]} and ${ids[3]}
431         for i in 1 3; do
432                 verify_comp_attr stripe-size $tf ${ids[$i]} 4194304
433                 verify_comp_attr stripe-count $tf ${ids[$i]} 2
434                 verify_comp_attr pool $tf ${ids[$i]} flash
435                 verify_comp_extent $tf ${ids[$i]} 4194304 EOF
436         done
437
438         # verify component ${ids[4]}
439         verify_comp_attr stripe-size $tf ${ids[4]} 4194304
440         verify_comp_attr stripe-count $tf ${ids[4]} 4
441         verify_comp_attr_with_parent pool $tf ${ids[4]}
442         verify_comp_extent $tf ${ids[4]} 0 EOF
443
444         # verify components ${ids[5]}, ${ids[7]} and ${ids[9]}
445         for i in 5 7 9; do
446                 verify_comp_attr stripe-size $tf ${ids[$i]} 16777216
447                 verify_comp_attr stripe-count $tf ${ids[$i]} 4
448                 verify_comp_attr pool $tf ${ids[$i]} archive
449                 verify_comp_extent $tf ${ids[$i]} 0 536870912
450         done
451
452         # verify components ${ids[6]}, ${ids[8]} and ${ids[10]}
453         for i in 6 8 10; do
454                 verify_comp_attr stripe-size $tf ${ids[$i]} 16777216
455                 verify_comp_attr stripe-count $tf ${ids[$i]} -1
456                 verify_comp_attr pool $tf ${ids[$i]} archive
457                 verify_comp_extent $tf ${ids[$i]} 536870912 EOF
458         done
459
460         # destroy OST pool
461         destroy_test_pools
462 }
463 run_test 0c "lfs mirror create composite layout mirrors"
464
465 test_0d() {
466         local td=$DIR/$tdir
467         local tf=$td/$tfile
468         local mirror_count=16 # LUSTRE_MIRROR_COUNT_MAX
469         local mirror_cmd="$LFS mirror extend"
470         local ids
471         local i
472
473         # create parent directory
474         mkdir $td || error "mkdir $td failed"
475
476         $mirror_cmd $tf &> /dev/null && error "miss -N option"
477         $mirror_cmd -N $tf &> /dev/null && error "$tf does not exist"
478
479         # create a non-mirrored file, convert it to a mirrored file and extend
480         touch $tf || error "touch $tf failed"
481         $mirror_cmd -N $tf || error "convert and extend $tf failed"
482         verify_mirror_count $tf 2
483         ids=($($LFS getstripe $tf | awk '/lcme_id/{print $2}' | tr '\n' ' '))
484         for ((i = 0; i < 2; i++)); do
485                 verify_comp_attrs $tf ${ids[$i]}
486                 verify_comp_extent $tf ${ids[$i]} 0 EOF
487         done
488
489         lfsck_verify_pfid $tf || error "PFID is not set"
490
491         # create a mirrored file and extend it
492         $LFS mirror create -N $tf-1 || error "create mirrored file $tf-1 failed"
493         $LFS mirror create -N $tf-2 || error "create mirrored file $tf-2 failed"
494
495         $mirror_cmd -N -S 4M -N -f $tf-2 $tf-1 &> /dev/null &&
496                 error "setstripe options should not be specified with -f option"
497
498         $mirror_cmd -N$((mirror_count - 1)) $tf-1 ||
499                 error "extend mirrored file $tf-1 failed"
500         verify_mirror_count $tf-1 $mirror_count
501         ids=($($LFS getstripe $tf-1 | awk '/lcme_id/{print $2}' | tr '\n' ' '))
502         for ((i = 0; i < $mirror_count; i++)); do
503                 verify_comp_attrs $tf-1 ${ids[$i]}
504                 verify_comp_extent $tf-1 ${ids[$i]} 0 EOF
505         done
506
507         $mirror_cmd -N $tf-1 &> /dev/null &&
508                 error "exceeded maximum mirror count $mirror_count" || true
509 }
510 run_test 0d "lfs mirror extend with -N option"
511
512 test_0e() {
513         [[ $OSTCOUNT -lt 4 ]] && skip "need >= 4 OSTs" && return
514
515         local td=$DIR/$tdir
516         local tf=$td/$tfile
517         local mirror_cmd="$LFS mirror extend"
518         local ids
519         local i
520
521         # create parent directory
522         mkdir $td || error "mkdir $td failed"
523
524         # create a mirrored file with plain layout mirrors
525         $LFS mirror create -N -S 32M -c 3 -p ssd -i 1 -o 1,2,3 $tf ||
526                 error "create mirrored file $tf failed"
527
528         # extend the mirrored file with plain layout mirrors
529         $mirror_cmd -N -S 4M -c 2 -p flash -i 2 -o 2,3 \
530                     -N -S 16M -N -c -1 -N -p archive -N -p none $tf ||
531                 error "extend mirrored file $tf failed"
532         verify_mirror_count $tf 6
533         ids=($($LFS getstripe $tf | awk '/lcme_id/{print $2}' | tr '\n' ' '))
534         for ((i = 0; i < 6; i++)); do
535                 verify_comp_extent $tf ${ids[$i]} 0 EOF
536         done
537
538         # verify component ${ids[0]}
539         verify_comp_attr stripe-size $tf ${ids[0]} 33554432
540         verify_comp_attr stripe-count $tf ${ids[0]} 3
541         verify_comp_attr stripe-index $tf ${ids[0]} 1
542         verify_comp_attr pool $tf ${ids[0]} ssd
543
544         # verify component ${ids[1]}
545         verify_comp_attr stripe-size $tf ${ids[1]} 4194304
546         verify_comp_attr stripe-count $tf ${ids[1]} 2
547         verify_comp_attr stripe-index $tf ${ids[1]} 2
548         verify_comp_attr pool $tf ${ids[1]} flash
549
550         # verify component ${ids[2]}
551         verify_comp_attr stripe-size $tf ${ids[2]} 16777216
552         verify_comp_attr stripe-count $tf ${ids[2]} 2
553         verify_comp_attr pool $tf ${ids[2]} flash
554
555         # verify component ${ids[3]}
556         verify_comp_attr stripe-size $tf ${ids[3]} 16777216
557         verify_comp_attr stripe-count $tf ${ids[3]} $OSTCOUNT
558         verify_comp_attr pool $tf ${ids[3]} flash
559
560         # verify component ${ids[4]}
561         verify_comp_attr stripe-size $tf ${ids[4]} 16777216
562         verify_comp_attr stripe-count $tf ${ids[4]} $OSTCOUNT
563         verify_comp_attr pool $tf ${ids[4]} archive
564
565         # verify component ${ids[5]}
566         verify_comp_attr stripe-size $tf ${ids[5]} 16777216
567         verify_comp_attr stripe-count $tf ${ids[5]} $OSTCOUNT
568         verify_comp_attr_with_parent pool $tf ${ids[5]}
569 }
570 run_test 0e "lfs mirror extend plain layout mirrors"
571
572 test_0f() {
573         [[ $OSTCOUNT -lt 4 ]] && skip "need >= 4 OSTs" && return
574
575         local td=$DIR/$tdir
576         local tf=$td/$tfile
577         local mirror_cmd="$LFS mirror extend"
578         local ids
579         local i
580
581         # create parent directory
582         mkdir $td || error "mkdir $td failed"
583
584         # create a mirrored file with composite layout mirror
585         $LFS mirror create -N -E 32M -S 16M -p ssd -E eof -S 32M $tf ||
586                 error "create mirrored file $tf failed"
587
588         # extend the mirrored file with composite layout mirrors
589         $mirror_cmd -N2 -E 4M -c 2 -p flash -i 1 -o 1,3 -E eof -S 4M \
590                     -N -c -1 -p none \
591                     -N3 -E 512M -S 16M -p archive -E -1 -i -1 -c -1 $tf ||
592                 error "extend mirrored file $tf failed"
593         verify_mirror_count $tf 7
594         ids=($($LFS getstripe $tf | awk '/lcme_id/{print $2}' | tr '\n' ' '))
595
596         # verify component ${ids[0]}
597         verify_comp_attr stripe-size $tf ${ids[0]} 16777216
598         verify_comp_attr_with_default stripe-count $tf ${ids[0]}
599         verify_comp_attr pool $tf ${ids[0]} ssd
600         verify_comp_extent $tf ${ids[0]} 0 33554432
601
602         # verify component ${ids[1]}
603         verify_comp_attr stripe-size $tf ${ids[1]} 33554432
604         verify_comp_attr_with_default stripe-count $tf ${ids[1]}
605         verify_comp_attr pool $tf ${ids[1]} ssd
606         verify_comp_extent $tf ${ids[1]} 33554432 EOF
607
608         # verify components ${ids[2]} and ${ids[4]}
609         for i in 2 4; do
610                 verify_comp_attr_with_default stripe-size $tf ${ids[$i]}
611                 verify_comp_attr stripe-count $tf ${ids[$i]} 2
612                 verify_comp_attr stripe-index $tf ${ids[$i]} 1
613                 verify_comp_attr pool $tf ${ids[$i]} flash
614                 verify_comp_extent $tf ${ids[$i]} 0 4194304
615         done
616
617         # verify components ${ids[3]} and ${ids[5]}
618         for i in 3 5; do
619                 verify_comp_attr stripe-size $tf ${ids[$i]} 4194304
620                 verify_comp_attr stripe-count $tf ${ids[$i]} 2
621                 verify_comp_attr pool $tf ${ids[$i]} flash
622                 verify_comp_extent $tf ${ids[$i]} 4194304 EOF
623         done
624
625         # verify component ${ids[6]}
626         verify_comp_attr stripe-size $tf ${ids[6]} 4194304
627         verify_comp_attr stripe-count $tf ${ids[6]} $OSTCOUNT
628         verify_comp_attr_with_parent pool $tf ${ids[6]}
629         verify_comp_extent $tf ${ids[6]} 0 EOF
630
631         # verify components ${ids[7]}, ${ids[9]} and ${ids[11]}
632         for i in 7 9 11; do
633                 verify_comp_attr stripe-size $tf ${ids[$i]} 16777216
634                 verify_comp_attr stripe-count $tf ${ids[$i]} $OSTCOUNT
635                 verify_comp_attr pool $tf ${ids[$i]} archive
636                 verify_comp_extent $tf ${ids[$i]} 0 536870912
637         done
638
639         # verify components ${ids[8]}, ${ids[10]} and ${ids[12]}
640         for i in 8 10 12; do
641                 verify_comp_attr stripe-size $tf ${ids[$i]} 16777216
642                 verify_comp_attr stripe-count $tf ${ids[$i]} -1
643                 verify_comp_attr pool $tf ${ids[$i]} archive
644                 verify_comp_extent $tf ${ids[$i]} 536870912 EOF
645         done
646 }
647 run_test 0f "lfs mirror extend composite layout mirrors"
648
649 test_0g() {
650         local tf=$DIR/$tfile
651
652         $LFS mirror create -N -E 1M -S 1M -o0 --flags=prefer -E eof -o1 \
653                            -N -o1 $tf || error "create mirrored file $tf failed"
654
655         verify_comp_attr lcme_flags $tf 0x10001 prefer
656         verify_comp_attr lcme_flags $tf 0x10002 prefer
657
658         # write to the mirrored file and check primary
659         cp /etc/hosts $tf || error "error writing file '$tf'"
660
661         verify_comp_attr lcme_flags $tf 0x20003 stale
662
663         # resync file and check prefer flag
664         $LFS mirror resync $tf || error "error resync-ing file '$tf'"
665
666         cancel_lru_locks osc
667         $LCTL set_param osc.*.stats=clear
668         cat $tf &> /dev/null || error "error reading file '$tf'"
669
670         # verify that the data was provided by OST1 where mirror 1 resides
671         local nr_read=$($LCTL get_param -n osc.$FSNAME-OST0000-osc-[-0-9a-f]*.stats |
672                         awk '/ost_read/{print $2}')
673         [ -n "$nr_read" ] || error "read was not provided by OST1"
674 }
675 run_test 0g "lfs mirror create flags support"
676
677 test_0h() {
678         [ $MDS1_VERSION -lt $(version_code 2.11.57) ] &&
679                 skip "Need MDS version at least 2.11.57"
680
681         local td=$DIR/$tdir
682         local tf=$td/$tfile
683         local ids
684         local i
685
686         # create parent directory
687         test_mkdir $td || error "mkdir $td failed"
688
689         $LFS setstripe -N -E 1M -S 1M --flags=prefer -E eof -N2 $td ||
690                 error "set default mirrored layout on directory $td failed"
691
692         # verify flags are inherited from the directory
693         touch $tf
694
695         verify_comp_attr lcme_flags $tf 0x10001 prefer
696         verify_comp_attr lcme_flags $tf 0x10002 prefer
697
698         # set flags to the first component
699         $LFS setstripe --comp-set -I 0x10001 --comp-flags=^prefer,stale $tf
700
701         verify_comp_attr lcme_flags $tf 0x10001 stale
702         verify_comp_attr lcme_flags $tf 0x10002 prefer
703
704         $LFS setstripe --comp-set -I0x10001 --comp-flags=^stale $tf &&
705                 error "clearing 'stale' should fail"
706
707         # write and resync file. It can't resync the file directly because the
708         # file state is still 'ro'
709         cp /etc/hosts $tf || error "error writing file '$tf'"
710         $LFS mirror resync $tf || error "error resync-ing file '$tf'"
711
712         $LFS setstripe --comp-set -I 0x20003 --comp-flags=prefer $tf ||
713                 error "error setting flag prefer"
714
715         verify_comp_attr lcme_flags $tf 0x20003 prefer
716 }
717 run_test 0h "set, clear and test flags for FLR files"
718
719 test_1() {
720         local tf=$DIR/$tfile
721         local mirror_count=16 # LUSTRE_MIRROR_COUNT_MAX
722         local mirror_create_cmd="$LFS mirror create"
723         local stripes[0]=$OSTCOUNT
724
725         mirror_create_cmd+=" -N -c ${stripes[0]}"
726         for ((i = 1; i < $mirror_count; i++)); do
727                 # add mirrors with different stripes to the file
728                 stripes[$i]=$((RANDOM % OSTCOUNT))
729                 [ ${stripes[$i]} -eq 0 ] && stripes[$i]=1
730
731                 mirror_create_cmd+=" -N -c ${stripes[$i]}"
732         done
733
734         $mirror_create_cmd $tf || error "create mirrored file $tf failed"
735         verify_mirror_count $tf $mirror_count
736
737         # can't create mirrors exceeding LUSTRE_MIRROR_COUNT_MAX
738         $LFS mirror extend -N $tf &&
739                 error "Creating the $((mirror_count+1))th mirror succeeded"
740
741         local ids=($($LFS getstripe $tf | awk '/lcme_id/{print $2}' |
742                         tr '\n' ' '))
743
744         # verify the range of components and stripe counts
745         for ((i = 0; i < $mirror_count; i++)); do
746                 verify_comp_attr stripe-count $tf ${ids[$i]} ${stripes[$i]}
747                 verify_comp_extent $tf ${ids[$i]} 0 EOF
748         done
749 }
750 run_test 1 "create components with setstripe options"
751
752 test_2() {
753         local tf=$DIR/$tfile
754         local tf2=$DIR/$tfile-2
755
756         $LFS setstripe -E 1M -S 1M -E EOF -c 1 $tf
757         $LFS setstripe -E 2M -S 1M -E EOF -c -1 $tf2
758
759         $LFS mirror extend -N -f $tf2 $tf ||
760                 error "merging $tf2 into $tf failed"
761
762         verify_mirror_count $tf 2
763         [[ ! -e $tf2 ]] || error "$tf2 was not unlinked"
764 }
765 run_test 2 "create components from existing files"
766
767 test_3() {
768         [[ $MDSCOUNT -lt 2 ]] && skip "need >= 2 MDTs" && return
769
770         for ((i = 0; i < 2; i++)); do
771                 $LFS mkdir -i $i $DIR/$tdir-$i
772                 $LFS setstripe -E -1 $DIR/$tdir-$i/$tfile
773         done
774
775         $LFS mirror extend -N -f $DIR/$tdir-1/$tfile \
776                 $DIR/$tdir-0/$tfile || error "creating mirrors"
777
778         # mdt doesn't support to cancel layout lock for remote objects, do
779         # it here manually.
780         cancel_lru_locks mdc
781
782         # make sure the mirrorted file was created successfully
783         [[ $($LFS getstripe --component-count $DIR/$tdir-0/$tfile) -eq 2 ]] ||
784                 { $LFS getstripe $DIR/$tdir-0/$tfile;
785                         error "expected 2 components"; }
786
787         # cleanup
788         rm -rf $DIR/$tdir-*
789 }
790 run_test 3 "create components from files located on different MDTs"
791
792 test_4() {
793         local tf=$DIR/$tdir/$tfile
794         local ids=()
795
796         test_mkdir $DIR/$tdir
797
798         # set mirror with setstripe options to directory
799         $LFS mirror create -N2 -E 1M -S 1M -E eof $DIR/$tdir ||
800                 error "set mirror to directory error"
801
802         [ x$($LFS getstripe -v $DIR/$tdir | awk '/lcm_flags/{print $2}') = \
803                 x"mirrored" ] || error "failed to create mirrored dir"
804
805         touch $tf
806         verify_mirror_count $tf 2
807
808         ids=($($LFS getstripe $tf | awk '/lcme_id/{print $2}' | tr '\n' ' '))
809         verify_comp_extent $tf ${ids[0]} 0 1048576
810         verify_comp_extent $tf ${ids[1]} 1048576 EOF
811
812         # sub directory should inherit mirror setting from parent
813         test_mkdir $DIR/$tdir/td
814         [ x$($LFS getstripe -v $DIR/$tdir/td | awk '/lcm_flags/{print $2}') = \
815                 x"mirrored" ] || error "failed to inherit mirror from parent"
816
817         # mirror extend won't be applied to directory
818         $LFS mirror extend -N2 $DIR/$tdir &&
819                 error "expecting mirror extend failure"
820         true
821 }
822 run_test 4 "Make sure mirror attributes can be inhertied from directory"
823
824 test_5() {
825         local tf=$DIR/$tfile
826         local ids=()
827
828         $MULTIOP $tf oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:T12345c ||
829                 error "failed to create file with non-empty layout"
830         $CHECKSTAT -t file -s 12345 $tf || error "size error: expecting 12345"
831
832         $LFS mirror create -N3 $tf || error "failed to attach mirror layout"
833         verify_mirror_count $tf 3
834
835         $CHECKSTAT -t file -s 12345 $tf ||
836                 error "size error after attaching layout "
837 }
838 run_test 5 "Make sure init size work for mirrored layout"
839
840 # LU=10112: disable dom+flr for phase 1
841 test_6() {
842         local tf=$DIR/$tfile
843
844         $LFS mirror create -N -E 1M -S 1M -L mdt -E eof -N -E eof $tf &&
845                 error "expect failure to create mirrored file with DoM"
846
847         $LFS mirror create -N -E 1M -S 1M -E eof -N -E 1M -L mdt -E eof $tf &&
848                 error "expect failure to create mirrored file with DoM"
849
850         $LFS setstripe -E 1M -S 1M -L mdt -E eof $tf
851         $LFS mirror extend -N2 $tf &&
852                 error "expect failure to extend mirror with DoM"
853
854         $LFS mirror create -N2 -E 1M -S 1M -E eof $tf-2
855         $LFS mirror extend -N -f $tf $tf-2 &&
856                 error "expect failure to extend mirrored file with DoM extent"
857
858         true
859 }
860 run_test 6 "DoM and FLR won't co-exist for phase 1"
861
862 test_21() {
863         local tf=$DIR/$tfile
864         local tf2=$DIR/$tfile-2
865
866         [[ $OSTCOUNT -lt 2 ]] && skip "need >= 2 OSTs" && return
867
868         $LFS setstripe -E EOF -o 0 $tf
869         $LFS setstripe -E EOF -o 1 $tf2
870
871         local dd_count=$((RANDOM % 20 + 1))
872         dd if=/dev/zero of=$tf bs=1M count=$dd_count oflag=sync
873         dd if=/dev/zero of=$tf2 bs=1M count=1 seek=$((dd_count - 1)) oflag=sync
874
875         # for zfs - sync OST dataset so that du below will return
876         # accurate results
877         [ "$FSTYPE" = "zfs" ] &&
878                 do_nodes $(comma_list $(osts_nodes)) "$ZPOOL sync"
879
880         local blocks=$(du -kc $tf $tf2 | awk '/total/{print $1}')
881
882         # add component
883         $LFS mirror extend -N -f $tf2 $tf ||
884                 error "merging $tf2 into $tf failed"
885
886         # cancel layout lock
887         cancel_lru_locks mdc
888
889         local new_blocks=$(du -k $tf | awk '{print $1}')
890         [ $new_blocks -eq $blocks ] ||
891         error "i_blocks error expected: $blocks, actual: $new_blocks"
892 }
893 run_test 21 "glimpse should report accurate i_blocks"
894
895 get_osc_lock_count() {
896         local lock_count=0
897
898         for idx in "$@"; do
899                 local osc_name
900                 local count
901
902                 osc_name=${FSNAME}-OST$(printf "%04x" $((idx-1)))-osc-'[-0-9a-f]*'
903                 count=$($LCTL get_param -n ldlm.namespaces.$osc_name.lock_count)
904                 lock_count=$((lock_count + count))
905         done
906         echo $lock_count
907 }
908
909 test_22() {
910         local tf=$DIR/$tfile
911
912         $LFS setstripe -E EOF -o 0 $tf
913         dd if=/dev/zero of=$tf bs=1M count=$((RANDOM % 20 + 1))
914
915         # add component, two mirrors located on the same OST ;-)
916         $LFS mirror extend -N -o 0 $tf ||
917                 error "extending mirrored file $tf failed"
918
919         size_blocks=$(stat --format="%b %s" $tf)
920
921         cancel_lru_locks mdc
922         cancel_lru_locks osc
923
924         local new_size_blocks=$(stat --format="%b %s" $tf)
925
926         # make sure there is no lock cached
927         [ $(get_osc_lock_count 1) -eq 0 ] || error "glimpse requests were sent"
928
929         [ "$new_size_blocks" = "$size_blocks" ] ||
930                 echo "size expected: $size_blocks, actual: $new_size_blocks"
931
932         rm -f $tmpfile
933 }
934 run_test 22 "no glimpse to OSTs for READ_ONLY files"
935
936 test_31() {
937         local tf=$DIR/$tfile
938
939         $LFS mirror create -N -o 0 -N -o 1 $tf ||
940                 error "creating mirrored file $tf failed"
941
942         #define OBD_FAIL_GLIMPSE_IMMUTABLE 0x1A00
943         $LCTL set_param fail_loc=0x1A00
944
945         local ost_idx
946         for ((ost_idx = 1; ost_idx <= 2; ost_idx++)); do
947                 cancel_lru_locks osc
948                 stop_osts $ost_idx
949
950                 local tmpfile=$(mktemp)
951                 stat --format="%b %s" $tf > $tmpfile  &
952                 local pid=$!
953
954                 local cnt=0
955                 while [ $cnt -le 5 ]; do
956                         kill -0 $pid > /dev/null 2>&1 || break
957                         sleep 1
958                         ((cnt += 1))
959                 done
960                 kill -0 $pid > /dev/null 2>&1 &&
961                         error "stat process stuck due to unavailable OSTs"
962
963                 # make sure glimpse request has been sent
964                 [ $(get_osc_lock_count 1 2) -ne 0 ] ||
965                         error "OST $ost_idx: no glimpse request was sent"
966
967                 start_osts $ost_idx
968         done
969 }
970 run_test 31 "make sure glimpse request can be retried"
971
972 test_32() {
973         [[ $OSTCOUNT -lt 2 ]] && skip "need >= 2 OSTs" && return
974         rm -f $DIR/$tfile $DIR/$tfile-2
975
976         $LFS setstripe -E EOF -o 0 $DIR/$tfile
977         dd if=/dev/urandom of=$DIR/$tfile bs=1M count=$((RANDOM % 10 + 2))
978
979         local fsize=$(stat -c %s $DIR/$tfile)
980         [[ $fsize -ne 0 ]] || error "file size is (wrongly) zero"
981
982         local cksum=$(md5sum $DIR/$tfile)
983
984         # create a new mirror in sync mode
985         $LFS mirror extend -N -o 1 $DIR/$tfile ||
986                 error "extending mirrored file $DIR/$tfile failed"
987
988         # make sure the mirrored file was created successfully
989         [ $($LFS getstripe -N $DIR/$tfile) -eq 2 ] ||
990                 { $LFS getstripe $DIR/$tfile; error "expected 2 mirrors"; }
991
992         drop_client_cache
993         stop_osts 1
994
995         # check size is correct, glimpse request should go to the 2nd mirror
996         $CHECKSTAT -t file -s $fsize $DIR/$tfile ||
997                 error "file size error $fsize vs. $(stat -c %s $DIR/$tfile)"
998
999         echo "reading file from the 2nd mirror and verify checksum"
1000         [[ "$cksum" == "$(md5sum $DIR/$tfile)" ]] ||
1001                 error "checksum error: expected $cksum"
1002
1003         start_osts 1
1004 }
1005 run_test 32 "data should be mirrored to newly created mirror"
1006
1007 test_33() {
1008         [[ $OSTCOUNT -lt 2 ]] && skip "need >= 2 OSTs" && return
1009
1010         rm -f $DIR/$tfile $DIR/$tfile-2
1011
1012         # create a file with two mirrors
1013         $LFS setstripe -E EOF -o 0 $DIR/$tfile
1014         local max_count=100
1015         local count=0
1016         while [ $count -lt $max_count ]; do
1017                 echo "ost1" >> $DIR/$tfile
1018                 count=$((count + 1));
1019         done
1020
1021         # tmp file that will be used as mirror
1022         $LFS setstripe -E EOF -o 1 $DIR/$tfile-2
1023         count=0
1024         while [ $count -lt $max_count ]; do
1025                 echo "ost2" >> $DIR/$tfile-2
1026                 count=$((count + 1));
1027         done
1028
1029         # create a mirrored file
1030         $LFS mirror extend -N -f $DIR/$tfile-2 $DIR/$tfile &&
1031                 error "merging $DIR/$tfile-2 into $DIR/$tfile" \
1032                       "with verification should fail"
1033         $LFS mirror extend --no-verify -N -f $DIR/$tfile-2 $DIR/$tfile ||
1034                 error "merging $DIR/$tfile-2 into $DIR/$tfile" \
1035                       "without verification failed"
1036
1037         # make sure that $tfile has two mirrors and $tfile-2 does not exist
1038         [ $($LFS getstripe -N $DIR/$tfile) -eq 2 ] ||
1039                 { $LFS getstripe $DIR/$tfile; error "expected count 2"; }
1040
1041         [[ ! -e $DIR/$tfile-2 ]] || error "$DIR/$tfile-2 was not unlinked"
1042
1043         # execpted file size
1044         local fsize=$((5 * max_count))
1045         $CHECKSTAT -t file -s $fsize $DIR/$tfile ||
1046                 error "mirrored file size is not $fsize"
1047
1048         # read file - all OSTs are available
1049         echo "reading file (data can be provided by any ost)... "
1050         local rs=$(cat $DIR/$tfile | head -1)
1051         [[ "$rs" == "ost1" || "$rs" == "ost2" ]] ||
1052                 error "file content error: expected: \"ost1\" or \"ost2\""
1053
1054         # read file again with ost1 failed
1055         stop_osts 1
1056         drop_client_cache
1057
1058         echo "reading file (data should be provided by ost2)..."
1059         local rs=$(cat $DIR/$tfile | head -1)
1060         [[ "$rs" == "ost2" ]] ||
1061                 error "file content error: expected: \"ost2\", actual: \"$rs\""
1062
1063         # remount ost1
1064         start_osts 1
1065
1066         # read file again with ost2 failed
1067         stop_osts 2
1068         drop_client_cache
1069
1070         # check size, glimpse should work
1071         $CHECKSTAT -t file -s $fsize $DIR/$tfile ||
1072                 error "mirrored file size is not $fsize"
1073
1074         echo "reading file (data should be provided by ost1)..."
1075         local rs=$(cat $DIR/$tfile | head -1)
1076         [[ "$rs" == "ost1" ]] ||
1077                 error "file content error: expected: \"ost1\", actual: \"$rs\""
1078
1079         start_osts 2
1080 }
1081 run_test 33 "read can choose available mirror to read"
1082
1083 test_34a() {
1084         [[ $OSTCOUNT -lt 4 ]] && skip "need >= 4 OSTs" && return
1085
1086         rm -f $DIR/$tfile $DIR/$tfile-2 $DIR/$tfile-ref
1087
1088         # reference file
1089         $LFS setstripe -o 0 $DIR/$tfile-ref
1090         dd if=/dev/urandom of=$DIR/$tfile-ref bs=1M count=3
1091
1092         # create a file with two mirrors
1093         $LFS setstripe -E -1 -o 0,1 -S 1M $DIR/$tfile
1094         dd if=$DIR/$tfile-ref of=$DIR/$tfile bs=1M
1095
1096         $LFS setstripe -E -1 -o 2,3 -S 1M $DIR/$tfile-2
1097         dd if=$DIR/$tfile-ref of=$DIR/$tfile-2 bs=1M
1098
1099         $CHECKSTAT -t file -s $((3 * 1024 * 1024)) $DIR/$tfile ||
1100                 error "mirrored file size is not 3M"
1101
1102         # merge a mirrored file
1103         $LFS mirror extend -N -f $DIR/$tfile-2 $DIR/$tfile ||
1104                 error "merging $DIR/$tfile-2 into $DIR/$tfile failed"
1105
1106         cancel_lru_locks osc
1107
1108         # stop two OSTs, so the 2nd stripe of the 1st mirror and
1109         # the 1st stripe of the 2nd mirror will be inaccessible, ...
1110         stop_osts 2 3
1111
1112         echo "comparing files ... "
1113
1114         # however, read can still return the correct data. It should return
1115         # the 1st stripe from mirror 1 and 2st stripe from mirror 2.
1116         cmp -n 2097152 <(rwv -f $DIR/$tfile -r -o -n 1 2097152) \
1117                 $DIR/$tfile-ref || error "file reading error"
1118
1119         start_osts 2 3
1120 }
1121 run_test 34a "read mirrored file with multiple stripes"
1122
1123 test_34b() {
1124         [[ $OSTCOUNT -lt 4 ]] && skip "need >= 4 OSTs" && return
1125
1126         rm -f $DIR/$tfile $DIR/$tfile-2 $DIR/$tfile-ref
1127
1128         # reference file
1129         $LFS setstripe -o 0 $DIR/$tfile-ref
1130         dd if=/dev/urandom of=$DIR/$tfile-ref bs=1M count=3
1131
1132         $LFS setstripe -E 1M -S 1M -o 0 -E eof -o 1 $DIR/$tfile
1133         dd if=$DIR/$tfile-ref of=$DIR/$tfile bs=1M
1134
1135         $LFS setstripe -E 1M -S 1M -o 2 -E eof -o 3 $DIR/$tfile-2
1136         dd if=$DIR/$tfile-ref of=$DIR/$tfile-2 bs=1M
1137
1138         $CHECKSTAT -t file -s $((3 * 1024 * 1024)) $DIR/$tfile ||
1139                 error "mirrored file size is not 3M"
1140
1141         # merge a mirrored file
1142         $LFS mirror extend -N -f $DIR/$tfile-2 $DIR/$tfile ||
1143                 error "merging $DIR/$tfile-2 into $DIR/$tfile failed"
1144
1145         cancel_lru_locks osc
1146
1147         # stop two OSTs, so the 2nd component of the 1st mirror and
1148         # the 1st component of the 2nd mirror will be inaccessible, ...
1149         stop_osts 2 3
1150
1151         echo "comparing files ... "
1152
1153         # however, read can still return the correct data. It should return
1154         # the 1st stripe from mirror 1 and 2st stripe from mirror 2.
1155         cmp -n 2097152 <(rwv -f $DIR/$tfile -r -o -n 1 2097152) \
1156                 $DIR/$tfile-ref || error "file reading error"
1157
1158         start_osts 2 3
1159 }
1160 run_test 34b "read mirrored file with multiple components"
1161
1162 test_35() {
1163         local tf=$DIR/$tfile
1164
1165         $LFS setstripe -E eof $tf
1166
1167         # add an out-of-sync mirror to the file
1168         $LFS mirror extend -N -c 2 $tf ||
1169                 error "extending mirrored file $tf failed"
1170
1171         $MULTIOP $tf oO_WRONLY:c ||
1172                 error "write open a mirrored file failed"
1173
1174         # truncate file should return error
1175         $TRUNCATE $tf 100 || error "error truncating a mirrored file"
1176 }
1177 run_test 35 "allow to write to mirrored files"
1178
1179 verify_ost_layout_version() {
1180         local tf=$1
1181
1182         # get file layout version
1183         local flv=$($LFS getstripe $tf | awk '/lcm_layout_gen/{print $2}')
1184
1185         # layout version from OST objects
1186         local olv=$($MULTIOP $tf oXc | awk '/ostlayoutversion/{print $2}')
1187
1188         [ $flv -eq $olv ] || error "layout version mismatch: $flv vs. $olv"
1189 }
1190
1191 create_file_36() {
1192         local tf
1193
1194         for tf in "$@"; do
1195                 $LFS setstripe -E 1M -S 1M -E 2M -E 4M -E eof -c -1 $tf
1196                 $LFS setstripe -E 3M -S 1M -E 6M -E eof -c -1 $tf-tmp
1197
1198                 $LFS mirror extend -N -f $tf-tmp $tf ||
1199                         error "merging $tf-tmp into $tf failed"
1200         done
1201 }
1202
1203 test_36() {
1204         local tf=$DIR/$tfile
1205
1206         create_file_36 $tf $tf-2 $tf-3
1207
1208         [ $($LFS getstripe -N $tf) -gt 1 ] || error "wrong mirror count"
1209
1210         # test case 1 - check file write and verify layout version
1211         $MULTIOP $tf oO_WRONLY:c ||
1212                 error "write open a mirrored file failed"
1213
1214         # write open file should not return error
1215         $MULTIOP $tf oO_WRONLY:w1024Yc || error "write mirrored file error"
1216
1217         # instantiate components should work
1218         dd if=/dev/zero of=$tf bs=1M count=12 || error "write file error"
1219
1220         # verify OST layout version
1221         verify_ost_layout_version $tf
1222
1223         # test case 2
1224         local mds_facet=mds$(($($LFS getstripe -m $tf-2) + 1))
1225
1226         local delay_sec=10
1227         do_facet $mds_facet $LCTL set_param fail_val=$delay_sec
1228
1229         #define OBD_FAIL_FLR_LV_DELAY 0x1A01
1230         do_facet $mds_facet $LCTL set_param fail_loc=0x1A01
1231
1232         # write should take at least $fail_loc seconds and succeed
1233         local st=$(date +%s)
1234         $MULTIOP $tf-2 oO_WRONLY:w1024Yc || error "write mirrored file error"
1235
1236         [ $(date +%s) -ge $((st+delay_sec)) ] ||
1237                 error "write finished before layout version is transmitted"
1238
1239         # verify OST layout version
1240         verify_ost_layout_version $tf
1241
1242         do_facet $mds_facet $LCTL set_param fail_loc=0
1243
1244         # test case 3
1245         mds_idx=mds$(($($LFS getstripe -m $tf-3) + 1))
1246
1247         #define OBD_FAIL_FLR_LV_INC 0x1A02
1248         do_facet $mds_facet $LCTL set_param fail_loc=0x1A02
1249
1250         # write open file should return error
1251         $MULTIOP $tf-3 oO_WRONLY:O_SYNC:w1024c &&
1252                 error "write a mirrored file succeeded" || true
1253
1254         do_facet $mds_facet $LCTL set_param fail_loc=0
1255 }
1256 run_test 36 "write to mirrored files"
1257
1258 create_files_37() {
1259         local tf
1260         local fsize=$1
1261
1262         echo "create test files with size $fsize .."
1263
1264         shift
1265         for tf in "$@"; do
1266                 $LFS setstripe -E 1M -S 1M -c 1 -E eof -c -1 $tf
1267
1268                 dd if=/dev/urandom of=$tf bs=1M count=16 &> /dev/null
1269                 $TRUNCATE $tf $fsize
1270         done
1271 }
1272
1273 test_37()
1274 {
1275         [ $MDS1_VERSION -lt $(version_code 2.11.57) ] &&
1276                 skip "Need MDS version at least 2.11.57"
1277
1278         local tf=$DIR/$tfile
1279         local tf2=$DIR/$tfile-2
1280         local tf3=$DIR/$tfile-3
1281         local tf4=$DIR/$tfile-4
1282
1283         create_files_37 $((RANDOM + 15 * 1048576)) $tf $tf2 $tf3
1284         rm -f $tf4
1285         cp $tf $tf4
1286
1287         # assume the mirror id will be 1, 2, and 3
1288         declare -A checksums
1289         checksums[1]=$(cat $tf | md5sum)
1290         checksums[2]=$(cat $tf2 | md5sum)
1291         checksums[3]=$(cat $tf3 | md5sum)
1292
1293         printf '%s\n' "${checksums[@]}"
1294
1295         # merge these files into a mirrored file
1296         $LFS mirror extend --no-verify -N -f $tf2 $tf ||
1297                 error "merging $tf2 into $tf failed"
1298         $LFS mirror extend --no-verify -N -f $tf3 $tf ||
1299                 error "merging $tf3 into $tf failed"
1300
1301         get_mirror_ids $tf
1302
1303         # verify mirror read, checksums should equal to the original files'
1304         echo "Verifying mirror read .."
1305
1306         local sum
1307         for i in ${mirror_array[@]}; do
1308                 $LCTL set_param ldlm.namespaces.*.lru_size=clear > /dev/null
1309                 sum=$($LFS mirror read -N $i $tf | md5sum)
1310                 [ "$sum" = "${checksums[$i]}" ] ||
1311                         error "$i: mismatch: \'${checksums[$i]}\' vs. \'$sum\'"
1312         done
1313
1314         # verify mirror write
1315         echo "Verifying mirror write .."
1316         $LFS mirror write -N2 $tf < $tf4
1317
1318         sum=$($LFS mirror read -N2 $tf | md5sum)
1319         [[ "$sum" = "${checksums[1]}" ]] ||
1320                 error "2: mismatch \'${checksums[1]}\' vs. \'$sum\'"
1321
1322         # verify mirror copy, write to this mirrored file will invalidate
1323         # the other two mirrors
1324         echo "Verifying mirror copy .."
1325
1326         local osts=$(comma_list $(osts_nodes))
1327
1328         $LFS mirror copy -i ${mirror_array[0]} -o-1 $tf ||
1329                 error "mirror copy error"
1330
1331         # verify copying is successful by checking checksums
1332         remount_client $MOUNT
1333         for i in ${mirror_array[@]}; do
1334                 sum=$($LFS mirror read -N $i $tf | md5sum)
1335                 [ "$sum" = "${checksums[1]}" ] ||
1336                         error "$i: mismatch checksum after copy \'$sum\'"
1337         done
1338
1339         rm -f $tf
1340 }
1341 run_test 37 "mirror I/O API verification"
1342
1343 verify_flr_state()
1344 {
1345         local tf=$1
1346         local expected_state=$2
1347
1348         local state=$($LFS getstripe -v $tf | awk '/lcm_flags/{ print $2 }')
1349         [ $expected_state = $state ] ||
1350                 error "expected: $expected_state, actual $state"
1351 }
1352
1353 test_38() {
1354         local tf=$DIR/$tfile
1355         local ref=$DIR/${tfile}-ref
1356
1357         $LFS setstripe -E 1M -S 1M -c 1 -E 4M -c 2 -E eof -c -1 $tf ||
1358                 error "creating $tf failed"
1359         $LFS setstripe -E 2M -S 1M -c 1 -E 6M -c 2 -E 8M -c -1 -E eof -c -1 \
1360                 $tf-2 || error "creating $tf-2 failed"
1361         $LFS setstripe -E 4M -c 1 -E 8M -c 2 -E eof -c -1 $tf-3 ||
1362                 error "creating $tf-3 failed"
1363
1364         # instantiate all components
1365         $LFS mirror extend -N -f $tf-2 $tf ||
1366                 error "merging $tf-2 into $tf failed"
1367         $LFS mirror extend -N -f $tf-3 $tf ||
1368                 error "merging $tf-3 into $tf failed"
1369         $LFS mirror extend -N -c 1 $tf ||
1370                 error "extending mirrored file $tf failed"
1371
1372         verify_flr_state $tf "ro"
1373
1374         dd if=/dev/urandom of=$ref  bs=1M count=16 &> /dev/null
1375
1376         local fsize=$((RANDOM << 8 + 1048576))
1377         $TRUNCATE $ref $fsize
1378
1379         local ref_cksum=$(cat $ref | md5sum)
1380
1381         # case 1: verify write to mirrored file & resync work
1382         cp $ref $tf || error "copy from $ref to $f error"
1383         verify_flr_state $tf "wp"
1384
1385         local file_cksum=$(cat $tf | md5sum)
1386         [ "$file_cksum" = "$ref_cksum" ] || error "write failed, cksum mismatch"
1387
1388         get_mirror_ids $tf
1389         echo "mirror IDs: ${mirror_array[@]}"
1390
1391         local valid_mirror stale_mirror id mirror_cksum
1392         for id in "${mirror_array[@]}"; do
1393                 mirror_cksum=$($LFS mirror read -N $id $tf | md5sum)
1394                 [ "$ref_cksum" == "$mirror_cksum" ] &&
1395                         { valid_mirror=$id; continue; }
1396
1397                 stale_mirror=$id
1398         done
1399
1400         [ -z "$stale_mirror" ] && error "stale mirror doesn't exist"
1401         [ -z "$valid_mirror" ] && error "valid mirror doesn't exist"
1402
1403         mirror_io resync $tf || error "resync failed"
1404         verify_flr_state $tf "ro"
1405
1406         mirror_cksum=$($LFS mirror read -N $stale_mirror $tf | md5sum)
1407         [ "$file_cksum" = "$ref_cksum" ] || error "resync failed"
1408
1409         # case 2: inject an error to make mirror_io exit after changing
1410         # the file state to sync_pending so that we can start a concurrent
1411         # write.
1412         $MULTIOP $tf oO_WRONLY:w$((RANDOM % 1048576 + 1024))c
1413         verify_flr_state $tf "wp"
1414
1415         mirror_io resync -e resync_start $tf && error "resync succeeded"
1416         verify_flr_state $tf "sp"
1417
1418         # from sync_pending to write_pending
1419         $MULTIOP $tf oO_WRONLY:w$((RANDOM % 1048576 + 1024))c
1420         verify_flr_state $tf "wp"
1421
1422         mirror_io resync -e resync_start $tf && error "resync succeeded"
1423         verify_flr_state $tf "sp"
1424
1425         # from sync_pending to read_only
1426         mirror_io resync $tf || error "resync failed"
1427         verify_flr_state $tf "ro"
1428 }
1429 run_test 38 "resync"
1430
1431 test_39() {
1432         local tf=$DIR/$tfile
1433
1434         rm -f $tf
1435         $LFS mirror create -N2 -E1m -c1 -S1M -E-1 $tf ||
1436         error "create PFL file $tf failed"
1437
1438         verify_mirror_count $tf 2
1439         verify_comp_count $tf 4
1440
1441         rm -f $tf || error "delete $tf failed"
1442 }
1443 run_test 39 "check FLR+PFL (a.k.a. PFLR) creation"
1444
1445 test_40() {
1446         local tf=$DIR/$tfile
1447         local ops
1448
1449         for ops in "conv=notrunc" ""; do
1450                 rm -f $tf
1451
1452                 $LFS mirror create -N -E 2M -S 1M -E 4M -E -1 --flags=prefer \
1453                                    -N -E 1M -E 2M -E 4M -E -1 $tf ||
1454                         error "create PFLR file $tf failed"
1455                 dd if=/dev/zero of=$tf $ops bs=1M seek=2 count=1 ||
1456                         error "write PFLR file $tf failed"
1457
1458                 lfs getstripe -vy $tf
1459
1460                 local flags
1461
1462                 # file mirror state should be write_pending
1463                 flags=$($LFS getstripe -v $tf | awk '/lcm_flags:/ { print $2 }')
1464                 [ $flags = wp ] ||
1465                 error "file mirror state $flags"
1466                 # the 1st component (in mirror 1) should be inited
1467                 verify_comp_attr lcme_flags $tf 0x10001 init
1468                 # the 2nd component (in mirror 1) should be inited
1469                 verify_comp_attr lcme_flags $tf 0x10002 init
1470                 # the 3rd component (in mirror 1) should be uninited
1471                 verify_comp_attr lcme_flags $tf 0x10003 prefer
1472                 # the 4th component (in mirror 2) should be inited
1473                 verify_comp_attr lcme_flags $tf 0x20004 init
1474                 # the 5th component (in mirror 2) should be uninited
1475                 verify_comp_attr lcme_flags $tf 0x20005 0
1476                 # the 6th component (in mirror 2) should be stale
1477                 verify_comp_attr lcme_flags $tf 0x20006 stale
1478                 # the 7th component (in mirror 2) should be uninited
1479                 if [[ x$ops = "xconv=notrunc" ]]; then
1480                         verify_comp_attr lcme_flags $tf 0x20007 0
1481                 elif [[ x$ops = "x" ]]; then
1482                         verify_comp_attr lcme_flags $tf 0x20007 stale
1483                 fi
1484         done
1485
1486         rm -f $tf || error "delete $tf failed"
1487 }
1488 run_test 40 "PFLR rdonly state instantiation check"
1489
1490 test_41() {
1491         local tf=$DIR/$tfile
1492
1493         rm -f $tf $tf-1
1494         echo " **create two FLR files $tf $tf-1"
1495         $LFS mirror create -N -E 2M -S 1M -E 4M -E -1 \
1496                            -N -E 1M -E 2M -E 3M -E -1 $tf ||
1497                 error "create PFLR file $tf failed"
1498         $LFS mirror create -N -E 2M -S 1M -E eof \
1499                            -N -E 1M -E eof --flags prefer \
1500                            -N -E 4m -E eof $tf-1 ||
1501                 error "create PFLR file $tf-1 failed"
1502
1503         # file should be in ro status
1504         echo " **verify files be RDONLY"
1505         verify_flr_state $tf "ro"
1506         verify_flr_state $tf-1 "ro"
1507
1508         # write data in [0, 2M)
1509         dd if=/dev/zero of=$tf bs=1M count=2 conv=notrunc ||
1510                 error "writing $tf failed"
1511         dd if=/dev/urandom of=$tf-1 bs=1M count=4 conv=notrunc ||
1512                 error "writing $tf-1 failed"
1513
1514         local sum0=$(cat $tf-1 | md5sum)
1515
1516         echo " **verify files be WRITE_PENDING"
1517         verify_flr_state $tf "wp"
1518         verify_flr_state $tf-1 "wp"
1519
1520         # file should have stale component
1521         echo " **verify files have stale component"
1522         $LFS getstripe $tf | grep lcme_flags | grep stale > /dev/null ||
1523                 error "after writing $tf, it does not contain stale component"
1524         $LFS getstripe $tf-1 | grep lcme_flags | grep stale > /dev/null ||
1525                 error "after writing $tf-1, it does not contain stale component"
1526
1527         echo " **full resync"
1528         $LFS mirror resync $tf $tf-1 || error "mirror resync $tf $tf-1 failed"
1529
1530         echo " **verify $tf-1 data consistency in all mirrors"
1531         for i in 1 2 3; do
1532                 local sum=$($LFS mirror read -N$i $tf-1 | md5sum)
1533                 [[ "$sum" = "$sum0" ]] ||
1534                         error "$tf-1.$i: checksum mismatch: $sum != $sum0"
1535         done
1536
1537         echo " **verify files be RDONLY"
1538         verify_flr_state $tf "ro"
1539         verify_flr_state $tf-1 "ro"
1540
1541         # file should not have stale component
1542         echo " **verify files do not contain stale component"
1543         $LFS getstripe $tf | grep lcme_flags | grep stale &&
1544                 error "after resyncing $tf, it contains stale component"
1545         $LFS getstripe $tf-1 | grep lcme_flags | grep stale &&
1546                 error "after resyncing $tf, it contains stale component"
1547
1548         # verify partial resync
1549         echo " **write $tf-1 for partial resync test"
1550         dd if=/dev/zero of=$tf-1 bs=1M count=2 conv=notrunc ||
1551                 error "writing $tf-1 failed"
1552
1553         echo " **only resync mirror 2"
1554         verify_flr_state $tf-1 "wp"
1555         $LFS mirror resync --only 2 $tf-1 ||
1556                 error "resync mirror 2 of $tf-1 failed"
1557         verify_flr_state $tf "ro"
1558
1559         # resync synced mirror
1560         echo " **resync mirror 2 again"
1561         $LFS mirror resync --only 2 $tf-1 ||
1562                 error "resync mirror 2 of $tf-1 failed"
1563         verify_flr_state $tf "ro"
1564         echo " **verify $tf-1 contains stale component"
1565         $LFS getstripe $tf-1 | grep lcme_flags | grep stale > /dev/null ||
1566                 error "after writing $tf-1, it does not contain stale component"
1567
1568         echo " **full resync $tf-1"
1569         $LFS mirror resync $tf-1 || error "resync of $tf-1 failed"
1570         verify_flr_state $tf "ro"
1571         echo " **full resync $tf-1 again"
1572         $LFS mirror resync $tf-1 || error "resync of $tf-1 failed"
1573         echo " **verify $tf-1 does not contain stale component"
1574         $LFS getstripe $tf | grep lcme_flags | grep stale &&
1575                 error "after resyncing $tf, it contains stale component"
1576
1577         return 0
1578 }
1579 run_test 41 "lfs mirror resync check"
1580
1581 test_42() {
1582         [[ $OSTCOUNT -lt 4 ]] && skip "need >= 4 OSTs" && return
1583
1584         local td=$DIR/$tdir
1585         local tf=$td/$tfile
1586         local mirror_cmd="$LFS mirror verify"
1587         local i
1588
1589         # create parent directory
1590         mkdir $td || error "mkdir $td failed"
1591
1592         $mirror_cmd &> /dev/null && error "no file name given"
1593         $mirror_cmd $tf &> /dev/null && error "cannot stat file $tf"
1594         $mirror_cmd $td &> /dev/null && error "$td is not a regular file"
1595
1596         # create mirrored files
1597         $LFS mirror create -N -E 4M -S 1M -E 10M -E EOF $tf ||
1598                 error "create mirrored file $tf failed"
1599         $LFS mirror create -N -E 2M -S 1M -E EOF \
1600                            -N -E 6M -E 8M -E EOF \
1601                            -N -E 16M -E EOF $tf-1 ||
1602                 error "create mirrored file $tf-1 failed"
1603         $LFS mirror create -N -c 2 -o 1,3 -N -S 2M -c -1 $tf-2 ||
1604                 error "create mirrored file $tf-2 failed"
1605
1606         # write data in [0, 10M)
1607         for i in $tf $tf-1 $tf-2; do
1608                 yes | dd of=$i bs=1M count=10 iflag=fullblock conv=notrunc ||
1609                         error "write $i failed"
1610         done
1611
1612         # resync the mirrored files
1613         $LFS mirror resync $tf-1 $tf-2 ||
1614                 error "resync $tf-1 $tf-2 failed"
1615
1616         # verify the mirrored files
1617         $mirror_cmd $tf-1 $tf-2 ||
1618                 error "verify $tf-1 $tf-2 failed"
1619
1620         get_mirror_ids $tf-1
1621         $mirror_cmd --only ${mirror_array[0]} $tf-1 &> /dev/null &&
1622                 error "at least 2 mirror ids needed with '--only' option"
1623         $mirror_cmd --only ${mirror_array[0]},${mirror_array[1]} $tf-1 $tf-2 \
1624                 &> /dev/null &&
1625                 error "'--only' option cannot be used upon multiple files"
1626         $mirror_cmd --only 65534,${mirror_array[0]},65535 $tf-1 &&
1627                 error "invalid specified mirror ids"
1628
1629         # change the content of $tf and merge it into $tf-1
1630         for i in 6 10; do
1631                 echo a | dd of=$tf bs=1M seek=$i conv=notrunc ||
1632                         error "change $tf with seek=$i failed"
1633                 echo b | dd of=$tf-1 bs=1M seek=$i conv=notrunc ||
1634                         error "change $tf-1 with seek=$i failed"
1635         done
1636
1637         $LFS mirror resync $tf-1 || error "resync $tf-1 failed"
1638         $LFS mirror extend --no-verify -N -f $tf $tf-1 ||
1639                 error "merge $tf into $tf-1 failed"
1640
1641         # verify the mirrored files
1642         echo "Verify $tf-1 without -v option:"
1643         $mirror_cmd $tf-1 &&
1644                 error "verify $tf-1 should fail" || echo "PASS"
1645
1646         echo "Verify $tf-1 with -v option:"
1647         $mirror_cmd -v $tf-1 &&
1648                 error "verify $tf-1 should fail"
1649
1650         get_mirror_ids $tf-1
1651         echo "Verify $tf-1 with --only option:"
1652         $mirror_cmd -v --only ${mirror_array[1]},${mirror_array[-1]} $tf-1 &&
1653                 error "verify $tf-1 with mirror ${mirror_array[1]} and" \
1654                       "${mirror_array[-1]} should fail"
1655
1656         $mirror_cmd --only ${mirror_array[0]},${mirror_array[1]} $tf-1 ||
1657                 error "verify $tf-1 with mirror ${mirror_array[0]} and" \
1658                       "${mirror_array[1]} should succeed"
1659
1660         # set stale components in $tf-1
1661         for i in 0x40002 0x40003; do
1662                 $LFS setstripe --comp-set -I$i --comp-flags=stale $tf-1 ||
1663                         error "set stale flag on component $i failed"
1664         done
1665
1666         # verify the mirrored file
1667         echo "Verify $tf-1 with stale components:"
1668         $mirror_cmd -vvv $tf-1 ||
1669                 error "verify $tf-1 with stale components should succeed"
1670
1671         echo "Verify $tf-1 with stale components and --only option:"
1672         $mirror_cmd -vvv --only ${mirror_array[1]},${mirror_array[-1]} $tf-1 ||
1673                 error "verify $tf-1 with mirror ${mirror_array[1]} and" \
1674                       "${mirror_array[-1]} should succeed"
1675 }
1676 run_test 42 "lfs mirror verify"
1677
1678 # inactivate one OST && write && restore the OST
1679 write_file_43() {
1680         local file=$1
1681         local ost=$2
1682         local PARAM="osp.${FSNAME}-OST000${ost}-osc-M*.active"
1683         local wait
1684
1685         wait=$(do_facet $SINGLEMDS \
1686                 "$LCTL get_param -n lod.*MDT0000-*.qos_maxage")
1687         wait=${wait%%[^0-9]*}
1688
1689         echo "  **deactivate OST$ost, waiting for $((wait*2+2)) seconds"
1690         $(do_facet $SINGLEMDS "$LCTL set_param -n $PARAM 0")
1691         # lod_qos_statfs_update needs 2*$wait seconds to refresh targets statfs
1692         sleep $(($wait * 2 + 2))
1693         echo "  **write $file"
1694         dd if=/dev/zero of=$file bs=1M count=1 || error "write $file failed"
1695         echo "  **restore activating OST$ost, waiting for $((wait*2+2)) seconds"
1696         $(do_facet $SINGLEMDS "$LCTL set_param -n $PARAM 1")
1697         sleep $((wait * 2 + 2))
1698
1699         local flags=$($LFS getstripe -v $file | awk '/lcm_flags:/ { print $2 }')
1700         [ $flags = wp ] || error "file mirror state $flags != wp"
1701 }
1702
1703 test_43() {
1704         [ $OSTCOUNT -lt 3 ] && skip "needs >= 3 OSTs" && return
1705
1706         local tf=$DIR/$tfile
1707         local flags
1708
1709         rm -f $tf
1710         ##   mirror 0  ost (0, 1)
1711         ##   mirror 1  ost (1, 2)
1712         ##   mirror 2  ost (2, 0)
1713         $LFS mirror create -N -Eeof -c2 -o0,1 -N -Eeof -c2 -o1,2 \
1714                 -N -Eeof -c2 -o2,0 $tf ||
1715                 error "create 3 mirrors file $tf failed"
1716
1717         ################## OST0 ###########################################
1718         write_file_43 $tf 0
1719         echo "  **verify components"
1720         verify_comp_attr lcme_flags $tf 0x10001 init,stale
1721         verify_comp_attr lcme_flags $tf 0x20002 init
1722         verify_comp_attr lcme_flags $tf 0x30003 init,stale
1723
1724         # resync
1725         echo "  **resync $tf"
1726         $LFS mirror resync $tf
1727         flags=$($LFS getstripe -v $tf | awk '/lcm_flags:/ { print $2 }')
1728         [ $flags = ro ] || error "file mirror state $flags != ro"
1729
1730         ################## OST1 ###########################################
1731         write_file_43 $tf 1
1732         echo "  **verify components"
1733         verify_comp_attr lcme_flags $tf 0x10001 init,stale
1734         verify_comp_attr lcme_flags $tf 0x20002 init,stale
1735         verify_comp_attr lcme_flags $tf 0x30003 init
1736
1737         # resync
1738         echo "  **resync $tf"
1739         $LFS mirror resync $tf
1740         flags=$($LFS getstripe -v $tf | awk '/lcm_flags:/ { print $2 }')
1741         [ $flags = ro ] || error "file mirror state $flags != ro"
1742
1743         ################## OST2 ###########################################
1744         write_file_43 $tf 2
1745         echo "  **verify components"
1746         verify_comp_attr lcme_flags $tf 0x10001 init
1747         verify_comp_attr lcme_flags $tf 0x20002 init,stale
1748         verify_comp_attr lcme_flags $tf 0x30003 init,stale
1749 }
1750 run_test 43 "mirror pick on write"
1751
1752 test_44() {
1753         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
1754         rm -rf $DIR/$tdir
1755         rm -rf $DIR/$tdir-1
1756         local tf=$DIR/$tdir/$tfile
1757         local tf1=$DIR/$tdir-1/$tfile-1
1758
1759         $LFS setdirstripe -i 0 -c 1 $DIR/$tdir ||
1760                 error "create directory failed"
1761         $LFS setdirstripe -i 1 -c 1 $DIR/$tdir-1 ||
1762                 error "create remote directory failed"
1763         rm -f $tf $tf1 $tf.mirror~2
1764         # create file with 4 mirrors
1765         $LFS mirror create -N -E 2M -S 1M -E 4M -E -1 \
1766                            -N -E 1M -E 2M -E 3M -E -1 -N2 $tf ||
1767                 error "create PFLR file $tf failed"
1768
1769         # file should be in ro status
1770         verify_flr_state $tf "ro"
1771
1772         # write data in [0, 3M)
1773         dd if=/dev/urandom of=$tf bs=1M count=3 conv=notrunc ||
1774                 error "writing $tf failed"
1775
1776         verify_flr_state $tf "wp"
1777
1778         # synchronize all mirrors of the file
1779         $LFS mirror resync $tf || error "mirror resync $tf failed"
1780
1781         verify_flr_state $tf "ro"
1782
1783         # split mirror 1
1784         $LFS mirror split --mirror-id 1 -f $tf1 $tf ||
1785                 error "split to $tf1 failed"
1786
1787         local idx0=$($LFS getstripe -m $tf)
1788         local idx1=$($LFS getstripe -m $tf1)
1789
1790         [[ x$idx0 == x0 ]] || error "$tf is not on MDT0"
1791         [[ x$idx1 == x1 ]] || error "$tf1 is not on MDT1"
1792
1793         # verify mirror count
1794         verify_mirror_count $tf 3
1795         verify_mirror_count $tf1 1
1796
1797         $LFS mirror split --mirror-id 2 $tf ||
1798                 error "split mirror 2 failed"
1799
1800         verify_mirror_count $tf 2
1801         verify_mirror_count $tf.mirror~2 1
1802
1803         $LFS mirror split --mirror-id 3 -d $tf ||
1804                 error "split and delte mirror 3 failed"
1805         verify_mirror_count $tf 1
1806
1807         # verify splitted file contains the same content as the orig file does
1808         diff $tf $tf1 || error "splited file $tf1 diffs from $tf"
1809         diff $tf $tf.mirror~2 ||
1810                 error "splited file $tf.mirror~2 diffs from $tf"
1811 }
1812 run_test 44 "lfs mirror split check"
1813
1814 test_45() {
1815         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs"
1816
1817         local file=$DIR/$tdir/$tfile
1818         local dir=$DIR/$tdir/$dir
1819         local temp=$DIR/$tdir/template
1820         rm -rf $DIR/$tdir
1821         test_mkdir $DIR/$tdir
1822
1823         $LFS setstripe -N -E1m -S1m -c2 -o0,1 -E2m -Eeof -N -E4m -Eeof \
1824                 -N -E3m -S1m -Eeof -N -E8m -Eeof $file ||
1825                         error "Create $file failed"
1826
1827         verify_yaml_layout $file $file.copy $temp "1. FLR file"
1828         rm -f $file $file.copy
1829
1830         $LFS setstripe -N -E1m -S1m -c2 -o0,1 -E2m -Eeof -N -E4m -Eeof \
1831                 -N -E3m -S1m -Eeof -N -E8m --flags=prefer -Eeof $file ||
1832                         error "Create $file failed"
1833
1834         verify_yaml_layout $file $file.copy $temp "2. FLR file with flags"
1835 }
1836 run_test 45 "Verify setstripe/getstripe with YAML with FLR file"
1837
1838 verify_46() {
1839         local src=$1
1840         local dst=$2
1841         local msg_prefix=$3
1842
1843         $LFS setstripe --copy=$src $dst || error "setstripe $dst failed"
1844
1845         local layout1=$(get_layout_param $src)
1846         local layout2=$(get_layout_param $dst)
1847         # compare their layout info
1848         [ "$layout1" == "$layout2" ] ||
1849                 error "$msg_prefix $src <=> $dst layouts are not equal"
1850 }
1851
1852 test_46() {
1853         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
1854
1855         local file=$DIR/$tdir/$tfile
1856         test_mkdir $DIR/$tdir
1857
1858         ########################### 1. PFL file #############################
1859         echo "  ** 1. PFL file"
1860         rm -f $file
1861         $LFS setstripe -E1m -S 1M -c2 -o0,1 -E2m -c2 -E3m -o1,0 -E4m -c1 -E-1 \
1862                 $file || error "1. Create PFL $file failed"
1863
1864         rm -f $file.copy
1865         verify_46 $file $file.copy "1. PFL file"
1866
1867         ########################### 2. plain file ###########################
1868         echo "  ** 2. plain file"
1869         rm -f $file
1870         $LFS setstripe -c2 -o0,1 -i1 $file ||
1871                 error "2. Create plain $file failed"
1872
1873         rm -f $file.copy
1874         verify_46 $file $file.copy "2. plain file"
1875
1876         ########################### 3. FLR file #############################
1877         echo "  ** 3. FLR file"
1878         $LFS setstripe -N -E1m -S 1M -c2 -o0,1 -E4m -c1 -Eeof -N -E16m -Eeof \
1879                 $file || error "3. Create FLR $file failed"
1880
1881         rm -f $file.copy
1882         verify_46 $file $file.copy "3. FLR file"
1883
1884         local dir=$DIR/$tdir/dir
1885         ########################### 4. PFL dir ##############################
1886         echo "  ** 4. PFL dir"
1887         test_mkdir $dir
1888         $LFS setstripe -E1m -S 1M -c2 -E2m -c1 -E-1 $dir ||
1889                 error "4. setstripe PFL $dir failed"
1890
1891         test_mkdir $dir.copy
1892         verify_46 $dir $dir.copy "4. PFL dir"
1893
1894         ########################### 5. plain dir ############################
1895         echo "  ** 5. plain dir"
1896         $LFS setstripe -c2 -i-1 $dir || error "5. setstripe plain $dir failed"
1897
1898         verify_46 $dir $dir.copy "5. plain dir"
1899
1900         ########################### 6. FLR dir ##############################
1901         echo "  ** 6. FLR dir"
1902         $LFS setstripe -N -E1m -S 1M -c2 -E2m -c1 -Eeof -N -E4m -Eeof $dir ||
1903                 error "6. setstripe FLR $dir failed"
1904
1905         verify_46 $dir $dir.copy "6. FLR dir"
1906 }
1907 run_test 46 "Verify setstripe --copy option"
1908
1909 test_47() {
1910         [ $OSTCOUNT -lt 3 ] && skip "needs >= 3 OSTs" && return
1911
1912         local file=$DIR/$tdir/$tfile
1913         local ids
1914         local ost
1915         local osts
1916
1917         test_mkdir $DIR/$tdir
1918
1919         # test case 1:
1920         rm -f $file
1921         # mirror1: [comp0]ost0,    [comp1]ost1 and ost2
1922         # mirror2: [comp2]    ,    [comp3] should not use ost1 or ost2
1923         $LFS mirror create -N -E2m -c1 -o0 --flags=prefer -Eeof -c2 -o1,2 \
1924                 -N -E2m -c1 -Eeof -c1 $file || error "create FLR $file failed"
1925         ids=($($LFS getstripe $file | awk '/lcme_id/{print $2}' | tr '\n' ' '))
1926
1927         dd if=/dev/zero of=$file bs=1M count=3 || error "dd $file failed"
1928         $LFS mirror resync $file || error "resync $file failed"
1929
1930         ost=$($LFS getstripe -I${ids[2]} $file | awk '/l_ost_idx/{print $5}')
1931         if [[ x$ost == "x0," ]]; then
1932                 $LFS getstripe $file
1933                 error "component ${ids[2]} objects allocated on $ost " \
1934                       "shouldn't on OST0"
1935         fi
1936
1937         ost=$($LFS getstripe -I${ids[3]} $file | awk '/l_ost_idx/{print $5}')
1938         if [[ x$ost == "x1," || x$ost == "x2," ]]; then
1939                 $LFS getstripe $file
1940                 error "component ${ids[3]} objects allocated on $ost " \
1941                       "shouldn't on OST1 or on OST2"
1942         fi
1943
1944         ## test case 2:
1945         rm -f $file
1946         # mirror1: [comp0]    [comp1]
1947         # mirror2: [comp2]    [comp3]
1948         # mirror3: [comp4]    [comp5]
1949         # mirror4: [comp6]    [comp7]
1950         $LFS mirror create -N4 -E1m -c1 -Eeof -c1 $file ||
1951                 error "create FLR $file failed"
1952         ids=($($LFS getstripe $file | awk '/lcme_id/{print $2}' | tr '\n' ' '))
1953
1954         dd if=/dev/zero of=$file bs=1M count=3 || error "dd $file failed"
1955         $LFS mirror resync $file || error "resync $file failed"
1956
1957         for ((i = 0; i < 6; i++)); do
1958                 osts[$i]=$($LFS getstripe -I${ids[$i]} $file |
1959                         awk '/l_ost_idx/{print $5}')
1960         done
1961         # comp[0],comp[2],comp[4] should use different osts
1962         if [[ ${osts[0]} == ${osts[2]} || ${osts[0]} == ${osts[4]} ||
1963               ${osts[2]} == ${osts[4]} ]]; then
1964                 $LFS getstripe $file
1965                 error "component ${ids[0]}, ${ids[2]}, ${ids[4]} have objects "\
1966                       "allocated on duplicated OSTs"
1967         fi
1968         # comp[1],comp[3],comp[5] should use different osts
1969         if [[ ${osts[1]} == ${osts[3]} || ${osts[1]} == ${osts[5]} ||
1970               ${osts[3]} == ${osts[5]} ]]; then
1971                 $LFS getstripe $file
1972                 error "component ${ids[1]}, ${ids[3]}, ${ids[5]} have objects "\
1973                       "allocated on duplicated OSTs"
1974         fi
1975
1976         return 0
1977 }
1978 run_test 47 "Verify mirror obj alloc"
1979
1980 test_48() {
1981         [ $MDS1_VERSION -lt $(version_code 2.11.55) ] &&
1982                 skip "Need MDS version at least 2.11.55"
1983
1984         local tf=$DIR/$tfile
1985
1986         rm -f $tf
1987         echo " ** create 2 mirrors FLR file $tf"
1988         $LFS mirror create -N -E2M -Eeof --flags prefer \
1989                            -N -E1M -Eeof $tf ||
1990                 error "create FLR file $tf failed"
1991
1992         echo " ** write it"
1993         dd if=/dev/urandom of=$tf bs=1M count=3 || error "write $tf failed"
1994         verify_flr_state $tf "wp"
1995
1996         local sum0=$(md5sum < $tf)
1997
1998         echo " ** resync the file"
1999         $LFS mirror resync $tf
2000
2001         echo " ** snapshot mirror 2"
2002         $LFS setstripe --comp-set -I 0x20003 --comp-flags=nosync $tf
2003
2004         echo " ** write it again"
2005         dd if=/dev/urandom of=$tf bs=1M count=3 || error "write $tf failed"
2006         echo " ** resync it again"
2007         $LFS mirror resync $tf
2008
2009         verify_flr_state $tf "wp"
2010         verify_comp_attr lcme_flags $tf 0x20003 nosync,stale
2011
2012         local sum1=$($LFS mirror read -N1 $tf | md5sum)
2013         local sum2=$($LFS mirror read -N2 $tf | md5sum)
2014
2015         echo " ** verify mirror 2 doesn't change"
2016         echo "original checksum: $sum0"
2017         echo "mirror 1 checksum: $sum1"
2018         echo "mirror 2 checksum: $sum2"
2019         [[ $sum0 = $sum2 ]] ||
2020                 error "original checksum: $sum0, mirror 2 checksum: $sum2"
2021         echo " ** mirror 2 stripe info"
2022         $LFS getstripe -v --mirror-index=2 $tf
2023
2024         echo " ** resync mirror 2"
2025         $LFS mirror resync --only 2 $tf
2026
2027         verify_flr_state $tf "ro"
2028         verify_comp_attr lcme_flags $tf 0x20003 nosync,^stale
2029
2030         sum1=$($LFS mirror read -N1 $tf | md5sum)
2031         sum2=$($LFS mirror read -N2 $tf | md5sum)
2032
2033         echo " ** verify mirror 2 resync-ed"
2034         echo "original checksum: $sum0"
2035         echo "mirror 1 checksum: $sum1"
2036         echo "mirror 2 checksum: $sum2"
2037         [[ $sum1 = $sum2 ]] ||
2038                 error "mirror 1 checksum: $sum1, mirror 2 checksum: $sum2"
2039         echo " ** mirror 2 stripe info"
2040         $LFS getstripe -v --mirror-index=2 $tf
2041 }
2042 run_test 48 "Verify snapshot mirror"
2043
2044 ctrl_file=$(mktemp /tmp/CTRL.XXXXXX)
2045 lock_file=$(mktemp /var/lock/FLR.XXXXXX)
2046
2047 write_file_200() {
2048         local tf=$1
2049
2050         local fsize=$(stat --printf=%s $tf)
2051
2052         while [ -f $ctrl_file ]; do
2053                 local off=$((RANDOM << 8))
2054                 local len=$((RANDOM << 5 + 131072))
2055
2056                 [ $((off + len)) -gt $fsize ] && {
2057                         fsize=$((off + len))
2058                         echo "Extending file size to $fsize .."
2059                 }
2060
2061                 flock -s $lock_file -c \
2062                         "$MULTIOP $tf oO_WRONLY:z${off}w${len}c" ||
2063                                 { rm -f $ctrl_file;
2064                                   error "failed writing to $off:$len"; }
2065                 sleep 0.$((RANDOM % 2 + 1))
2066         done
2067 }
2068
2069 read_file_200() {
2070         local tf=$1
2071
2072         while [ -f $ctrl_file ]; do
2073                 flock -s $lock_file -c "cat $tf &> /dev/null" ||
2074                         { rm -f $ctrl_file; error "read failed"; }
2075                 sleep 0.$((RANDOM % 2 + 1))
2076         done
2077 }
2078
2079 resync_file_200() {
2080         local tf=$1
2081
2082         options=("" "-e resync_start" "-e delay_before_copy -d 1" "" "")
2083
2084         exec 200<>$lock_file
2085         while [ -f $ctrl_file ]; do
2086                 local lock_taken=false
2087                 local index=$((RANDOM % ${#options[@]}))
2088                 local cmd="mirror_io resync ${options[$index]}"
2089
2090                 [ "${options[$index]}" = "" ] && cmd="$LFS mirror resync"
2091
2092                 [ $((RANDOM % 4)) -eq 0 ] && {
2093                         index=0
2094                         lock_taken=true
2095                         echo -n "lock to "
2096                 }
2097
2098                 echo -n "resync file $tf with '$cmd' .."
2099
2100                 if [[ $lock_taken = "true" ]]; then
2101                         flock -x 200 -c "$cmd $tf &> /dev/null" &&
2102                                 echo "done" || echo "failed"
2103                         flock -u 200
2104                 else
2105                         $cmd $tf &> /dev/null && echo "done" || echo "failed"
2106                 fi
2107
2108                 sleep 0.$((RANDOM % 8 + 1))
2109         done
2110 }
2111
2112 test_200() {
2113         local tf=$DIR/$tfile
2114         local tf2=$DIR2/$tfile
2115         local tf3=$DIR3/$tfile
2116
2117         $LFS setstripe -E 1M -S 1M -E 2M -c 2 -E 4M -E 16M -E eof $tf
2118         $LFS setstripe -E 2M -S 1M -E 6M -c 2 -E 8M -E 32M -E eof $tf-2
2119         $LFS setstripe -E 4M -c 2 -E 8M -E 64M -E eof $tf-3
2120
2121         $LFS mirror extend -N -f $tf-2 $tf ||
2122                 error "merging $tf-2 into $tf failed"
2123         $LFS mirror extend -N -f $tf-3 $tf ||
2124                 error "merging $tf-3 into $tf failed"
2125
2126         mkdir -p $MOUNT2 && mount_client $MOUNT2
2127
2128         mkdir -p $MOUNT3 && mount_client $MOUNT3
2129
2130         verify_flr_state $tf3 "ro"
2131
2132         #define OBD_FAIL_FLR_RANDOM_PICK_MIRROR 0x1A03
2133         $LCTL set_param fail_loc=0x1A03
2134
2135         local mds_idx=mds$(($($LFS getstripe -m $tf) + 1))
2136         do_facet $mds_idx $LCTL set_param fail_loc=0x1A03
2137
2138         declare -a pids
2139
2140         write_file_200 $tf &
2141         pids+=($!)
2142
2143         read_file_200 $tf &
2144         pids+=($!)
2145
2146         write_file_200 $tf2 &
2147         pids+=($!)
2148
2149         read_file_200 $tf2 &
2150         pids+=($!)
2151
2152         resync_file_200 $tf3 &
2153         pids+=($!)
2154
2155         local sleep_time=60
2156         [ "$SLOW" = "yes" ] && sleep_time=360
2157         while [ $sleep_time -gt 0 -a -f $ctrl_file ]; do
2158                 sleep 1
2159                 ((--sleep_time))
2160         done
2161
2162         rm -f $ctrl_file
2163
2164         echo "Waiting ${pids[@]}"
2165         wait ${pids[@]}
2166
2167         umount_client $MOUNT2
2168         umount_client $MOUNT3
2169
2170         rm -f $lock_file
2171
2172         # resync and verify mirrors
2173         mirror_io resync $tf
2174         get_mirror_ids $tf
2175
2176         local csum=$($LFS mirror read -N ${mirror_array[0]} $tf | md5sum)
2177         for id in ${mirror_array[@]:1}; do
2178                 [ "$($LFS mirror read -N $id $tf | md5sum)" = "$csum" ] ||
2179                         error "checksum error for mirror $id"
2180         done
2181
2182         true
2183 }
2184 run_test 200 "stress test"
2185
2186 cleanup_test_201() {
2187         trap 0
2188         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister $CL_USER
2189
2190         umount_client $MOUNT2
2191 }
2192
2193 test_201() {
2194         local delay=${RESYNC_DELAY:-5}
2195
2196         MDT0=$($LCTL get_param -n mdc.*.mds_server_uuid |
2197                awk '{ gsub(/_UUID/,""); print $1 }' | head -n1)
2198
2199         trap cleanup_test_201 EXIT
2200
2201         CL_USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
2202                         changelog_register -n)
2203
2204         mkdir -p $MOUNT2 && mount_client $MOUNT2
2205
2206         local index=0
2207         while :; do
2208                 local log=$($LFS changelog $MDT0 $index | grep FLRW)
2209                 [ -z "$log" ] && { sleep 1; continue; }
2210
2211                 index=$(echo $log | awk '{print $1}')
2212                 local ts=$(date -d "$(echo $log | awk '{print $3}')" "+%s" -u)
2213                 local fid=$(echo $log | awk '{print $6}' | sed -e 's/t=//')
2214                 local file=$($LFS fid2path $MOUNT2 $fid 2> /dev/null)
2215
2216                 ((++index))
2217                 [ -z "$file" ] && continue
2218
2219                 local now=$(date +%s)
2220
2221                 echo "file: $file $fid was modified at $ts, now: $now, " \
2222                      "will be resynced at $((ts+delay))"
2223
2224                 [ $now -lt $((ts + delay)) ] && sleep $((ts + delay - now))
2225
2226                 mirror_io resync $file
2227                 echo "$file resync done"
2228         done
2229
2230         cleanup_test_201
2231 }
2232 run_test 201 "FLR data mover"
2233
2234 test_202() {
2235         [[ $OSTCOUNT -lt 2 ]] && skip "need >= 2 OSTs" && return
2236
2237         local tf=$DIR/$tfile
2238         local ids
2239
2240         $LFS setstripe -E 1M -S 1M -c 1 $tf
2241         ids=($($LFS getstripe $tf | awk '/lcme_id/{print $2}' | tr '\n' ' '))
2242         verify_comp_attr stripe-count $tf ${ids[0]} 1
2243
2244         $LFS setstripe --component-add -E 2M -c -1 $tf
2245         ids=($($LFS getstripe $tf | awk '/lcme_id/{print $2}' | tr '\n' ' '))
2246         verify_comp_attr stripe-count $tf ${ids[0]} 1
2247         verify_comp_attr stripe-count $tf ${ids[1]} -1
2248
2249         dd if=/dev/zero of=$tf bs=1M count=2
2250         ids=($($LFS getstripe $tf | awk '/lcme_id/{print $2}' | tr '\n' ' '))
2251         verify_comp_attr stripe-count $tf ${ids[0]} 1
2252         verify_comp_attr stripe-count $tf ${ids[1]} $OSTCOUNT
2253 }
2254 run_test 202 "lfs setstripe --add-component wide striping"
2255
2256 test_203() {
2257         [ $MDS1_VERSION -lt $(version_code 2.11.55) ] &&
2258                 skip "Need MDS version at least 2.11.55"
2259         [[ $OSTCOUNT -lt 2 ]] && skip "need >= 2 OSTs"
2260
2261         local tf=$DIR/$tfile
2262
2263         #create 2 mirrors
2264         $LFS mirror create -N2 -c1 $tf || error "create FLR file $tf"
2265         #delete first mirror
2266         $LFS mirror split --mirror-id=1 -d $tf || error "delete first mirror"
2267
2268         $LFS getstripe $tf
2269         local old_id=$($LFS getstripe --mirror-id=2 -I $tf)
2270         local count=$($LFS getstripe --mirror-id=2 -c $tf) ||
2271                 error "getstripe count of mirror 2"
2272         [[ x$count = x1 ]] || error "mirror 2 stripe count $count is not 1"
2273
2274         #extend a mirror with 2 OSTs
2275         $LFS mirror extend -N -c2 $tf || error "extend mirror"
2276         $LFS getstripe $tf
2277
2278         local new_id=$($LFS getstripe --mirror-id=2 -I $tf)
2279         count=$($LFS getstripe --mirror-id=2 -c $tf) ||
2280                 error "getstripe count of mirror 2"
2281         [[ x$oldid = x$newid ]] ||
2282                 error "mirror 2 changed ID from $old_id to $new_id"
2283         [[ x$count = x1 ]] || error "mirror 2 stripe count $count is not 1"
2284
2285         count=$($LFS getstripe --mirror-id=3 -c $tf) ||
2286                 error "getstripe count of mirror 3"
2287         [[ x$count = x2 ]] || error "mirror 3 stripe count $count is not 2"
2288 }
2289 run_test 203 "mirror file preserve mirror ID"
2290
2291 complete $SECONDS
2292 check_and_cleanup_lustre
2293 exit_status