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