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