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