Whamcloud - gitweb
LU-15103 tests: clean up busy cifs mount
[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-14818 LU-11381
18 ALWAYS_EXCEPT+="                  6        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         $LFS mirror create -N $tf-3 || error "create mirrored file $tf-3 failed"
520
521         $mirror_cmd -N -S 4M -N -f $tf-2 $tf-1 ||
522                 error "extend mirror with -f failed"
523
524         $mirror_cmd -N$((mirror_count - 1)) $tf-3 ||
525                 error "extend mirrored file $tf-3 failed"
526         verify_mirror_count $tf-3 $mirror_count
527         ids=($($LFS getstripe $tf-3 | awk '/lcme_id/{print $2}' | tr '\n' ' '))
528         for ((i = 0; i < $mirror_count; i++)); do
529                 verify_comp_attrs $tf-3 ${ids[$i]}
530                 verify_comp_extent $tf-3 ${ids[$i]} 0 EOF
531         done
532
533         $mirror_cmd -N $tf-3 &> /dev/null &&
534                 error "exceeded maximum mirror count $mirror_count" || true
535 }
536 run_test 0d "lfs mirror extend with -N option"
537
538 test_0e() {
539         [[ $OSTCOUNT -lt 4 ]] && skip "need >= 4 OSTs" && return
540
541         local td=$DIR/$tdir
542         local tf=$td/$tfile
543         local mirror_cmd="$LFS mirror extend"
544         local ids
545         local i
546
547         # create parent directory
548         mkdir $td || error "mkdir $td failed"
549
550         # create a mirrored file with plain layout mirrors
551         $LFS mirror create -N -S 32M -c 3 -p ssd -i 1 -o 1,2,3 $tf ||
552                 error "create mirrored file $tf failed"
553
554         # extend the mirrored file with plain layout mirrors
555         $mirror_cmd -N -S 4M -c 2 -p flash -i 2 -o 2,3 \
556                     -N -S 16M -N -c -1 -N -p archive -N -p none $tf ||
557                 error "extend mirrored file $tf failed"
558         verify_mirror_count $tf 6
559         ids=($($LFS getstripe $tf | awk '/lcme_id/{print $2}' | tr '\n' ' '))
560         for ((i = 0; i < 6; i++)); do
561                 verify_comp_extent $tf ${ids[$i]} 0 EOF
562         done
563
564         # verify component ${ids[0]}
565         verify_comp_attr stripe-size $tf ${ids[0]} 33554432
566         verify_comp_attr stripe-count $tf ${ids[0]} 3
567         verify_comp_attr stripe-index $tf ${ids[0]} 1
568
569         # verify component ${ids[1]}
570         verify_comp_attr stripe-size $tf ${ids[1]} 4194304
571         verify_comp_attr stripe-count $tf ${ids[1]} 2
572         verify_comp_attr stripe-index $tf ${ids[1]} 2
573
574         # verify component ${ids[2]}
575         verify_comp_attr stripe-size $tf ${ids[2]} 16777216
576         verify_comp_attr stripe-count $tf ${ids[2]} 2
577         verify_comp_attr pool $tf ${ids[2]} flash
578
579         # verify component ${ids[3]}
580         verify_comp_attr stripe-size $tf ${ids[3]} 16777216
581         verify_comp_attr stripe-count $tf ${ids[3]} $OSTCOUNT
582         verify_comp_attr pool $tf ${ids[3]} flash
583
584         # verify component ${ids[4]}
585         verify_comp_attr stripe-size $tf ${ids[4]} 16777216
586         verify_comp_attr stripe-count $tf ${ids[4]} $OSTCOUNT
587         verify_comp_attr pool $tf ${ids[4]} archive
588
589         # verify component ${ids[5]}
590         verify_comp_attr stripe-size $tf ${ids[5]} 16777216
591         verify_comp_attr stripe-count $tf ${ids[5]} $OSTCOUNT
592         verify_comp_attr_with_parent pool $tf ${ids[5]}
593 }
594 run_test 0e "lfs mirror extend plain layout mirrors"
595
596 test_0f() {
597         [[ $OSTCOUNT -lt 4 ]] && skip "need >= 4 OSTs" && return
598
599         local td=$DIR/$tdir
600         local tf=$td/$tfile
601         local mirror_cmd="$LFS mirror extend"
602         local ids
603         local i
604
605         # create parent directory
606         mkdir $td || error "mkdir $td failed"
607
608         # create a mirrored file with composite layout mirror
609         $LFS mirror create -N -E 32M -S 16M -p ssd -E eof -S 32M $tf ||
610                 error "create mirrored file $tf failed"
611
612         # extend the mirrored file with composite layout mirrors
613         $mirror_cmd -N -p archive \
614                     -N2 -E 4M -c 2 -p flash -i 1 -o 1,3 -E eof -S 4M \
615                     -N -c -1 -p none \
616                     -N3 -E 512M -S 16M -p archive -E -1 -i -1 -c -1 $tf ||
617                 error "extend mirrored file $tf failed"
618         verify_mirror_count $tf 8
619         ids=($($LFS getstripe $tf | awk '/lcme_id/{print $2}' | tr '\n' ' '))
620
621         # verify component ${ids[0]}
622         verify_comp_attr stripe-size $tf ${ids[0]} 16777216
623         verify_comp_attr_with_default stripe-count $tf ${ids[0]}
624         verify_comp_attr pool $tf ${ids[0]} ssd
625         verify_comp_extent $tf ${ids[0]} 0 33554432
626
627         # verify component ${ids[1]}
628         verify_comp_attr stripe-size $tf ${ids[1]} 33554432
629         verify_comp_attr_with_default stripe-count $tf ${ids[1]}
630         verify_comp_attr pool $tf ${ids[1]} ssd
631         verify_comp_extent $tf ${ids[1]} 33554432 EOF
632
633         # verify component ${ids[2]}
634         verify_comp_attr stripe-size $tf ${ids[0]} 16777216
635         verify_comp_attr_with_default stripe-count $tf ${ids[2]}
636         verify_comp_attr pool $tf ${ids[2]} archive
637         verify_comp_extent $tf ${ids[2]} 0 EOF
638
639         # verify components ${ids[3]} and ${ids[5]}
640         for i in 3 5; do
641                 verify_comp_attr_with_default stripe-size $tf ${ids[$i]}
642                 verify_comp_attr stripe-count $tf ${ids[$i]} 2
643                 verify_comp_attr stripe-index $tf ${ids[$i]} 1
644                 verify_comp_extent $tf ${ids[$i]} 0 4194304
645         done
646
647         # verify components ${ids[4]} and ${ids[6]}
648         for i in 4 6; do
649                 verify_comp_attr stripe-size $tf ${ids[$i]} 4194304
650                 verify_comp_attr stripe-count $tf ${ids[$i]} 2
651                 verify_comp_attr pool $tf ${ids[$i]} flash
652                 verify_comp_extent $tf ${ids[$i]} 4194304 EOF
653         done
654
655         # verify component ${ids[7]}
656         verify_comp_attr stripe-size $tf ${ids[7]} 4194304
657         verify_comp_attr stripe-count $tf ${ids[7]} $OSTCOUNT
658         verify_comp_attr_with_parent pool $tf ${ids[7]}
659         verify_comp_extent $tf ${ids[7]} 0 EOF
660
661         # verify components ${ids[8]}, ${ids[10]} and ${ids[12]}
662         for i in 8 10 12; do
663                 verify_comp_attr stripe-size $tf ${ids[$i]} 16777216
664                 verify_comp_attr stripe-count $tf ${ids[$i]} $OSTCOUNT
665                 verify_comp_attr pool $tf ${ids[$i]} archive
666                 verify_comp_extent $tf ${ids[$i]} 0 536870912
667         done
668
669         # verify components ${ids[9]}, ${ids[11]} and ${ids[13]}
670         for i in 9 11 13; do
671                 verify_comp_attr stripe-size $tf ${ids[$i]} 16777216
672                 verify_comp_attr stripe-count $tf ${ids[$i]} -1
673                 verify_comp_attr pool $tf ${ids[$i]} archive
674                 verify_comp_extent $tf ${ids[$i]} 536870912 EOF
675         done
676 }
677 run_test 0f "lfs mirror extend composite layout mirrors"
678
679 test_0g() {
680         local tf=$DIR/$tfile
681
682         ! $LFS mirror create --flags prefer $tf ||
683                 error "creating $tf w/ --flags but w/o -N option should fail"
684
685         ! $LFS mirror create -N --flags foo $tf ||
686                 error "creating $tf with '--flags foo' should fail"
687
688         ! $LFS mirror create -N --flags stale $tf ||
689                 error "creating $tf with '--flags stale' should fail"
690
691         ! $LFS mirror create -N --flags prefer,init $tf ||
692                 error "creating $tf with '--flags prefer,init' should fail"
693
694         ! $LFS mirror create -N --flags ^prefer $tf ||
695                 error "creating $tf with '--flags ^prefer' should fail"
696
697         $LFS mirror create -N -E 1M -S 1M -o0 --flags=prefer -E eof -o1 \
698                            -N -o1 $tf || error "create mirrored file $tf failed"
699
700         verify_comp_attr lcme_flags $tf 0x10001 prefer
701         verify_comp_attr lcme_flags $tf 0x10002 prefer
702
703         # write to the mirrored file and check primary
704         cp /etc/hosts $tf || error "error writing file '$tf'"
705
706         verify_comp_attr lcme_flags $tf 0x20003 stale
707
708         # resync file and check prefer flag
709         $LFS mirror resync $tf || error "error resync-ing file '$tf'"
710
711         cancel_lru_locks osc
712         $LCTL set_param osc.*.stats=clear
713         cat $tf &> /dev/null || error "error reading file '$tf'"
714
715         # verify that the data was provided by OST1 where mirror 1 resides
716         local nr_read=$($LCTL get_param -n osc.$FSNAME-OST0000-osc-[-0-9a-f]*.stats |
717                         awk '/ost_read/{print $2}')
718         [ -n "$nr_read" ] || error "read was not provided by OST1"
719 }
720 run_test 0g "lfs mirror create flags support"
721
722 test_0h() {
723         [ $MDS1_VERSION -lt $(version_code 2.11.57) ] &&
724                 skip "Need MDS version at least 2.11.57"
725
726         local td=$DIR/$tdir
727         local tf=$td/$tfile
728         local ids
729         local i
730
731         # create parent directory
732         test_mkdir $td || error "mkdir $td failed"
733
734         $LFS setstripe -N -E 1M -S 1M --flags=prefer -E eof -N2 $td ||
735                 error "set default mirrored layout on directory $td failed"
736
737         # verify flags are inherited from the directory
738         touch $tf
739
740         verify_comp_attr lcme_flags $tf 0x10001 prefer
741         verify_comp_attr lcme_flags $tf 0x10002 prefer
742
743         # set flags to the first component
744         ! $LFS setstripe --comp-set -I 0x10001 --comp-flags=^prefer,foo $tf ||
745                 error "setting '^prefer,foo' flags should fail"
746
747         ! $LFS getstripe --component-flags=prefer,foo $tf ||
748                 error "getting component(s) with 'prefer,foo' flags should fail"
749
750         $LFS setstripe --comp-set -I 0x10001 --comp-flags=^prefer,stale $tf
751
752         verify_comp_attr lcme_flags $tf 0x10001 stale
753         verify_comp_attr lcme_flags $tf 0x10002 prefer
754
755         $LFS setstripe --comp-set -I0x10001 --comp-flags=^stale $tf &&
756                 error "clearing 'stale' should fail"
757
758         # write and resync file. It can't resync the file directly because the
759         # file state is still 'ro'
760         cp /etc/hosts $tf || error "error writing file '$tf'"
761         $LFS mirror resync $tf || error "error resync-ing file '$tf'"
762
763         $LFS setstripe --comp-set -I 0x20003 --comp-flags=prefer $tf ||
764                 error "error setting flag prefer"
765
766         verify_comp_attr lcme_flags $tf 0x20003 prefer
767
768         $LFS setstripe --comp-set -I 0x20003 --comp-flags=^prefer $tf ||
769                 error "error clearing prefer flag from component 0x20003"
770
771         # MDS disallows setting stale flag on the last non-stale mirror
772         [[ "$MDS1_VERSION" -ge $(version_code 2.12.57) ]] || return 0
773
774         cp /etc/hosts $tf || error "error writing file '$tf'"
775
776         verify_comp_attr lcme_flags $tf 0x10002 prefer
777         verify_comp_attr lcme_flags $tf 0x20003 stale
778         verify_comp_attr lcme_flags $tf 0x30004 stale
779
780         ! $LFS setstripe --comp-set -I 0x10002 --comp-flags=^prefer,stale $tf \
781                 > /dev/null 2>&1 ||
782                 error "setting stale flag on component 0x10002 should fail"
783
784         $LFS mirror resync $tf || error "error resync-ing file '$tf'"
785
786         $LFS setstripe --comp-set -I 0x10001 --comp-flags=stale $tf ||
787                 error "error setting stale flag on component 0x10001"
788         $LFS setstripe --comp-set -I 0x20003 --comp-flags=stale $tf ||
789                 error "error setting stale flag on component 0x20003"
790
791         ! $LFS setstripe --comp-set -I 0x30004 --comp-flags=stale $tf \
792                 > /dev/null 2>&1 ||
793                 error "setting stale flag on component 0x30004 should fail"
794
795         $LFS mirror resync $tf || error "error resync-ing file '$tf'"
796 }
797 run_test 0h "set, clear and test flags for FLR files"
798
799 test_0j() {
800         $LFS mirror create -N2 $DIR/$tfile || error "create $DIR/$tfile failed"
801
802         cp /etc/hosts $DIR/$tfile || error "write to $DIR/$tfile failed"
803         $LFS mirror resync $DIR/$tfile || error "resync $DIR/$tfile failed"
804         cmp /etc/hosts $DIR/$tfile || error "cmp with /etc/hosts failed"
805
806         $LFS mirror read -N2 -o $TMP/$tfile $DIR/$tfile || "read mirror failed"
807         stack_trap "rm -f $TMP/$tfile"
808         cmp $TMP/$tfile $DIR/$tfile || error "cmp with $TMP/$tfile failed"
809         $LFS mirror write -N2 -i /etc/passwd $DIR/$tfile || "write failed"
810         $LFS setstripe --comp-set -I 65537 --comp-flags=stale $DIR/$tfile ||
811                 error "set component 1 stale failed"
812         $LFS mirror resync $DIR/$tfile || error "resync $DIR/$tfile failed"
813         cmp /etc/passwd $DIR/$tfile || error "cmp with /etc/passwd failed"
814 }
815 run_test 0j "test lfs mirror read/write commands"
816
817 test_1() {
818         local tf=$DIR/$tfile
819         local mirror_count=16 # LUSTRE_MIRROR_COUNT_MAX
820         local mirror_create_cmd="$LFS mirror create"
821         local stripes[0]=$OSTCOUNT
822
823         mirror_create_cmd+=" -N -c ${stripes[0]}"
824         for ((i = 1; i < $mirror_count; i++)); do
825                 # add mirrors with different stripes to the file
826                 stripes[$i]=$((RANDOM % OSTCOUNT))
827                 [ ${stripes[$i]} -eq 0 ] && stripes[$i]=1
828
829                 mirror_create_cmd+=" -N -c ${stripes[$i]}"
830         done
831
832         $mirror_create_cmd $tf || error "create mirrored file $tf failed"
833         verify_mirror_count $tf $mirror_count
834
835         # can't create mirrors exceeding LUSTRE_MIRROR_COUNT_MAX
836         $LFS mirror extend -N $tf &&
837                 error "Creating the $((mirror_count+1))th mirror succeeded"
838
839         local ids=($($LFS getstripe $tf | awk '/lcme_id/{print $2}' |
840                         tr '\n' ' '))
841
842         # verify the range of components and stripe counts
843         for ((i = 0; i < $mirror_count; i++)); do
844                 verify_comp_attr stripe-count $tf ${ids[$i]} ${stripes[$i]}
845                 verify_comp_extent $tf ${ids[$i]} 0 EOF
846         done
847 }
848 run_test 1 "create components with setstripe options"
849
850 test_2() {
851         local tf=$DIR/$tfile
852         local tf2=$DIR/$tfile-2
853
854         $LFS setstripe -E 1M -S 1M -E EOF -c 1 $tf
855         $LFS setstripe -E 2M -S 1M -E EOF -c -1 $tf2
856
857         $LFS mirror extend -N -f $tf2 $tf ||
858                 error "merging $tf2 into $tf failed"
859
860         verify_mirror_count $tf 2
861         [[ ! -e $tf2 ]] || error "$tf2 was not unlinked"
862 }
863 run_test 2 "create components from existing files"
864
865 test_3() {
866         [[ $MDSCOUNT -lt 2 ]] && skip "need >= 2 MDTs" && return
867
868         for ((i = 0; i < 2; i++)); do
869                 $LFS mkdir -i $i $DIR/$tdir-$i
870                 $LFS setstripe -E -1 $DIR/$tdir-$i/$tfile
871         done
872
873         $LFS mirror extend -N -f $DIR/$tdir-1/$tfile \
874                 $DIR/$tdir-0/$tfile || error "creating mirrors"
875
876         # mdt doesn't support to cancel layout lock for remote objects, do
877         # it here manually.
878         cancel_lru_locks mdc
879
880         # make sure the mirrorted file was created successfully
881         [[ $($LFS getstripe --component-count $DIR/$tdir-0/$tfile) -eq 2 ]] ||
882                 { $LFS getstripe $DIR/$tdir-0/$tfile;
883                         error "expected 2 components"; }
884
885         # cleanup
886         rm -rf $DIR/$tdir-*
887 }
888 run_test 3 "create components from files located on different MDTs"
889
890 test_4() {
891         local tf=$DIR/$tdir/$tfile
892         local ids=()
893
894         test_mkdir $DIR/$tdir
895
896         # set mirror with setstripe options to directory
897         $LFS mirror create -N2 -E 1M -S 1M -E eof $DIR/$tdir ||
898                 error "set mirror to directory error"
899
900         [ x$($LFS getstripe -v $DIR/$tdir | awk '/lcm_flags/{print $2}') = \
901                 x"mirrored" ] || error "failed to create mirrored dir"
902
903         touch $tf
904         verify_mirror_count $tf 2
905
906         ids=($($LFS getstripe $tf | awk '/lcme_id/{print $2}' | tr '\n' ' '))
907         verify_comp_extent $tf ${ids[0]} 0 1048576
908         verify_comp_extent $tf ${ids[1]} 1048576 EOF
909
910         # sub directory should inherit mirror setting from parent
911         test_mkdir $DIR/$tdir/td
912         [ x$($LFS getstripe -v $DIR/$tdir/td | awk '/lcm_flags/{print $2}') = \
913                 x"mirrored" ] || error "failed to inherit mirror from parent"
914
915         # mirror extend won't be applied to directory
916         $LFS mirror extend -N2 $DIR/$tdir &&
917                 error "expecting mirror extend failure"
918         true
919 }
920 run_test 4 "Make sure mirror attributes can be inhertied from directory"
921
922 test_5() {
923         local tf=$DIR/$tfile
924         local ids=()
925
926         $MULTIOP $tf oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:T12345c ||
927                 error "failed to create file with non-empty layout"
928         $CHECKSTAT -t file -s 12345 $tf || error "size error: expecting 12345"
929
930         $LFS mirror create -N3 $tf || error "failed to attach mirror layout"
931         verify_mirror_count $tf 3
932
933         $CHECKSTAT -t file -s 12345 $tf ||
934                 error "size error after attaching layout "
935 }
936 run_test 5 "Make sure init size work for mirrored layout"
937
938 test_6() {
939         (( $MDS1_VERSION >= $(version_code 2.12.58) )) ||
940                 skip "MDS version older than 2.12.58"
941
942         local tf=$DIR/$tfile
943
944         $LFS mirror create -N -E 1M -L mdt -E eof -S 1M -N -E eof $tf ||
945                 error "failure to create DoM file with mirror"
946
947         $LFS mirror create -N -E 1M -S 1M -E eof -N -E 1M -L mdt -E eof $tf ||
948                 error "failure to create mirrored file with DoM"
949
950         $LFS setstripe -E 1M -L mdt -E eof -S 1M $tf ||
951                 error "failure to create PFL with DoM file"
952         $LFS mirror extend -N2 $tf ||
953                 error "failure to extend mirror with DoM"
954
955         $LFS setstripe -E 1M -L mdt -E eof -S 1M $tf-1 ||
956                 error "failure to create PFL with DoM file"
957         $LFS mirror create -N2 -E 1M -S 1M -E eof $tf-2 ||
958                 error "failure to create mirrored file"
959         $LFS mirror extend -N -f $tf-1 $tf-2 ||
960                 error "failure to extend mirrored file with DoM extent"
961 }
962 run_test 6 "DoM and FLR work together"
963
964 test_7() {
965         local tf=$DIR/$tfile
966
967         # create DoM with setting stripe_size == component size
968         $LFS mirror create -N -E1M -S1M -L mdt -Eeof $tf ||
969                 error "failure to create DoM with stripe_size == comp size"
970         rm -f $tf || error "delete $tf"
971
972         # DoM should not inherit previous component stripe_size
973         $LFS mirror create -N -E4M -S2M -Eeof -N -E1M -L mdt -Eeof $tf ||
974                 error "DoM component shouldn't inherit previous stripe_size"
975 }
976 run_test 7 "Create mirror with DoM component"
977
978 test_21() {
979         local tf=$DIR/$tfile
980         local tf2=$DIR/$tfile-2
981
982         [[ $OSTCOUNT -lt 2 ]] && skip "need >= 2 OSTs" && return
983
984         stack_trap "rm -f $tf $tf2"
985
986         $LFS setstripe -E EOF -o 0 $tf
987         $LFS setstripe -E EOF -o 1 $tf2
988
989         local dd_count=$((RANDOM % 20 + 1))
990         dd if=/dev/zero of=$tf bs=1M count=$dd_count oflag=sync
991         dd if=/dev/zero of=$tf2 bs=1M count=1 seek=$((dd_count - 1)) oflag=sync
992
993         # for zfs - sync OST dataset so that du below will return
994         # accurate results
995         [ "$FSTYPE" = "zfs" ] &&
996                 do_nodes $(comma_list $(osts_nodes)) "$ZPOOL sync"
997
998         local blocks=$(du -kc $tf $tf2 | awk '/total/{print $1}')
999
1000         # add component
1001         $LFS mirror extend -N -f $tf2 $tf ||
1002                 error "merging $tf2 into $tf failed"
1003
1004         # cancel layout lock
1005         cancel_lru_locks mdc
1006
1007         local new_blocks=$(du -k $tf | awk '{print $1}')
1008         [ $new_blocks -eq $blocks ] ||
1009         error "i_blocks error expected: $blocks, actual: $new_blocks"
1010 }
1011 run_test 21 "glimpse should report accurate i_blocks"
1012
1013 get_osc_lock_count() {
1014         local lock_count=0
1015
1016         for idx in "$@"; do
1017                 local osc_name
1018                 local count
1019
1020                 osc_name=${FSNAME}-OST$(printf "%04x" $((idx-1)))-osc-'[-0-9a-f]*'
1021                 count=$($LCTL get_param -n ldlm.namespaces.$osc_name.lock_count)
1022                 lock_count=$((lock_count + count))
1023         done
1024         echo $lock_count
1025 }
1026
1027 test_22() {
1028         local tf=$DIR/$tfile
1029
1030         stack_trap "rm -f $tf"
1031
1032         $LFS setstripe -E EOF -o 0 $tf
1033         dd if=/dev/zero of=$tf bs=1M count=$((RANDOM % 20 + 1))
1034
1035         # add component, two mirrors located on the same OST ;-)
1036         $LFS mirror extend -N -o 0 $tf ||
1037                 error "extending mirrored file $tf failed"
1038
1039         size_blocks=$(stat --format="%b %s" $tf)
1040
1041         cancel_lru_locks mdc
1042         cancel_lru_locks osc
1043
1044         local new_size_blocks=$(stat --format="%b %s" $tf)
1045
1046         # make sure there is no lock cached
1047         [ $(get_osc_lock_count 1) -eq 0 ] || error "glimpse requests were sent"
1048
1049         [ "$new_size_blocks" = "$size_blocks" ] ||
1050                 echo "size expected: $size_blocks, actual: $new_size_blocks"
1051
1052         rm -f $tmpfile
1053 }
1054 run_test 22 "no glimpse to OSTs for READ_ONLY files"
1055
1056 test_31() {
1057         local tf=$DIR/$tfile
1058
1059         $LFS mirror create -N -o 0 -N -o 1 $tf ||
1060                 error "creating mirrored file $tf failed"
1061
1062         #define OBD_FAIL_GLIMPSE_IMMUTABLE 0x1A00
1063         $LCTL set_param fail_loc=0x1A00
1064
1065         local ost_idx
1066         for ((ost_idx = 1; ost_idx <= 2; ost_idx++)); do
1067                 cancel_lru_locks osc
1068                 stop_osts $ost_idx
1069
1070                 local tmpfile=$(mktemp)
1071                 stat --format="%b %s" $tf > $tmpfile  &
1072                 local pid=$!
1073
1074                 local cnt=0
1075                 while [ $cnt -le 5 ]; do
1076                         kill -0 $pid > /dev/null 2>&1 || break
1077                         sleep 1
1078                         ((cnt += 1))
1079                 done
1080                 kill -0 $pid > /dev/null 2>&1 &&
1081                         error "stat process stuck due to unavailable OSTs"
1082
1083                 # make sure glimpse request has been sent
1084                 [ $(get_osc_lock_count 1 2) -ne 0 ] ||
1085                         error "OST $ost_idx: no glimpse request was sent"
1086
1087                 start_osts $ost_idx
1088         done
1089 }
1090 run_test 31 "make sure glimpse request can be retried"
1091
1092 test_32() {
1093         [[ $OSTCOUNT -lt 2 ]] && skip "need >= 2 OSTs" && return
1094         rm -f $DIR/$tfile $DIR/$tfile-2
1095
1096         stack_trap "rm -f $DIR/$tfile"
1097
1098         $LFS setstripe -E EOF -o 0 $DIR/$tfile
1099         dd if=/dev/urandom of=$DIR/$tfile bs=1M count=$((RANDOM % 10 + 2))
1100
1101         local fsize=$(stat -c %s $DIR/$tfile)
1102         [[ $fsize -ne 0 ]] || error "file size is (wrongly) zero"
1103
1104         local cksum=$(md5sum $DIR/$tfile)
1105
1106         # create a new mirror in sync mode
1107         $LFS mirror extend -N -o 1 $DIR/$tfile ||
1108                 error "extending mirrored file $DIR/$tfile failed"
1109
1110         # make sure the mirrored file was created successfully
1111         [ $($LFS getstripe -N $DIR/$tfile) -eq 2 ] ||
1112                 { $LFS getstripe $DIR/$tfile; error "expected 2 mirrors"; }
1113
1114         drop_client_cache
1115         stop_osts 1
1116
1117         # check size is correct, glimpse request should go to the 2nd mirror
1118         $CHECKSTAT -t file -s $fsize $DIR/$tfile ||
1119                 error "file size error $fsize vs. $(stat -c %s $DIR/$tfile)"
1120
1121         echo "reading file from the 2nd mirror and verify checksum"
1122         [[ "$cksum" == "$(md5sum $DIR/$tfile)" ]] ||
1123                 error "checksum error: expected $cksum"
1124
1125         start_osts 1
1126 }
1127 run_test 32 "data should be mirrored to newly created mirror"
1128
1129 test_33a() {
1130         [[ $OSTCOUNT -lt 2 ]] && skip "need >= 2 OSTs" && return
1131
1132         rm -f $DIR/$tfile $DIR/$tfile-2
1133
1134         # create a file with two mirrors
1135         $LFS setstripe -E EOF -o 0 $DIR/$tfile
1136         local max_count=100
1137         local count=0
1138         while [ $count -lt $max_count ]; do
1139                 echo "ost1" >> $DIR/$tfile
1140                 count=$((count + 1));
1141         done
1142
1143         # tmp file that will be used as mirror
1144         $LFS setstripe -E EOF -o 1 $DIR/$tfile-2
1145         count=0
1146         while [ $count -lt $max_count ]; do
1147                 echo "ost2" >> $DIR/$tfile-2
1148                 count=$((count + 1));
1149         done
1150
1151         # create a mirrored file
1152         $LFS mirror extend -N -f $DIR/$tfile-2 $DIR/$tfile &&
1153                 error "merging $DIR/$tfile-2 into $DIR/$tfile" \
1154                       "with verification should fail"
1155         $LFS mirror extend --no-verify -N -f $DIR/$tfile-2 $DIR/$tfile ||
1156                 error "merging $DIR/$tfile-2 into $DIR/$tfile" \
1157                       "without verification failed"
1158
1159         # make sure that $tfile has two mirrors and $tfile-2 does not exist
1160         [ $($LFS getstripe -N $DIR/$tfile) -eq 2 ] ||
1161                 { $LFS getstripe $DIR/$tfile; error "expected count 2"; }
1162
1163         [[ ! -e $DIR/$tfile-2 ]] || error "$DIR/$tfile-2 was not unlinked"
1164
1165         # execpted file size
1166         local fsize=$((5 * max_count))
1167         $CHECKSTAT -t file -s $fsize $DIR/$tfile ||
1168                 error "mirrored file size is not $fsize"
1169
1170         # read file - all OSTs are available
1171         echo "reading file (data can be provided by any ost)... "
1172         local rs=$(cat $DIR/$tfile | head -1)
1173         [[ "$rs" == "ost1" || "$rs" == "ost2" ]] ||
1174                 error "file content error: expected: \"ost1\" or \"ost2\""
1175
1176         # read file again with ost1 failed
1177         stop_osts 1
1178         drop_client_cache
1179
1180         echo "reading file (data should be provided by ost2)..."
1181         local rs=$(cat $DIR/$tfile | head -1)
1182         [[ "$rs" == "ost2" ]] ||
1183                 error "file content error: expected: \"ost2\", actual: \"$rs\""
1184
1185         # remount ost1
1186         start_osts 1
1187
1188         # read file again with ost2 failed
1189         stop_osts 2
1190         drop_client_cache
1191
1192         # check size, glimpse should work
1193         $CHECKSTAT -t file -s $fsize $DIR/$tfile ||
1194                 error "mirrored file size is not $fsize"
1195
1196         echo "reading file (data should be provided by ost1)..."
1197         local rs=$(cat $DIR/$tfile | head -1)
1198         [[ "$rs" == "ost1" ]] ||
1199                 error "file content error: expected: \"ost1\", actual: \"$rs\""
1200
1201         start_osts 2
1202 }
1203 run_test 33a "read can choose available mirror to read"
1204
1205 test_33b() {
1206         [[ $OSTCOUNT -lt 2 ]] && skip "need >= 2 OSTs" && return
1207
1208         rm -f $DIR/$tfile
1209
1210         stack_trap "rm -f $DIR/$tfile" EXIT
1211
1212         # create a file with two mirrors on OST0000 and OST0001
1213         $LFS setstripe -N -Eeof -o0 -N -Eeof -o1 $DIR/$tfile
1214
1215         # make sure that $tfile has two mirrors
1216         [ $($LFS getstripe -N $DIR/$tfile) -eq 2 ] ||
1217                 { $LFS getstripe $DIR/$tfile; error "expected count 2"; }
1218
1219         # write 50M
1220         dd if=/dev/urandom of=$DIR/$tfile bs=2M count=25 ||
1221                 error "write failed for $DIR/$tfile"
1222         $LFS mirror resync $DIR/$tfile || error "resync failed for $DIR/$tfile"
1223         verify_flr_state $DIR/$tfile "ro"
1224         drop_client_cache
1225
1226         ls -l $DIR/$tfile
1227
1228         # read file - all OSTs are available
1229         echo "reading file (data can be provided by any ost)... "
1230         local t1=$SECONDS
1231         time cat $DIR/$tfile > /dev/null || error "read all"
1232         local t2=$SECONDS
1233         ra=$((t2 - t1))
1234
1235         # read file again with ost1 {OST0000} failed
1236         stop_osts 1
1237         drop_client_cache
1238         echo "reading file (data should be provided by ost2)..."
1239         t1=$SECONDS
1240         time cat $DIR/$tfile > /dev/null || error "read ost2"
1241         t2=$SECONDS
1242         r1=$((t2 - t1))
1243
1244         # remount ost1
1245         start_osts 1
1246
1247         # read file again with ost2 {OST0001} failed
1248         stop_osts 2
1249         drop_client_cache
1250
1251         echo "reading file (data should be provided by ost1)..."
1252         t1=$SECONDS
1253         time cat $DIR/$tfile > /dev/null || error "read ost1"
1254         t2=$SECONDS
1255         r2=$((t2 - t1))
1256
1257         # remount ost2
1258         start_osts 2
1259
1260         [ $((r1 * 100)) -gt $((ra * 105)) -a $r1 -gt $((ra + 2)) ] &&
1261                 error "read mirror too slow without ost1, from $ra to $r1"
1262         [ $((r2 * 100)) -gt $((ra * 105)) -a $r2 -gt $((ra + 2)) ] &&
1263                 error "read mirror too slow without ost2, from $ra to $r2"
1264
1265         wait_osc_import_ready client ost2
1266 }
1267 run_test 33b "avoid reading from unhealthy mirror"
1268
1269 test_33c() {
1270         [[ $OSTCOUNT -lt 3 ]] && skip "need >= 3 OSTs" && return
1271
1272         rm -f $DIR/$tfile
1273
1274         stack_trap "rm -f $DIR/$tfile" EXIT
1275
1276         # create a file with two mirrors
1277         # mirror1: {OST0000, OST0001}
1278         # mirror2: {OST0001, OST0002}
1279         $LFS setstripe -N -Eeof -c2 -o0,1 -N -Eeof -c2 -o1,2 $DIR/$tfile
1280
1281         # make sure that $tfile has two mirrors
1282         [ $($LFS getstripe -N $DIR/$tfile) -eq 2 ] ||
1283                 { $LFS getstripe $DIR/$tfile; error "expected count 2"; }
1284
1285         # write 50M
1286         dd if=/dev/urandom of=$DIR/$tfile bs=2M count=25 ||
1287                 error "write failed for $DIR/$tfile"
1288         $LFS mirror resync $DIR/$tfile || error "resync failed for $DIR/$tfile"
1289         verify_flr_state $DIR/$tfile "ro"
1290         drop_client_cache
1291
1292         ls -l $DIR/$tfile
1293
1294         # read file - all OSTs are available
1295         echo "reading file (data can be provided by any ost)... "
1296         time cat $DIR/$tfile > /dev/null || error "read all"
1297
1298         # read file again with ost2 (OST0001) failed
1299         stop_osts 2
1300         drop_client_cache
1301
1302         echo "reading file (data should be provided by ost1 and ost3)..."
1303         time cat $DIR/$tfile > /dev/null || error "read ost1 & ost3"
1304
1305         # remount ost2
1306         start_osts 2
1307
1308         wait_osc_import_ready client ost2
1309 }
1310 run_test 33c "keep reading among unhealthy mirrors"
1311
1312 test_34a() {
1313         [[ $OSTCOUNT -lt 4 ]] && skip "need >= 4 OSTs" && return
1314
1315         rm -f $DIR/$tfile $DIR/$tfile-2 $DIR/$tfile-ref
1316
1317         # reference file
1318         $LFS setstripe -o 0 $DIR/$tfile-ref
1319         dd if=/dev/urandom of=$DIR/$tfile-ref bs=1M count=3
1320
1321         # create a file with two mirrors
1322         $LFS setstripe -E -1 -o 0,1 -S 1M $DIR/$tfile
1323         dd if=$DIR/$tfile-ref of=$DIR/$tfile bs=1M
1324
1325         $LFS setstripe -E -1 -o 2,3 -S 1M $DIR/$tfile-2
1326         dd if=$DIR/$tfile-ref of=$DIR/$tfile-2 bs=1M
1327
1328         $CHECKSTAT -t file -s $((3 * 1024 * 1024)) $DIR/$tfile ||
1329                 error "mirrored file size is not 3M"
1330
1331         # merge a mirrored file
1332         $LFS mirror extend -N -f $DIR/$tfile-2 $DIR/$tfile ||
1333                 error "merging $DIR/$tfile-2 into $DIR/$tfile failed"
1334
1335         cancel_lru_locks osc
1336
1337         # stop two OSTs, so the 2nd stripe of the 1st mirror and
1338         # the 1st stripe of the 2nd mirror will be inaccessible, ...
1339         stop_osts 2 3
1340
1341         echo "comparing files ... "
1342
1343         # however, read can still return the correct data. It should return
1344         # the 1st stripe from mirror 1 and 2st stripe from mirror 2.
1345         cmp -n 2097152 <(rwv -f $DIR/$tfile -r -o -n 1 2097152) \
1346                 $DIR/$tfile-ref || error "file reading error"
1347
1348         start_osts 2 3
1349 }
1350 run_test 34a "read mirrored file with multiple stripes"
1351
1352 test_34b() {
1353         [[ $OSTCOUNT -lt 4 ]] && skip "need >= 4 OSTs" && return
1354
1355         rm -f $DIR/$tfile $DIR/$tfile-2 $DIR/$tfile-ref
1356
1357         # reference file
1358         $LFS setstripe -o 0 $DIR/$tfile-ref
1359         dd if=/dev/urandom of=$DIR/$tfile-ref bs=1M count=3
1360
1361         $LFS setstripe -E 1M -S 1M -o 0 -E eof -o 1 $DIR/$tfile
1362         dd if=$DIR/$tfile-ref of=$DIR/$tfile bs=1M
1363
1364         $LFS setstripe -E 1M -S 1M -o 2 -E eof -o 3 $DIR/$tfile-2
1365         dd if=$DIR/$tfile-ref of=$DIR/$tfile-2 bs=1M
1366
1367         $CHECKSTAT -t file -s $((3 * 1024 * 1024)) $DIR/$tfile ||
1368                 error "mirrored file size is not 3M"
1369
1370         # merge a mirrored file
1371         $LFS mirror extend -N -f $DIR/$tfile-2 $DIR/$tfile ||
1372                 error "merging $DIR/$tfile-2 into $DIR/$tfile failed"
1373
1374         cancel_lru_locks osc
1375
1376         # stop two OSTs, so the 2nd component of the 1st mirror and
1377         # the 1st component of the 2nd mirror will be inaccessible, ...
1378         stop_osts 2 3
1379
1380         echo "comparing files ... "
1381
1382         # however, read can still return the correct data. It should return
1383         # the 1st stripe from mirror 1 and 2st stripe from mirror 2.
1384         cmp -n 2097152 <(rwv -f $DIR/$tfile -r -o -n 1 2097152) \
1385                 $DIR/$tfile-ref || error "file reading error"
1386
1387         start_osts 2 3
1388 }
1389 run_test 34b "read mirrored file with multiple components"
1390
1391 test_35() {
1392         local tf=$DIR/$tfile
1393
1394         $LFS setstripe -E eof $tf
1395
1396         # add an out-of-sync mirror to the file
1397         $LFS mirror extend -N -c 2 $tf ||
1398                 error "extending mirrored file $tf failed"
1399
1400         $MULTIOP $tf oO_WRONLY:c ||
1401                 error "write open a mirrored file failed"
1402
1403         # truncate file should return error
1404         $TRUNCATE $tf 100 || error "error truncating a mirrored file"
1405 }
1406 run_test 35 "allow to write to mirrored files"
1407
1408 verify_ost_layout_version() {
1409         local tf=$1
1410
1411         # get file layout version
1412         local flv=$($LFS getstripe $tf | awk '/lcm_layout_gen/{print $2}')
1413
1414         # layout version from OST objects
1415         local olv=$($MULTIOP $tf oXc | awk '/ostlayoutversion/{print $2}')
1416
1417         [ $flv -eq $olv ] || error "layout version mismatch: $flv vs. $olv"
1418 }
1419
1420 create_file_36() {
1421         local tf
1422
1423         for tf in "$@"; do
1424                 $LFS setstripe -E 1M -S 1M -E 2M -E 4M -E eof -c -1 $tf
1425                 $LFS setstripe -E 3M -S 1M -E 6M -E eof -c -1 $tf-tmp
1426
1427                 $LFS mirror extend -N -f $tf-tmp $tf ||
1428                         error "merging $tf-tmp into $tf failed"
1429         done
1430 }
1431
1432 test_36() {
1433         local tf=$DIR/$tfile
1434
1435         stack_trap "rm -f $tf $tf-2 $tf-3"
1436
1437         create_file_36 $tf $tf-2 $tf-3
1438
1439         [ $($LFS getstripe -N $tf) -gt 1 ] || error "wrong mirror count"
1440
1441         # test case 1 - check file write and verify layout version
1442         $MULTIOP $tf oO_WRONLY:c ||
1443                 error "write open a mirrored file failed"
1444
1445         # write open file should not return error
1446         $MULTIOP $tf oO_WRONLY:w1024Yc || error "write mirrored file error"
1447
1448         # instantiate components should work
1449         dd if=/dev/zero of=$tf bs=1M count=12 || error "write file error"
1450
1451         # verify OST layout version
1452         verify_ost_layout_version $tf
1453
1454         # test case 2
1455         local mds_facet=mds$(($($LFS getstripe -m $tf-2) + 1))
1456
1457         local delay_sec=10
1458         do_facet $mds_facet $LCTL set_param fail_val=$delay_sec
1459
1460         #define OBD_FAIL_FLR_LV_DELAY 0x1A01
1461         do_facet $mds_facet $LCTL set_param fail_loc=0x1A01
1462
1463         # write should take at least $fail_loc seconds and succeed
1464         local st=$(date +%s)
1465         $MULTIOP $tf-2 oO_WRONLY:w1024Yc || error "write mirrored file error"
1466
1467         [ $(date +%s) -ge $((st+delay_sec)) ] ||
1468                 error "write finished before layout version is transmitted"
1469
1470         # verify OST layout version
1471         verify_ost_layout_version $tf
1472
1473         do_facet $mds_facet $LCTL set_param fail_loc=0
1474
1475         # test case 3
1476         mds_idx=mds$(($($LFS getstripe -m $tf-3) + 1))
1477
1478         #define OBD_FAIL_FLR_LV_INC 0x1A02
1479         do_facet $mds_facet $LCTL set_param fail_loc=0x1A02
1480
1481         # write open file should return error
1482         $MULTIOP $tf-3 oO_WRONLY:O_SYNC:w1024c &&
1483                 error "write a mirrored file succeeded" || true
1484
1485         do_facet $mds_facet $LCTL set_param fail_loc=0
1486 }
1487 run_test 36 "write to mirrored files"
1488
1489 create_files_37() {
1490         local tf
1491         local fsize=$1
1492
1493         echo "create test files with size $fsize .."
1494
1495         shift
1496         for tf in "$@"; do
1497                 $LFS setstripe -E 1M -S 1M -c 1 -E eof -c -1 $tf
1498
1499                 dd if=/dev/urandom of=$tf bs=1M count=16 &> /dev/null
1500                 $TRUNCATE $tf $fsize
1501         done
1502 }
1503
1504 test_37()
1505 {
1506         [ $MDS1_VERSION -lt $(version_code 2.11.57) ] &&
1507                 skip "Need MDS version at least 2.11.57"
1508
1509         local tf=$DIR/$tfile
1510         local tf2=$DIR/$tfile-2
1511         local tf3=$DIR/$tfile-3
1512         local tf4=$DIR/$tfile-4
1513
1514         stack_trap "rm -f $tf $tf2 $tf3 $tf4"
1515
1516         create_files_37 $((RANDOM + 15 * 1048576)) $tf $tf2 $tf3
1517         rm -f $tf4
1518         cp $tf $tf4
1519
1520         # assume the mirror id will be 1, 2, and 3
1521         declare -A checksums
1522         checksums[1]=$(cat $tf | md5sum)
1523         checksums[2]=$(cat $tf2 | md5sum)
1524         checksums[3]=$(cat $tf3 | md5sum)
1525
1526         printf '%s\n' "${checksums[@]}"
1527
1528         # merge these files into a mirrored file
1529         $LFS mirror extend --no-verify -N -f $tf2 $tf ||
1530                 error "merging $tf2 into $tf failed"
1531         $LFS mirror extend --no-verify -N -f $tf3 $tf ||
1532                 error "merging $tf3 into $tf failed"
1533
1534         get_mirror_ids $tf
1535
1536         # verify mirror read, checksums should equal to the original files'
1537         echo "Verifying mirror read .."
1538
1539         local sum
1540         for i in ${mirror_array[@]}; do
1541                 $LCTL set_param ldlm.namespaces.*.lru_size=clear > /dev/null
1542                 sum=$($LFS mirror read -N $i $tf | md5sum)
1543                 [ "$sum" = "${checksums[$i]}" ] ||
1544                         error "$i: mismatch: \'${checksums[$i]}\' vs. \'$sum\'"
1545         done
1546
1547         # verify mirror write
1548         echo "Verifying mirror write .."
1549         $LFS mirror write -N2 $tf < $tf4
1550
1551         sum=$($LFS mirror read -N2 $tf | md5sum)
1552         [[ "$sum" = "${checksums[1]}" ]] ||
1553                 error "2: mismatch \'${checksums[1]}\' vs. \'$sum\'"
1554
1555         # verify mirror copy, write to this mirrored file will invalidate
1556         # the other two mirrors
1557         echo "Verifying mirror copy .."
1558
1559         local osts=$(comma_list $(osts_nodes))
1560
1561         $LFS mirror copy -i ${mirror_array[0]} -o-1 $tf ||
1562                 error "mirror copy error"
1563
1564         # verify copying is successful by checking checksums
1565         remount_client $MOUNT
1566         for i in ${mirror_array[@]}; do
1567                 sum=$($LFS mirror read -N $i $tf | md5sum)
1568                 [ "$sum" = "${checksums[1]}" ] ||
1569                         error "$i: mismatch checksum after copy \'$sum\'"
1570         done
1571
1572         rm -f $tf
1573 }
1574 run_test 37 "mirror I/O API verification"
1575
1576 test_38() {
1577         local tf=$DIR/$tfile
1578         local ref=$DIR/${tfile}-ref
1579
1580         stack_trap "rm -f $tf $ref"
1581
1582         $LFS setstripe -E 1M -S 1M -c 1 -E 4M -c 2 -E eof -c -1 $tf ||
1583                 error "creating $tf failed"
1584         $LFS setstripe -E 2M -S 1M -c 1 -E 6M -c 2 -E 8M -c -1 -E eof -c -1 \
1585                 $tf-2 || error "creating $tf-2 failed"
1586         $LFS setstripe -E 4M -c 1 -E 8M -c 2 -E eof -c -1 $tf-3 ||
1587                 error "creating $tf-3 failed"
1588
1589         # instantiate all components
1590         $LFS mirror extend -N -f $tf-2 $tf ||
1591                 error "merging $tf-2 into $tf failed"
1592         $LFS mirror extend -N -f $tf-3 $tf ||
1593                 error "merging $tf-3 into $tf failed"
1594         $LFS mirror extend -N -c 1 $tf ||
1595                 error "extending mirrored file $tf failed"
1596
1597         verify_flr_state $tf "ro"
1598
1599         dd if=/dev/urandom of=$ref  bs=1M count=16 &> /dev/null
1600
1601         local fsize=$((RANDOM << 8 + 1048576))
1602         $TRUNCATE $ref $fsize
1603
1604         local ref_cksum=$(cat $ref | md5sum)
1605
1606         # case 1: verify write to mirrored file & resync work
1607         cp $ref $tf || error "copy from $ref to $f error"
1608         verify_flr_state $tf "wp"
1609
1610         local file_cksum=$(cat $tf | md5sum)
1611         [ "$file_cksum" = "$ref_cksum" ] || error "write failed, cksum mismatch"
1612
1613         get_mirror_ids $tf
1614         echo "mirror IDs: ${mirror_array[@]}"
1615
1616         local valid_mirror stale_mirror id mirror_cksum
1617         for id in "${mirror_array[@]}"; do
1618                 mirror_cksum=$($LFS mirror read -N $id $tf | md5sum)
1619                 [ "$ref_cksum" == "$mirror_cksum" ] &&
1620                         { valid_mirror=$id; continue; }
1621
1622                 stale_mirror=$id
1623         done
1624
1625         [ -z "$stale_mirror" ] && error "stale mirror doesn't exist"
1626         [ -z "$valid_mirror" ] && error "valid mirror doesn't exist"
1627
1628         $LFS mirror resync $tf || error "resync failed"
1629         verify_flr_state $tf "ro"
1630
1631         mirror_cksum=$($LFS mirror read -N $stale_mirror $tf | md5sum)
1632         [ "$file_cksum" = "$ref_cksum" ] || error "resync failed"
1633
1634         # case 2: inject an error to make mirror_io exit after changing
1635         # the file state to sync_pending so that we can start a concurrent
1636         # write.
1637         $MULTIOP $tf oO_WRONLY:w$((RANDOM % 1048576 + 1024))c
1638         verify_flr_state $tf "wp"
1639
1640         mirror_io resync -e resync_start $tf && error "resync succeeded"
1641         verify_flr_state $tf "sp"
1642
1643         # from sync_pending to write_pending
1644         $MULTIOP $tf oO_WRONLY:w$((RANDOM % 1048576 + 1024))c
1645         verify_flr_state $tf "wp"
1646
1647         mirror_io resync -e resync_start $tf && error "resync succeeded"
1648         verify_flr_state $tf "sp"
1649
1650         # from sync_pending to read_only
1651         $LFS mirror resync $tf || error "resync failed"
1652         verify_flr_state $tf "ro"
1653 }
1654 run_test 38 "resync"
1655
1656 test_39() {
1657         local tf=$DIR/$tfile
1658
1659         rm -f $tf
1660         $LFS mirror create -N2 -E1m -c1 -S1M -E-1 $tf ||
1661         error "create PFL file $tf failed"
1662
1663         verify_mirror_count $tf 2
1664         verify_comp_count $tf 4
1665
1666         rm -f $tf || error "delete $tf failed"
1667 }
1668 run_test 39 "check FLR+PFL (a.k.a. PFLR) creation"
1669
1670 test_40() {
1671         local tf=$DIR/$tfile
1672         local ops
1673
1674         for ops in "conv=notrunc" ""; do
1675                 rm -f $tf
1676
1677                 $LFS mirror create -N -E 2M -S 1M -E 4M -E -1 --flags=prefer \
1678                                    -N -E 1M -E 2M -E 4M -E -1 $tf ||
1679                         error "create PFLR file $tf failed"
1680                 dd if=/dev/zero of=$tf $ops bs=1M seek=2 count=1 ||
1681                         error "write PFLR file $tf failed"
1682
1683                 lfs getstripe -vy $tf
1684
1685                 local flags
1686
1687                 # file mirror state should be write_pending
1688                 flags=$($LFS getstripe -v $tf | awk '/lcm_flags:/ { print $2 }')
1689                 [ $flags = wp ] ||
1690                 error "file mirror state $flags"
1691                 # the 1st component (in mirror 1) should be inited
1692                 verify_comp_attr lcme_flags $tf 0x10001 init
1693                 # the 2nd component (in mirror 1) should be inited
1694                 verify_comp_attr lcme_flags $tf 0x10002 init
1695                 # the 3rd component (in mirror 1) should be uninited
1696                 verify_comp_attr lcme_flags $tf 0x10003 prefer
1697                 # the 4th component (in mirror 2) should be inited
1698                 verify_comp_attr lcme_flags $tf 0x20004 init
1699                 # the 5th component (in mirror 2) should be uninited
1700                 verify_comp_attr lcme_flags $tf 0x20005 0
1701                 # the 6th component (in mirror 2) should be stale
1702                 verify_comp_attr lcme_flags $tf 0x20006 stale
1703                 # the 7th component (in mirror 2) should be uninited
1704                 if [[ x$ops = "xconv=notrunc" ]]; then
1705                         verify_comp_attr lcme_flags $tf 0x20007 0
1706                 elif [[ x$ops = "x" ]]; then
1707                         verify_comp_attr lcme_flags $tf 0x20007 stale
1708                 fi
1709         done
1710
1711         rm -f $tf || error "delete $tf failed"
1712 }
1713 run_test 40 "PFLR rdonly state instantiation check"
1714
1715 test_41() {
1716         local tf=$DIR/$tfile
1717
1718         stack_trap "rm -f $tf $tf-1"
1719
1720         rm -f $tf $tf-1
1721         echo " **create two FLR files $tf $tf-1"
1722         $LFS mirror create -N -E 2M -S 1M -E 4M -E -1 \
1723                            -N -E 1M -E 2M -E 3M -E -1 $tf ||
1724                 error "create PFLR file $tf failed"
1725         $LFS mirror create -N -E 2M -S 1M -E eof \
1726                            -N -E 1M -E eof --flags prefer \
1727                            -N -E 4m -E eof $tf-1 ||
1728                 error "create PFLR file $tf-1 failed"
1729
1730         # file should be in ro status
1731         echo " **verify files be RDONLY"
1732         verify_flr_state $tf "ro"
1733         verify_flr_state $tf-1 "ro"
1734
1735         # write data in [0, 2M)
1736         dd if=/dev/zero of=$tf bs=1M count=2 conv=notrunc ||
1737                 error "writing $tf failed"
1738         dd if=/dev/urandom of=$tf-1 bs=1M count=4 conv=notrunc ||
1739                 error "writing $tf-1 failed"
1740
1741         local sum0=$(cat $tf-1 | md5sum)
1742
1743         echo " **verify files be WRITE_PENDING"
1744         verify_flr_state $tf "wp"
1745         verify_flr_state $tf-1 "wp"
1746
1747         # file should have stale component
1748         echo " **verify files have stale component"
1749         $LFS getstripe $tf | grep lcme_flags | grep stale > /dev/null ||
1750                 error "after writing $tf, it does not contain stale component"
1751         $LFS getstripe $tf-1 | grep lcme_flags | grep stale > /dev/null ||
1752                 error "after writing $tf-1, it does not contain stale component"
1753
1754         echo " **full resync"
1755         $LFS mirror resync $tf $tf-1 || error "mirror resync $tf $tf-1 failed"
1756
1757         echo " **verify $tf-1 data consistency in all mirrors"
1758         for i in 1 2 3; do
1759                 local sum=$($LFS mirror read -N$i $tf-1 | md5sum)
1760                 [[ "$sum" = "$sum0" ]] ||
1761                         error "$tf-1.$i: checksum mismatch: $sum != $sum0"
1762         done
1763
1764         echo " **verify files be RDONLY"
1765         verify_flr_state $tf "ro"
1766         verify_flr_state $tf-1 "ro"
1767
1768         # file should not have stale component
1769         echo " **verify files do not contain stale component"
1770         $LFS getstripe $tf | grep lcme_flags | grep stale &&
1771                 error "after resyncing $tf, it contains stale component"
1772         $LFS getstripe $tf-1 | grep lcme_flags | grep stale &&
1773                 error "after resyncing $tf, it contains stale component"
1774
1775         # verify partial resync
1776         echo " **write $tf-1 for partial resync test"
1777         dd if=/dev/zero of=$tf-1 bs=1M count=2 conv=notrunc ||
1778                 error "writing $tf-1 failed"
1779
1780         echo " **only resync mirror 2"
1781         verify_flr_state $tf-1 "wp"
1782         $LFS mirror resync --only 2 $tf-1 ||
1783                 error "resync mirror 2 of $tf-1 failed"
1784         verify_flr_state $tf "ro"
1785
1786         # resync synced mirror
1787         echo " **resync mirror 2 again"
1788         $LFS mirror resync --only 2 $tf-1 ||
1789                 error "resync mirror 2 of $tf-1 failed"
1790         verify_flr_state $tf "ro"
1791         echo " **verify $tf-1 contains stale component"
1792         $LFS getstripe $tf-1 | grep lcme_flags | grep stale > /dev/null ||
1793                 error "after writing $tf-1, it does not contain stale component"
1794
1795         echo " **full resync $tf-1"
1796         $LFS mirror resync $tf-1 || error "resync of $tf-1 failed"
1797         verify_flr_state $tf "ro"
1798         echo " **full resync $tf-1 again"
1799         $LFS mirror resync $tf-1 || error "resync of $tf-1 failed"
1800         echo " **verify $tf-1 does not contain stale component"
1801         $LFS getstripe $tf | grep lcme_flags | grep stale &&
1802                 error "after resyncing $tf, it contains stale component"
1803
1804         return 0
1805 }
1806 run_test 41 "lfs mirror resync check"
1807
1808 test_42() {
1809         [[ $OSTCOUNT -lt 4 ]] && skip "need >= 4 OSTs" && return
1810
1811         local td=$DIR/$tdir
1812         local tf=$td/$tfile
1813         local mirror_cmd="$LFS mirror verify"
1814         local i
1815
1816         stack_trap "rm -rf $td"
1817
1818         # create parent directory
1819         mkdir $td || error "mkdir $td failed"
1820
1821         $mirror_cmd &> /dev/null && error "no file name given"
1822         $mirror_cmd $tf &> /dev/null && error "cannot stat file $tf"
1823         $mirror_cmd $td &> /dev/null && error "$td is not a regular file"
1824
1825         # create mirrored files
1826         $LFS mirror create -N -E 4M -S 1M -E 10M -E EOF $tf ||
1827                 error "create mirrored file $tf failed"
1828         $LFS mirror create -N -E 2M -S 1M -E EOF \
1829                            -N -E 6M -E 8M -E EOF \
1830                            -N -E 16M -E EOF $tf-1 ||
1831                 error "create mirrored file $tf-1 failed"
1832         $LFS mirror create -N -c 2 -o 1,3 -N -S 2M -c -1 $tf-2 ||
1833                 error "create mirrored file $tf-2 failed"
1834
1835         # write data in [0, 10M)
1836         for i in $tf $tf-1 $tf-2; do
1837                 yes | dd of=$i bs=1M count=10 iflag=fullblock conv=notrunc ||
1838                         error "write $i failed"
1839         done
1840
1841         # resync the mirrored files
1842         $LFS mirror resync $tf-1 $tf-2 ||
1843                 error "resync $tf-1 $tf-2 failed"
1844
1845         # verify the mirrored files
1846         $mirror_cmd $tf-1 $tf-2 ||
1847                 error "verify $tf-1 $tf-2 failed"
1848
1849         get_mirror_ids $tf-1
1850         $mirror_cmd --only ${mirror_array[0]} $tf-1 &> /dev/null &&
1851                 error "at least 2 mirror ids needed with '--only' option"
1852         $mirror_cmd --only ${mirror_array[0]},${mirror_array[1]} $tf-1 $tf-2 \
1853                 &> /dev/null &&
1854                 error "'--only' option cannot be used upon multiple files"
1855         $mirror_cmd --only 65534,${mirror_array[0]},65535 $tf-1 &&
1856                 error "invalid specified mirror ids"
1857
1858         # change the content of $tf and merge it into $tf-1
1859         for i in 6 10; do
1860                 echo a | dd of=$tf bs=1M seek=$i conv=notrunc ||
1861                         error "change $tf with seek=$i failed"
1862                 echo b | dd of=$tf-1 bs=1M seek=$i conv=notrunc ||
1863                         error "change $tf-1 with seek=$i failed"
1864         done
1865
1866         $LFS mirror resync $tf-1 || error "resync $tf-1 failed"
1867         $LFS mirror extend --no-verify -N -f $tf $tf-1 ||
1868                 error "merge $tf into $tf-1 failed"
1869
1870         # verify the mirrored files
1871         echo "Verify $tf-1 without -v option:"
1872         $mirror_cmd $tf-1 &&
1873                 error "verify $tf-1 should fail" || echo "PASS"
1874
1875         echo "Verify $tf-1 with -v option:"
1876         $mirror_cmd -v $tf-1 &&
1877                 error "verify $tf-1 should fail"
1878
1879         get_mirror_ids $tf-1
1880         echo "Verify $tf-1 with --only option:"
1881         $mirror_cmd -v --only ${mirror_array[1]},${mirror_array[-1]} $tf-1 &&
1882                 error "verify $tf-1 with mirror ${mirror_array[1]} and" \
1883                       "${mirror_array[-1]} should fail"
1884
1885         $mirror_cmd --only ${mirror_array[0]},${mirror_array[1]} $tf-1 ||
1886                 error "verify $tf-1 with mirror ${mirror_array[0]} and" \
1887                       "${mirror_array[1]} should succeed"
1888
1889         # set stale components in $tf-1
1890         for i in 0x40002 0x40003; do
1891                 $LFS setstripe --comp-set -I$i --comp-flags=stale $tf-1 ||
1892                         error "set stale flag on component $i failed"
1893         done
1894
1895         # verify the mirrored file
1896         echo "Verify $tf-1 with stale components:"
1897         $mirror_cmd -vvv $tf-1 ||
1898                 error "verify $tf-1 with stale components should succeed"
1899
1900         echo "Verify $tf-1 with stale components and --only option:"
1901         $mirror_cmd -vvv --only ${mirror_array[1]},${mirror_array[-1]} $tf-1 ||
1902                 error "verify $tf-1 with mirror ${mirror_array[1]} and" \
1903                       "${mirror_array[-1]} should succeed"
1904 }
1905 run_test 42 "lfs mirror verify"
1906
1907 # inactivate one OST && write && restore the OST
1908 write_file_43() {
1909         local file=$1
1910         local ost=$2
1911         local PARAM="osp.${FSNAME}-OST000${ost}-osc-M*.active"
1912         local wait
1913
1914         wait=$(do_facet $SINGLEMDS \
1915                 "$LCTL get_param -n lod.*MDT0000-*.qos_maxage")
1916         wait=${wait%%[^0-9]*}
1917
1918         echo "  **deactivate OST$ost, waiting for $((wait*2+2)) seconds"
1919         $(do_facet $SINGLEMDS "$LCTL set_param -n $PARAM 0")
1920         # lod_qos_statfs_update needs 2*$wait seconds to refresh targets statfs
1921         sleep $(($wait * 2 + 2))
1922         echo "  **write $file"
1923         dd if=/dev/zero of=$file bs=1M count=1 || error "write $file failed"
1924         echo "  **restore activating OST$ost, waiting for $((wait*2+2)) seconds"
1925         $(do_facet $SINGLEMDS "$LCTL set_param -n $PARAM 1")
1926         sleep $((wait * 2 + 2))
1927
1928         local flags=$($LFS getstripe -v $file | awk '/lcm_flags:/ { print $2 }')
1929         [ $flags = wp ] || error "file mirror state $flags != wp"
1930 }
1931
1932 test_43a() {
1933         [ $OSTCOUNT -lt 3 ] && skip "needs >= 3 OSTs" && return
1934
1935         local tf=$DIR/$tfile
1936         local flags
1937
1938         rm -f $tf
1939         ##   mirror 0  ost (0, 1)
1940         ##   mirror 1  ost (1, 2)
1941         ##   mirror 2  ost (2, 0)
1942         $LFS mirror create -N -Eeof -c2 -o0,1 -N -Eeof -c2 -o1,2 \
1943                 -N -Eeof -c2 -o2,0 $tf ||
1944                 error "create 3 mirrors file $tf failed"
1945
1946         ################## OST0 ###########################################
1947         write_file_43 $tf 0
1948         echo "  **verify components"
1949         verify_comp_attr lcme_flags $tf 0x10001 init,stale
1950         verify_comp_attr lcme_flags $tf 0x20002 init
1951         verify_comp_attr lcme_flags $tf 0x30003 init,stale
1952
1953         # resync
1954         echo "  **resync $tf"
1955         $LFS mirror resync $tf
1956         flags=$($LFS getstripe -v $tf | awk '/lcm_flags:/ { print $2 }')
1957         [ $flags = ro ] || error "file mirror state $flags != ro"
1958
1959         ################## OST1 ###########################################
1960         write_file_43 $tf 1
1961         echo "  **verify components"
1962         verify_comp_attr lcme_flags $tf 0x10001 init,stale
1963         verify_comp_attr lcme_flags $tf 0x20002 init,stale
1964         verify_comp_attr lcme_flags $tf 0x30003 init
1965
1966         # resync
1967         echo "  **resync $tf"
1968         $LFS mirror resync $tf
1969         flags=$($LFS getstripe -v $tf | awk '/lcm_flags:/ { print $2 }')
1970         [ $flags = ro ] || error "file mirror state $flags != ro"
1971
1972         ################## OST2 ###########################################
1973         write_file_43 $tf 2
1974         echo "  **verify components"
1975         verify_comp_attr lcme_flags $tf 0x10001 init
1976         verify_comp_attr lcme_flags $tf 0x20002 init,stale
1977         verify_comp_attr lcme_flags $tf 0x30003 init,stale
1978 }
1979 run_test 43a "mirror pick on write"
1980
1981 test_43b() {
1982         local tf=$DIR/$tdir/$tfile
1983
1984         test_mkdir $DIR/$tdir
1985         rm -f $tf
1986         stack_trap "rm -rf $tf"
1987
1988         # create 3 mirrors FLR file, the first 2 mirrors are preferred
1989         $LFS setstripe -N -Eeof --flags=prefer -N -Eeof --flags=prefer \
1990                 -N -Eeof $tf || error "create 3 mirrors file $tf failed"
1991         verify_flr_state $tf "ro"
1992
1993         echo " ** write to $tf"
1994         dd if=/dev/zero of=$tf bs=1M count=1 || error "write $tf failed"
1995         verify_flr_state $tf "wp"
1996
1997         echo " ** resync $tf"
1998         $LFS mirror resync $tf || error "resync $tf failed"
1999         verify_flr_state $tf "ro"
2000 }
2001 run_test 43b "allow writing to multiple preferred mirror file"
2002
2003 test_44() {
2004         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2005         rm -rf $DIR/$tdir
2006         rm -rf $DIR/$tdir-1
2007         local tf=$DIR/$tdir/$tfile
2008         local tf1=$DIR/$tdir-1/$tfile-1
2009
2010         stack_trap "rm -rf $tf $tf1"
2011
2012         $LFS setdirstripe -i 0 -c 1 $DIR/$tdir ||
2013                 error "create directory failed"
2014         $LFS setdirstripe -i 1 -c 1 $DIR/$tdir-1 ||
2015                 error "create remote directory failed"
2016         rm -f $tf $tf1 $tf.mirror~2
2017         # create file with 4 mirrors
2018         $LFS mirror create -N -E 2M -S 1M -E 4M -E -1 \
2019                            -N -E 1M -E 2M -E 3M -E -1 -N2 $tf ||
2020                 error "create PFLR file $tf failed"
2021
2022         # file should be in ro status
2023         verify_flr_state $tf "ro"
2024
2025         # write data in [0, 3M)
2026         dd if=/dev/urandom of=$tf bs=1M count=3 conv=notrunc ||
2027                 error "writing $tf failed"
2028
2029         verify_flr_state $tf "wp"
2030
2031         # disallow destroying the last non-stale mirror
2032         ! $LFS mirror delete --mirror-id 1 $tf > /dev/null 2>&1 ||
2033                 error "destroying mirror 1 should fail"
2034
2035         # synchronize all mirrors of the file
2036         $LFS mirror resync $tf || error "mirror resync $tf failed"
2037
2038         verify_flr_state $tf "ro"
2039
2040         # split mirror 1
2041         $LFS mirror split --mirror-id 1 -f $tf1 $tf ||
2042                 error "split to $tf1 failed"
2043
2044         local idx0=$($LFS getstripe -m $tf)
2045         local idx1=$($LFS getstripe -m $tf1)
2046
2047         [[ x$idx0 == x0 ]] || error "$tf is not on MDT0"
2048         [[ x$idx1 == x1 ]] || error "$tf1 is not on MDT1"
2049
2050         # verify mirror count
2051         verify_mirror_count $tf 3
2052         verify_mirror_count $tf1 1
2053
2054         $LFS mirror split --mirror-id 2 $tf ||
2055                 error "split mirror 2 failed"
2056
2057         verify_mirror_count $tf 2
2058         verify_mirror_count $tf.mirror~2 1
2059
2060         $LFS setstripe --comp-set -I 0x30008 --comp-flags=stale $tf ||
2061                 error "setting stale flag on component 0x30008 failed"
2062
2063         # disallow destroying the last non-stale mirror
2064         ! $LFS mirror split --mirror-id 4 -d $tf > /dev/null 2>&1 ||
2065                 error "destroying mirror 4 should fail"
2066
2067         $LFS mirror resync $tf || error "resynchronizing $tf failed"
2068
2069         $LFS mirror split --mirror-id 3 -d $tf ||
2070                 error "destroying mirror 3 failed"
2071         verify_mirror_count $tf 1
2072
2073         # verify splitted file contains the same content as the orig file does
2074         diff $tf $tf1 || error "splited file $tf1 diffs from $tf"
2075         diff $tf $tf.mirror~2 ||
2076                 error "splited file $tf.mirror~2 diffs from $tf"
2077 }
2078 run_test 44 "lfs mirror split check"
2079
2080 test_44c() {
2081         local tf=$DIR/$tdir/$tfile
2082
2083         stack_trap "rm -f $tf"
2084
2085         [ $MDS1_VERSION -ge $(version_code 2.14.52) ] ||
2086                 skip "Need MDS version at least 2.14.52"
2087
2088         [ "$FSTYPE" != "zfs" ] || skip "ZFS file's block number is not accurate"
2089
2090         mkdir -p $DIR/$tdir || error "create directroy failed"
2091
2092         dd if=/dev/zero of=$tf bs=1M count=10 || error "dd write $tfile failed"
2093         sync
2094         block1=$(( $(stat -c "%b*%B" $tf) ))
2095         echo " ** before mirror ops, file blocks=$((block1/1024)) KiB"
2096
2097         $LFS mirror extend -N2 -c1 $tf || error "mirror extend $tfile failed"
2098         sync
2099         block2=$(( $(stat -c "%b*%B" $tf) ))
2100         echo " ** after mirror extend, file blocks=$((block2/1024)) KiB"
2101
2102         $LFS mirror split -d --mirror-id=2 $tf ||
2103                 error "mirror split $tfile failed"
2104         $LFS mirror split -d --mirror-id=3 $tf ||
2105                 error "mirror split $tfile failed"
2106         sync
2107         lfs getsom $tf
2108         block3=$(( $(stat -c "%b*%B" $tf) ))
2109         echo " ** after mirror split, file blocks=$((block3/1024)) KiB"
2110
2111         [[ $block1 -eq $block3 ]] ||
2112                 error "mirror split does not reduce block# $block3 != $block1"
2113 }
2114 run_test 44c "lfs mirror split reduces block size of a file"
2115
2116 test_45() {
2117         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs"
2118
2119         local file=$DIR/$tdir/$tfile
2120         local dir=$DIR/$tdir/$dir
2121         local temp=$DIR/$tdir/template
2122         rm -rf $DIR/$tdir
2123         test_mkdir $DIR/$tdir
2124
2125         $LFS setstripe -N -E1m -S1m -c2 -o0,1 -E2m -Eeof -N -E4m -Eeof \
2126                 -N -E3m -S1m -Eeof -N -E8m -Eeof $file ||
2127                         error "Create $file failed"
2128
2129         verify_yaml_layout $file $file.copy $temp "1. FLR file"
2130         rm -f $file $file.copy
2131
2132         $LFS setstripe -N -E1m -S1m -c2 -o0,1 -E2m -Eeof -N -E4m -Eeof \
2133                 -N -E3m -S1m -Eeof -N -E8m --flags=prefer -Eeof $file ||
2134                         error "Create $file failed"
2135
2136         verify_yaml_layout $file $file.copy $temp "2. FLR file with flags"
2137 }
2138 run_test 45 "Verify setstripe/getstripe with YAML with FLR file"
2139
2140 verify_46() {
2141         local src=$1
2142         local dst=$2
2143         local msg_prefix=$3
2144
2145         $LFS setstripe --copy=$src $dst || error "setstripe $dst failed"
2146
2147         local layout1=$(get_layout_param $src)
2148         local layout2=$(get_layout_param $dst)
2149         # compare their layout info
2150         [ "$layout1" == "$layout2" ] ||
2151                 error "$msg_prefix $src <=> $dst layouts are not equal"
2152 }
2153
2154 test_46() {
2155         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
2156
2157         local file=$DIR/$tdir/$tfile
2158         test_mkdir $DIR/$tdir
2159
2160         ########################### 1. PFL file #############################
2161         echo "  ** 1. PFL file"
2162         rm -f $file
2163         $LFS setstripe -E1m -S 1M -c2 -o0,1 -E2m -c2 -E3m -o1,0 -E4m -c1 -E-1 \
2164                 $file || error "1. Create PFL $file failed"
2165
2166         rm -f $file.copy
2167         verify_46 $file $file.copy "1. PFL file"
2168
2169         ########################### 2. plain file ###########################
2170         echo "  ** 2. plain file"
2171         rm -f $file
2172         $LFS setstripe -c2 -o0,1 -i1 $file ||
2173                 error "2. Create plain $file failed"
2174
2175         rm -f $file.copy
2176         verify_46 $file $file.copy "2. plain file"
2177
2178         ########################### 3. FLR file #############################
2179         echo "  ** 3. FLR file"
2180         rm -f $file
2181         $LFS setstripe -N -E1m -S 1M -c2 -o0,1 -E4m -c1 -Eeof -N -E16m -Eeof \
2182                 $file || error "3. Create FLR $file failed"
2183
2184         rm -f $file.copy
2185         verify_46 $file $file.copy "3. FLR file"
2186
2187         local dir=$DIR/$tdir/dir
2188         ########################### 4. PFL dir ##############################
2189         echo "  ** 4. PFL dir"
2190         test_mkdir $dir
2191         $LFS setstripe -E1m -S 1M -c2 -E2m -c1 -E-1 $dir ||
2192                 error "4. setstripe PFL $dir failed"
2193
2194         test_mkdir $dir.copy
2195         verify_46 $dir $dir.copy "4. PFL dir"
2196
2197         ########################### 5. plain dir ############################
2198         echo "  ** 5. plain dir"
2199         $LFS setstripe -c2 -i-1 $dir || error "5. setstripe plain $dir failed"
2200
2201         verify_46 $dir $dir.copy "5. plain dir"
2202
2203         ########################### 6. FLR dir ##############################
2204         echo "  ** 6. FLR dir"
2205         $LFS setstripe -N -E1m -S 1M -c2 -E2m -c1 -Eeof -N -E4m -Eeof $dir ||
2206                 error "6. setstripe FLR $dir failed"
2207
2208         verify_46 $dir $dir.copy "6. FLR dir"
2209
2210         (( $MDS1_VERSION >= $(version_code 2.13.53.205) )) ||
2211                 echo "server version $MDS1_VERSION does not support SEL" &&
2212                 return 0
2213
2214         ########################### 7. SEL file ##############################
2215         echo "  ** 7. SEL file"
2216         rm -f $file
2217         $LFS setstripe -E256M -S 1M -c2 -o0,1 -z 64M -E-1 -o1,0 -z 128M \
2218                 $file || error "Create $file failed"
2219
2220         rm -f $file.copy
2221         verify_46 $file $file.copy "7. SEL file"
2222
2223         ########################### 8. SEL dir ##############################
2224         echo "  ** 8. SEL dir"
2225         $LFS setstripe -E256M -S 1M -c2 -z 64M -E-1 -z 128M \
2226                 $dir || error "setstripe $dir failed"
2227
2228         verify_46 $dir $dir.copy "8. SEL dir"
2229
2230         ########################### 9. FLR SEL file ##########################
2231         echo "  ** 9. FLR SEL file"
2232         rm -f $file
2233         $LFS setstripe -N -E256M -c2 -z 64M -E-1 -z 128M \
2234                 -N -E1G -c4 -z128M -E-1 -z256M $file || error "Create $file failed"
2235
2236         rm -f $file.copy
2237         verify_46 $file $file.copy "9. SEL file"
2238
2239         ########################### 10. FLR SEL dir #########################
2240         echo "  ** 10. FLR SEL dir"
2241         $LFS setstripe -N -E256M -c2 -z 64M -E-1 -z 128M \
2242                 -N -E1G -c4 -z128M -E-1 -z256M $dir || error "Create $file failed"
2243
2244         verify_46 $dir $dir.copy "10. SEL dir"
2245 }
2246 run_test 46 "Verify setstripe --copy option"
2247
2248 test_47() {
2249         [ $OSTCOUNT -lt 3 ] && skip "needs >= 3 OSTs" && return
2250
2251         local file=$DIR/$tdir/$tfile
2252         local ids
2253         local ost
2254         local osts
2255
2256         test_mkdir $DIR/$tdir
2257
2258         # test case 1:
2259         rm -f $file
2260         # mirror1: [comp0]ost0,    [comp1]ost1 and ost2
2261         # mirror2: [comp2]    ,    [comp3] should not use ost1 or ost2
2262         $LFS mirror create -N -E2m -c1 -o0 --flags=prefer -Eeof -c2 -o1,2 \
2263                 -N -E2m -c1 -Eeof -c1 $file || error "create FLR $file failed"
2264         ids=($($LFS getstripe $file | awk '/lcme_id/{print $2}' | tr '\n' ' '))
2265
2266         dd if=/dev/zero of=$file bs=1M count=3 || error "dd $file failed"
2267         $LFS mirror resync $file || error "resync $file failed"
2268
2269         ost=$($LFS getstripe -I${ids[2]} $file | awk '/l_ost_idx/{print $5}')
2270         if [[ x$ost == "x0," ]]; then
2271                 $LFS getstripe $file
2272                 error "component ${ids[2]} objects allocated on $ost " \
2273                       "shouldn't on OST0"
2274         fi
2275
2276         ost=$($LFS getstripe -I${ids[3]} $file | awk '/l_ost_idx/{print $5}')
2277         if [[ x$ost == "x1," || x$ost == "x2," ]]; then
2278                 $LFS getstripe $file
2279                 error "component ${ids[3]} objects allocated on $ost " \
2280                       "shouldn't on OST1 or on OST2"
2281         fi
2282
2283         ## test case 2:
2284         rm -f $file
2285         # mirror1: [comp0]    [comp1]
2286         # mirror2: [comp2]    [comp3]
2287         # mirror3: [comp4]    [comp5]
2288         # mirror4: [comp6]    [comp7]
2289         $LFS mirror create -N4 -E1m -c1 -Eeof -c1 $file ||
2290                 error "create FLR $file failed"
2291         ids=($($LFS getstripe $file | awk '/lcme_id/{print $2}' | tr '\n' ' '))
2292
2293         dd if=/dev/zero of=$file bs=1M count=3 || error "dd $file failed"
2294         $LFS mirror resync $file || error "resync $file failed"
2295
2296         for ((i = 0; i < 6; i++)); do
2297                 osts[$i]=$($LFS getstripe -I${ids[$i]} $file |
2298                         awk '/l_ost_idx/{print $5}')
2299         done
2300         # comp[0],comp[2],comp[4] should use different osts
2301         if [[ ${osts[0]} == ${osts[2]} || ${osts[0]} == ${osts[4]} ||
2302               ${osts[2]} == ${osts[4]} ]]; then
2303                 $LFS getstripe $file
2304                 error "component ${ids[0]}, ${ids[2]}, ${ids[4]} have objects "\
2305                       "allocated on duplicated OSTs"
2306         fi
2307         # comp[1],comp[3],comp[5] should use different osts
2308         if [[ ${osts[1]} == ${osts[3]} || ${osts[1]} == ${osts[5]} ||
2309               ${osts[3]} == ${osts[5]} ]]; then
2310                 $LFS getstripe $file
2311                 error "component ${ids[1]}, ${ids[3]}, ${ids[5]} have objects "\
2312                       "allocated on duplicated OSTs"
2313         fi
2314
2315         return 0
2316 }
2317 run_test 47 "Verify mirror obj alloc"
2318
2319 test_48() {
2320         [ $MDS1_VERSION -lt $(version_code 2.11.55) ] &&
2321                 skip "Need MDS version at least 2.11.55"
2322
2323         local tf=$DIR/$tfile
2324
2325         rm -f $tf
2326         echo " ** create 2 mirrors FLR file $tf"
2327         $LFS mirror create -N -E2M -Eeof --flags prefer \
2328                            -N -E1M -Eeof $tf ||
2329                 error "create FLR file $tf failed"
2330
2331         echo " ** write it"
2332         dd if=/dev/urandom of=$tf bs=1M count=3 || error "write $tf failed"
2333         verify_flr_state $tf "wp"
2334
2335         local sum0=$(md5sum < $tf)
2336
2337         echo " ** resync the file"
2338         $LFS mirror resync $tf
2339
2340         echo " ** snapshot mirror 2"
2341         $LFS setstripe --comp-set -I 0x20003 --comp-flags=nosync $tf
2342
2343         echo " ** write it again"
2344         dd if=/dev/urandom of=$tf bs=1M count=3 || error "write $tf failed"
2345         echo " ** resync it again"
2346         $LFS mirror resync $tf
2347
2348         verify_flr_state $tf "wp"
2349         verify_comp_attr lcme_flags $tf 0x20003 nosync,stale
2350
2351         local sum1=$($LFS mirror read -N1 $tf | md5sum)
2352         local sum2=$($LFS mirror read -N2 $tf | md5sum)
2353
2354         echo " ** verify mirror 2 doesn't change"
2355         echo "original checksum: $sum0"
2356         echo "mirror 1 checksum: $sum1"
2357         echo "mirror 2 checksum: $sum2"
2358         [[ $sum0 = $sum2 ]] ||
2359                 error "original checksum: $sum0, mirror 2 checksum: $sum2"
2360         echo " ** mirror 2 stripe info"
2361         $LFS getstripe -v --mirror-index=2 $tf
2362
2363         echo " ** resync mirror 2"
2364         $LFS mirror resync --only 2 $tf
2365
2366         verify_flr_state $tf "ro"
2367         verify_comp_attr lcme_flags $tf 0x20003 nosync,^stale
2368
2369         sum1=$($LFS mirror read -N1 $tf | md5sum)
2370         sum2=$($LFS mirror read -N2 $tf | md5sum)
2371
2372         echo " ** verify mirror 2 resync-ed"
2373         echo "original checksum: $sum0"
2374         echo "mirror 1 checksum: $sum1"
2375         echo "mirror 2 checksum: $sum2"
2376         [[ $sum1 = $sum2 ]] ||
2377                 error "mirror 1 checksum: $sum1, mirror 2 checksum: $sum2"
2378         echo " ** mirror 2 stripe info"
2379         $LFS getstripe -v --mirror-index=2 $tf
2380 }
2381 run_test 48 "Verify snapshot mirror"
2382
2383 OLDIFS="$IFS"
2384 cleanup_49() {
2385         trap 0
2386         IFS="$OLDIFS"
2387 }
2388
2389 test_49a() {
2390         [ "$OSTCOUNT" -lt "2" ] && skip_env "needs >= 2 OSTs"
2391
2392         trap cleanup_49 EXIT RETURN
2393
2394         local file=$DIR/$tfile
2395
2396         $LFS setstripe -N -E eof -c1 -o1 -N -E eof -c1 -o0 $file ||
2397                 error "setstripe on $file"
2398
2399         dd if=/dev/zero of=$file bs=1M count=1 || error "dd failed for $file"
2400         $LFS mirror resync $file
2401
2402         filefrag -ves $file || error "filefrag $file failed"
2403         filefrag_op=$(filefrag -ve -k $file |
2404                       sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
2405
2406 #Filesystem type is: bd00bd0
2407 #File size of /mnt/lustre/f49a.sanity-flr is 1048576 (1024 blocks of 1024 bytes)
2408 # ext:     device_logical:        physical_offset: length:  dev: flags:
2409 #   0:        0..    1023:    1572864..   1573887:   1024: 0001: net,eof
2410 #   1:        0..    1023:    1572864..   1573887:   1024: 0000: last,net,eof
2411 #/mnt/lustre/f49a.sanity-flr: 2 extents found
2412
2413         last_lun=$(echo $filefrag_op | cut -d: -f5)
2414         IFS=$'\n'
2415         tot_len=0
2416         num_luns=1
2417         for line in $filefrag_op; do
2418                 frag_lun=$(echo $line | cut -d: -f5)
2419                 ext_len=$(echo $line | cut -d: -f4)
2420                 if [[ "$frag_lun" != "$last_lun" ]]; then
2421                         if (( tot_len != 1024 )); then
2422                                 cleanup_49
2423                                 error "$file: OST$last_lun $tot_len != 1024"
2424                         else
2425                                 (( num_luns += 1 ))
2426                                 tot_len=0
2427                         fi
2428                 fi
2429                 (( tot_len += ext_len ))
2430                 last_lun=$frag_lun
2431         done
2432         if (( num_luns != 2 || tot_len != 1024 )); then
2433                 cleanup_49
2434                 error "$file: $num_luns != 2, $tot_len != 1024 on OST$last_lun"
2435         fi
2436
2437         echo "FIEMAP on $file succeeded"
2438 }
2439 run_test 49a "FIEMAP upon FLR file"
2440
2441 test_50A() {    # EX-2179
2442         mkdir -p $DIR/$tdir
2443
2444         local file=$DIR/$tdir/$tfile
2445
2446         $LFS setstripe -c1 -i0 $file || error "setstripe $file failed"
2447
2448         $LFS mirror extend -N -c1 -i1 $file ||
2449                 error "extending mirror for $file failed"
2450
2451         local olv=$($LFS getstripe $file | awk '/lcm_layout_gen/{print $2}')
2452
2453         fail mds1
2454
2455         $LFS mirror split -d --mirror-id=1 $file || error "split $file failed"
2456
2457         local flv=$($LFS getstripe $file | awk '/lcm_layout_gen/{print $2}')
2458
2459         echo "$file layout generation from $olv to $flv"
2460         (( $flv != ($olv + 1) )) &&
2461                 error "split does not increase layout gen from $olv to $flv"
2462
2463         dd if=/dev/zero of=$file bs=1M count=1 || error "write $file failed"
2464
2465         $LFS getstripe -v $file || error "getstripe $file failed"
2466 }
2467 run_test 50A "mirror split update layout generation"
2468
2469 test_50a() {
2470         $LCTL get_param osc.*.import | grep -q 'connect_flags:.*seek' ||
2471                 skip "OST does not support SEEK_HOLE"
2472
2473         local file=$DIR/$tdir/$tfile
2474         local offset
2475         local sum1
2476         local sum2
2477         local blocks
2478
2479         mkdir -p $DIR/$tdir
2480
2481         echo " ** create striped file $file"
2482         $LFS setstripe -E 1M -c1 -S 1M -E eof -c2 -S1M $file ||
2483                 error "cannot create file with PFL layout"
2484         echo " ** write 1st data chunk at 1M boundary"
2485         dd if=/dev/urandom of=$file bs=1k count=20 seek=1021 ||
2486                 error "cannot write data at 1M boundary"
2487         echo " ** write 2nd data chunk at 2M boundary"
2488         dd if=/dev/urandom of=$file bs=1k count=20 seek=2041 ||
2489                 error "cannot write data at 2M boundary"
2490         echo " ** create hole at the file end"
2491         $TRUNCATE $file 3700000 || error "truncate fails"
2492
2493         echo " ** verify sparseness"
2494         offset=$(lseek_test -d 1000 $file)
2495         echo "    first data offset: $offset"
2496         [[ $offset == 1000 ]] &&
2497                 error "src: data is not expected at offset $offset"
2498         offset=$(lseek_test -l 3500000 $file)
2499         echo "    hole at the end: $offset"
2500         [[ $offset == 3500000 ]] ||
2501                 error "src: hole is expected at offset $offset"
2502
2503         echo " ** extend the file with new mirror"
2504         # migrate_copy_data() is used
2505         $LFS mirror extend -N -E 2M -S 1M -E 1G -S 2M -E eof $file ||
2506                 error "cannot create mirror"
2507         $LFS getstripe $file | grep lcme_flags | grep stale > /dev/null &&
2508                 error "$file still has stale component"
2509
2510         # check migrate_data_copy() was correct
2511         sum_1=$($LFS mirror read -N 1 $file | md5sum)
2512         sum_2=$($LFS mirror read -N 2 $file | md5sum)
2513         [[ $sum_1 == $sum_2 ]] ||
2514                 error "data mismatch: \'$sum_1\' vs. \'$sum_2\'"
2515
2516         # stale first mirror
2517         $LFS setstripe --comp-set -I0x10001 --comp-flags=stale $file
2518         $LFS setstripe --comp-set -I0x10002 --comp-flags=stale $file
2519
2520         echo " ** verify mirror #2 sparseness"
2521         offset=$(lseek_test -d 1000 $file)
2522         echo "    first data offset: $offset"
2523         [[ $offset == 1000 ]] &&
2524                 error "dst: data is not expected at offset $offset"
2525         offset=$(lseek_test -l 3500000 $file)
2526         echo "    hole at the end: $offset"
2527         [[ $offset == 3500000 ]] ||
2528                 error "dst: hole is expected at offset $offset"
2529
2530         echo " ** copy mirror #2 to mirror #1"
2531         $LFS mirror copy -i 2 -o 1 $file || error "mirror copy fails"
2532         $LFS getstripe $file | grep lcme_flags | grep stale > /dev/null &&
2533                 error "$file still has stale component"
2534
2535         # check llapi_mirror_copy_many correctness
2536         sum_1=$($LFS mirror read -N 1 $file | md5sum)
2537         sum_2=$($LFS mirror read -N 2 $file | md5sum)
2538         [[ $sum_1 == $sum_2 ]] ||
2539                 error "data mismatch: \'$sum_1\' vs. \'$sum_2\'"
2540
2541         # stale 1st component of mirror #2 before lseek call
2542         $LFS setstripe --comp-set -I0x20001 --comp-flags=stale $file
2543
2544         echo " ** verify mirror #1 sparseness again"
2545         offset=$(lseek_test -d 1000 $file)
2546         echo "    first data offset: $offset"
2547         [[ $offset == 1000 ]] &&
2548                 error "dst: data is not expected at offset $offset"
2549         offset=$(lseek_test -l 3500000 $file)
2550         echo "    hole at the end: $offset"
2551         [[ $offset == 3500000 ]] ||
2552                 error "dst: hole is expected at offset $offset"
2553
2554         cancel_lru_locks osc
2555
2556         blocks=$(stat -c%b $file)
2557         echo " ** final consumed blocks: $blocks"
2558         # for 3.5Mb file consumes ~6000 blocks, use 1000 to check
2559         # that file is still sparse
2560         (( blocks < 1000 )) ||
2561                 error "Mirrored file consumes $blocks blocks"
2562
2563         rm $file
2564 }
2565 run_test 50a "mirror extend/copy preserves sparseness"
2566
2567 test_50b() {
2568         $LCTL get_param osc.*.import | grep -q 'connect_flags:.*seek' ||
2569                 skip "OST does not support SEEK_HOLE"
2570
2571         local file=$DIR/$tdir/$tfile
2572         local offset
2573         local sum1
2574         local sum2
2575         local blocks
2576
2577         mkdir -p $DIR/$tdir
2578
2579         echo " ** create mirrored file $file"
2580         $LFS mirror create -N -E1M -c1 -S1M -E eof \
2581                 -N -E2M -S1M -E eof -S2M $file ||
2582                 error "cannot create mirrored file"
2583         echo " ** write data chunk at 1M boundary"
2584         dd if=/dev/urandom of=$file bs=1k count=20 seek=1021 ||
2585                 error "cannot write data at 1M boundary"
2586         echo " ** create hole at the file end"
2587         $TRUNCATE $file 3700000 || error "truncate fails"
2588
2589         echo " ** verify sparseness"
2590         offset=$(lseek_test -d 1000 $file)
2591         echo "    first data offset: $offset"
2592         [[ $offset == 1000 ]] &&
2593                 error "src: data is not expected at offset $offset"
2594         offset=$(lseek_test -l 3500000 $file)
2595         echo "    hole at the end: $offset"
2596         [[ $offset == 3500000 ]] ||
2597                 error "src: hole is expected at 3500000"
2598
2599         echo " ** resync mirror #2 to mirror #1"
2600         $LFS mirror resync $file
2601
2602         # check llapi_mirror_copy_many correctness
2603         sum_1=$($LFS mirror read -N 1 $file | md5sum)
2604         sum_2=$($LFS mirror read -N 2 $file | md5sum)
2605         [[ $sum_1 == $sum_2 ]] ||
2606                 error "data mismatch: \'$sum_1\' vs. \'$sum_2\'"
2607
2608         cancel_lru_locks osc
2609
2610         blocks=$(stat -c%b $file)
2611         echo " ** consumed blocks: $blocks"
2612         # without full punch() support the first component can be not sparse
2613         # but the last one should be, so file should use far fewer blocks
2614         (( blocks < 5000 )) ||
2615                 error "Mirrored file consumes $blocks blocks"
2616
2617         # stale first component in mirror #1
2618         $LFS setstripe --comp-set -I0x10001 --comp-flags=stale,nosync $file
2619         echo " ** truncate file down"
2620         $TRUNCATE $file 0
2621         echo " ** write data chunk at 2M boundary"
2622         dd if=/dev/urandom of=$file bs=1k count=20 seek=2041 conv=notrunc ||
2623                 error "cannot write data at 2M boundary"
2624         echo " ** resync mirror #2 to mirror #1 with nosync 1st component"
2625         $LFS mirror resync $file || error "mirror rsync fails"
2626         # first component is still stale
2627         $LFS getstripe $file | grep 'lcme_flags:.*stale' > /dev/null ||
2628                 error "$file still has no stale component"
2629         echo " ** resync mirror #2 to mirror #1 again"
2630         $LFS setstripe --comp-set -I0x10001 --comp-flags=stale,^nosync $file
2631         $LFS mirror resync $file || error "mirror rsync fails"
2632         $LFS getstripe $file | grep 'lcme_flags:.*stale' > /dev/null &&
2633                 error "$file still has stale component"
2634
2635         # check llapi_mirror_copy_many correctness
2636         sum_1=$($LFS mirror read -N 1 $file | md5sum)
2637         sum_2=$($LFS mirror read -N 2 $file | md5sum)
2638         [[ $sum_1 == $sum_2 ]] ||
2639                 error "data mismatch: \'$sum_1\' vs. \'$sum_2\'"
2640
2641         cancel_lru_locks osc
2642
2643         blocks=$(stat -c%b $file)
2644         echo " ** final consumed blocks: $blocks"
2645         # while the first component can lose sparseness, the last one should
2646         # not, so whole file should still use far fewer blocks in total
2647         (( blocks < 3000 )) ||
2648                 error "Mirrored file consumes $blocks blocks"
2649         rm $file
2650 }
2651 run_test 50b "mirror rsync handles sparseness"
2652
2653 test_50c() {
2654         local tf=$DIR/$tdir/$tfile
2655
2656         test_mkdir $DIR/$tdir
2657
2658         $LFS setstripe -N2 -c-1 $tf || error "create FLR $tf failed"
2659         verify_flr_state $tf "ro"
2660
2661         if [[ "$FSTYPE" == "ldiskfs" ]]; then
2662                 # ZFS does not support fallocate for now
2663                 fallocate -p -o 1MiB -l 1MiB $tf ||
2664                         error "punch hole in $tf failed"
2665                 verify_flr_state $tf "wp"
2666         fi
2667
2668         dd if=/dev/zero of=$tf bs=4096 count=4 || error "write $tf failed"
2669         $LFS mirror resync $tf || error "mirror resync $tf failed"
2670         verify_flr_state $tf "ro"
2671
2672         $MULTIOP $tf OSMWUc || error "$MULTIOP $tf failed"
2673         verify_flr_state $tf "wp"
2674 }
2675 run_test 50c "punch_hole/mmap_write stale other mirrors"
2676
2677 test_50d() {
2678         $LCTL get_param osc.*.import | grep -q 'connect_flags:.*seek' ||
2679                 skip "OST does not support SEEK_HOLE"
2680         (( $LINUX_VERSION_CODE > $(version_code 3.0.0) )) ||
2681                 skip "client kernel does not support SEEK_HOLE"
2682
2683         local file=$DIR/$tdir/$tfile
2684         local offset
2685         local prt
2686         local rc
2687
2688         mkdir -p $DIR/$tdir
2689
2690         echo " ** create mirrored file $file"
2691         $LFS mirror create -N -E1M -c1 -S1M -E eof \
2692                 -N -E2M -S1M -E eof -S2M $file ||
2693                 error "cannot create mirrored file"
2694         echo " ** write data chunk at 1M boundary"
2695         dd if=/dev/urandom of=$file bs=1k count=20 seek=1021 ||
2696                 error "cannot write data at 1M boundary"
2697         echo " ** create hole at the file start"
2698         prt=$(fallocate -p -o 0 -l 1M $file 2>&1)
2699         rc=$?
2700
2701         if [[ $rc -eq 0 ]]; then
2702                 verify_flr_state $file "wp"
2703         elif [[ ! $prt =~ "unsupported" ]]; then
2704                 error "punch hole in $file failed: $prt"
2705         else
2706                 skip "Fallocate punch is not supported"
2707         fi
2708
2709         echo " ** verify sparseness"
2710         offset=$(lseek_test -d 1000 $file)
2711         echo "    first data offset: $offset"
2712         (( $offset >= 1024 * 1024 )) ||
2713                 error "src: data is not expected at offset $offset"
2714
2715         echo " ** resync mirror #2"
2716         $LFS mirror resync $file
2717
2718         # check llapi_mirror_copy_many correctness
2719         sum_1=$($LFS mirror read -N 1 $file | md5sum)
2720         sum_2=$($LFS mirror read -N 2 $file | md5sum)
2721         [[ $sum_1 == $sum_2 ]] ||
2722                 error "data mismatch: \'$sum_1\' vs. \'$sum_2\'"
2723
2724         cancel_lru_locks osc
2725
2726         # stale first component in mirror #1
2727         $LFS setstripe --comp-set -I0x10001 --comp-flags=stale,nosync $file
2728         echo " ** verify sparseness of mirror #2"
2729         offset=$(lseek_test -d 1000 $file)
2730         echo "    first data offset: $offset"
2731         (( $offset >= 1024 * 1024 )) ||
2732                 error "src: data is not expected at offset $offset"
2733 }
2734 run_test 50d "mirror rsync keep holes"
2735
2736 test_60a() {
2737         $LCTL get_param osc.*.import | grep -q 'connect_flags:.*seek' ||
2738                 skip "OST does not support SEEK_HOLE"
2739
2740         local file=$DIR/$tdir/$tfile
2741         local old_size=2147483648 # 2GiB
2742         local new_size
2743
2744         mkdir -p $DIR/$tdir
2745         dd if=/dev/urandom of=$file bs=4096 count=1 seek=$((134217728 / 4096))
2746         $TRUNCATE $file $old_size
2747
2748         $LFS mirror extend -N -c 1 $file
2749         dd if=/dev/urandom of=$file bs=4096 count=1 seek=$((134217728 / 4096)) conv=notrunc
2750         $LFS mirror resync $file
2751
2752         new_size=$(stat --format='%s' $file)
2753         if ((new_size != old_size)); then
2754                 error "new_size ($new_size) is not equal to old_size ($old_size)"
2755         fi
2756
2757         rm $file
2758 }
2759 run_test 60a "mirror extend sets correct size on sparse file"
2760
2761 get_flr_layout_gen() {
2762         getfattr -n lustre.lov --only-values $tf 2>/dev/null |
2763                 od -tx4 | awk '/000000/ { print "0x"$4; exit; }'
2764 }
2765
2766 check_layout_gen() {
2767         local tf=$1
2768
2769         local v1=$(get_flr_layout_gen $tf)
2770         local v2=$($LFS getstripe -v $tf | awk '/lcm_layout_gen/ { print $2 }')
2771
2772         [[ $v1 -eq $v2 ]] ||
2773                 error "$tf in-memory layout gen $v1 != $v2 after $2"
2774 }
2775
2776 test_60b() {
2777         local tf=$DIR/$tdir/$tfile
2778
2779         test_mkdir $DIR/$tdir
2780
2781         $LFS setstripe -Eeof $tf || error "setstripe $tf failed"
2782
2783         for ((i = 0; i < 20; i++)); do
2784                 $LFS mirror extend -N $tf ||
2785                         error "extending mirror for $tf failed"
2786                 check_layout_gen $tf "extend"
2787
2788                 $LFS mirror split -d --mirror-id=$((i+1)) $tf ||
2789                         error "split $tf failed"
2790                 check_layout_gen $tf "split"
2791         done
2792 }
2793 run_test 60b "mirror merge/split cancel client's in-memory layout gen"
2794
2795 get_times_61() {
2796         stat --format='%X %Y %Z' $file || error "$file: cannot get times"
2797 }
2798
2799 check_times_61() {
2800         local file=$1
2801         local -a old=( $2 $3 $4 )
2802         local -a new
2803
2804         new=( $(get_times_61 $file) )
2805         ((${old[0]} == ${new[0]})) ||
2806                 error "$file: atime: old '${old[0]}' != new '${new[0]}'"
2807
2808         ((${old[1]} == ${new[1]})) ||
2809                 error "$file: mtime: old '${old[1]}' != new '${new[1]}'"
2810 }
2811
2812 test_61a() { # LU-14508
2813         local file=$DIR/$tdir/$tfile
2814         local -a tim
2815         local nap=5
2816
2817         mkdir -p $DIR/$tdir
2818         echo "create $file"
2819         $LFS setstripe -E1M -Eeof $file || error "setstripe $file failed"
2820         echo "create $file-2"
2821         $LFS setstripe -E2M -Eeof $file-2 || error "setstripe $file-2 failed"
2822
2823         echo XXX > $file || error "write $file failed"
2824         chown $RUNAS_ID $DIR/$tdir $file || error "chown $file failed"
2825
2826         echo "sleep $nap seconds, then cat $tfile"
2827         sleep $nap
2828         cat $file || error "cat $file failed"
2829
2830         echo "sleep $nap seconds, then re-write $tfile"
2831         sleep $nap
2832         echo XXXX > $file || error "write $file failed"
2833         cp -p $file $file-2 || error "copy $file-2 failed"
2834
2835         echo "sleep $nap seconds"
2836         sleep $nap
2837
2838         tim=( $(get_times_61 $file) )
2839
2840         echo "mirror merge $tfile-2 to $tfile and test timestamps"
2841         $LFS mirror extend -N -f $file-2 $file ||
2842                 error "cannot mirror merge $file-2 to $file"
2843         check_times_61 $file ${tim[@]}
2844
2845         echo "mirror extend $tfile and test timestamps"
2846         $LFS mirror extend -N -c1 -i1 $file ||
2847                 error "cannot extend mirror $file"
2848         check_times_61 $file ${tim[@]}
2849
2850         echo "migrate $tfile and test timestamps"
2851         $LFS migrate -n $file || error "cannot migrate $file"
2852         check_times_61 $file ${tim[@]}
2853
2854         echo "normal user migrate $tfile and test timestamps"
2855         $RUNAS $LFS migrate -n $file || error "cannot migrate $file"
2856         check_times_61 $file ${tim[@]}
2857 }
2858 run_test 61a "mirror extend and migrate preserve timestamps"
2859
2860 test_61b() { # LU-14508
2861         local file=$DIR/$tdir/$tfile
2862         local -a tim
2863         local nap=5
2864
2865         mkdir -p $DIR/$tdir
2866         echo "create $file"
2867         echo XXX > $file || error "create $file failed"
2868         chown $RUNAS_ID $DIR/$tdir $file || error "chown $file failed"
2869
2870         echo "sleep $nap seconds, then cat $tfile"
2871         sleep $nap
2872         cat $file || error "cat $file failed"
2873
2874         echo "sleep $nap seconds, then re-write $tfile"
2875         sleep $nap
2876         echo XXXX > $file || error "write $file failed"
2877
2878         echo "sleep $nap seconds, then test timestamps"
2879         sleep $nap
2880
2881         tim=( $(get_times_61 $file) )
2882
2883         echo "mirror extend $tfile and test timestamps"
2884         $LFS mirror extend -N -c1 -i1 $file ||
2885                 error "cannot extend mirror $file"
2886         check_times_61 $file ${tim[@]}
2887
2888         echo "mirror split $tfile and test timestamps"
2889         $LFS mirror split -d --mirror-id=1 $file ||
2890                 error "cannot split mirror 1 off $file"
2891         check_times_61 $file ${tim[@]}
2892
2893         echo "normal user mirror extend $tfile and test timestamps"
2894         $RUNAS $LFS mirror extend -N -c1 -i1 $file ||
2895                 error "cannot extend mirror $file"
2896         check_times_61 $file ${tim[@]}
2897 }
2898 run_test 61b "mirror extend and split preserve timestamps"
2899
2900 test_61c() { # LU-14508
2901         local file=$DIR/$tdir/$tfile
2902         local -a tim
2903         local nap=5
2904
2905         mkdir -p $DIR/$tdir
2906         echo "create $file"
2907         echo XXX > $file || error "create $file failed"
2908         chown $RUNAS_ID $DIR/$tdir $file || error "chown $file failed"
2909
2910         echo "sleep $nap seconds, then cat $tfile"
2911         sleep $nap
2912         cat $file || error "cat $file failed"
2913
2914         echo "sleep $nap seconds, then mirror extend $tfile and write it"
2915         sleep $nap
2916         $LFS mirror extend -N -c1 -i1 $file ||
2917                 error "cannot extend mirror $file"
2918         echo XXXX > $file || error "write $file failed"
2919
2920         echo "sleep $nap seconds, then resync $tfile and test timestamps"
2921         tim=( $(get_times_61 $file) )
2922         sleep $nap
2923         $LFS mirror resync $file || error "cannot resync mirror $file"
2924         check_times_61 $file ${tim[@]}
2925
2926         echo XXXXXX > $file || error "write $tfile failed"
2927
2928         echo "normal user resync $tfile and test timestamps"
2929         tim=( $(get_times_61 $file) )
2930         $RUNAS $LFS mirror resync $file || error "cannot resync mirror $file"
2931         check_times_61 $file ${tim[@]}
2932 }
2933 run_test 61c "mirror resync preserves timestamps"
2934
2935 test_70() {
2936         local tf=$DIR/$tdir/$tfile
2937
2938         test_mkdir $DIR/$tdir
2939
2940         while true; do
2941                 rm -f $tf
2942                 $LFS mirror create -N -E 1M -c -1 -E eof -N $tf
2943                 echo xxxx > $tf
2944         done &
2945         c_pid=$!
2946         echo "mirror create pid $c_pid"
2947
2948         while true; do
2949                 $LFS mirror split -d --mirror-id=1 $tf &> /dev/null
2950         done &
2951         s_pid=$!
2952         echo "mirror split pid $s_pid"
2953
2954         echo "mirror create and split race for 60 seconds, should not crash"
2955         sleep 60
2956         kill -9 $c_pid &> /dev/null
2957         kill -9 $s_pid &> /dev/null
2958
2959         rm -f $tf
2960         true
2961 }
2962 run_test 70 "mirror create and split race"
2963
2964 ctrl_file=$(mktemp /tmp/CTRL.XXXXXX)
2965 lock_file=$(mktemp /var/lock/FLR.XXXXXX)
2966
2967 write_file_200() {
2968         local tf=$1
2969
2970         local fsize=$(stat --printf=%s $tf)
2971
2972         while [ -f $ctrl_file ]; do
2973                 local off=$((RANDOM << 8))
2974                 local len=$((RANDOM << 5 + 131072))
2975
2976                 [ $((off + len)) -gt $fsize ] && {
2977                         fsize=$((off + len))
2978                         echo "Extending file size to $fsize .."
2979                 }
2980
2981                 flock -s $lock_file -c \
2982                         "$MULTIOP $tf oO_WRONLY:z${off}w${len}c" ||
2983                                 { rm -f $ctrl_file;
2984                                   error "failed writing to $off:$len"; }
2985                 sleep 0.$((RANDOM % 2 + 1))
2986         done
2987 }
2988
2989 read_file_200() {
2990         local tf=$1
2991
2992         while [ -f $ctrl_file ]; do
2993                 flock -s $lock_file -c "cat $tf &> /dev/null" ||
2994                         { rm -f $ctrl_file; error "read failed"; }
2995                 sleep 0.$((RANDOM % 2 + 1))
2996         done
2997 }
2998
2999 resync_file_200() {
3000         local tf=$1
3001
3002         options=("" "-e resync_start" "-e delay_before_copy -d 1" "" "")
3003
3004         exec 200<>$lock_file
3005         while [ -f $ctrl_file ]; do
3006                 local lock_taken=false
3007                 local index=$((RANDOM % ${#options[@]}))
3008                 local cmd="mirror_io resync ${options[$index]}"
3009
3010                 [ "${options[$index]}" = "" ] && cmd="$LFS mirror resync"
3011
3012                 [ $((RANDOM % 4)) -eq 0 ] && {
3013                         index=0
3014                         lock_taken=true
3015                         echo -n "lock to "
3016                 }
3017
3018                 echo -n "resync file $tf with '$cmd' .."
3019
3020                 if [[ $lock_taken = "true" ]]; then
3021                         flock -x 200
3022                         $cmd $tf &> /dev/null && echo "done" || echo "failed"
3023                         flock -u 200
3024                 else
3025                         $cmd $tf &> /dev/null && echo "done" || echo "failed"
3026                 fi
3027
3028                 sleep 0.$((RANDOM % 8 + 1))
3029         done
3030 }
3031
3032 test_200() {
3033         local tf=$DIR/$tfile
3034         local tf2=$DIR2/$tfile
3035         local tf3=$DIR3/$tfile
3036
3037         $LFS setstripe -E 1M -S 1M -E 2M -c 2 -E 4M -E 16M -E eof $tf
3038         $LFS setstripe -E 2M -S 1M -E 6M -c 2 -E 8M -E 32M -E eof $tf-2
3039         $LFS setstripe -E 4M -c 2 -E 8M -E 64M -E eof $tf-3
3040
3041         $LFS mirror extend -N -f $tf-2 $tf ||
3042                 error "merging $tf-2 into $tf failed"
3043         $LFS mirror extend -N -f $tf-3 $tf ||
3044                 error "merging $tf-3 into $tf failed"
3045
3046         mkdir -p $MOUNT2 && mount_client $MOUNT2
3047
3048         mkdir -p $MOUNT3 && mount_client $MOUNT3
3049
3050         verify_flr_state $tf3 "ro"
3051
3052         #define OBD_FAIL_FLR_RANDOM_PICK_MIRROR 0x1A03
3053         $LCTL set_param fail_loc=0x1A03
3054
3055         local mds_idx=mds$(($($LFS getstripe -m $tf) + 1))
3056         do_facet $mds_idx $LCTL set_param fail_loc=0x1A03
3057
3058         declare -a pids
3059
3060         write_file_200 $tf &
3061         pids+=($!)
3062
3063         read_file_200 $tf &
3064         pids+=($!)
3065
3066         write_file_200 $tf2 &
3067         pids+=($!)
3068
3069         read_file_200 $tf2 &
3070         pids+=($!)
3071
3072         resync_file_200 $tf3 &
3073         pids+=($!)
3074
3075         local sleep_time=60
3076         [ "$SLOW" = "yes" ] && sleep_time=360
3077         while [ $sleep_time -gt 0 -a -f $ctrl_file ]; do
3078                 sleep 1
3079                 ((--sleep_time))
3080         done
3081
3082         rm -f $ctrl_file
3083
3084         echo "Waiting ${pids[@]}"
3085         wait ${pids[@]}
3086
3087         umount_client $MOUNT2
3088         umount_client $MOUNT3
3089
3090         rm -f $lock_file
3091
3092         # resync and verify mirrors
3093         $LFS mirror resync $tf || error "final resync failed"
3094         get_mirror_ids $tf
3095
3096         local csum=$($LFS mirror read -N ${mirror_array[0]} $tf | md5sum)
3097         for id in ${mirror_array[@]:1}; do
3098                 [ "$($LFS mirror read -N $id $tf | md5sum)" = "$csum" ] ||
3099                         error "checksum error for mirror $id"
3100         done
3101
3102         true
3103 }
3104 run_test 200 "stress test"
3105
3106 cleanup_test_201() {
3107         trap 0
3108         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister $CL_USER
3109
3110         umount_client $MOUNT2
3111 }
3112
3113 test_201() {
3114         local delay=${RESYNC_DELAY:-5}
3115
3116         MDT0=$($LCTL get_param -n mdc.*.mds_server_uuid |
3117                awk '{ gsub(/_UUID/,""); print $1 }' | head -n1)
3118
3119         trap cleanup_test_201 EXIT
3120
3121         CL_USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
3122                         changelog_register -n)
3123
3124         mkdir -p $MOUNT2 && mount_client $MOUNT2
3125
3126         local index=0
3127         while :; do
3128                 local log=$($LFS changelog $MDT0 $index | grep FLRW)
3129                 [ -z "$log" ] && { sleep 1; continue; }
3130
3131                 index=$(echo $log | awk '{print $1}')
3132                 local ts=$(date -d "$(echo $log | awk '{print $3}')" "+%s" -u)
3133                 local fid=$(echo $log | awk '{print $6}' | sed -e 's/t=//')
3134                 local file=$($LFS fid2path $MOUNT2 $fid 2> /dev/null)
3135
3136                 ((++index))
3137                 [ -z "$file" ] && continue
3138
3139                 local now=$(date +%s)
3140
3141                 echo "file: $file $fid was modified at $ts, now: $now, " \
3142                      "will be resynced at $((ts+delay))"
3143
3144                 [ $now -lt $((ts + delay)) ] && sleep $((ts + delay - now))
3145
3146                 $LFS mirror resync $file
3147                 echo "$file resync done"
3148         done
3149
3150         cleanup_test_201
3151 }
3152 run_test 201 "FLR data mover"
3153
3154 test_202() {
3155         [[ $OSTCOUNT -lt 2 ]] && skip "need >= 2 OSTs" && return
3156
3157         local tf=$DIR/$tfile
3158         local ids
3159
3160         $LFS setstripe -E 1M -S 1M -c 1 $tf
3161         ids=($($LFS getstripe $tf | awk '/lcme_id/{print $2}' | tr '\n' ' '))
3162         verify_comp_attr stripe-count $tf ${ids[0]} 1
3163
3164         $LFS setstripe --component-add -E 2M -c -1 $tf
3165         ids=($($LFS getstripe $tf | awk '/lcme_id/{print $2}' | tr '\n' ' '))
3166         verify_comp_attr stripe-count $tf ${ids[0]} 1
3167         verify_comp_attr stripe-count $tf ${ids[1]} -1
3168
3169         dd if=/dev/zero of=$tf bs=1M count=2
3170         ids=($($LFS getstripe $tf | awk '/lcme_id/{print $2}' | tr '\n' ' '))
3171         verify_comp_attr stripe-count $tf ${ids[0]} 1
3172         verify_comp_attr stripe-count $tf ${ids[1]} $OSTCOUNT
3173 }
3174 run_test 202 "lfs setstripe --add-component wide striping"
3175
3176 test_203() {
3177         [ $MDS1_VERSION -lt $(version_code 2.11.55) ] &&
3178                 skip "Need MDS version at least 2.11.55"
3179         [[ $OSTCOUNT -lt 2 ]] && skip "need >= 2 OSTs"
3180
3181         local tf=$DIR/$tfile
3182
3183         #create 2 mirrors
3184         $LFS mirror create -N2 -c1 $tf || error "create FLR file $tf"
3185         #delete first mirror
3186         $LFS mirror delete --mirror-id=1 $tf || error "delete first mirror"
3187
3188         $LFS getstripe $tf
3189         local old_id=$($LFS getstripe --mirror-id=2 -I $tf)
3190         local count=$($LFS getstripe --mirror-id=2 -c $tf) ||
3191                 error "getstripe count of mirror 2"
3192         [[ x$count = x1 ]] || error "mirror 2 stripe count $count is not 1"
3193
3194         #extend a mirror with 2 OSTs
3195         $LFS mirror extend -N -c2 $tf || error "extend mirror"
3196         $LFS getstripe $tf
3197
3198         local new_id=$($LFS getstripe --mirror-id=2 -I $tf)
3199         count=$($LFS getstripe --mirror-id=2 -c $tf) ||
3200                 error "getstripe count of mirror 2"
3201         [[ x$oldid = x$newid ]] ||
3202                 error "mirror 2 changed ID from $old_id to $new_id"
3203         [[ x$count = x1 ]] || error "mirror 2 stripe count $count is not 1"
3204
3205         count=$($LFS getstripe --mirror-id=3 -c $tf) ||
3206                 error "getstripe count of mirror 3"
3207         [[ x$count = x2 ]] || error "mirror 3 stripe count $count is not 2"
3208 }
3209 run_test 203 "mirror file preserve mirror ID"
3210
3211 # Simple test of FLR + self-extending layout, SEL in non-primary mirror
3212 test_204a() {
3213         [ "$MDS1_VERSION" -lt $(version_code $SEL_VER) ] &&
3214                 skip "skipped for lustre < $SEL_VER"
3215
3216         local comp_file=$DIR/$tdir/$tfile
3217         local flg_opts=""
3218         local found=""
3219
3220         test_mkdir $DIR/$tdir
3221
3222         # first mirror is 0-10M, then 10M-(-1), second mirror is 1M followed
3223         # by extension space to -1
3224         $LFS setstripe -N -E 10M -E-1 -N -E 1M -E-1 -z64M $comp_file ||
3225                 error "Create $comp_file failed"
3226
3227         # Write to first component, extending & staling second mirror
3228         dd if=/dev/zero bs=2M count=1 of=$comp_file conv=notrunc ||
3229                 error "dd to extend + stale failed"
3230
3231         $LFS getstripe $comp_file
3232
3233         flg_opts="--component-flags init,stale"
3234         found=$($LFS find --component-end 65M $flg_opts $comp_file | wc -l)
3235         [ $found -eq 1 ] || error "write: Second comp end incorrect"
3236
3237         flg_opts="--component-flags extension"
3238         found=$($LFS find --component-start 65M $flg_opts $comp_file | wc -l)
3239         [ $found -eq 1 ] || error "write: Third comp start incorrect"
3240
3241         # mirror resync should not change the extents
3242         $LFS mirror resync $comp_file
3243
3244         flg_opts="--component-flags init"
3245         found=$($LFS find --component-end 65M $flg_opts $comp_file | wc -l)
3246         [ $found -eq 1 ] || error "resync: Second comp end incorrect"
3247
3248         flg_opts="--component-flags extension"
3249         found=$($LFS find --component-start 65M $flg_opts $comp_file | wc -l)
3250         [ $found -eq 1 ] || error "resync: Third comp start incorrect"
3251
3252         sel_layout_sanity $comp_file 5
3253
3254         rm -f $comp_file
3255 }
3256 run_test 204a "FLR write/stale/resync tests with self-extending mirror"
3257
3258 # Simple test of FLR + self-extending layout, SEL in primary mirror
3259 test_204b() {
3260         [ "$MDS1_VERSION" -lt $(version_code $SEL_VER) ] &&
3261                 skip "skipped for lustre < $SEL_VER"
3262
3263         local comp_file=$DIR/$tdir/$tfile
3264         local flg_opts=""
3265         local found=""
3266
3267         test_mkdir $DIR/$tdir
3268
3269         # first mirror is 1M followed by extension space to -1, second mirror
3270         # is 0-10M, then 10M-(-1),
3271         $LFS setstripe -N -E 1M -E-1 -z64M -N -E 10M -E-1 $comp_file ||
3272                 error "Create $comp_file failed"
3273
3274         # Write to first component, extending first component & staling
3275         # other mirror
3276         dd if=/dev/zero bs=2M count=1 of=$comp_file conv=notrunc ||
3277                 error "dd to extend + stale failed"
3278
3279         $LFS getstripe $comp_file
3280
3281         flg_opts="--component-flags init"
3282         found=$($LFS find --component-end 65M $flg_opts $comp_file | wc -l)
3283         [ $found -eq 1 ] || error "write: First comp end incorrect"
3284
3285         flg_opts="--component-flags extension"
3286         found=$($LFS find --component-start 65M $flg_opts $comp_file | wc -l)
3287         [ $found -eq 1 ] || error "write: Second comp start incorrect"
3288
3289         flg_opts="--component-flags init,stale"
3290         found=$($LFS find --component-end 10M $flg_opts $comp_file | wc -l)
3291         [ $found -eq 1 ] || error "write: First mirror comp flags incorrect"
3292
3293         # This component is staled because it overlaps the extended first
3294         # component of the primary mirror, even though it doesn't overlap
3295         # the actual write - thus not inited.
3296         flg_opts="--component-flags stale"
3297         found=$($LFS find --component-start 10M $flg_opts $comp_file | wc -l)
3298         [ $found -eq 1 ] || error "write: Second mirror comp flags incorrect"
3299
3300         # mirror resync should not change the extents
3301         $LFS mirror resync $comp_file
3302
3303         $LFS getstripe $comp_file
3304
3305         flg_opts="--component-flags init"
3306         found=$($LFS find --component-end 65M $flg_opts $comp_file | wc -l)
3307         [ $found -eq 1 ] || error "resync: First comp end incorrect"
3308
3309         flg_opts="--component-flags extension"
3310         found=$($LFS find --component-start 65M $flg_opts $comp_file | wc -l)
3311         [ $found -eq 1 ] || error "resync: Second comp start incorrect"
3312
3313         flg_opts="--component-flags init"
3314         found=$($LFS find --component-end 10M $flg_opts $comp_file | wc -l)
3315         [ $found -eq 1 ] || error "resync: First mirror comp flags incorrect"
3316
3317         flg_opts="--component-flags init"
3318         found=$($LFS find --component-start 10M $flg_opts $comp_file | wc -l)
3319         [ $found -eq 1 ] || error "resync: Second mirror comp flags incorrect"
3320
3321         sel_layout_sanity $comp_file 5
3322
3323         rm -f $comp_file
3324 }
3325 run_test 204b "FLR write/stale/resync tests with self-extending primary"
3326
3327 # FLR + SEL failed extension & component removal
3328 # extension space in second mirror
3329 test_204c() {
3330         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs"
3331         [ "$MDS1_VERSION" -lt $(version_code $SEL_VER) ] &&
3332                 skip "skipped for lustre < $SEL_VER"
3333
3334         local comp_file=$DIR/$tdir/$tfile
3335         local found=""
3336         local ost_idx1=0
3337         local ost_name=$(ostname_from_index $ost_idx1)
3338
3339         test_mkdir $DIR/$tdir
3340
3341         # first mirror is is 0-10M, then 10M-(-1), second mirror is 0-1M, then
3342         # extension space from 1M to 1G, then normal space to -1
3343         $LFS setstripe -N -E 10M -E-1 -N -E 1M -E 1G -i $ost_idx1 -z 64M \
3344                 -E -1 $comp_file || error "Create $comp_file failed"
3345
3346         do_facet ost1 $LCTL set_param -n obdfilter.$ost_name.degraded=1
3347         sleep_maxage
3348
3349         # write to first comp (0 - 10M) of mirror 1, extending + staling
3350         # first + second comp of mirror 2
3351         dd if=/dev/zero bs=2M count=1 of=$comp_file conv=notrunc
3352         RC=$?
3353
3354         do_facet ost1 $LCTL set_param -n obdfilter.$ost_name.degraded=0
3355         sleep_maxage
3356
3357         [ $RC -eq 0 ] || error "dd to extend + stale failed"
3358
3359         $LFS getstripe $comp_file
3360
3361         found=$($LFS find --component-start 0m --component-end 1m \
3362                 --comp-flags init,stale $comp_file | wc -l)
3363         [ $found -eq 1 ] || error "write: First mirror comp incorrect"
3364
3365         found=$($LFS find --component-start 1m --component-end EOF \
3366                 --comp-flags stale,^init $comp_file | wc -l)
3367         [ $found -eq 1 ] || error "write: Second mirror comp incorrect"
3368
3369         local mirror_id=$($LFS getstripe --component-start=1m   \
3370                          --component-end=EOF $comp_file |       \
3371                          grep lcme_mirror_id | awk '{ print $2 }')
3372
3373         [[ $mirror_id -eq 2 ]] ||
3374                 error "component not in correct mirror? $mirror_id"
3375
3376         $LFS mirror resync $comp_file
3377
3378         $LFS getstripe $comp_file
3379
3380         # component dimensions should not change from resync
3381         found=$($LFS find --component-start 1m --component-end EOF \
3382                 --component-flags init $comp_file | wc -l)
3383         [ $found -eq 1 ] || error "resync: Second mirror comp incorrect"
3384
3385         sel_layout_sanity $comp_file 4
3386
3387         rm -f $comp_file
3388 }
3389 run_test 204c "FLR write/stale/resync test with component removal"
3390
3391 # Successful repeated component in primary mirror
3392 test_204d() {
3393         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs"
3394         [ "$MDS1_VERSION" -lt $(version_code $SEL_VER) ] &&
3395                 skip "skipped for lustre < $SEL_VER"
3396
3397         local comp_file=$DIR/$tdir/$tfile
3398         local found=""
3399
3400         wait_delete_completed
3401         wait_mds_ost_sync
3402         test_mkdir $DIR/$tdir
3403
3404         # first mirror is 64M followed by extension space to -1, second mirror
3405         # is 0-10M, then 10M-(-1)
3406         $LFS setstripe -N -E-1 -z64M -N -E 10M -E-1 $comp_file ||
3407                 error "Create $comp_file failed"
3408
3409         local ost_idx1=$($LFS getstripe -I65537 -i $comp_file)
3410         local ost_name=$(ostname_from_index $ost_idx1)
3411         # degrade OST for first comp so we won't extend there
3412         do_facet ost$((ost_idx1+1)) $LCTL set_param -n \
3413                 obdfilter.$ost_name.degraded=1
3414         sleep_maxage
3415
3416         # Write beyond first component, causing repeat & stale second mirror
3417         dd if=/dev/zero bs=1M count=1 seek=66 of=$comp_file conv=notrunc
3418         RC=$?
3419
3420         do_facet ost$((ost_idx1+1)) $LCTL set_param -n \
3421                 obdfilter.$ost_name.degraded=0
3422         sleep_maxage
3423
3424         [ $RC -eq 0 ] || error "dd to repeat & stale failed"
3425
3426         $LFS getstripe $comp_file
3427
3428         found=$($LFS find --component-start 64m --component-end 128m \
3429                 --component-flags init $comp_file | wc -l)
3430         [ $found -eq 1 ] || error "write: Repeat comp incorrect"
3431
3432         local ost_idx2=$($LFS getstripe --component-start=64m           \
3433                          --component-end=128m --component-flags=init    \
3434                          -i $comp_file)
3435         [[ $ost_idx1 -eq $ost_idx2 ]] && error "$ost_idx1 == $ost_idx2"
3436         local mirror_id=$($LFS getstripe --component-start=64m          \
3437                          --component-end=128m --component-flags=init    \
3438                          $comp_file | grep lcme_mirror_id | awk '{ print $2 }')
3439         [[ $mirror_id -eq 1 ]] ||
3440                 error "component not in correct mirror: $mirror_id, not 1"
3441
3442         $LFS mirror resync $comp_file
3443
3444         $LFS getstripe $comp_file
3445
3446         # component dimensions should not change from resync
3447         found=$($LFS find --component-start 0m --component-end 64m \
3448                 --component-flags init $comp_file | wc -l)
3449         [ $found -eq 1 ] || error "resync: first comp incorrect"
3450         found=$($LFS find --component-start 64m --component-end 128m \
3451                 --component-flags init $comp_file | wc -l)
3452         [ $found -eq 1 ] || error "resync: repeat comp incorrect"
3453
3454         sel_layout_sanity $comp_file 5
3455
3456         rm -f $comp_file
3457 }
3458 run_test 204d "FLR write/stale/resync sel test with repeated comp"
3459
3460 # Successful repeated component, SEL in non-primary mirror
3461 test_204e() {
3462         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs"
3463         [ "$MDS1_VERSION" -lt $(version_code $SEL_VER) ] &&
3464                 skip "skipped for lustre < $SEL_VER"
3465
3466         local comp_file=$DIR/$tdir/$tfile
3467         local found=""
3468
3469         wait_delete_completed
3470         wait_mds_ost_sync
3471
3472         test_mkdir $DIR/$tdir
3473
3474         # first mirror is is 0-100M, then 100M-(-1), second mirror is extension
3475         # space to -1 (-z 64M, so first comp is 0-64M)
3476         # Note: we have to place both 1st components on OST0, otherwise 2 OSTs
3477         # will be not enough - one will be degraded, the other is used on
3478         # an overlapping mirror.
3479         $LFS setstripe -N -E 100M -i 0 -E-1 -N -E-1 -i 0 -z 64M $comp_file ||
3480                 error "Create $comp_file failed"
3481
3482         local ost_idx1=$($LFS getstripe --component-start=0 \
3483                          --component-end=64m -i $comp_file)
3484         local ost_name=$(ostname_from_index $ost_idx1)
3485         # degrade OST for first comp of 2nd mirror so we won't extend there
3486         do_facet ost$((ost_idx1+1)) $LCTL set_param -n \
3487                 obdfilter.$ost_name.degraded=1
3488         sleep_maxage
3489
3490         $LFS getstripe $comp_file
3491
3492         # Write to first component, stale & instantiate second mirror components
3493         # overlapping with the written component (0-100M);
3494         dd if=/dev/zero bs=2M count=1 of=$comp_file conv=notrunc
3495         RC=$?
3496
3497         do_facet ost$((ost_idx1+1)) $LCTL set_param -n \
3498                 obdfilter.$ost_name.degraded=0
3499         sleep_maxage
3500         $LFS getstripe $comp_file
3501
3502         [ $RC -eq 0 ] || error "dd to repeat & stale failed"
3503
3504         found=$($LFS find --component-start 0m --component-end 64m \
3505                 --component-flags init,stale $comp_file | wc -l)
3506         [ $found -eq 1 ] || error "write: first comp incorrect"
3507
3508         # was repeated due to degraded ost
3509         found=$($LFS find --component-start 64m --component-end 128m \
3510                 --component-flags init,stale $comp_file | wc -l)
3511         [ $found -eq 1 ] || error "write: repeated comp incorrect"
3512
3513         local ost_idx2=$($LFS getstripe --component-start=64m           \
3514                          --component-end=128m --component-flags=init    \
3515                          -i $comp_file)
3516         [[ $ost_idx1 -eq $ost_idx2 ]] && error "$ost_idx1 == $ost_idx2"
3517         local mirror_id=$($LFS getstripe --component-start=0m           \
3518                          --component-end=64m --component-flags=init     \
3519                          $comp_file | grep lcme_mirror_id | awk '{ print $2 }')
3520         [[ $mirror_id -eq 2 ]] ||
3521                 error "component not in correct mirror? $mirror_id"
3522
3523         $LFS mirror resync $comp_file
3524
3525         $LFS getstripe $comp_file
3526
3527         # component dimensions should not change from resync
3528         found=$($LFS find --component-start 0m --component-end 64m \
3529                 --component-flags init,^stale $comp_file | wc -l)
3530         [ $found -eq 1 ] || error "resync: first comp incorrect"
3531         found=$($LFS find --component-start 64m --component-end 128m \
3532                 --component-flags init,^stale $comp_file | wc -l)
3533         [ $found -eq 1 ] || error "resync: repeated comp incorrect"
3534
3535         sel_layout_sanity $comp_file 5
3536
3537         rm -f $comp_file
3538 }
3539 run_test 204e "FLR write/stale/resync sel test with repeated comp"
3540
3541 # FLR + SEL: failed repeated component, SEL in non-primary mirror
3542 test_204f() {
3543         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs"
3544         [ "$MDS1_VERSION" -lt $(version_code $SEL_VER) ] &&
3545                 skip "skipped for lustre < $SEL_VER"
3546
3547         local comp_file=$DIR/$tdir/$tfile
3548         local found=""
3549
3550         wait_delete_completed
3551         wait_mds_ost_sync
3552         test_mkdir $DIR/$tdir
3553
3554         pool_add $TESTNAME || error "Pool creation failed"
3555         pool_add_targets $TESTNAME 0 1 || error "Pool add targets failed"
3556
3557         # first mirror is is 0-100M, then 100M-(-1), second mirror is extension
3558         # space to -1 (-z 64M, so first comp is 0-64M)
3559         $LFS setstripe -N -E 100M -E-1 -N --pool="$TESTNAME" \
3560                 -E-1 -c 1 -z 64M $comp_file || error "Create $comp_file failed"
3561
3562         local ost_name0=$(ostname_from_index 0)
3563         local ost_name1=$(ostname_from_index 1)
3564
3565         # degrade both OSTs in pool, so we'll try to repeat, then fail and
3566         # extend original comp
3567         do_facet ost1 $LCTL set_param -n obdfilter.$ost_name0.degraded=1
3568         do_facet ost2 $LCTL set_param -n obdfilter.$ost_name1.degraded=1
3569         sleep_maxage
3570
3571         # a write to the 1st component, 100M length, which will try to stale
3572         # the first 100M of mirror 2, attempting to extend its 0-64M component
3573         dd if=/dev/zero bs=2M count=1 of=$comp_file conv=notrunc
3574         RC=$?
3575
3576         do_facet ost1 $LCTL set_param -n obdfilter.$ost_name0.degraded=0
3577         do_facet ost2 $LCTL set_param -n obdfilter.$ost_name1.degraded=0
3578         sleep_maxage
3579
3580         [ $RC -eq 0 ] || error "dd to extend mirror comp failed"
3581
3582         $LFS getstripe $comp_file
3583
3584         found=$($LFS find --component-start 0m --component-end 128m \
3585                 --component-flags init,stale $comp_file | wc -l)
3586         [ $found -eq 1 ] || error "write: First mirror comp incorrect"
3587
3588         local mirror_id=$($LFS getstripe --component-start=0m           \
3589                          --component-end=128m --component-flags=init    \
3590                          $comp_file | grep lcme_mirror_id | awk '{ print $2 }')
3591
3592         [[ $mirror_id -eq 2 ]] ||
3593                 error "component not in correct mirror? $mirror_id, not 2"
3594
3595         $LFS mirror resync $comp_file
3596
3597         $LFS getstripe $comp_file
3598
3599         # component dimensions should not change from resync
3600         found=$($LFS find --component-start 0m --component-end 128m \
3601                 --component-flags init,^stale $comp_file | wc -l)
3602         [ $found -eq 1 ] || error "resync: First mirror comp incorrect"
3603
3604         sel_layout_sanity $comp_file 4
3605
3606         rm -f $comp_file
3607 }
3608 run_test 204f "FLR write/stale/resync sel w/forced extension"
3609
3610 function test_205() {
3611         local tf=$DIR/$tfile
3612         local mirrors
3613
3614         $LFS setstripe -c1 $tf
3615         $LFS mirror extend -N $tf
3616         mirrors=$($LFS getstripe $tf | grep lcme_mirror_id | wc -l )
3617         (( $mirrors == 2 )) || error "no new mirror was created?"
3618
3619         $LFS mirror extend -N --flags=prefer $tf
3620         mirrors=$($LFS getstripe $tf | grep lcme_mirror_id | wc -l )
3621         (( $mirrors == 3 )) || error "no new mirror was created?"
3622
3623         $($LFS getstripe $tf | grep lcme_flags: | tail -1 | grep -q prefer) ||
3624                 error "prefer flag was not set on the new mirror"
3625 }
3626 run_test 205 "lfs mirror extend to set prefer flag"
3627
3628 function test_206() {
3629         # create a new OST pool
3630         local pool_name=$TESTNAME
3631
3632         create_pool $FSNAME.$pool_name ||
3633                 error "create OST pool $pool_name failed"
3634         # add OSTs into the pool
3635         pool_add_targets $pool_name 0 1 ||
3636                 error "add OSTs into pool $pool_name failed"
3637
3638         $LFS setstripe -c1 --pool=$pool_name $DIR/$tfile ||
3639                 error "can't setstripe"
3640         $LFS mirror extend -N $DIR/$tfile ||
3641                 error "can't create replica"
3642         if $LFS getstripe $DIR/$tfile | grep -q prefer ; then
3643                 $LFS getstripe $DIR/$tfile
3644                 error "prefer found"
3645         fi
3646         $LFS setstripe --comp-set --comp-flags=prefer -p $pool_name $DIR/$tfile || {
3647                 $LFS getstripe $DIR/$tfile
3648                 error "can't setstripe prefer"
3649         }
3650
3651         if ! $LFS getstripe $DIR/$tfile | grep -q prefer ; then
3652                 $LFS getstripe $DIR/$tfile
3653                 error "no prefer found"
3654         fi
3655
3656         # destroy OST pool
3657         destroy_test_pools
3658 }
3659 run_test 206 "lfs setstripe -pool .. --comp-flags=.. "
3660
3661 test_207() {
3662        local file=$DIR/$tfile
3663        local tmpfile=$DIR/$tfile-tt
3664
3665         [ $MDS1_VERSION -lt $(version_code 2.14.50) ] &&
3666                 skip "Need MDS version at least 2.14.50"
3667
3668         stack_trap "rm -f $tmpfile $file"
3669
3670         # generate data for verification
3671         dd if=/dev/urandom of=$tmpfile bs=1M count=1 ||
3672                 error "can't generate file with random data"
3673
3674         # create a mirrored file with one stale replica
3675         $LFS mirror create -N -S 4M -c 2 -N -S 1M -c -1 $file ||
3676                 error "create mirrored file $file failed"
3677         get_mirror_ids $file
3678         echo "mirror IDs: ${mirror_array[@]}"
3679
3680         dd if=$tmpfile of=$file bs=1M || error "can't copy"
3681         get_mirror_ids $file
3682         echo "mirror IDs: ${mirror_array[@]}"
3683
3684         drop_client_cache
3685         cmp $tmpfile $file || error "files don't match"
3686         get_mirror_ids $file
3687         echo "mirror IDs: ${mirror_array[@]}"
3688
3689         # mirror creation should work fine
3690         $LFS mirror extend -N -S 8M -c -1 $file ||
3691                 error "mirror extend $file failed"
3692
3693         get_mirror_ids $file
3694         echo "mirror IDs: ${mirror_array[@]}"
3695
3696         drop_client_cache
3697         $LFS mirror verify -v $file || error "verification failed"
3698         cmp $tmpfile $file || error "files don't match"
3699 }
3700 run_test 207 "create another replica with existing out-of-sync one"
3701
3702 function check_ost_used() {
3703         local ddarg
3704         local ost
3705         local i
3706         local file=$1
3707         local io=$2
3708
3709         shift 2
3710
3711         cancel_lru_locks osc # to drop pages
3712         cancel_lru_locks mdc # to refresh layout
3713         # XXX: cancel_lru_locks mdc doesn't work
3714         # XXX: need a better way to reload the layout
3715         umount_client $MOUNT || error "umount failed"
3716         mount_client $MOUNT || error "mount failed"
3717
3718         # refresh non-rotation status on MDTs
3719         sleep 10
3720         touch $DIR/$tfile-temp
3721         rm -f $DIR/$tfile-temp
3722         # refresh non-rotational status on the client
3723         $LFS df >&/dev/null
3724         sleep 2
3725
3726         $LCTL set_param osc.*.stats=clear >/dev/null
3727         if [[ $io == "read" ]]; then
3728                 ddarg="if=$file of=/dev/null"
3729         elif [[ $io == "write" ]]; then
3730                 ddarg="if=/dev/zero of=$file"
3731         else
3732                 error "unknown type $io"
3733         fi
3734         dd $ddarg bs=2M count=1 || error "can't $io $file"
3735         cancel_lru_locks osc
3736
3737         # check only specified OSTs got reads
3738         for ((ost = 0; ost < $OSTCOUNT; ost++)); do
3739                 local nr=$($LCTL get_param -n \
3740                         osc.$FSNAME-OST000$ost-osc-[-0-9a-f]*.stats |
3741                         awk "/ost_$io/{print \$2}")
3742                 nr=${nr:-0}
3743                 if [[ " $* " =~ " $ost " ]]; then
3744                         (( nr > 0 )) || error "expected reads on $ost"
3745                 else
3746                         (( nr == 0 )) || error "unexpected $nr reads on $ost"
3747                 fi
3748         done
3749 }
3750
3751 test_208a() {
3752         local tf=$DIR/$tfile
3753         local osts=$(comma_list $(osts_nodes))
3754
3755         (( $OSTCOUNT >= 4 )) || skip_env "needs >= 4 OSTs"
3756
3757         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
3758
3759         save_lustre_params $(get_facets OST) osd*.*OST*.nonrotational > $p
3760         stack_trap "restore_lustre_params < $p; rm -f $p"
3761
3762         stack_trap "rm -f $tf"
3763         $LFS setstripe -i0 -c1 $tf || error "can't setstripe"
3764         dd if=/dev/zero of=$tf bs=2M count=1 || error "can't dd (1)"
3765         $LFS mirror extend -N -c1 -o1 $tf || error "can't create mirror"
3766         $LFS mirror extend -N -c2 -o 2,3 $tf || error "can't create mirror"
3767         $LFS mirror resync $tf || error "can't resync"
3768         $LFS getstripe $tf
3769
3770         log "set OST0000 non-rotational"
3771         do_nodes $osts \
3772                 $LCTL set_param osd*.*OST0000*.nonrotational=1
3773         check_ost_used $tf read 0
3774
3775         log "set OST0002 and OST0003 non-rotational, two fast OSTs is better"
3776         do_nodes $osts \
3777                 $LCTL set_param osd*.*OST0002*.nonrotational=1 \
3778                         osd*.*OST0003*.nonrotational=1
3779         check_ost_used $tf read 2 3
3780
3781         log "set mirror 1 on OST0001 preferred"
3782         $LFS setstripe --comp-set -I 0x20001 --comp-flags=prefer $tf ||
3783                 error "can't set prefer"
3784         check_ost_used $tf read 1
3785 }
3786 run_test 208a "mirror selection to prefer non-rotational devices for reads"
3787
3788 test_208b() {
3789         local tf=$DIR/$tfile
3790         local osts=$(comma_list $(osts_nodes))
3791
3792         (( $OSTCOUNT >= 4 )) || skip_env "needs >= 4 OSTs"
3793
3794         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
3795
3796         save_lustre_params $(get_facets OST) osd*.*OST*.nonrotational > $p
3797         stack_trap "restore_lustre_params < $p; rm -f $p"
3798
3799         stack_trap "rm -f $tf"
3800         $LFS setstripe -i0 -c1 $tf || error "can't setstripe"
3801         dd if=/dev/zero of=$tf bs=2M count=1 || error "can't dd (1)"
3802         $LFS mirror extend -N -c1 -o1 $tf || error "can't create mirror"
3803         $LFS mirror extend -N -c2 -o 2,3 $tf || error "can't create mirror"
3804         $LFS mirror resync $tf || error "can't resync"
3805         $LFS getstripe $tf | grep -q flags.*stale && error "still stale"
3806
3807         log "set OST0000 non-rotational"
3808         do_nodes $osts \
3809                 $LCTL set_param osd*.*OST0000*.nonrotational=1
3810         check_ost_used $tf write 0
3811         $LFS mirror resync $tf || error "can't resync"
3812
3813         log "set OST0002 and OST0003 non-rotational, two fast OSTs is better"
3814         do_nodes $osts \
3815                 $LCTL set_param osd*.*OST0002*.nonrotational=1 \
3816                         osd*.*OST0003*.nonrotational=1
3817         check_ost_used $tf write 2 3
3818         $LFS mirror resync $tf || error "can't resync"
3819
3820         log "set mirror 1 on OST0001 preferred"
3821         $LFS setstripe --comp-set -I 0x20001 --comp-flags=prefer $tf ||
3822                 error "can't set prefer"
3823         check_ost_used $tf write 1
3824 }
3825 run_test 208b "mirror selection to prefer non-rotational devices for writes"
3826
3827 complete $SECONDS
3828 check_and_cleanup_lustre
3829 exit_status