Whamcloud - gitweb
841619a42b1e9974a3562318f32ac7f94fd42fa8
[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_43() {
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 43 "mirror pick on write"
1945
1946 test_44() {
1947         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
1948         rm -rf $DIR/$tdir
1949         rm -rf $DIR/$tdir-1
1950         local tf=$DIR/$tdir/$tfile
1951         local tf1=$DIR/$tdir-1/$tfile-1
1952
1953         $LFS setdirstripe -i 0 -c 1 $DIR/$tdir ||
1954                 error "create directory failed"
1955         $LFS setdirstripe -i 1 -c 1 $DIR/$tdir-1 ||
1956                 error "create remote directory failed"
1957         rm -f $tf $tf1 $tf.mirror~2
1958         # create file with 4 mirrors
1959         $LFS mirror create -N -E 2M -S 1M -E 4M -E -1 \
1960                            -N -E 1M -E 2M -E 3M -E -1 -N2 $tf ||
1961                 error "create PFLR file $tf failed"
1962
1963         # file should be in ro status
1964         verify_flr_state $tf "ro"
1965
1966         # write data in [0, 3M)
1967         dd if=/dev/urandom of=$tf bs=1M count=3 conv=notrunc ||
1968                 error "writing $tf failed"
1969
1970         verify_flr_state $tf "wp"
1971
1972         # disallow destroying the last non-stale mirror
1973         ! $LFS mirror delete --mirror-id 1 $tf > /dev/null 2>&1 ||
1974                 error "destroying mirror 1 should fail"
1975
1976         # synchronize all mirrors of the file
1977         $LFS mirror resync $tf || error "mirror resync $tf failed"
1978
1979         verify_flr_state $tf "ro"
1980
1981         # split mirror 1
1982         $LFS mirror split --mirror-id 1 -f $tf1 $tf ||
1983                 error "split to $tf1 failed"
1984
1985         local idx0=$($LFS getstripe -m $tf)
1986         local idx1=$($LFS getstripe -m $tf1)
1987
1988         [[ x$idx0 == x0 ]] || error "$tf is not on MDT0"
1989         [[ x$idx1 == x1 ]] || error "$tf1 is not on MDT1"
1990
1991         # verify mirror count
1992         verify_mirror_count $tf 3
1993         verify_mirror_count $tf1 1
1994
1995         $LFS mirror split --mirror-id 2 $tf ||
1996                 error "split mirror 2 failed"
1997
1998         verify_mirror_count $tf 2
1999         verify_mirror_count $tf.mirror~2 1
2000
2001         $LFS setstripe --comp-set -I 0x30008 --comp-flags=stale $tf ||
2002                 error "setting stale flag on component 0x30008 failed"
2003
2004         # disallow destroying the last non-stale mirror
2005         ! $LFS mirror split --mirror-id 4 -d $tf > /dev/null 2>&1 ||
2006                 error "destroying mirror 4 should fail"
2007
2008         $LFS mirror resync $tf || error "resynchronizing $tf failed"
2009
2010         $LFS mirror split --mirror-id 3 -d $tf ||
2011                 error "destroying mirror 3 failed"
2012         verify_mirror_count $tf 1
2013
2014         # verify splitted file contains the same content as the orig file does
2015         diff $tf $tf1 || error "splited file $tf1 diffs from $tf"
2016         diff $tf $tf.mirror~2 ||
2017                 error "splited file $tf.mirror~2 diffs from $tf"
2018 }
2019 run_test 44 "lfs mirror split check"
2020
2021 test_45() {
2022         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs"
2023
2024         local file=$DIR/$tdir/$tfile
2025         local dir=$DIR/$tdir/$dir
2026         local temp=$DIR/$tdir/template
2027         rm -rf $DIR/$tdir
2028         test_mkdir $DIR/$tdir
2029
2030         $LFS setstripe -N -E1m -S1m -c2 -o0,1 -E2m -Eeof -N -E4m -Eeof \
2031                 -N -E3m -S1m -Eeof -N -E8m -Eeof $file ||
2032                         error "Create $file failed"
2033
2034         verify_yaml_layout $file $file.copy $temp "1. FLR file"
2035         rm -f $file $file.copy
2036
2037         $LFS setstripe -N -E1m -S1m -c2 -o0,1 -E2m -Eeof -N -E4m -Eeof \
2038                 -N -E3m -S1m -Eeof -N -E8m --flags=prefer -Eeof $file ||
2039                         error "Create $file failed"
2040
2041         verify_yaml_layout $file $file.copy $temp "2. FLR file with flags"
2042 }
2043 run_test 45 "Verify setstripe/getstripe with YAML with FLR file"
2044
2045 verify_46() {
2046         local src=$1
2047         local dst=$2
2048         local msg_prefix=$3
2049
2050         $LFS setstripe --copy=$src $dst || error "setstripe $dst failed"
2051
2052         local layout1=$(get_layout_param $src)
2053         local layout2=$(get_layout_param $dst)
2054         # compare their layout info
2055         [ "$layout1" == "$layout2" ] ||
2056                 error "$msg_prefix $src <=> $dst layouts are not equal"
2057 }
2058
2059 test_46() {
2060         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
2061
2062         local file=$DIR/$tdir/$tfile
2063         test_mkdir $DIR/$tdir
2064
2065         ########################### 1. PFL file #############################
2066         echo "  ** 1. PFL file"
2067         rm -f $file
2068         $LFS setstripe -E1m -S 1M -c2 -o0,1 -E2m -c2 -E3m -o1,0 -E4m -c1 -E-1 \
2069                 $file || error "1. Create PFL $file failed"
2070
2071         rm -f $file.copy
2072         verify_46 $file $file.copy "1. PFL file"
2073
2074         ########################### 2. plain file ###########################
2075         echo "  ** 2. plain file"
2076         rm -f $file
2077         $LFS setstripe -c2 -o0,1 -i1 $file ||
2078                 error "2. Create plain $file failed"
2079
2080         rm -f $file.copy
2081         verify_46 $file $file.copy "2. plain file"
2082
2083         ########################### 3. FLR file #############################
2084         echo "  ** 3. FLR file"
2085         rm -f $file
2086         $LFS setstripe -N -E1m -S 1M -c2 -o0,1 -E4m -c1 -Eeof -N -E16m -Eeof \
2087                 $file || error "3. Create FLR $file failed"
2088
2089         rm -f $file.copy
2090         verify_46 $file $file.copy "3. FLR file"
2091
2092         local dir=$DIR/$tdir/dir
2093         ########################### 4. PFL dir ##############################
2094         echo "  ** 4. PFL dir"
2095         test_mkdir $dir
2096         $LFS setstripe -E1m -S 1M -c2 -E2m -c1 -E-1 $dir ||
2097                 error "4. setstripe PFL $dir failed"
2098
2099         test_mkdir $dir.copy
2100         verify_46 $dir $dir.copy "4. PFL dir"
2101
2102         ########################### 5. plain dir ############################
2103         echo "  ** 5. plain dir"
2104         $LFS setstripe -c2 -i-1 $dir || error "5. setstripe plain $dir failed"
2105
2106         verify_46 $dir $dir.copy "5. plain dir"
2107
2108         ########################### 6. FLR dir ##############################
2109         echo "  ** 6. FLR dir"
2110         $LFS setstripe -N -E1m -S 1M -c2 -E2m -c1 -Eeof -N -E4m -Eeof $dir ||
2111                 error "6. setstripe FLR $dir failed"
2112
2113         verify_46 $dir $dir.copy "6. FLR dir"
2114
2115         ########################### 7. SEL file ##############################
2116         echo "  ** 7. SEL file"
2117         rm -f $file
2118         $LFS setstripe -E256M -S 1M -c2 -o0,1 -z 64M -E-1 -o1,0 -z 128M \
2119                 $file || error "Create $file failed"
2120
2121         rm -f $file.copy
2122         verify_46 $file $file.copy "7. SEL file"
2123
2124         ########################### 8. SEL dir ##############################
2125         echo "  ** 8. SEL dir"
2126         $LFS setstripe -E256M -S 1M -c2 -z 64M -E-1 -z 128M \
2127                 $dir || error "setstripe $dir failed"
2128
2129         verify_46 $dir $dir.copy "8. SEL dir"
2130
2131         ########################### 9. FLR SEL file ##########################
2132         echo "  ** 9. FLR SEL file"
2133         rm -f $file
2134         $LFS setstripe -N -E256M -c2 -z 64M -E-1 -z 128M \
2135                 -N -E1G -c4 -z128M -E-1 -z256M $file || error "Create $file failed"
2136
2137         rm -f $file.copy
2138         verify_46 $file $file.copy "9. SEL file"
2139
2140         ########################### 10. FLR SEL dir #########################
2141         echo "  ** 10. FLR SEL dir"
2142         $LFS setstripe -N -E256M -c2 -z 64M -E-1 -z 128M \
2143                 -N -E1G -c4 -z128M -E-1 -z256M $dir || error "Create $file failed"
2144
2145         verify_46 $dir $dir.copy "10. SEL dir"
2146 }
2147 run_test 46 "Verify setstripe --copy option"
2148
2149 test_47() {
2150         [ $OSTCOUNT -lt 3 ] && skip "needs >= 3 OSTs" && return
2151
2152         local file=$DIR/$tdir/$tfile
2153         local ids
2154         local ost
2155         local osts
2156
2157         test_mkdir $DIR/$tdir
2158
2159         # test case 1:
2160         rm -f $file
2161         # mirror1: [comp0]ost0,    [comp1]ost1 and ost2
2162         # mirror2: [comp2]    ,    [comp3] should not use ost1 or ost2
2163         $LFS mirror create -N -E2m -c1 -o0 --flags=prefer -Eeof -c2 -o1,2 \
2164                 -N -E2m -c1 -Eeof -c1 $file || error "create FLR $file failed"
2165         ids=($($LFS getstripe $file | awk '/lcme_id/{print $2}' | tr '\n' ' '))
2166
2167         dd if=/dev/zero of=$file bs=1M count=3 || error "dd $file failed"
2168         $LFS mirror resync $file || error "resync $file failed"
2169
2170         ost=$($LFS getstripe -I${ids[2]} $file | awk '/l_ost_idx/{print $5}')
2171         if [[ x$ost == "x0," ]]; then
2172                 $LFS getstripe $file
2173                 error "component ${ids[2]} objects allocated on $ost " \
2174                       "shouldn't on OST0"
2175         fi
2176
2177         ost=$($LFS getstripe -I${ids[3]} $file | awk '/l_ost_idx/{print $5}')
2178         if [[ x$ost == "x1," || x$ost == "x2," ]]; then
2179                 $LFS getstripe $file
2180                 error "component ${ids[3]} objects allocated on $ost " \
2181                       "shouldn't on OST1 or on OST2"
2182         fi
2183
2184         ## test case 2:
2185         rm -f $file
2186         # mirror1: [comp0]    [comp1]
2187         # mirror2: [comp2]    [comp3]
2188         # mirror3: [comp4]    [comp5]
2189         # mirror4: [comp6]    [comp7]
2190         $LFS mirror create -N4 -E1m -c1 -Eeof -c1 $file ||
2191                 error "create FLR $file failed"
2192         ids=($($LFS getstripe $file | awk '/lcme_id/{print $2}' | tr '\n' ' '))
2193
2194         dd if=/dev/zero of=$file bs=1M count=3 || error "dd $file failed"
2195         $LFS mirror resync $file || error "resync $file failed"
2196
2197         for ((i = 0; i < 6; i++)); do
2198                 osts[$i]=$($LFS getstripe -I${ids[$i]} $file |
2199                         awk '/l_ost_idx/{print $5}')
2200         done
2201         # comp[0],comp[2],comp[4] should use different osts
2202         if [[ ${osts[0]} == ${osts[2]} || ${osts[0]} == ${osts[4]} ||
2203               ${osts[2]} == ${osts[4]} ]]; then
2204                 $LFS getstripe $file
2205                 error "component ${ids[0]}, ${ids[2]}, ${ids[4]} have objects "\
2206                       "allocated on duplicated OSTs"
2207         fi
2208         # comp[1],comp[3],comp[5] should use different osts
2209         if [[ ${osts[1]} == ${osts[3]} || ${osts[1]} == ${osts[5]} ||
2210               ${osts[3]} == ${osts[5]} ]]; then
2211                 $LFS getstripe $file
2212                 error "component ${ids[1]}, ${ids[3]}, ${ids[5]} have objects "\
2213                       "allocated on duplicated OSTs"
2214         fi
2215
2216         return 0
2217 }
2218 run_test 47 "Verify mirror obj alloc"
2219
2220 test_48() {
2221         [ $MDS1_VERSION -lt $(version_code 2.11.55) ] &&
2222                 skip "Need MDS version at least 2.11.55"
2223
2224         local tf=$DIR/$tfile
2225
2226         rm -f $tf
2227         echo " ** create 2 mirrors FLR file $tf"
2228         $LFS mirror create -N -E2M -Eeof --flags prefer \
2229                            -N -E1M -Eeof $tf ||
2230                 error "create FLR file $tf failed"
2231
2232         echo " ** write it"
2233         dd if=/dev/urandom of=$tf bs=1M count=3 || error "write $tf failed"
2234         verify_flr_state $tf "wp"
2235
2236         local sum0=$(md5sum < $tf)
2237
2238         echo " ** resync the file"
2239         $LFS mirror resync $tf
2240
2241         echo " ** snapshot mirror 2"
2242         $LFS setstripe --comp-set -I 0x20003 --comp-flags=nosync $tf
2243
2244         echo " ** write it again"
2245         dd if=/dev/urandom of=$tf bs=1M count=3 || error "write $tf failed"
2246         echo " ** resync it again"
2247         $LFS mirror resync $tf
2248
2249         verify_flr_state $tf "wp"
2250         verify_comp_attr lcme_flags $tf 0x20003 nosync,stale
2251
2252         local sum1=$($LFS mirror read -N1 $tf | md5sum)
2253         local sum2=$($LFS mirror read -N2 $tf | md5sum)
2254
2255         echo " ** verify mirror 2 doesn't change"
2256         echo "original checksum: $sum0"
2257         echo "mirror 1 checksum: $sum1"
2258         echo "mirror 2 checksum: $sum2"
2259         [[ $sum0 = $sum2 ]] ||
2260                 error "original checksum: $sum0, mirror 2 checksum: $sum2"
2261         echo " ** mirror 2 stripe info"
2262         $LFS getstripe -v --mirror-index=2 $tf
2263
2264         echo " ** resync mirror 2"
2265         $LFS mirror resync --only 2 $tf
2266
2267         verify_flr_state $tf "ro"
2268         verify_comp_attr lcme_flags $tf 0x20003 nosync,^stale
2269
2270         sum1=$($LFS mirror read -N1 $tf | md5sum)
2271         sum2=$($LFS mirror read -N2 $tf | md5sum)
2272
2273         echo " ** verify mirror 2 resync-ed"
2274         echo "original checksum: $sum0"
2275         echo "mirror 1 checksum: $sum1"
2276         echo "mirror 2 checksum: $sum2"
2277         [[ $sum1 = $sum2 ]] ||
2278                 error "mirror 1 checksum: $sum1, mirror 2 checksum: $sum2"
2279         echo " ** mirror 2 stripe info"
2280         $LFS getstripe -v --mirror-index=2 $tf
2281 }
2282 run_test 48 "Verify snapshot mirror"
2283
2284 OLDIFS="$IFS"
2285 cleanup_49() {
2286         trap 0
2287         IFS="$OLDIFS"
2288 }
2289
2290 test_49a() {
2291         [ "$OSTCOUNT" -lt "2" ] && skip_env "needs >= 2 OSTs"
2292
2293         trap cleanup_49 EXIT RETURN
2294
2295         local file=$DIR/$tfile
2296
2297         $LFS setstripe -N -E eof -c1 -o1 -N -E eof -c1 -o0 $file ||
2298                 error "setstripe on $file"
2299
2300         dd if=/dev/zero of=$file bs=1M count=1 || error "dd failed for $file"
2301         $LFS mirror resync $file
2302
2303         filefrag -ves $file || error "filefrag $file failed"
2304         filefrag_op=$(filefrag -ve -k $file |
2305                       sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
2306
2307 #Filesystem type is: bd00bd0
2308 #File size of /mnt/lustre/f49a.sanity-flr is 1048576 (1024 blocks of 1024 bytes)
2309 # ext:     device_logical:        physical_offset: length:  dev: flags:
2310 #   0:        0..    1023:    1572864..   1573887:   1024: 0001: net,eof
2311 #   1:        0..    1023:    1572864..   1573887:   1024: 0000: last,net,eof
2312 #/mnt/lustre/f49a.sanity-flr: 2 extents found
2313
2314         last_lun=$(echo $filefrag_op | cut -d: -f5)
2315         IFS=$'\n'
2316         tot_len=0
2317         num_luns=1
2318         for line in $filefrag_op; do
2319                 frag_lun=$(echo $line | cut -d: -f5)
2320                 ext_len=$(echo $line | cut -d: -f4)
2321                 if [[ "$frag_lun" != "$last_lun" ]]; then
2322                         if (( tot_len != 1024 )); then
2323                                 cleanup_49
2324                                 error "$file: OST$last_lun $tot_len != 1024"
2325                         else
2326                                 (( num_luns += 1 ))
2327                                 tot_len=0
2328                         fi
2329                 fi
2330                 (( tot_len += ext_len ))
2331                 last_lun=$frag_lun
2332         done
2333         if (( num_luns != 2 || tot_len != 1024 )); then
2334                 cleanup_49
2335                 error "$file: $num_luns != 2, $tot_len != 1024 on OST$last_lun"
2336         fi
2337
2338         echo "FIEMAP on $file succeeded"
2339 }
2340 run_test 49a "FIEMAP upon FLR file"
2341
2342 test_50A() {    # EX-2179
2343         mkdir -p $DIR/$tdir
2344
2345         local file=$DIR/$tdir/$tfile
2346
2347         $LFS setstripe -c1 -i0 $file || error "setstripe $file failed"
2348
2349         $LFS mirror extend -N -c1 -i1 $file ||
2350                 error "extending mirror for $file failed"
2351
2352         local olv=$($LFS getstripe $file | awk '/lcm_layout_gen/{print $2}')
2353
2354         fail mds1
2355
2356         $LFS mirror split -d --mirror-id=1 $file || error "split $file failed"
2357
2358         local flv=$($LFS getstripe $file | awk '/lcm_layout_gen/{print $2}')
2359
2360         echo "$file layout generation from $olv to $flv"
2361         (( $flv != ($olv + 1) )) &&
2362                 error "split does not increase layout gen from $olv to $flv"
2363
2364         dd if=/dev/zero of=$file bs=1M count=1 || error "write $file failed"
2365
2366         $LFS getstripe -v $file || error "getstripe $file failed"
2367 }
2368 run_test 50A "mirror split update layout generation"
2369
2370 test_50a() {
2371         $LCTL get_param osc.*.import | grep -q 'connect_flags:.*seek' ||
2372                 skip "OST does not support SEEK_HOLE"
2373
2374         local file=$DIR/$tdir/$tfile
2375         local offset
2376         local sum1
2377         local sum2
2378         local blocks
2379
2380         mkdir -p $DIR/$tdir
2381
2382         echo " ** create striped file $file"
2383         $LFS setstripe -E 1M -c1 -S 1M -E eof -c2 -S1M $file ||
2384                 error "cannot create file with PFL layout"
2385         echo " ** write 1st data chunk at 1M boundary"
2386         dd if=/dev/urandom of=$file bs=1k count=20 seek=1021 ||
2387                 error "cannot write data at 1M boundary"
2388         echo " ** write 2nd data chunk at 2M boundary"
2389         dd if=/dev/urandom of=$file bs=1k count=20 seek=2041 ||
2390                 error "cannot write data at 2M boundary"
2391         echo " ** create hole at the file end"
2392         $TRUNCATE $file 3700000 || error "truncate fails"
2393
2394         echo " ** verify sparseness"
2395         offset=$(lseek_test -d 1000 $file)
2396         echo "    first data offset: $offset"
2397         [[ $offset == 1000 ]] &&
2398                 error "src: data is not expected at offset $offset"
2399         offset=$(lseek_test -l 3500000 $file)
2400         echo "    hole at the end: $offset"
2401         [[ $offset == 3500000 ]] ||
2402                 error "src: hole is expected at offset $offset"
2403
2404         echo " ** extend the file with new mirror"
2405         # migrate_copy_data() is used
2406         $LFS mirror extend -N -E 2M -S 1M -E 1G -S 2M -E eof $file ||
2407                 error "cannot create mirror"
2408         $LFS getstripe $file | grep lcme_flags | grep stale > /dev/null &&
2409                 error "$file still has stale component"
2410
2411         # check migrate_data_copy() was correct
2412         sum_1=$($LFS mirror read -N 1 $file | md5sum)
2413         sum_2=$($LFS mirror read -N 2 $file | md5sum)
2414         [[ $sum_1 == $sum_2 ]] ||
2415                 error "data mismatch: \'$sum_1\' vs. \'$sum_2\'"
2416
2417         # stale first mirror
2418         $LFS setstripe --comp-set -I0x10001 --comp-flags=stale $file
2419         $LFS setstripe --comp-set -I0x10002 --comp-flags=stale $file
2420
2421         echo " ** verify mirror #2 sparseness"
2422         offset=$(lseek_test -d 1000 $file)
2423         echo "    first data offset: $offset"
2424         [[ $offset == 1000 ]] &&
2425                 error "dst: data is not expected at offset $offset"
2426         offset=$(lseek_test -l 3500000 $file)
2427         echo "    hole at the end: $offset"
2428         [[ $offset == 3500000 ]] ||
2429                 error "dst: hole is expected at offset $offset"
2430
2431         echo " ** copy mirror #2 to mirror #1"
2432         $LFS mirror copy -i 2 -o 1 $file || error "mirror copy fails"
2433         $LFS getstripe $file | grep lcme_flags | grep stale > /dev/null &&
2434                 error "$file still has stale component"
2435
2436         # check llapi_mirror_copy_many correctness
2437         sum_1=$($LFS mirror read -N 1 $file | md5sum)
2438         sum_2=$($LFS mirror read -N 2 $file | md5sum)
2439         [[ $sum_1 == $sum_2 ]] ||
2440                 error "data mismatch: \'$sum_1\' vs. \'$sum_2\'"
2441
2442         # stale 1st component of mirror #2 before lseek call
2443         $LFS setstripe --comp-set -I0x20001 --comp-flags=stale $file
2444
2445         echo " ** verify mirror #1 sparseness again"
2446         offset=$(lseek_test -d 1000 $file)
2447         echo "    first data offset: $offset"
2448         [[ $offset == 1000 ]] &&
2449                 error "dst: data is not expected at offset $offset"
2450         offset=$(lseek_test -l 3500000 $file)
2451         echo "    hole at the end: $offset"
2452         [[ $offset == 3500000 ]] ||
2453                 error "dst: hole is expected at offset $offset"
2454
2455         cancel_lru_locks osc
2456
2457         blocks=$(stat -c%b $file)
2458         echo " ** final consumed blocks: $blocks"
2459         # for 3.5Mb file consumes ~6000 blocks, use 1000 to check
2460         # that file is still sparse
2461         (( blocks < 1000 )) ||
2462                 error "Mirrored file consumes $blocks blocks"
2463
2464         rm $file
2465 }
2466 run_test 50a "mirror extend/copy preserves sparseness"
2467
2468 ctrl_file=$(mktemp /tmp/CTRL.XXXXXX)
2469 lock_file=$(mktemp /var/lock/FLR.XXXXXX)
2470
2471 write_file_200() {
2472         local tf=$1
2473
2474         local fsize=$(stat --printf=%s $tf)
2475
2476         while [ -f $ctrl_file ]; do
2477                 local off=$((RANDOM << 8))
2478                 local len=$((RANDOM << 5 + 131072))
2479
2480                 [ $((off + len)) -gt $fsize ] && {
2481                         fsize=$((off + len))
2482                         echo "Extending file size to $fsize .."
2483                 }
2484
2485                 flock -s $lock_file -c \
2486                         "$MULTIOP $tf oO_WRONLY:z${off}w${len}c" ||
2487                                 { rm -f $ctrl_file;
2488                                   error "failed writing to $off:$len"; }
2489                 sleep 0.$((RANDOM % 2 + 1))
2490         done
2491 }
2492
2493 read_file_200() {
2494         local tf=$1
2495
2496         while [ -f $ctrl_file ]; do
2497                 flock -s $lock_file -c "cat $tf &> /dev/null" ||
2498                         { rm -f $ctrl_file; error "read failed"; }
2499                 sleep 0.$((RANDOM % 2 + 1))
2500         done
2501 }
2502
2503 resync_file_200() {
2504         local tf=$1
2505
2506         options=("" "-e resync_start" "-e delay_before_copy -d 1" "" "")
2507
2508         exec 200<>$lock_file
2509         while [ -f $ctrl_file ]; do
2510                 local lock_taken=false
2511                 local index=$((RANDOM % ${#options[@]}))
2512                 local cmd="mirror_io resync ${options[$index]}"
2513
2514                 [ "${options[$index]}" = "" ] && cmd="$LFS mirror resync"
2515
2516                 [ $((RANDOM % 4)) -eq 0 ] && {
2517                         index=0
2518                         lock_taken=true
2519                         echo -n "lock to "
2520                 }
2521
2522                 echo -n "resync file $tf with '$cmd' .."
2523
2524                 if [[ $lock_taken = "true" ]]; then
2525                         flock -x 200 -c "$cmd $tf &> /dev/null" &&
2526                                 echo "done" || echo "failed"
2527                         flock -u 200
2528                 else
2529                         $cmd $tf &> /dev/null && echo "done" || echo "failed"
2530                 fi
2531
2532                 sleep 0.$((RANDOM % 8 + 1))
2533         done
2534 }
2535
2536 test_200() {
2537         local tf=$DIR/$tfile
2538         local tf2=$DIR2/$tfile
2539         local tf3=$DIR3/$tfile
2540
2541         $LFS setstripe -E 1M -S 1M -E 2M -c 2 -E 4M -E 16M -E eof $tf
2542         $LFS setstripe -E 2M -S 1M -E 6M -c 2 -E 8M -E 32M -E eof $tf-2
2543         $LFS setstripe -E 4M -c 2 -E 8M -E 64M -E eof $tf-3
2544
2545         $LFS mirror extend -N -f $tf-2 $tf ||
2546                 error "merging $tf-2 into $tf failed"
2547         $LFS mirror extend -N -f $tf-3 $tf ||
2548                 error "merging $tf-3 into $tf failed"
2549
2550         mkdir -p $MOUNT2 && mount_client $MOUNT2
2551
2552         mkdir -p $MOUNT3 && mount_client $MOUNT3
2553
2554         verify_flr_state $tf3 "ro"
2555
2556         #define OBD_FAIL_FLR_RANDOM_PICK_MIRROR 0x1A03
2557         $LCTL set_param fail_loc=0x1A03
2558
2559         local mds_idx=mds$(($($LFS getstripe -m $tf) + 1))
2560         do_facet $mds_idx $LCTL set_param fail_loc=0x1A03
2561
2562         declare -a pids
2563
2564         write_file_200 $tf &
2565         pids+=($!)
2566
2567         read_file_200 $tf &
2568         pids+=($!)
2569
2570         write_file_200 $tf2 &
2571         pids+=($!)
2572
2573         read_file_200 $tf2 &
2574         pids+=($!)
2575
2576         resync_file_200 $tf3 &
2577         pids+=($!)
2578
2579         local sleep_time=60
2580         [ "$SLOW" = "yes" ] && sleep_time=360
2581         while [ $sleep_time -gt 0 -a -f $ctrl_file ]; do
2582                 sleep 1
2583                 ((--sleep_time))
2584         done
2585
2586         rm -f $ctrl_file
2587
2588         echo "Waiting ${pids[@]}"
2589         wait ${pids[@]}
2590
2591         umount_client $MOUNT2
2592         umount_client $MOUNT3
2593
2594         rm -f $lock_file
2595
2596         # resync and verify mirrors
2597         mirror_io resync $tf
2598         get_mirror_ids $tf
2599
2600         local csum=$($LFS mirror read -N ${mirror_array[0]} $tf | md5sum)
2601         for id in ${mirror_array[@]:1}; do
2602                 [ "$($LFS mirror read -N $id $tf | md5sum)" = "$csum" ] ||
2603                         error "checksum error for mirror $id"
2604         done
2605
2606         true
2607 }
2608 run_test 200 "stress test"
2609
2610 cleanup_test_201() {
2611         trap 0
2612         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister $CL_USER
2613
2614         umount_client $MOUNT2
2615 }
2616
2617 test_201() {
2618         local delay=${RESYNC_DELAY:-5}
2619
2620         MDT0=$($LCTL get_param -n mdc.*.mds_server_uuid |
2621                awk '{ gsub(/_UUID/,""); print $1 }' | head -n1)
2622
2623         trap cleanup_test_201 EXIT
2624
2625         CL_USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
2626                         changelog_register -n)
2627
2628         mkdir -p $MOUNT2 && mount_client $MOUNT2
2629
2630         local index=0
2631         while :; do
2632                 local log=$($LFS changelog $MDT0 $index | grep FLRW)
2633                 [ -z "$log" ] && { sleep 1; continue; }
2634
2635                 index=$(echo $log | awk '{print $1}')
2636                 local ts=$(date -d "$(echo $log | awk '{print $3}')" "+%s" -u)
2637                 local fid=$(echo $log | awk '{print $6}' | sed -e 's/t=//')
2638                 local file=$($LFS fid2path $MOUNT2 $fid 2> /dev/null)
2639
2640                 ((++index))
2641                 [ -z "$file" ] && continue
2642
2643                 local now=$(date +%s)
2644
2645                 echo "file: $file $fid was modified at $ts, now: $now, " \
2646                      "will be resynced at $((ts+delay))"
2647
2648                 [ $now -lt $((ts + delay)) ] && sleep $((ts + delay - now))
2649
2650                 mirror_io resync $file
2651                 echo "$file resync done"
2652         done
2653
2654         cleanup_test_201
2655 }
2656 run_test 201 "FLR data mover"
2657
2658 test_202() {
2659         [[ $OSTCOUNT -lt 2 ]] && skip "need >= 2 OSTs" && return
2660
2661         local tf=$DIR/$tfile
2662         local ids
2663
2664         $LFS setstripe -E 1M -S 1M -c 1 $tf
2665         ids=($($LFS getstripe $tf | awk '/lcme_id/{print $2}' | tr '\n' ' '))
2666         verify_comp_attr stripe-count $tf ${ids[0]} 1
2667
2668         $LFS setstripe --component-add -E 2M -c -1 $tf
2669         ids=($($LFS getstripe $tf | awk '/lcme_id/{print $2}' | tr '\n' ' '))
2670         verify_comp_attr stripe-count $tf ${ids[0]} 1
2671         verify_comp_attr stripe-count $tf ${ids[1]} -1
2672
2673         dd if=/dev/zero of=$tf bs=1M count=2
2674         ids=($($LFS getstripe $tf | awk '/lcme_id/{print $2}' | tr '\n' ' '))
2675         verify_comp_attr stripe-count $tf ${ids[0]} 1
2676         verify_comp_attr stripe-count $tf ${ids[1]} $OSTCOUNT
2677 }
2678 run_test 202 "lfs setstripe --add-component wide striping"
2679
2680 test_203() {
2681         [ $MDS1_VERSION -lt $(version_code 2.11.55) ] &&
2682                 skip "Need MDS version at least 2.11.55"
2683         [[ $OSTCOUNT -lt 2 ]] && skip "need >= 2 OSTs"
2684
2685         local tf=$DIR/$tfile
2686
2687         #create 2 mirrors
2688         $LFS mirror create -N2 -c1 $tf || error "create FLR file $tf"
2689         #delete first mirror
2690         $LFS mirror delete --mirror-id=1 $tf || error "delete first mirror"
2691
2692         $LFS getstripe $tf
2693         local old_id=$($LFS getstripe --mirror-id=2 -I $tf)
2694         local count=$($LFS getstripe --mirror-id=2 -c $tf) ||
2695                 error "getstripe count of mirror 2"
2696         [[ x$count = x1 ]] || error "mirror 2 stripe count $count is not 1"
2697
2698         #extend a mirror with 2 OSTs
2699         $LFS mirror extend -N -c2 $tf || error "extend mirror"
2700         $LFS getstripe $tf
2701
2702         local new_id=$($LFS getstripe --mirror-id=2 -I $tf)
2703         count=$($LFS getstripe --mirror-id=2 -c $tf) ||
2704                 error "getstripe count of mirror 2"
2705         [[ x$oldid = x$newid ]] ||
2706                 error "mirror 2 changed ID from $old_id to $new_id"
2707         [[ x$count = x1 ]] || error "mirror 2 stripe count $count is not 1"
2708
2709         count=$($LFS getstripe --mirror-id=3 -c $tf) ||
2710                 error "getstripe count of mirror 3"
2711         [[ x$count = x2 ]] || error "mirror 3 stripe count $count is not 2"
2712 }
2713 run_test 203 "mirror file preserve mirror ID"
2714
2715 # Simple test of FLR + self-extending layout, SEL in non-primary mirror
2716 test_204a() {
2717         [ "$MDS1_VERSION" -lt $(version_code $SEL_VER) ] &&
2718                 skip "skipped for lustre < $SEL_VER"
2719
2720         local comp_file=$DIR/$tdir/$tfile
2721         local flg_opts=""
2722         local found=""
2723
2724         test_mkdir $DIR/$tdir
2725
2726         # first mirror is 0-10M, then 10M-(-1), second mirror is 1M followed
2727         # by extension space to -1
2728         $LFS setstripe -N -E 10M -E-1 -N -E 1M -E-1 -z64M $comp_file ||
2729                 error "Create $comp_file failed"
2730
2731         # Write to first component, extending & staling second mirror
2732         dd if=/dev/zero bs=2M count=1 of=$comp_file conv=notrunc ||
2733                 error "dd to extend + stale failed"
2734
2735         $LFS getstripe $comp_file
2736
2737         flg_opts="--component-flags init,stale"
2738         found=$($LFS find --component-end 65M $flg_opts $comp_file | wc -l)
2739         [ $found -eq 1 ] || error "write: Second comp end incorrect"
2740
2741         flg_opts="--component-flags extension"
2742         found=$($LFS find --component-start 65M $flg_opts $comp_file | wc -l)
2743         [ $found -eq 1 ] || error "write: Third comp start incorrect"
2744
2745         # mirror resync should not change the extents
2746         $LFS mirror resync $comp_file
2747
2748         flg_opts="--component-flags init"
2749         found=$($LFS find --component-end 65M $flg_opts $comp_file | wc -l)
2750         [ $found -eq 1 ] || error "resync: Second comp end incorrect"
2751
2752         flg_opts="--component-flags extension"
2753         found=$($LFS find --component-start 65M $flg_opts $comp_file | wc -l)
2754         [ $found -eq 1 ] || error "resync: Third comp start incorrect"
2755
2756         sel_layout_sanity $comp_file 5
2757
2758         rm -f $comp_file
2759 }
2760 run_test 204a "FLR write/stale/resync tests with self-extending mirror"
2761
2762 # Simple test of FLR + self-extending layout, SEL in primary mirror
2763 test_204b() {
2764         [ "$MDS1_VERSION" -lt $(version_code $SEL_VER) ] &&
2765                 skip "skipped for lustre < $SEL_VER"
2766
2767         local comp_file=$DIR/$tdir/$tfile
2768         local flg_opts=""
2769         local found=""
2770
2771         test_mkdir $DIR/$tdir
2772
2773         # first mirror is 1M followed by extension space to -1, second mirror
2774         # is 0-10M, then 10M-(-1),
2775         $LFS setstripe -N -E 1M -E-1 -z64M -N -E 10M -E-1 $comp_file ||
2776                 error "Create $comp_file failed"
2777
2778         # Write to first component, extending first component & staling
2779         # other mirror
2780         dd if=/dev/zero bs=2M count=1 of=$comp_file conv=notrunc ||
2781                 error "dd to extend + stale failed"
2782
2783         $LFS getstripe $comp_file
2784
2785         flg_opts="--component-flags init"
2786         found=$($LFS find --component-end 65M $flg_opts $comp_file | wc -l)
2787         [ $found -eq 1 ] || error "write: First comp end incorrect"
2788
2789         flg_opts="--component-flags extension"
2790         found=$($LFS find --component-start 65M $flg_opts $comp_file | wc -l)
2791         [ $found -eq 1 ] || error "write: Second comp start incorrect"
2792
2793         flg_opts="--component-flags init,stale"
2794         found=$($LFS find --component-end 10M $flg_opts $comp_file | wc -l)
2795         [ $found -eq 1 ] || error "write: First mirror comp flags incorrect"
2796
2797         # This component is staled because it overlaps the extended first
2798         # component of the primary mirror, even though it doesn't overlap
2799         # the actual write - thus not inited.
2800         flg_opts="--component-flags stale"
2801         found=$($LFS find --component-start 10M $flg_opts $comp_file | wc -l)
2802         [ $found -eq 1 ] || error "write: Second mirror comp flags incorrect"
2803
2804         # mirror resync should not change the extents
2805         $LFS mirror resync $comp_file
2806
2807         $LFS getstripe $comp_file
2808
2809         flg_opts="--component-flags init"
2810         found=$($LFS find --component-end 65M $flg_opts $comp_file | wc -l)
2811         [ $found -eq 1 ] || error "resync: First comp end incorrect"
2812
2813         flg_opts="--component-flags extension"
2814         found=$($LFS find --component-start 65M $flg_opts $comp_file | wc -l)
2815         [ $found -eq 1 ] || error "resync: Second comp start incorrect"
2816
2817         flg_opts="--component-flags init"
2818         found=$($LFS find --component-end 10M $flg_opts $comp_file | wc -l)
2819         [ $found -eq 1 ] || error "resync: First mirror comp flags incorrect"
2820
2821         flg_opts="--component-flags init"
2822         found=$($LFS find --component-start 10M $flg_opts $comp_file | wc -l)
2823         [ $found -eq 1 ] || error "resync: Second mirror comp flags incorrect"
2824
2825         sel_layout_sanity $comp_file 5
2826
2827         rm -f $comp_file
2828 }
2829 run_test 204b "FLR write/stale/resync tests with self-extending primary"
2830
2831 # FLR + SEL failed extension & component removal
2832 # extension space in second mirror
2833 test_204c() {
2834         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs"
2835         [ "$MDS1_VERSION" -lt $(version_code $SEL_VER) ] &&
2836                 skip "skipped for lustre < $SEL_VER"
2837
2838         local comp_file=$DIR/$tdir/$tfile
2839         local found=""
2840         local ost_idx1=0
2841         local ost_name=$(ostname_from_index $ost_idx1)
2842
2843         test_mkdir $DIR/$tdir
2844
2845         # first mirror is is 0-10M, then 10M-(-1), second mirror is 0-1M, then
2846         # extension space from 1M to 1G, then normal space to -1
2847         $LFS setstripe -N -E 10M -E-1 -N -E 1M -E 1G -i $ost_idx1 -z 64M \
2848                 -E -1 $comp_file || error "Create $comp_file failed"
2849
2850         do_facet ost1 $LCTL set_param -n obdfilter.$ost_name.degraded=1
2851         sleep_maxage
2852
2853         # write to first comp (0 - 10M) of mirror 1, extending + staling
2854         # first + second comp of mirror 2
2855         dd if=/dev/zero bs=2M count=1 of=$comp_file conv=notrunc
2856         RC=$?
2857
2858         do_facet ost1 $LCTL set_param -n obdfilter.$ost_name.degraded=0
2859         sleep_maxage
2860
2861         [ $RC -eq 0 ] || error "dd to extend + stale failed"
2862
2863         $LFS getstripe $comp_file
2864
2865         found=$($LFS find --component-start 0m --component-end 1m \
2866                 --comp-flags init,stale $comp_file | wc -l)
2867         [ $found -eq 1 ] || error "write: First mirror comp incorrect"
2868
2869         found=$($LFS find --component-start 1m --component-end EOF \
2870                 --comp-flags stale,^init $comp_file | wc -l)
2871         [ $found -eq 1 ] || error "write: Second mirror comp incorrect"
2872
2873         local mirror_id=$($LFS getstripe --component-start=1m   \
2874                          --component-end=EOF $comp_file |       \
2875                          grep lcme_mirror_id | awk '{ print $2 }')
2876
2877         [[ $mirror_id -eq 2 ]] ||
2878                 error "component not in correct mirror? $mirror_id"
2879
2880         $LFS mirror resync $comp_file
2881
2882         $LFS getstripe $comp_file
2883
2884         # component dimensions should not change from resync
2885         found=$($LFS find --component-start 1m --component-end EOF \
2886                 --component-flags init $comp_file | wc -l)
2887         [ $found -eq 1 ] || error "resync: Second mirror comp incorrect"
2888
2889         sel_layout_sanity $comp_file 4
2890
2891         rm -f $comp_file
2892 }
2893 run_test 204c "FLR write/stale/resync test with component removal"
2894
2895 # Successful repeated component in primary mirror
2896 test_204d() {
2897         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs"
2898         [ "$MDS1_VERSION" -lt $(version_code $SEL_VER) ] &&
2899                 skip "skipped for lustre < $SEL_VER"
2900
2901         local comp_file=$DIR/$tdir/$tfile
2902         local found=""
2903
2904         wait_delete_completed
2905         wait_mds_ost_sync
2906         test_mkdir $DIR/$tdir
2907
2908         # first mirror is 64M followed by extension space to -1, second mirror
2909         # is 0-10M, then 10M-(-1)
2910         $LFS setstripe -N -E-1 -z64M -N -E 10M -E-1 $comp_file ||
2911                 error "Create $comp_file failed"
2912
2913         local ost_idx1=$($LFS getstripe -I65537 -i $comp_file)
2914         local ost_name=$(ostname_from_index $ost_idx1)
2915         # degrade OST for first comp so we won't extend there
2916         do_facet ost$((ost_idx1+1)) $LCTL set_param -n \
2917                 obdfilter.$ost_name.degraded=1
2918         sleep_maxage
2919
2920         # Write beyond first component, causing repeat & stale second mirror
2921         dd if=/dev/zero bs=1M count=1 seek=66 of=$comp_file conv=notrunc
2922         RC=$?
2923
2924         do_facet ost$((ost_idx1+1)) $LCTL set_param -n \
2925                 obdfilter.$ost_name.degraded=0
2926         sleep_maxage
2927
2928         [ $RC -eq 0 ] || error "dd to repeat & stale failed"
2929
2930         $LFS getstripe $comp_file
2931
2932         found=$($LFS find --component-start 64m --component-end 128m \
2933                 --component-flags init $comp_file | wc -l)
2934         [ $found -eq 1 ] || error "write: Repeat comp incorrect"
2935
2936         local ost_idx2=$($LFS getstripe --component-start=64m           \
2937                          --component-end=128m --component-flags=init    \
2938                          -i $comp_file)
2939         [[ $ost_idx1 -eq $ost_idx2 ]] && error "$ost_idx1 == $ost_idx2"
2940         local mirror_id=$($LFS getstripe --component-start=64m          \
2941                          --component-end=128m --component-flags=init    \
2942                          $comp_file | grep lcme_mirror_id | awk '{ print $2 }')
2943         [[ $mirror_id -eq 1 ]] ||
2944                 error "component not in correct mirror: $mirror_id, not 1"
2945
2946         $LFS mirror resync $comp_file
2947
2948         $LFS getstripe $comp_file
2949
2950         # component dimensions should not change from resync
2951         found=$($LFS find --component-start 0m --component-end 64m \
2952                 --component-flags init $comp_file | wc -l)
2953         [ $found -eq 1 ] || error "resync: first comp incorrect"
2954         found=$($LFS find --component-start 64m --component-end 128m \
2955                 --component-flags init $comp_file | wc -l)
2956         [ $found -eq 1 ] || error "resync: repeat comp incorrect"
2957
2958         sel_layout_sanity $comp_file 5
2959
2960         rm -f $comp_file
2961 }
2962 run_test 204d "FLR write/stale/resync sel test with repeated comp"
2963
2964 # Successful repeated component, SEL in non-primary mirror
2965 test_204e() {
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
2973         wait_delete_completed
2974         wait_mds_ost_sync
2975
2976         test_mkdir $DIR/$tdir
2977
2978         # first mirror is is 0-100M, then 100M-(-1), second mirror is extension
2979         # space to -1 (-z 64M, so first comp is 0-64M)
2980         # Note: we have to place both 1st components on OST0, otherwise 2 OSTs
2981         # will be not enough - one will be degraded, the other is used on
2982         # an overlapping mirror.
2983         $LFS setstripe -N -E 100M -i 0 -E-1 -N -E-1 -i 0 -z 64M $comp_file ||
2984                 error "Create $comp_file failed"
2985
2986         local ost_idx1=$($LFS getstripe --component-start=0 \
2987                          --component-end=64m -i $comp_file)
2988         local ost_name=$(ostname_from_index $ost_idx1)
2989         # degrade OST for first comp of 2nd mirror so we won't extend there
2990         do_facet ost$((ost_idx1+1)) $LCTL set_param -n \
2991                 obdfilter.$ost_name.degraded=1
2992         sleep_maxage
2993
2994         $LFS getstripe $comp_file
2995
2996         # Write to first component, stale & instantiate second mirror components
2997         # overlapping with the written component (0-100M);
2998         dd if=/dev/zero bs=2M count=1 of=$comp_file conv=notrunc
2999         RC=$?
3000
3001         do_facet ost$((ost_idx1+1)) $LCTL set_param -n \
3002                 obdfilter.$ost_name.degraded=0
3003         sleep_maxage
3004         $LFS getstripe $comp_file
3005
3006         [ $RC -eq 0 ] || error "dd to repeat & stale failed"
3007
3008         found=$($LFS find --component-start 0m --component-end 64m \
3009                 --component-flags init,stale $comp_file | wc -l)
3010         [ $found -eq 1 ] || error "write: first comp incorrect"
3011
3012         # was repeated due to degraded ost
3013         found=$($LFS find --component-start 64m --component-end 128m \
3014                 --component-flags init,stale $comp_file | wc -l)
3015         [ $found -eq 1 ] || error "write: repeated comp incorrect"
3016
3017         local ost_idx2=$($LFS getstripe --component-start=64m           \
3018                          --component-end=128m --component-flags=init    \
3019                          -i $comp_file)
3020         [[ $ost_idx1 -eq $ost_idx2 ]] && error "$ost_idx1 == $ost_idx2"
3021         local mirror_id=$($LFS getstripe --component-start=0m           \
3022                          --component-end=64m --component-flags=init     \
3023                          $comp_file | grep lcme_mirror_id | awk '{ print $2 }')
3024         [[ $mirror_id -eq 2 ]] ||
3025                 error "component not in correct mirror? $mirror_id"
3026
3027         $LFS mirror resync $comp_file
3028
3029         $LFS getstripe $comp_file
3030
3031         # component dimensions should not change from resync
3032         found=$($LFS find --component-start 0m --component-end 64m \
3033                 --component-flags init,^stale $comp_file | wc -l)
3034         [ $found -eq 1 ] || error "resync: first comp incorrect"
3035         found=$($LFS find --component-start 64m --component-end 128m \
3036                 --component-flags init,^stale $comp_file | wc -l)
3037         [ $found -eq 1 ] || error "resync: repeated comp incorrect"
3038
3039         sel_layout_sanity $comp_file 5
3040
3041         rm -f $comp_file
3042 }
3043 run_test 204e "FLR write/stale/resync sel test with repeated comp"
3044
3045 # FLR + SEL: failed repeated component, SEL in non-primary mirror
3046 test_204f() {
3047         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs"
3048         [ "$MDS1_VERSION" -lt $(version_code $SEL_VER) ] &&
3049                 skip "skipped for lustre < $SEL_VER"
3050
3051         local comp_file=$DIR/$tdir/$tfile
3052         local found=""
3053
3054         wait_delete_completed
3055         wait_mds_ost_sync
3056         test_mkdir $DIR/$tdir
3057
3058         pool_add $TESTNAME || error "Pool creation failed"
3059         pool_add_targets $TESTNAME 0 1 || error "Pool add targets failed"
3060
3061         # first mirror is is 0-100M, then 100M-(-1), second mirror is extension
3062         # space to -1 (-z 64M, so first comp is 0-64M)
3063         $LFS setstripe -N -E 100M -E-1 -N --pool="$TESTNAME" \
3064                 -E-1 -c 1 -z 64M $comp_file || error "Create $comp_file failed"
3065
3066         local ost_name0=$(ostname_from_index 0)
3067         local ost_name1=$(ostname_from_index 1)
3068
3069         # degrade both OSTs in pool, so we'll try to repeat, then fail and
3070         # extend original comp
3071         do_facet ost1 $LCTL set_param -n obdfilter.$ost_name0.degraded=1
3072         do_facet ost2 $LCTL set_param -n obdfilter.$ost_name1.degraded=1
3073         sleep_maxage
3074
3075         # a write to the 1st component, 100M length, which will try to stale
3076         # the first 100M of mirror 2, attempting to extend its 0-64M component
3077         dd if=/dev/zero bs=2M count=1 of=$comp_file conv=notrunc
3078         RC=$?
3079
3080         do_facet ost1 $LCTL set_param -n obdfilter.$ost_name0.degraded=0
3081         do_facet ost2 $LCTL set_param -n obdfilter.$ost_name1.degraded=0
3082         sleep_maxage
3083
3084         [ $RC -eq 0 ] || error "dd to extend mirror comp failed"
3085
3086         $LFS getstripe $comp_file
3087
3088         found=$($LFS find --component-start 0m --component-end 128m \
3089                 --component-flags init,stale $comp_file | wc -l)
3090         [ $found -eq 1 ] || error "write: First mirror comp incorrect"
3091
3092         local mirror_id=$($LFS getstripe --component-start=0m           \
3093                          --component-end=128m --component-flags=init    \
3094                          $comp_file | grep lcme_mirror_id | awk '{ print $2 }')
3095
3096         [[ $mirror_id -eq 2 ]] ||
3097                 error "component not in correct mirror? $mirror_id, not 2"
3098
3099         $LFS mirror resync $comp_file
3100
3101         $LFS getstripe $comp_file
3102
3103         # component dimensions should not change from resync
3104         found=$($LFS find --component-start 0m --component-end 128m \
3105                 --component-flags init,^stale $comp_file | wc -l)
3106         [ $found -eq 1 ] || error "resync: First mirror comp incorrect"
3107
3108         sel_layout_sanity $comp_file 4
3109
3110         rm -f $comp_file
3111 }
3112 run_test 204f "FLR write/stale/resync sel w/forced extension"
3113
3114 function test_205() {
3115         local tf=$DIR/$tfile
3116         local mirrors
3117
3118         $LFS setstripe -c1 $tf
3119         $LFS mirror extend -N $tf
3120         mirrors=$($LFS getstripe $tf | grep lcme_mirror_id | wc -l )
3121         (( $mirrors == 2 )) || error "no new mirror was created?"
3122
3123         $LFS mirror extend -N --flags=prefer $tf
3124         mirrors=$($LFS getstripe $tf | grep lcme_mirror_id | wc -l )
3125         (( $mirrors == 3 )) || error "no new mirror was created?"
3126
3127         $($LFS getstripe $tf | grep lcme_flags: | tail -1 | grep -q prefer) ||
3128                 error "prefer flag was not set on the new mirror"
3129 }
3130 run_test 205 "lfs mirror extend to set prefer flag"
3131
3132 function test_206() {
3133         # create a new OST pool
3134         local pool_name=$TESTNAME
3135
3136         create_pool $FSNAME.$pool_name ||
3137                 error "create OST pool $pool_name failed"
3138         # add OSTs into the pool
3139         pool_add_targets $pool_name 0 1 ||
3140                 error "add OSTs into pool $pool_name failed"
3141
3142         $LFS setstripe -c1 --pool=$pool_name $DIR/$tfile ||
3143                 error "can't setstripe"
3144         $LFS mirror extend -N $DIR/$tfile ||
3145                 error "can't create replica"
3146         if $LFS getstripe $DIR/$tfile | grep -q prefer ; then
3147                 $LFS getstripe $DIR/$tfile
3148                 error "prefer found"
3149         fi
3150         $LFS setstripe --comp-set --comp-flags=prefer -p $pool_name $DIR/$tfile || {
3151                 $LFS getstripe $DIR/$tfile
3152                 error "can't setstripe prefer"
3153         }
3154
3155         if ! $LFS getstripe $DIR/$tfile | grep -q prefer ; then
3156                 $LFS getstripe $DIR/$tfile
3157                 error "no prefer found"
3158         fi
3159
3160         # destroy OST pool
3161         destroy_test_pools
3162 }
3163 run_test 206 "lfs setstripe -pool .. --comp-flags=.. "
3164
3165 test_207() {
3166        local file=$DIR/$tfile
3167        local tmpfile=$DIR/$tfile-tt
3168
3169         [ $MDS1_VERSION -lt $(version_code 2.14.50) ] &&
3170                 skip "Need MDS version at least 2.14.50"
3171
3172         stack_trap "rm -f $tmpfile $file"
3173
3174         # generate data for verification
3175         dd if=/dev/urandom of=$tmpfile bs=1M count=1 ||
3176                 error "can't generate file with random data"
3177
3178         # create a mirrored file with one stale replica
3179         $LFS mirror create -N -S 4M -c 2 -N -S 1M -c -1 $file ||
3180                 error "create mirrored file $file failed"
3181         get_mirror_ids $file
3182         echo "mirror IDs: ${mirror_array[@]}"
3183
3184         dd if=$tmpfile of=$file bs=1M || error "can't copy"
3185         get_mirror_ids $file
3186         echo "mirror IDs: ${mirror_array[@]}"
3187
3188         drop_client_cache
3189         cmp $tmpfile $file || error "files don't match"
3190         get_mirror_ids $file
3191         echo "mirror IDs: ${mirror_array[@]}"
3192
3193         # mirror creation should work fine
3194         $LFS mirror extend -N -S 8M -c -1 $file ||
3195                 error "mirror extend $file failed"
3196
3197         get_mirror_ids $file
3198         echo "mirror IDs: ${mirror_array[@]}"
3199
3200         drop_client_cache
3201         $LFS mirror verify -v $file || error "verification failed"
3202         cmp $tmpfile $file || error "files don't match"
3203 }
3204 run_test 207 "create another replica with existing out-of-sync one"
3205
3206 complete $SECONDS
3207 check_and_cleanup_lustre
3208 exit_status