Whamcloud - gitweb
LU-10070 lod: SEL cleanup
[fs/lustre-release.git] / lustre / tests / sanity-pfl.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
7 ONLY=${ONLY:-"$*"}
8
9 LUSTRE=${LUSTRE:-$(dirname $0)/..}
10 . $LUSTRE/tests/test-framework.sh
11 init_test_env $@
12 init_logging
13
14 # bug number for skipped test:
15 ALWAYS_EXCEPT="$SANITY_PFL_EXCEPT"
16 # UPDATE THE COMMENT ABOVE WITH BUG NUMBERS WHEN CHANGING ALWAYS_EXCEPT!
17
18 build_test_filter
19
20 check_and_setup_lustre
21
22 if [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.9.51) ]]; then
23         skip_env "Need MDS version at least 2.9.51"
24 fi
25
26 [ $UID -eq 0 -a $RUNAS_ID -eq 0 ] &&
27         error "\$RUNAS_ID set to 0, but \$UID is also 0!"
28 check_runas_id $RUNAS_ID $RUNAS_GID $RUNAS
29
30 assert_DIR
31 rm -rf $DIR/[Rdfs][0-9]*
32
33 test_0a() {
34         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs"
35
36         local comp_file=$DIR/$tdir/$tfile
37         local rw_len=$((3 * 1024 * 1024))       # 3M
38
39         test_mkdir $DIR/$tdir
40         rm -f $comp_file
41
42         $LFS setstripe -E 1m -S 1M -c 1 -E -1 -c 1 $comp_file ||
43                 error "Create $comp_file failed"
44
45         #instantiate all components, so that objs are allocted
46         dd if=/dev/zero of=$comp_file bs=1k count=1 seek=2k
47
48         local ost_idx1=$($LFS getstripe -I1 -i $comp_file)
49         local ost_idx2=$($LFS getstripe -I2 -i $comp_file)
50
51         [ $ost_idx1 -eq $ost_idx2 ] && error "$ost_idx1 == $ost_idx2"
52
53         small_write $comp_file $rw_len || error "Verify RW failed"
54
55         rm -f $comp_file || error "Delete $comp_file failed"
56 }
57 run_test 0a "Create full components file, no reused OSTs"
58
59 test_0b() {
60         [[ $($LCTL get_param mdc.*.import |
61                 grep "connect_flags:.*overstriping") ]] ||
62                 skip "server does not support overstriping"
63         large_xattr_enabled || skip_env "no large xattr support"
64
65         local comp_file=$DIR/$tdir/$tfile
66
67         test_mkdir $DIR/$tdir
68
69         # Create file with 1.1*LOV_MAX_STRIPE_COUNT stripes should succeed
70         $LFS setstripe -E 1m -C $((LOV_MAX_STRIPE_COUNT / 10)) -E -1 \
71                 -C $LOV_MAX_STRIPE_COUNT $comp_file ||
72         error "Create $comp_file failed"
73
74         rm -f $comp_file || error "Delete $comp_file failed"
75
76         # Create file with 2*LOV_MAX_STRIPE_COUNT stripes should fail
77         $LFS setstripe -E 1m -C $LOV_MAX_STRIPE_COUNT -E -1 -C $LOV_MAX_STRIPE_COUNT \
78                 $comp_file && error "Create $comp_file succeeded"
79
80         rm -f $comp_file || error "Delete $comp_file failed"
81 }
82 run_test 0b "Verify comp stripe count limits"
83
84 test_1a() {
85         local comp_file=$DIR/$tdir/$tfile
86         local rw_len=$((3 * 1024 * 1024))       # 3M
87
88         test_mkdir $DIR/$tdir
89         rm -f $comp_file
90
91         $LFS setstripe -E 1m -S 1m -o 0 -E -1 -o 0 $comp_file ||
92                 error "Create $comp_file failed"
93
94         #instantiate all components, so that objs are allocted
95         dd if=/dev/zero of=$comp_file bs=1k count=1 seek=2k
96
97         local ost_idx1=$($LFS getstripe -I1 -i $comp_file)
98         local ost_idx2=$($LFS getstripe -I2 -i $comp_file)
99
100         [ $ost_idx1 -ne $ost_idx2 ] && error "$ost_idx1 != $ost_idx2"
101
102         small_write $comp_file $rw_len || error "Verify RW failed"
103
104         rm -f $comp_file || error "Delete $comp_file failed"
105 }
106 run_test 1a "Create full components file, reused OSTs"
107
108 # test overstriping (>1 stripe/OST within a component)
109 test_1b() {
110         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
111         [[ $($LCTL get_param mdc.*.import |
112                 grep "connect_flags:.*overstriping") ]] ||
113                 skip "server does not support overstriping"
114
115         local comp_file=$DIR/$tdir/$tfile
116         local rw_len=$((3 * 1024 * 1024))       # 3M
117
118         test_mkdir $DIR/$tdir
119
120         $LFS setstripe -E 1m -S 1m -o 0,0 -E -1 -o 1,1,0,0 $comp_file ||
121                 error "Create $comp_file failed"
122
123         #instantiate all components, so that objs are allocted
124         dd if=/dev/zero of=$comp_file bs=1k count=1 seek=1M
125
126         $LFS getstripe $comp_file
127         local OSTS_1=$($LFS getstripe -I1 $comp_file | grep -o 'l_ost_idx.*' |
128                       awk -e '{print $2}' | tr "\n" "\0")
129         local OSTS_2=$($LFS getstripe -I2 $comp_file | grep -o 'l_ost_idx.*' |
130                       awk -e '{print $2}' | tr "\n" "\0")
131
132         echo ":"$OSTS_1":"
133         echo ":"$OSTS_2":"
134         [ "$OSTS_1" = "0,0," ] || error "incorrect OSTs($OSTS_1) in component 1"
135         [ "$OSTS_2" = "1,1,0,0," ] ||
136                 error "incorrect OSTs($OSTS_2) in component 2"
137
138         small_write $comp_file $rw_len || error "Verify RW failed"
139
140         rm -f $comp_file || error "Delete $comp_file failed"
141 }
142 run_test 1b "Create full components file, overstriping in components"
143
144 # test overstriping with max stripe count
145 test_1c() {
146         [[ $($LCTL get_param mdc.*.import |
147                 grep "connect_flags:.*overstriping") ]] ||
148                 skip "server does not support overstriping"
149         large_xattr_enabled || skip_env "no large xattr support"
150
151         local comp_file=$DIR/$tdir/$tfile
152         local rw_len=$((3 * 1024 * 1024))       # 3M
153
154         test_mkdir $DIR/$tdir
155
156         $LFS setstripe -E 1m -C 10 -E 10M -C 100 -E -1 \
157             -C $LOV_MAX_STRIPE_COUNT $comp_file ||
158                 error "Create $comp_file failed"
159
160         # Seek & write in to last component so all objects are allocated
161         dd if=/dev/zero of=$comp_file bs=1k count=1 seek=20000
162
163         local count=$($LFS getstripe -c -I1 $DIR/$tdir/$tfile)
164         [ $count -eq 10 ] || error "comp1 stripe count $count, should be 10"
165         count=$($LFS getstripe -c -I2 $DIR/$tdir/$tfile)
166         [ $count -eq 100 ] || error "comp2 stripe count $count, should be 100"
167         count=$($LFS getstripe -c -I3 $DIR/$tdir/$tfile)
168         [ $count -eq $LOV_MAX_STRIPE_COUNT ] ||
169                 error "comp4 stripe count $count != $LOV_MAX_STRIPE_COUNT"
170
171         small_write $comp_file $rw_len || error "Verify RW failed"
172
173         rm -f $comp_file || error "Delete $comp_file failed"
174 }
175 run_test 1c "Test overstriping w/max stripe count"
176
177 test_2() {
178         local comp_file=$DIR/$tdir/$tfile
179         local rw_len=$((5 * 1024 * 1024))       # 5M
180
181         test_mkdir $DIR/$tdir
182         rm -f $comp_file
183
184         $LFS setstripe -E 1m -S 1m $comp_file ||
185                 error "Create $comp_file failed"
186
187         check_component_count $comp_file 1
188
189         dd if=/dev/zero of=$comp_file bs=1M count=1 > /dev/null 2>&1 ||
190                 error "Write first component failed"
191         dd if=$comp_file of=/dev/null bs=1M count=1 > /dev/null 2>&1 ||
192                 error "Read first component failed"
193
194         dd if=/dev/zero of=$comp_file bs=1M count=2 > /dev/null 2>&1 &&
195                 error "Write beyond component should fail"
196         dd if=$comp_file of=/dev/null bs=1M count=2 > /dev/null 2>&1 ||
197                 error "Read beyond component should short read, not fail"
198
199         $LFS setstripe --component-add -E 2M -S 1M -c 1 $comp_file ||
200                 error "Add component to $comp_file failed"
201
202         check_component_count $comp_file 2
203
204         $LFS setstripe --component-add -E -1 -c 3 $comp_file ||
205                 error "Add last component to $comp_file failed"
206
207         check_component_count $comp_file 3
208
209         small_write $comp_file $rw_len || error "Verify RW failed"
210
211         rm -f $comp_file || error "Delete $comp_file failed"
212 }
213 run_test 2 "Add component to existing file"
214
215 del_comp_and_verify() {
216         local comp_file=$1
217         local id=$2
218         local left=$3
219         local size=$4
220
221         local opt="-I "
222         if [ $id == "init" -o $id == "^init" ]; then
223                 opt="--component-flags="
224         fi
225
226         $LFS setstripe --component-del $opt$id $comp_file ||
227                 error "Delete component $id from $comp_file failed"
228
229         local comp_cnt=$($LFS getstripe --component-count $comp_file)
230         if grep -q "has no stripe info" <<< "$comp_cnt" ; then
231                 comp_cnt=0
232         fi
233         [ $comp_cnt -ne $left ] && error "$comp_cnt != $left"
234
235         $CHECKSTAT -s $size $comp_file || error "size != $size"
236 }
237
238 test_3() {
239         local comp_file=$DIR/$tdir/$tfile
240
241         test_mkdir $DIR/$tdir
242         rm -f $comp_file
243
244         $LFS setstripe -E 1M -S 1M -E 64M -c 2 -E -1 -c 3 $comp_file ||
245                 error "Create $comp_file failed"
246
247         check_component_count $comp_file 3
248
249         dd if=/dev/zero of=$comp_file bs=1M count=2
250
251         $LFS setstripe --component-del -I 2 $comp_file &&
252                 error "Component deletion makes hole"
253
254         del_comp_and_verify $comp_file 3 2 $((2 * 1024 * 1024))
255         del_comp_and_verify $comp_file 2 1 $((1 * 1024 * 1024))
256         del_comp_and_verify $comp_file 1 0 0
257
258         rm -f $comp_file || error "Delete $comp_file failed"
259
260         $LFS setstripe -E 1M -S 1M -E 16M -E -1 $comp_file ||
261                 error "Create second $comp_file failed"
262
263         del_comp_and_verify $comp_file "^init" 1 0
264         del_comp_and_verify $comp_file "init" 0 0
265         rm -f $comp_file || error "Delete second $comp_file failed"
266
267 }
268 run_test 3 "Delete component from existing file"
269
270 test_4() {
271         skip "Not supported in PFL"
272         # In PFL project, only LCME_FL_INIT is supported, and it can't
273         # be altered by application.
274 }
275 run_test 4 "Modify component flags in existing file"
276
277 test_5() {
278         local parent=$DIR/$tdir
279         local comp_file=$DIR/$tdir/$tfile
280         local subdir=$parent/subdir
281
282         rm -fr $parent
283         test_mkdir $parent
284
285         # set default layout to parent directory
286         $LFS setstripe -E 64M -c 2 -i 0 -E -1 -c 4 -i 0 $parent ||
287                 error "Set default layout to $parent failed"
288
289         # create file under parent
290         touch $comp_file || error "Create $comp_file failed"
291         check_component_count $comp_file 2
292
293         #instantiate all components, so that objs are allocted
294         dd if=/dev/zero of=$comp_file bs=1k count=1 seek=65k
295
296         local ost_idx=$($LFS getstripe -I1 -i $comp_file)
297         [ $ost_idx -ne 0 ] &&
298                 error "component 1 ost_idx $ost_idx != 0"
299
300         ost_idx=$($LFS getstripe -I2 -i $comp_file)
301         [ $ost_idx -ne 0 ] &&
302                 error "component 2 ost_idx $ost_idx != 0"
303
304         # create subdir under parent
305         mkdir -p $subdir || error "Create subdir $subdir failed"
306
307         comp_cnt=$($LFS getstripe -d --component-count $subdir)
308         [ $comp_cnt -ne 2 ] && error "subdir $comp_cnt != 2"
309
310         # create file under subdir
311         touch $subdir/$tfile || error "Create $subdir/$tfile failed"
312
313         check_component_count $subdir/$tfile 2
314
315         # delete default layout setting from parent
316         $LFS setstripe -d $parent ||
317                 error "Delete default layout from $parent failed"
318
319         comp_cnt=$($LFS getstripe -d --component-count $parent)
320         [ $comp_cnt -ne 0 ] && error "$comp_cnt isn't 0"
321
322         rm -f $comp_file || error "Delete $comp_file failed"
323         rm -f $subdir/$tfile || error "Delete $subdir/$tfile failed"
324         rm -r $subdir || error "Delete subdir $subdir failed"
325         rmdir $parent || error "Delete dir $parent failed"
326 }
327 run_test 5 "Inherit composite layout from parent directory"
328
329 test_6() {
330         local comp_file=$DIR/$tdir/$tfile
331
332         test_mkdir $DIR/$tdir
333         rm -f $DIR/$tfile
334
335         $LFS setstripe -c 1 -S 128K $comp_file ||
336                 error "Create v1 $comp_file failed"
337
338         check_component_count $comp_file 0
339
340         dd if=/dev/urandom of=$comp_file bs=1M count=5 oflag=sync ||
341                 error "Write to v1 $comp_file failed"
342
343         local old_chksum=$(md5sum $comp_file)
344
345         # Migrate v1 to composite
346         $LFS migrate -E 1M -S 512K -c 1 -E -1 -S 1M -c 2 $comp_file ||
347                 error "Migrate(v1 -> composite) $comp_file failed"
348
349         check_component_count $comp_file 2
350
351         local chksum=$(md5sum $comp_file)
352         [ "$old_chksum" != "$chksum" ] &&
353                 error "(v1 -> compsoite) $old_chksum != $chksum"
354
355         # Migrate composite to composite
356         $LFS migrate -E 1M -S 1M -c 2 -E 4M -S 1M -c 2 \
357                 -E -1 -S 3M -c 3 $comp_file ||
358                 error "Migrate(compsoite -> composite) $comp_file failed"
359
360         check_component_count $comp_file 3
361
362         chksum=$(md5sum $comp_file)
363         [ "$old_chksum" != "$chksum" ] &&
364                 error "(composite -> compsoite) $old_chksum != $chksum"
365
366         # Migrate composite to v1
367         $LFS migrate -c 2 -S 2M $comp_file ||
368                 error "Migrate(composite -> v1) $comp_file failed"
369
370         check_component_count $comp_file 0
371
372         chksum=$(md5sum $comp_file)
373         [ "$old_chksum" != "$chksum" ] &&
374                 error "(composite -> v1) $old_chksum != $chksum"
375
376         rm -f $comp_file || "Delete $comp_file failed"
377 }
378 run_test 6 "Migrate composite file"
379
380 test_7() {
381         test_mkdir $DIR/$tdir
382         chmod 0777 $DIR/$tdir || error "chmod $tdir failed"
383
384         local comp_file=$DIR/$tdir/$tfile
385         $RUNAS $LFS setstripe -E 1M -S 1M -c 1 $comp_file ||
386                 error "Create composite file $comp_file failed"
387
388         $RUNAS $LFS setstripe --component-add -E 64M -c 4 $comp_file ||
389                 error "Add component to $comp_file failed"
390
391         $RUNAS $LFS setstripe --component-del -I 2 $comp_file ||
392                 error "Delete component from $comp_file failed"
393
394         $RUNAS $LFS setstripe --component-add -E -1 -c 5 $comp_file ||
395                 error "Add last component to $comp_file failed"
396
397         rm $comp_file || "Delete composite failed"
398 }
399 run_test 7 "Add/Delete/Create composite file by non-privileged user"
400
401 test_8() {
402         local parent=$DIR/$tdir
403
404         rm -fr $parent
405         test_mkdir $parent
406
407         $LFS setstripe -E 2M -c 1 -S 1M -E 16M -c 2 -S 2M \
408                 -E -1 -c 4 -S 4M $parent ||
409                 error "Set default layout to $parent failed"
410
411         sh rundbench -C -D $parent 2 || error "dbench failed"
412
413         rm -fr $parent || error "Delete dir $parent failed"
414 }
415 run_test 8 "Run dbench over composite files"
416
417 test_9() {
418         local comp_file=$DIR/$tdir/$tfile
419
420         test_mkdir $DIR/$tdir
421         rm -f $comp_file
422
423         $LFS setstripe -E 1M -S 1M -E -1 -c 1 $comp_file ||
424                 error "Create $comp_file failed"
425
426         check_component_count $comp_file 2
427
428         replay_barrier $SINGLEMDS
429
430         # instantiate the 2nd component
431         dd if=/dev/zero of=$comp_file bs=1k count=1 seek=2k
432
433         local f1=$($LFS getstripe -I2 $comp_file |
434                         awk '/l_fid:/ {print $7}')
435         echo "before MDS recovery, the ost fid of 2nd component is $f1"
436         fail $SINGLEMDS
437
438         local f2=$($LFS getstripe -I2 $comp_file |
439                         awk '/l_fid:/ {print $7}')
440         echo "after MDS recovery, the ost fid of 2nd component is $f2"
441         [ "x$f1" == "x$f2" ] || error "$f1 != $f2"
442 }
443 run_test 9 "Replay layout extend object instantiation"
444
445 component_dump() {
446         echo $($LFS getstripe $1 |
447                 awk '$1 == "lcm_entry_count:" { printf("%d", $2) }
448                      $1 == "lcme_extent.e_start:" { printf("[%#lx", $2) }
449                      $1 == "lcme_extent.e_end:" { printf(",%s]", $2) }')
450 }
451
452 test_10() {
453         local parent=$DIR/$tdir
454         local root=$MOUNT
455
456         save_layout_restore_at_exit $MOUNT
457
458         rm -rf $parent
459
460         # mount root on $MOUNT2 if FILESET is set
461         if [ -n "$FILESET" ]; then
462                 FILESET="" mount_client $MOUNT2 ||
463                         error "mount $MOUNT2 fail"
464                 root=$MOUNT2
465         fi
466
467         $LFS setstripe -d $root || error "clear root layout"
468
469         # set root composite layout
470         $LFS setstripe -E 2M -c 1 -S 1M -E 16M -c2 -S 2M \
471                 -E -1 -c 4 -S 4M $root ||
472                 error "Set root layout failed"
473
474         if [ "$root" == "$MOUNT2" ]; then
475                 umount_client $MOUNT2 ||
476                         error "umount $MOUNT2 fail"
477         fi
478
479         test_mkdir $parent
480         # set a different layout for parent
481         $LFS setstripe -E -1 -c 1 -S 1M $parent ||
482                 error "set $parent layout failed"
483         touch $parent/file1
484
485         local f1_entry=$(component_dump $parent/file1)
486
487         # delete parent's layout
488         $LFS setstripe -d $parent || error "Clear $parent layout failed"
489         touch $parent/file2
490
491         local f2_entry=$(component_dump $parent/file2)
492
493         # verify layout inheritance
494         local eof="EOF"
495         local f1_expect="1[0,EOF]"
496         local f2_expect="3[0,2097152][0x200000,16777216][0x1000000,EOF]"
497
498         echo "f1 expect=$f1_expect"
499         echo "f1 get   =$f1_entry"
500         echo "f2 expect=$f2_expect"
501         echo "f2 get   =$f2_entry"
502
503         [  x$f1_expect != x$f1_entry ] &&
504                 error "$parent/file1 does not inherite parent layout"
505         [  x$f2_expect != x$f2_entry ] &&
506                 error "$parent/file2 does not inherite root layout"
507
508         return 0
509 }
510 run_test 10 "Inherit composite template from root"
511
512 test_11() {
513         local comp_file=$DIR/$tdir/$tfile
514         test_mkdir $DIR/$tdir
515         rm -f $comp_file
516
517         # only 1st component instantiated
518         $LFS setstripe -E 1M -S 1M -E 2M -E 3M -E -1 $comp_file ||
519                 error "Create $comp_file failed"
520
521         local f1=$($LFS getstripe -I1 $comp_file | grep "l_fid")
522         [[ -z $f1 ]] && error "1: 1st component uninstantiated"
523         local f2=$($LFS getstripe -I2 $comp_file | grep "l_fid")
524         [[ -n $f2 ]] && error "1: 2nd component instantiated"
525         local f3=$($LFS getstripe -I3 $comp_file | grep "l_fid")
526         [[ -n $f3 ]] && error "1: 3rd component instantiated"
527         local f4=$($LFS getstripe -I4 $comp_file | grep "l_fid")
528         [[ -n $f4 ]] && error "1: 4th component instantiated"
529
530         # the first 2 components instantiated
531         $TRUNCATE $comp_file $((1024*1024*1+1))
532
533         f2=$($LFS getstripe -I2 $comp_file | grep "l_fid")
534         [[ -z $f2 ]] && error "2: 2nd component uninstantiated"
535         f3=$($LFS getstripe -I3 $comp_file | grep "l_fid")
536         [[ -n $f3 ]] && error "2: 3rd component instantiated"
537         f4=$($LFS getstripe -I4 $comp_file | grep "l_fid")
538         [[ -n $f4 ]] && error "2: 4th component instantiated"
539
540         # the first 3 components instantiated
541         $TRUNCATE $comp_file $((1024*1024*3))
542         $TRUNCATE $comp_file $((1024*1024*1+1))
543
544         f2=$($LFS getstripe -I2 $comp_file | grep "l_fid")
545         [[ -z $f2 ]] && error "3: 2nd component uninstantiated"
546         f3=$($LFS getstripe -I3 $comp_file | grep "l_fid")
547         [[ -z $f3 ]] && error "3: 3rd component uninstantiated"
548         f4=$($LFS getstripe -I4 $comp_file | grep "l_fid")
549         [[ -n $f4 ]] && error "3: 4th component instantiated"
550
551         # all 4 components instantiated, using append write
552         dd if=/dev/zero of=$comp_file bs=1k count=1 seek=2k
553         ls -l $comp_file
554         rwv -f $comp_file -w -a -n 2 $((1024*1023)) 1
555         ls -l $comp_file
556
557         f4=$($LFS getstripe -I4 $comp_file | grep "l_fid")
558         [[ -z $f4 ]] && error "4: 4th component uninstantiated"
559
560         return 0
561 }
562 run_test 11 "Verify component instantiation with write/truncate"
563
564 test_12() {
565         [ $OSTCOUNT -lt 3 ] && skip "needs >= 3 OSTs"
566
567         local file=$DIR/$tdir/$tfile
568         test_mkdir $DIR/$tdir
569         rm -f $file
570
571         # specify ost list for component
572         $LFS setstripe -E 1M -S 1M -c 2 -o 0,1 -E 2M -c 2 -o 1,2 \
573                 -E 3M -c 2 -o 2,1 -E 4M -c 1 -i 2 -E -1 $file ||
574                 error "Create $file failed"
575
576         # clear lod component cache
577         stop $SINGLEMDS || error "stop MDS"
578         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
579         start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS || error "start MDS"
580
581         # instantiate all components
582         $TRUNCATE $file $((1024*1024*4+1))
583
584         #verify object alloc order
585         local o1=$($LFS getstripe -I1 $file |
586                         awk '/l_ost_idx:/ {printf("%d",$5)}')
587         [[ $o1 != "01" ]] && error "$o1 is not 01"
588
589         local o2=$($LFS getstripe -I2 $file |
590                         awk '/l_ost_idx:/ {printf("%d",$5)}')
591         [[ $o2 != "12" ]] && error "$o2 is not 12"
592
593         local o3=$($LFS getstripe -I3 $file |
594                         awk '/l_ost_idx:/ {printf("%d",$5)}')
595         [[ $o3 != "21" ]] && error "$o3 is not 21"
596
597         local o4=$($LFS getstripe -I4 $file |
598                         awk '/l_ost_idx:/ {printf("%d",$5)}')
599         [[ $o4 != "2" ]] && error "$o4 is not 2"
600
601         return 0
602 }
603 run_test 12 "Verify ost list specification"
604
605 test_13() { # LU-9311
606         [ $OSTCOUNT -lt 8 ] && skip "needs >= 8 OSTs"
607
608         local file=$DIR/$tfile
609         local dd_count=4
610         local dd_size=$(($dd_count * 1024 * 1024))
611         local real_size
612
613         rm -f $file
614         $LFS setstripe -E 1M -S 1M -c 1 -E 2M -c 2 -E -1 -c -1 -i 1 $file ||
615                 error "Create $file failed"
616         dd if=/dev/zero of=$file bs=1M count=$dd_count
617         real_size=$(stat -c %s $file)
618         [ $real_size -eq $dd_size ] ||
619                 error "dd actually wrote $real_size != $dd_size bytes"
620
621         rm -f $file
622 }
623 run_test 13 "shouldn't reprocess granted resent request"
624
625 test_14() {
626         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs"
627         local file=$DIR/$tdir/$tfile
628         test_mkdir -p $DIR/$tdir
629         rm -f $file
630
631         $LFS setstripe -E1m -c1 -S1m --pool="pool1" -E2m \
632                         -E4m -c2 -S2m --pool="pool2" -E-1 $file ||
633                 error "Create $file failed"
634
635         # check --pool inheritance
636         local pool
637         pool="$($LFS getstripe -I2 --pool $file)"
638         [ x"$pool" != "xpool1" ] && $LFS getstripe -I2 $file &&
639                 error "$file: component 2 doesn't have poolname pool1"
640         pool="$($LFS getstripe -I4 --pool $file)"
641         [ x"$pool" != "xpool2" ] && $LFS getstripe -I4 $file &&
642                 error "$file: component 4 doesn't have poolname pool2"
643
644         #check --stripe-count inheritance
645         local count
646         count="$($LFS getstripe -I2 -c $file)"
647         [ $count -ne 1 ] && $LFS getstripe -I2 $file &&
648                 error "$file: component 2 doesn't have 1 stripe_count"
649         count="$($LFS getstripe -I4 -c $file)"
650         [ $count -ne 2 ] && $LFS getstripe -I4 $file &&
651                 error "$file: component 4 doesn't have 2 stripe_count"
652
653         #check --stripe-size inheritance
654         local size
655         size="$($LFS getstripe -I2 -S $file)"
656         [ $size -ne $((1024*1024)) ] && $LFS getstripe -I2 $file &&
657                 error "$file: component 2 doesn't have 1M stripe_size"
658         size="$($LFS getstripe -I4 -S $file)"
659         [ $size -ne $((1024*1024*2)) ] && $LFS getstripe -I4 $file &&
660                 error "$file: component 4 doesn't have 2M stripe_size"
661
662         return 0
663 }
664 run_test 14 "Verify setstripe poolname/stripe_count/stripe_size inheritance"
665
666 test_15() {
667         local parent=$DIR/$tdir
668
669         rm -fr $parent
670         test_mkdir $parent
671
672         $LFS setstripe -d $parent || error "delete default layout"
673
674         $LFS setstripe -E 1M -S 1M -E 10M -E eof $parent/f1 || error "create f1"
675         $LFS setstripe -E 4M -E 20M -E eof $parent/f2 || error "create f2"
676         test_mkdir $parent/subdir
677         $LFS setstripe -E 6M -S 1M -E 30M -E eof $parent/subdir ||
678                 error "setstripe to subdir"
679         $LFS setstripe -E 8M -E eof $parent/subdir/f3 || error "create f3"
680         $LFS setstripe -c 1 $parent/subdir/f4 || error "create f4"
681
682         # none
683         local found=$($LFS find --component-start +2M -E -15M $parent | wc -l)
684         [ $found -eq 0 ] || error "start+2M, end-15M, $found != 0"
685
686         # f2, f3
687         found=$($LFS find --component-start +2M -E -35M $parent | wc -l)
688         [ $found -eq 2 ] || error "start+2M, end-35M, $found != 2"
689
690         # subdir
691         found=$($LFS find --component-start +4M -E -eof $parent | wc -l)
692         [ $found -eq 1 ] || error "start+4M, end-eof, $found != 1"
693
694         local flg_opts="--component-flags init"
695         # none
696         found=$($LFS find --component-start 1M -E 10M $flg_opts $parent | wc -l)
697         [ $found -eq 0 ] ||
698                 error "before write: start=1M, end=10M, flag=init, $found != 0"
699
700         dd if=/dev/zero of=$parent/f1 bs=1M count=2 ||
701                 error "dd $parent/f1 failed"
702
703         # f1
704         found=$($LFS find --component-start 1M -E 10M $flg_opts $parent | wc -l)
705         [ $found -eq 1 ] ||
706                 error "after write: start=1M, end=10M, flag=init, $found != 1"
707
708         local ext_opts="--component-start -1M -E +5M"
709         # parent, subdir, f3, f4
710         found=$($LFS find $ext_opts $parent | wc -l)
711         [ $found -eq 4 ] || error "start-1M, end+5M, $found != 4"
712
713         local cnt_opts="--component-count +2"
714         # subdir
715         found=$($LFS find $ext_opts $cnt_opts $parent | wc -l)
716         [ $found -eq 1 ] || error "start-1M, end+5M, count+2, $found != 1"
717
718         # none
719         found=$($LFS find $ext_opts $cnt_opts $flg_opts $parent | wc -l)
720         [ $found -eq 0 ] ||
721                 error "start-1M, end+5M, count+2, flag=init, $found != 0"
722
723         # f3, f4
724         found=$($LFS find $ext_opts ! $cnt_opts $flg_opts $parent | wc -l)
725         [ $found -eq 2 ] ||
726                 error "start-1M, end+5M, !count+2, flag=init, $found != 2"
727 }
728 run_test 15 "Verify component options for lfs find"
729
730 test_16a() {
731         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs"
732         large_xattr_enabled || skip_env "ea_inode feature disabled"
733
734         local file=$DIR/$tdir/$tfile
735         local dir=$DIR/$tdir/dir
736         local temp=$DIR/$tdir/template
737         rm -rf $DIR/$tdir
738         test_mkdir $DIR/$tdir
739
740         #####################################################################
741         #                           1. PFL file
742         # set stripe for source file
743         $LFS setstripe -E1m -S 1M -c2 -o0,1 -E2m -c2 -E3m -o1,0 -E4m -c1 -E-1 \
744                 $file || error "Create $file failed"
745
746         echo "1. PFL file"
747         verify_yaml_layout $file $file.copy $temp "1. PFL file"
748
749         #####################################################################
750         #                           2. plain file
751         # set stripe for source file
752         rm -f $file
753         $LFS setstripe -c2 -o0,1 -i1 $file || error "Create $file failed"
754
755         rm -f $file.copy
756         echo "2. plain file"
757         verify_yaml_layout $file $file.copy $temp "2. plain file"
758
759         #####################################################################
760         #                           3. PFL dir
761         # set stripe for source dir
762         test_mkdir $dir
763         $LFS setstripe -E1m -S 1M -c2 -E2m -c1 -E-1 $dir ||
764                 error "setstripe $dir failed"
765
766         test_mkdir $dir.copy
767         echo "3. PFL dir"
768         verify_yaml_layout $dir $dir.copy $temp.dir "3. PFL dir"
769
770         #####################################################################
771         #                           4. plain dir
772         # set stripe for source dir
773         $LFS setstripe -c2 -i-1 $dir || error "setstripe $dir failed"
774
775         echo "4. plain dir"
776         verify_yaml_layout $dir $dir.copy $temp.dir "4. plain dir"
777 }
778 run_test 16a "Verify setstripe/getstripe with YAML config file"
779
780 test_16b() {
781         [[ $($LCTL get_param mdc.*.import |
782                 grep "connect_flags:.*overstriping") ]] ||
783                 skip "server does not support overstriping"
784         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs"
785         [[ $OSTCOUNT -ge $(($LOV_MAX_STRIPE_COUNT / 2)) ]] &&
786                 skip_env "too many osts, skipping"
787         large_xattr_enabled || skip_env "ea_inode feature disabled"
788
789         local file=$DIR/$tdir/$tfile
790         local dir=$DIR/$tdir/dir
791         local temp=$DIR/$tdir/template
792         # We know OSTCOUNT < (LOV_MAX_STRIPE_COUNT / 2), so this is overstriping
793         local large_count=$((LOV_MAX_STRIPE_COUNT / 2 + 10))
794
795         rm -rf $DIR/$tdir
796         test_mkdir $DIR/$tdir
797
798         #####################################################################
799         #                           1. PFL file, overstriping in first comps
800         # set stripe for source file
801         $LFS setstripe -E1m -S 1M -o0,0 -E2m -o1,1 -E3m -C $large_count -E-1 \
802                 $file || error "Create $file failed"
803
804         echo "1. PFL file"
805         verify_yaml_layout $file $file.copy $temp "1. PFL file"
806
807         #####################################################################
808         #                           2. plain file + overstriping
809         # set stripe for source file
810         rm -f $file
811         $LFS setstripe -C $large_count -i1 $file || error "Create $file failed"
812
813         rm -f $file.copy
814         echo "2. plain file"
815         verify_yaml_layout $file $file.copy $temp "2. plain file"
816
817         #####################################################################
818         #                           3. PFL dir + overstriping
819         # set stripe for source dir
820         test_mkdir $dir
821         $LFS setstripe -E1m -S 1M -o 0,0 -E2m -C $large_count -E-1 $dir ||
822                 error "setstripe $dir failed"
823
824         test_mkdir $dir.copy
825         echo "3. PFL dir"
826         verify_yaml_layout $dir $dir.copy $temp.dir "3. PFL dir"
827
828         #####################################################################
829         #                           4. plain dir + overstriping
830         # set stripe for source dir
831         $LFS setstripe -C $large_count $dir || error "setstripe $dir failed"
832
833         echo "4. plain dir"
834         verify_yaml_layout $dir $dir.copy $temp.dir "4. plain dir"
835 }
836 run_test 16b "Verify setstripe/getstripe with YAML config file + overstriping"
837
838 test_17() {
839         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs"
840         local file=$DIR/$tdir/$tfile
841         test_mkdir -p $DIR/$tdir
842         rm -f $file
843
844         $LFS setstripe -E 1M -S 1M -E 2M -c 2 -E -1 -c -1 $file ||
845                 error "Create $file failed"
846
847         local s1=$($LFS getstripe -I1 -v $file | awk '/lcme_size:/{print $2}')
848         local s2=$($LFS getstripe -I2 -v $file | awk '/lcme_size:/{print $2}')
849         local s3=$($LFS getstripe -I3 -v $file | awk '/lcme_size:/{print $2}')
850         echo "1st init: comp size 1:$s1 2:$s2 3:$s3"
851
852         # init 2nd component
853         $TRUNCATE $file $((1024*1024+1))
854         local s1n=$($LFS getstripe -I1 -v $file | awk '/lcme_size:/{print $2}')
855         local s2n=$($LFS getstripe -I2 -v $file | awk '/lcme_size:/{print $2}')
856         echo "2nd init: comp size 1:$s1n 2:$s2n 3:$s3"
857
858         [ $s1 -eq $s1n ] || error "1st comp size $s1 should == $s1n"
859         [ $s2 -lt $s2n ] || error "2nd comp size $s2 should < $s2n"
860
861         # init 3rd component
862         $TRUNCATE $file $((1024*1024*2+1))
863         s1n=$($LFS getstripe -I1 -v $file | awk '/lcme_size:/{print $2}')
864         s2n=$($LFS getstripe -I2 -v $file | awk '/lcme_size:/{print $2}')
865         local s3n=$($LFS getstripe -I3 -v $file | awk '/lcme_size:/{print $2}')
866         echo "3rd init: comp size 1:$s1n 2:$s2n 3:$s3n"
867
868         [ $s1 -eq $s1n ] || error "1st comp size $s1 should == $s1n"
869         [ $s2 -lt $s2n ] || error "2nd comp size $s2 should < $s2n"
870         [ $s3 -lt $s3n ] || error "3rd comp size $s3 should < $s3n"
871 }
872 run_test 17 "Verify LOVEA grows with more component inited"
873
874 check_distribution() {
875         local file=$1
876         local objs
877         local ave
878         local obj_min_one=$((OSTCOUNT - 1))
879
880         objs=$($LFS getstripe $file |
881                 awk '/l_ost_idx:/ { print $5 }' | wc -l)
882         let ave=$((objs / OSTCOUNT))
883
884         # collect objects per OST distribution
885         $LFS getstripe $file | awk '/l_ost_idx:/ { print $5 }' | tr -d "," |
886                 (inuse=( $(for i in $(seq 0 $obj_min_one); do echo 0; done) )
887                 while read O; do
888                         let inuse[$O]=$((1 + ${inuse[$O]}))
889                 done;
890
891                 # verify object distribution varies no more than +-1
892                 for idx in $(seq 0 $obj_min_one); do
893                         let dif=$((${inuse[$idx]} - ave))
894                         let dif=${dif#-}
895                         if [ "$dif" -gt 1 ]; then
896                                 echo "OST${idx}: ${inuse[$idx]} objects"
897                                 error "bad distribution on OST${idx}"
898                         fi
899                 done)
900 }
901
902 test_18() {
903         local file1=$DIR/${tfile}-1
904         local file2=$DIR/${tfile}-2
905         local file3=$DIR/${tfile}-3
906
907         rm -f $file1 $file2 $file3
908
909         $LFS setstripe -E 1m -S 1m $file1 ||
910                 error "Create $file1 failed"
911         $LFS setstripe -E 1m -S 1m $file2 ||
912                 error "Create $file2 failed"
913         $LFS setstripe -E 1m -S 1m $file3 ||
914                 error "Create $file3 failed"
915
916         local objs=$((OSTCOUNT+1))
917         for comp in $(seq 1 $OSTCOUNT); do
918                 $LFS setstripe --component-add -E $((comp+1))M -c 1 $file1 ||
919                         error "Add component to $file1 failed 2"
920                 $LFS setstripe --component-add -E $((comp+1))M -c 1 $file2 ||
921                         error "Add component to $file2 failed 2"
922                 $LFS setstripe --component-add -E $((comp+1))M -c 1 $file3 ||
923                         error "Add component to $file3 failed 2"
924         done
925
926         $LFS setstripe --component-add -E -1 -c -1 $file1 ||
927                 error "Add component to $file1 failed 3"
928         $LFS setstripe --component-add -E -1 -c -1 $file2 ||
929                 error "Add component to $file2 failed 3"
930         $LFS setstripe --component-add -E -1 -c -1 $file3 ||
931                 error "Add component to $file3 failed 3"
932
933         # Instantiate all components
934         dd if=/dev/urandom of=$file1 bs=1M count=$((objs+1)) ||
935                 error "dd failed for $file1"
936         dd if=/dev/urandom of=$file2 bs=1M count=$((objs+1)) ||
937                 error "dd failed for $file2"
938         dd if=/dev/urandom of=$file3 bs=1M count=$((objs+1)) ||
939                 error "dd failed for $file3"
940
941         check_distribution $file1
942         check_distribution $file2
943         check_distribution $file3
944
945 }
946 run_test 18 "check component distribution"
947
948 test19_io_base() {
949         local comp_file=$1
950         local already_created=${2:-0}
951         local rw_len=$((3 * 1024 * 1024))       # 3M
952         local flg_opts=""
953         local found=""
954
955         if [ $already_created != 1 ]; then
956                 test_mkdir -p $DIR/$tdir
957                 $LFS setstripe --extension-size 64M -c 1 -E -1 $comp_file ||
958                         error "Create $comp_file failed"
959         fi
960
961         # write past end of first component, so it is extended
962         dd if=/dev/zero of=$comp_file bs=1M count=1 seek=127 conv=notrunc ||
963                 error "dd to extend failed"
964
965         local ost_idx1=$($LFS getstripe -I1 -i $comp_file)
966         local ost_idx2=$($LFS getstripe -I2 -i $comp_file)
967
968         [ $ost_idx1 -eq $ost_idx2 ] && error "$ost_idx1 == $ost_idx2"
969         [ $ost_idx2 -ne "-1" ] && error "second component init $ost_idx2"
970
971         flg_opts="--comp-flags init"
972         found=$($LFS find --comp-start 0 -E 128M $flg_opts $comp_file | wc -l)
973         [ $found -eq 1 ] || error "Write: Extended first component not found"
974
975         flg_opts="--comp-flags extension"
976         found=$($LFS find --comp-start 128M -E EOF $flg_opts $comp_file | wc -l)
977         [ $found -eq 1 ] || error "Write: second component not found"
978
979         found=$($LFS find -z 64M $comp_file | wc -l)
980         [ $found -eq 1 ] || error "component not found by ext size"
981
982         found=$($LFS find --extension-size +63M $comp_file | wc -l)
983         [ $found -eq 1 ] || error "component not found by +ext size"
984
985         found=$($LFS find --ext-size -65M $comp_file | wc -l)
986         [ $found -eq 1 ] || error "component not found by -ext size"
987
988         found=$($LFS find -z 65M $comp_file | wc -l)
989         [ $found -eq 0 ] || error "component found by wrong ext size"
990
991         found=$($LFS find -z +65M $comp_file | wc -l)
992         [ $found -eq 0 ] || error "component found by wrong +ext size"
993
994         found=$($LFS find -z -63M $comp_file | wc -l)
995         [ $found -eq 0 ] || error "component found by wrong -ext size"
996
997         found=$($LFS find ! -z 64M $comp_file | wc -l)
998         [ $found -eq 0 ] || error "component found by negation of ext size"
999
1000         found=$($LFS find ! -z +63M $comp_file | wc -l)
1001         [ $found -eq 0 ] || error "component found by negation of +ext size"
1002
1003         found=$($LFS find ! -z -65M $comp_file | wc -l)
1004         [ $found -eq 0 ] || error "component found by negation of -ext size"
1005
1006         found=$($LFS find ! -z 65M $comp_file | wc -l)
1007         [ $found -eq 1 ] ||
1008                 error "component not found by negation of wrong ext size"
1009
1010         found=$($LFS find ! -z +65M $comp_file | wc -l)
1011         [ $found -eq 1 ] ||
1012                 error "component not found by negation of wrong +ext size"
1013
1014         found=$($LFS find ! -z -63M $comp_file | wc -l)
1015         [ $found -eq 1 ] ||
1016                 error "component not found by negation of wrong -ext size"
1017
1018         found=$($LFS find -S +1M $comp_file | wc -l)
1019         [ $found -eq 0 ] || error "component found by wrong +stripe size"
1020
1021         found=$($LFS find -c 1 $comp_file | wc -l)
1022         [ $found -eq 1 ] || error "component not found by stripe count"
1023
1024         small_write $comp_file $rw_len || error "Verify RW failed"
1025
1026         sel_layout_sanity $comp_file 2
1027 }
1028
1029 # Self-extending PFL tests
1030 test_19a() {
1031         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
1032         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code $SEL_VER) ] &&
1033                 skip "skipped for lustre < $SEL_VER"
1034
1035         test19_io_base $DIR/$tdir/$tfile
1036 }
1037 run_test 19a "Simple test of extension behavior"
1038
1039 # Same as 19a, but with default layout set on directory rather than on file
1040 test_19b() {
1041         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
1042         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code $SEL_VER) ] &&
1043                 skip "skipped for lustre < $SEL_VER"
1044
1045         local comp_file=$DIR/$tdir/$tfile
1046         local flg_opts=""
1047         local found=""
1048
1049         test_mkdir -p $DIR/$tdir
1050         $LFS setstripe --ext-size 64M -c 1 -E -1 $DIR/$tdir ||
1051                 error "Setstripe on $DIR/$tdir failed"
1052
1053         touch $comp_file
1054
1055         flg_opts="--comp-flags init"
1056         found=$($LFS find --comp-start 0 -E 64M $flg_opts $comp_file | wc -l)
1057         [ $found -eq 1 ] || error "Inheritance: wrong first component size"
1058
1059         flg_opts="--comp-flags extension"
1060         found=$($LFS find --comp-start 64M -E EOF $flg_opts $comp_file | wc -l)
1061         [ $found -eq 1 ] || error "Inheritance: Second component not found"
1062
1063         test19_io_base $comp_file 1
1064 }
1065 run_test 19b "Simple test of SEL as default layout"
1066
1067 # Test behavior when seeking deep in a file
1068 test_19c() {
1069         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
1070         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code $SEL_VER) ] &&
1071                 skip "skipped for lustre < $SEL_VER"
1072
1073         local comp_file=$DIR/$tdir/$tfile
1074         local flg_opts=""
1075         local found=""
1076
1077         test_mkdir -p $DIR/$tdir
1078
1079         $LFS setstripe -z 128M -E 1G -E -1 $comp_file ||
1080                 error "Create $comp_file failed"
1081
1082         # write past end of first component, so it is extended
1083         dd if=/dev/zero of=$comp_file bs=1M count=1 seek=130 conv=notrunc ||
1084                 error "dd to extend failed"
1085
1086         flg_opts="--comp-flags init"
1087         found=$($LFS find --comp-start 0M -E 256M $flg_opts $comp_file | wc -l)
1088         [ $found -eq 1 ] || error "Write: first extension component not found"
1089
1090         flg_opts="--comp-flags extension,^init"
1091         found=$($LFS find --comp-start 256M -E 1024M $flg_opts $comp_file |\
1092                 wc -l)
1093         [ $found -eq 1 ] || error "Write: second extension component not found"
1094
1095         local end_1=$($LFS getstripe -I1 -E $comp_file)
1096
1097         # 256 MiB
1098         [ $end_1 -eq 268435456 ] ||
1099                 error "end of first component $end_1 != 268435456"
1100
1101         # Write past end of extension space component, in to normal component
1102         # should exhaust & remove extension component
1103         dd if=/dev/zero bs=1M count=1 seek=1100 of=$comp_file conv=notrunc ||
1104                 error "dd distant seek failed"
1105
1106         local ost_idx1=$($LFS getstripe -I1 -i $comp_file)
1107         # the last component index is 3
1108         local ost_idx2=$($LFS getstripe -I3 -i $comp_file)
1109
1110         [ $ost_idx1 -eq $ost_idx2 ] && error "$ost_idx1 == $ost_idx2"
1111
1112         local start1=$($LFS getstripe -I1 --comp-start $comp_file)
1113         local end1=$($LFS getstripe -I1 -E $comp_file)
1114         local start2=$($LFS getstripe -I3 --comp-start $comp_file)
1115         local end2=$($LFS getstripe -I3 -E $comp_file)
1116
1117         [ $start1 -eq 0 ] || error "start of first component incorrect"
1118         [ $end1 -eq 1073741824 ] || error "end of first component incorrect"
1119         [ $start2 -eq 1073741824  ] ||
1120                 error "start of second component incorrect"
1121         [ "$end2" = "EOF" ] || error "end of second component incorrect"
1122
1123         flg_opts="--comp-flags extension"
1124         found=$($LFS find $flg_opts $comp_file | wc -l)
1125         [ $found -eq 0 ] || error "Seek Write: extension component exists"
1126
1127         sel_layout_sanity $comp_file 2
1128 }
1129 run_test 19c "Test self-extending layout seeking behavior"
1130
1131 test_19d() {
1132         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
1133         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code $SEL_VER) ] &&
1134                 skip "skipped for lustre < $SEL_VER"
1135
1136         local comp_file=$DIR/$tdir/$tfile
1137         local flg_opts=""
1138         local found=""
1139
1140         test_mkdir -p $DIR/$tdir
1141
1142         $LFS setstripe -E 128M -c 1 -z 64M -E -1 $comp_file ||
1143                 error "Create $comp_file failed"
1144
1145         # This will cause component 1 to be extended to 128M, then the
1146         # extension space component will be removed
1147         dd if=/dev/zero of=$comp_file bs=130M count=1 ||
1148                 error "dd to extend failed"
1149
1150         flg_opts="--comp-flags init"
1151         found=$($LFS find --comp-start 0M -E 128M $flg_opts $comp_file | wc -l)
1152         [ $found -eq 1 ] || error "Write: first component not found"
1153
1154         flg_opts="--comp-flags init"
1155         found=$($LFS find --comp-start 128M -E EOF $flg_opts $comp_file | wc -l)
1156         [ $found -eq 1 ] || error "Write: second component not found"
1157
1158         sel_layout_sanity $comp_file 2
1159
1160         # always remove large files in case of DO_CLEANUP=false
1161         rm -f $comp_file || error "Delete $comp_file failed"
1162 }
1163 run_test 19d "Test write which completely spans extension space component"
1164
1165 test_19e_check() {
1166         comp_file=$1
1167
1168         local comp2_flags=$($LFS getstripe -I2 --comp-flags $comp_file)
1169         local comp3_flags=$($LFS getstripe -I3 --comp-flags $comp_file)
1170
1171         [ "$comp2_flags" != "init" ] && error "$comp2_flags != init"
1172         [ "$comp3_flags" != "extension" ] && error "$comp3_flags != extension"
1173
1174         local flg_opts=" --comp-start 2M -E 66M --comp-flags init"
1175         local found=$($LFS find $flg_opts $comp_file | wc -l)
1176         [ $found -eq 1 ] || error "Write: extended second component not found"
1177
1178         flg_opts="--comp-start 66M -E EOF --comp-flags extension"
1179         found=$($LFS find $flg_opts $comp_file | wc -l)
1180         [ $found -eq 1 ] || error "Write: third component not found"
1181
1182         sel_layout_sanity $comp_file 3
1183 }
1184
1185 test_19e() {
1186         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
1187         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code $SEL_VER) ] &&
1188                 skip "skipped for lustre < $SEL_VER"
1189
1190         local comp_file=$DIR/$tdir/$tfile
1191         local rw_len=$((3 * 1024 * 1024))       # 3M
1192         local flg_opts=""
1193         local found=""
1194
1195         test_mkdir -p $DIR/$tdir
1196
1197         $LFS setstripe -E 2m -E -1 -z 64M $comp_file ||
1198                 error "Create $comp_file failed"
1199
1200         replay_barrier $SINGLEMDS
1201
1202         #instantiate & extend second component
1203         dd if=/dev/zero of=$comp_file bs=4M count=1 ||
1204                 error "dd to extend failed"
1205
1206         local ost_idx2=$($LFS getstripe -I2 -i $comp_file)
1207         local ost_idx3=$($LFS getstripe -I3 -i $comp_file)
1208
1209         [ $ost_idx2 -eq $ost_idx3 ] && error "$ost_idx2 == $ost_idx3"
1210         [ $ost_idx3 -ne "-1" ] && error "third component init $ost_idx3"
1211
1212         test_19e_check $comp_file
1213
1214         local f1=$($LFS getstripe -I2 $comp_file | awk '/l_fid:/ {print $7}')
1215         echo "before MDS recovery, the ost fid of 2nd component is $f1"
1216
1217         fail $SINGLEMDS
1218
1219         local f2=$($LFS getstripe -I2 $comp_file | awk '/l_fid:/ {print $7}')
1220         echo "after MDS recovery, the ost fid of 2nd component is $f2"
1221         [ "x$f1" == "x$f2" ] || error "$f1 != $f2"
1222
1223         # simply repeat all previous checks, but also verify components are on
1224         # the same OST as before
1225
1226         local ost_idx2_2=$($LFS getstripe -I2 -i $comp_file)
1227         local ost_idx3_2=$($LFS getstripe -I3 -i $comp_file)
1228
1229         [ $ost_idx2_2 -eq $ost_idx3_2 ] && error "$ost_idx2_2 == $ost_idx3_2"
1230         [ $ost_idx3_2 -ne "-1" ] && error "second component init $ost_idx3_2"
1231
1232         # verify OST id is the same after failover
1233         [ $ost_idx2 -ne $ost_idx2_2 ] &&
1234                 error "$ost_idx2 != $ost_idx2_2, changed after failover"
1235
1236         test_19e_check $comp_file
1237 }
1238 run_test 19e "Replay of layout instantiation & extension"
1239
1240 test_19f() {
1241         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
1242         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code $SEL_VER) ] &&
1243                 skip "skipped for lustre < $SEL_VER"
1244
1245         local comp_file=$DIR/$tdir/$tfile
1246         local flg_opts=""
1247         local found=""
1248
1249         test_mkdir -p $DIR/$tdir
1250
1251         $LFS setstripe -E 256M --comp-flags extension -E -1 $comp_file
1252
1253         [ $? != 0 ] || error "should not be able to manually set extension flag"
1254
1255 }
1256 run_test 19f "Rejection of invalid layouts"
1257
1258 test_19g() {
1259         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
1260         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code $SEL_VER) ] &&
1261                 skip "skipped for lustre < $SEL_VER"
1262
1263         local file1=$DIR/${tfile}-1
1264         local file2=$DIR/${tfile}-2
1265
1266         test_mkdir -p $DIR/$tdir
1267         multiop $file1 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:c ||
1268                 error "create failed $file1"
1269         multiop $file2 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:c ||
1270                 error "create failed $file2"
1271
1272         $LFS setstripe --component-add -E 1G -c 1 $file1 ||
1273                 error "comp-add [0,1G] failed $file1"
1274         $LFS setstripe --component-add -E 512M -z 128M $file1 &&
1275                 error "comp-add [1G,1G],SEL[1G,512M] succeded $file1"
1276         $LFS setstripe --component-add -E 10G -z 128M $file1 ||
1277                 error "comp-add [1G,1G],SEL[1G,10G] failed $file1"
1278         $LFS setstripe --component-add -E -1 $file1 ||
1279                 error "comp-add [10G,-1] failed $file1"
1280
1281         $LFS setstripe --component-add -E 1G -z 32M -c 1 $file2 &&
1282                 error "comp-add with smal ext size succeeded $file1"
1283         $LFS setstripe --component-add -E 1G -z 100M -c 1 $file2 &&
1284                 error "comp-add with not aligned ext size succeeded $file1"
1285         $LFS setstripe --component-add -E 1G -z 128M -c 1 $file2 ||
1286                 error "comp-add [0,128M],SEL[128M,1G] failed $file1"
1287         $LFS setstripe --component-add -E 10G $file2 ||
1288                 error "comp-add [1G,10G] failed $file1"
1289         $LFS setstripe --component-add -E -1 -z 128M -c 1 $file2 ||
1290                 error "comp-add [10G,10G],SEL[10G,-1] failed $file1"
1291         $LFS setstripe --component-add -E -1 -z 128M -c 1 $file2 &&
1292                 error "repeated comp-add [10G,10G],SEL[10G,-1] succeeded $file1"
1293
1294         $LFS getstripe $file1
1295         flg_opts="--comp-flags init"
1296         found=$($LFS find --comp-start 0 -E 1G $flg_opts $file1 | wc -l)
1297         [ $found -eq 1 ] || error "First component not found $file1"
1298
1299         flg_opts="--comp-flags ^init"
1300         found=$($LFS find --comp-start 1G -E 1G $flg_opts $file1 | wc -l)
1301         [ $found -eq 1 ] || error "Second component not found $file1"
1302
1303         flg_opts="--comp-flags ^init,extension"
1304         found=$($LFS find --comp-start 1G -E 10G $flg_opts $file1 | wc -l)
1305         [ $found -eq 1 ] || error "Third component not found $file1"
1306
1307         flg_opts="--comp-flags ^init"
1308         found=$($LFS find --comp-start 10G -E EOF $flg_opts $file1 | wc -l)
1309         [ $found -eq 1 ] || error "Fourth component not found $file1"
1310
1311         $LFS getstripe $file2
1312         flg_opts="--comp-flags init"
1313         found=$($LFS find --comp-start 0 -E 128M $flg_opts $file2 | wc -l)
1314         [ $found -eq 1 ] || error "First component not found $file2"
1315
1316         flg_opts="--comp-flags extension"
1317         found=$($LFS find --comp-start 128M -E 1G $flg_opts $file2 | wc -l)
1318         [ $found -eq 1 ] || error "Second component not found $file2"
1319
1320         flg_opts="--comp-flags ^init"
1321         found=$($LFS find --comp-start 1G -E 10G $flg_opts $file2 | wc -l)
1322         [ $found -eq 1 ] || error "Third component not found $file2"
1323
1324         flg_opts="--comp-flags ^init"
1325         found=$($LFS find --comp-start 10G -E 10G $flg_opts $file2 | wc -l)
1326         [ $found -eq 1 ] || error "Fourth component not found $file2"
1327
1328         flg_opts="--comp-flags ^init,extension"
1329         found=$($LFS find --comp-start 10G -E EOF $flg_opts $file2 | wc -l)
1330         [ $found -eq 1 ] || error "Fifth component not found $file2"
1331 }
1332 run_test 19g "component-add behaviour"
1333
1334 # Test out of space behavior
1335 test_20a() {
1336         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
1337         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code $SEL_VER) ] &&
1338                 skip "skipped for lustre < $SEL_VER"
1339
1340         local comp_file=$DIR/$tdir/$tfile
1341         local flg_opts=""
1342         local found=""
1343
1344         test_mkdir -p $DIR/$tdir
1345
1346         # without this, a previous delete can finish after we check free space
1347         wait_delete_completed
1348         wait_mds_ost_sync
1349
1350         # First component is on OST0
1351         $LFS setstripe -E 256M -i 0 -z 64M -E -1 -z 1G $comp_file ||
1352                 error "Create $comp_file failed"
1353
1354         # write past end of first component, so it is extended
1355         dd if=/dev/zero of=$comp_file bs=1M count=1 seek=66 ||
1356                 error "dd to extend failed"
1357
1358         flg_opts="--comp-flags extension"
1359         found=$($LFS find --comp-start 128M -E 256M $flg_opts $comp_file |wc -l)
1360         [ $found -eq 1 ] || error "Write: Second component not found"
1361
1362         local ost_idx1=$($LFS getstripe -I1 -i $comp_file)
1363         local wms=$(ost_watermarks_set_enospc $tfile $ost_idx1 |
1364                     grep "watermarks")
1365         stack_trap "ost_watermarks_clear_enospc $tfile $ost_idx1 $wms" EXIT
1366
1367         flg_opts="--comp-flags extension"
1368         # Write past current init comp, but we won't extend (because no space)
1369         dd if=/dev/zero of=$comp_file bs=1M count=10 seek=200 ||
1370                 error "dd write past current comp failed"
1371
1372         $LFS getstripe $comp_file
1373
1374         flg_opts="--comp-flags init"
1375         found=$($LFS find --comp-start 128M -E 1152M $flg_opts $comp_file | \
1376                 wc -l)
1377         [ $found -eq 1 ] || error "Write: third component not found"
1378
1379         flg_opts="--comp-flags extension"
1380         found=$($LFS find --comp-start 1152M -E EOF $flg_opts $comp_file |wc -l)
1381         [ $found -eq 1 ] || error "Write: fourth extension component not found"
1382
1383         sel_layout_sanity $comp_file 3
1384 }
1385 run_test 20a "Test out of space, spillover to defined component"
1386
1387 test_20b() {
1388         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
1389         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code $SEL_VER) ] &&
1390                 skip "skipped for lustre < $SEL_VER"
1391
1392         local comp_file=$DIR/$tdir/$tfile
1393         local flg_opts=""
1394         local found=""
1395
1396         test_mkdir -p $DIR/$tdir
1397
1398         # Pool allows us to force use of only certain OSTs
1399         pool_add $TESTNAME || error "Pool creation failed"
1400         pool_add_targets $TESTNAME 0 || error "Pool add targets failed"
1401
1402         # normal component to 10M, extendable component to 1G
1403         # further extendable to EOF
1404         $LFS setstripe -E 10M -E 1G -p $TESTNAME -z 64M -E -1 -p "" -z 512M \
1405                 $comp_file || error "Create $comp_file failed"
1406
1407         replay_barrier $SINGLEMDS
1408
1409         found=$($LFS find --comp-start 10M -E 10M $flg_opts $comp_file | wc -l)
1410         [ $found -eq 1 ] || error "Zero length component not found"
1411
1412         local ost_idx1=0
1413         local wms=$(ost_watermarks_set_enospc $tfile $ost_idx1 |
1414                     grep "watermarks")
1415         stack_trap "ost_watermarks_clear_enospc $tfile $ost_idx1 $wms" EXIT
1416
1417         # write past end of first component
1418         # This should remove the next component, since OST0 is out of space
1419         # and it is striped there (pool contains only OST0)
1420         dd if=/dev/zero of=$comp_file bs=1M count=1 seek=14 ||
1421                 error "dd to extend/remove failed"
1422
1423         $LFS getstripe $comp_file
1424
1425         found=$($LFS find --comp-start 10M -E 10M $flg_opts $comp_file | wc -l)
1426         [ $found -eq 0 ] || error "Write: zero length component still present"
1427
1428         flg_opts="--comp-flags init"
1429         found=$($LFS find --comp-start 10M -E 522M $flg_opts $comp_file | wc -l)
1430         [ $found -eq 1 ] || error "Write: second component not found"
1431
1432         flg_opts="--comp-flags extension"
1433         found=$($LFS find --comp-start 522M -E EOF $flg_opts $comp_file | wc -l)
1434         [ $found -eq 1 ] || error "Write: third component not found"
1435
1436         fail $SINGLEMDS
1437
1438         found=$($LFS find --comp-start 10M -E 10M $flg_opts $comp_file | wc -l)
1439         [ $found -eq 0 ] || error "Failover: 0-length component still present"
1440
1441         flg_opts="--comp-flags init"
1442         found=$($LFS find --comp-start 10M -E 522M $flg_opts $comp_file | wc -l)
1443         [ $found -eq 1 ] || error "Failover: second component not found"
1444
1445         flg_opts="--comp-flags extension"
1446         found=$($LFS find --comp-start 522M -E EOF $flg_opts $comp_file | wc -l)
1447         [ $found -eq 1 ] || error "Failover: third component not found"
1448
1449         sel_layout_sanity $comp_file 3
1450 }
1451 run_test 20b "Remove component without instantiation when there is no space"
1452
1453 test_20c() {
1454         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
1455         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code $SEL_VER) ] &&
1456                 skip "skipped for lustre < $SEL_VER"
1457
1458         local comp_file=$DIR/$tdir/$tfile
1459         local flg_opts=""
1460         local found=""
1461
1462         test_mkdir -p $DIR/$tdir
1463
1464         # pool is used to limit available OSTs to 0 and 1, so we can set all
1465         # available OSTs out of space
1466         pool_add $TESTNAME || error "Pool creation failed"
1467         pool_add_targets $TESTNAME 0 1 || error "Pool add targets failed"
1468
1469         # without this, a previous delete can finish after we check free space
1470         wait_delete_completed
1471         wait_mds_ost_sync
1472
1473         $LFS setstripe -E 100M -E -1 -p $TESTNAME -z 64M $comp_file ||
1474                 error "Create $comp_file failed"
1475
1476         local ost_idx1=0
1477         local ost_idx2=1
1478         local wms=$(ost_watermarks_set_enospc $tfile $ost_idx1 |
1479                     grep "watermarks")
1480         local wms2=$(ost_watermarks_set_enospc $tfile $ost_idx2 |
1481                      grep "watermarks")
1482         stack_trap "ost_watermarks_clear_enospc $tfile $ost_idx1 $wms" EXIT
1483         stack_trap "ost_watermarks_clear_enospc $tfile $ost_idx2 $wms2" EXIT
1484
1485         dd if=/dev/zero of=$comp_file bs=1M count=1 seek=120 &&
1486                 error "dd should fail with ENOSPC"
1487
1488         flg_opts="--comp-flags init"
1489         found=$($LFS find --comp-start 0M -E 100M $flg_opts $comp_file | wc -l)
1490         [ $found -eq 1 ] || error "Write: First component not found"
1491
1492         flg_opts="--comp-flags ^init"
1493         found=$($LFS find --comp-start 100M -E 100M $flg_opts $comp_file |wc -l)
1494         [ $found -eq 1 ] || error "Write: 0-length component not found"
1495
1496         flg_opts="--comp-flags extension"
1497         found=$($LFS find --comp-start 100M -E EOF $flg_opts $comp_file | wc -l)
1498         [ $found -eq 1 ] || error "Write: third extension component not found"
1499
1500         sel_layout_sanity $comp_file 3
1501 }
1502 run_test 20c "Test inability to stripe new extension component"
1503
1504 test_20d() {
1505         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
1506         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code $SEL_VER) ] &&
1507                 skip "skipped for lustre < $SEL_VER"
1508
1509         local comp_file=$DIR/$tdir/$tfile
1510         test_mkdir -p $DIR/$tdir
1511
1512         wait_delete_completed
1513         wait_mds_ost_sync
1514
1515         pool_add $TESTNAME || error "Pool creation failed"
1516         pool_add_targets $TESTNAME 0 || error "Pool add targets failed"
1517         $LFS setstripe -E 64m -E -1 -p $TESTNAME -z 64M $comp_file ||
1518                 error "Create $comp_file failed"
1519
1520         replay_barrier $SINGLEMDS
1521
1522         local wms=$(ost_watermarks_set_low_space 0 | grep "watermarks")
1523         dd if=/dev/zero bs=1M count=1 seek=100 of=$comp_file
1524         RC=$?
1525
1526         ost_watermarks_clear_enospc $tfile 0 $wms
1527         [ $RC -eq 0 ] || error "dd failed: $RC"
1528
1529         $LFS getstripe $comp_file
1530         local flg_opts="--comp-start 64M -E 128M --comp-flags init"
1531         local found=$($LFS find $flg_opts $comp_file | wc -l)
1532         [ $found -eq 1 ] || error "Write: component (64M-128M) not found"
1533
1534         local ost_idx=$($LFS getstripe -I3 -i $comp_file)
1535         [ "$ost_idx" != "-1" ] && error "Write: EXT component disappeared"
1536
1537         fail $SINGLEMDS
1538
1539         found=$($LFS find $flg_opts $comp_file | wc -l)
1540         [ $found -eq 1 ] || error "Failover: component (64M-128M) not found"
1541
1542         ost_idx=$($LFS getstripe -I3 -i $comp_file)
1543         [ "$ost_idx" != "-1" ] && error "Failover: EXT component disappeared"
1544
1545         sel_layout_sanity $comp_file 3
1546 }
1547 run_test 20d "Low on space + 0-length comp: force extension"
1548
1549 test_20e() {
1550         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
1551         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code $SEL_VER) ] &&
1552                 skip "skipped for lustre < $SEL_VER"
1553
1554         local comp_file=$DIR/$tdir/$tfile
1555         test_mkdir -p $DIR/$tdir
1556
1557         wait_delete_completed
1558         wait_mds_ost_sync
1559
1560         pool_add $TESTNAME || error "Pool creation failed"
1561         pool_add_targets $TESTNAME 0 || error "Pool add targets failed"
1562
1563         $LFS setstripe -E 64m -E 640M -z 64M -p $TESTNAME -E -1 $comp_file ||
1564                 error "Create $comp_file failed"
1565
1566         local wms=$(ost_watermarks_set_low_space 0 | grep "watermarks")
1567
1568         dd if=/dev/zero bs=1M count=1 seek=100 of=$comp_file
1569         RC=$?
1570
1571         ost_watermarks_clear_enospc $tfile 0 $wms
1572         [ $RC -eq 0 ] || error "dd failed $RC"
1573
1574         $LFS getstripe $comp_file
1575         local flg_opts="--comp-start 64M -E EOF --comp-flags init"
1576         local found=$($LFS find $flg_opts $comp_file | wc -l)
1577         [ $found -eq 1 ] || error "Write: component (64M-EOF) not found"
1578
1579         local ost_idx=$($LFS getstripe -I2 -i $comp_file)
1580         [ "$ost_idx" != "" ] && error "Write: 0-length component still exists"
1581         ost_idx=$($LFS getstripe -I3 -i $comp_file)
1582         [ "$ost_idx" != "" ] && error "Write: extension component still exists"
1583
1584         sel_layout_sanity $comp_file 2
1585 }
1586 run_test 20e "ENOSPC with next real comp: spillover and backward extension"
1587
1588 # Simple DoM interaction test
1589 test_21a() {
1590         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code $SEL_VER) ] &&
1591                 skip "skipped for lustre < $SEL_VER"
1592
1593         local comp_file=$DIR/$tdir/$tfile
1594         local flg_opts=""
1595         local found=""
1596
1597         test_mkdir -p $DIR/$tdir
1598
1599         # simple, correct self-extending layout after DoM component
1600         $LFS setstripe -E 1M -L mdt -E -1 -z 64m $comp_file || \
1601                 error "Create $comp_file failed"
1602
1603         # Write to DoM component & to self-extending comp after it
1604         dd if=/dev/zero bs=1M count=12 of=$comp_file ||
1605                 error "dd to extend failed"
1606
1607         flg_opts="--comp-flags init"
1608         found=$($LFS find --comp-start 1M -E 65M $flg_opts $comp_file | wc -l)
1609         [ $found -eq 1 ] || error "Write: extended component not found"
1610
1611         flg_opts="--comp-flags extension"
1612         found=$($LFS find --comp-start 65M $flg_opts $comp_file | wc -l)
1613         [ $found -eq 1 ] || error "Write: extension component not found"
1614
1615         sel_layout_sanity $comp_file 3
1616 }
1617 run_test 21a "Simple DoM interaction tests"
1618
1619 # DoM + extension + removal
1620 test_21b() {
1621         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
1622         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code $SEL_VER) ] &&
1623                 skip "skipped for lustre < $SEL_VER"
1624
1625         local comp_file=$DIR/$tdir/$tfile
1626         local ost_name=$(ostname_from_index 0)
1627         local flg_opts=""
1628         local found=""
1629
1630         test_mkdir -p $DIR/$tdir
1631
1632         # DoM, extendable component, further extendable component
1633         $LFS setstripe -E 1M -L mdt -E 256M -i 0 -z 64M -E -1 -z 1G \
1634                 $comp_file || error "Create $comp_file failed"
1635
1636         found=$($LFS find --comp-start 1M -E 1M $flg_opts $comp_file | wc -l)
1637         [ $found -eq 1 ] || error "Write: Zero length component not found"
1638
1639         # This also demonstrates that we will avoid degraded OSTs
1640         do_facet ost1 $LCTL set_param -n obdfilter.$ost_name.degraded=1
1641         # sleep to guarantee we see the degradation
1642         sleep_maxage
1643
1644         # un-degrade on exit
1645         stack_trap "do_facet ost1 $LCTL set_param -n \
1646                 obdfilter.$ost_name.degraded=0; sleep_maxage" EXIT
1647
1648         # This should remove the first component after DoM and spill over to
1649         # the next one
1650         dd if=/dev/zero bs=1M count=2 of=$comp_file ||
1651                 error "dd to remove+spill over failed"
1652
1653         found=$($LFS find --comp-start 1M -E 1M $flg_opts $comp_file | wc -l)
1654         [ $found -eq 0 ] || error "Write: Zero length component still present"
1655
1656         flg_opts="--comp-flags init"
1657         found=$($LFS find --comp-start 1M -E 1025M $flg_opts $comp_file | wc -l)
1658         [ $found -eq 1 ] || error "Write: extended component not found"
1659
1660         flg_opts="--comp-flags extension"
1661         found=$($LFS find --comp-start 1025M -E EOF $flg_opts $comp_file |wc -l)
1662         [ $found -eq 1 ] || error "Write: extension component not found"
1663
1664         sel_layout_sanity $comp_file 3
1665 }
1666 run_test 21b "DoM followed by extendable component with removal"
1667
1668 # Test of repeat component behavior with OOS/degraded OST
1669 test_22a() {
1670         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
1671         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code $SEL_VER) ] &&
1672                 skip "skipped for lustre < $SEL_VER"
1673
1674         local comp_file=$DIR/$tdir/$tfile
1675         local flg_opts=""
1676         local found=""
1677
1678         test_mkdir -p $DIR/$tdir
1679
1680         $LFS setstripe -E -1 -c 1 -z 128M $comp_file ||
1681                 error "Create $comp_file failed"
1682
1683         local ost_idx1=$($LFS getstripe -I1 -i $comp_file)
1684         local ost_name=$(ostname_from_index $ost_idx1)
1685
1686         # write past end of first component, so it is extended
1687         dd if=/dev/zero of=$comp_file bs=1M count=1 seek=130 ||
1688                 error "dd to extend failed"
1689
1690         flg_opts="--comp-flags extension"
1691         found=$($LFS find --comp-start 256M -E EOF $flg_opts $comp_file | wc -l)
1692         [ $found -eq 1 ] || error "Write: second component not found"
1693
1694         # degrade OST for component 1
1695         do_facet ost$((ost_idx1+1)) $LCTL set_param -n \
1696                 obdfilter.$ost_name.degraded=1
1697         # sleep to guarantee we see the degradation
1698         sleep_maxage
1699
1700         # un-degrade on exit
1701         stack_trap "do_facet ost$((ost_idx1+1)) $LCTL set_param -n \
1702                 obdfilter.$ost_name.degraded=0; sleep_maxage" EXIT
1703
1704         replay_barrier $SINGLEMDS
1705
1706         # seek past the end of current comp & write, should cause a new comp
1707         # to be created (ie repeat previous comp)
1708         dd if=/dev/zero of=$comp_file bs=1M count=1 seek=300 ||
1709                 error "dd to repeat failed"
1710
1711         local ost_idx2=$($LFS getstripe -I2 -i $comp_file)
1712
1713         [ $ost_idx1 -eq $ost_idx2 ] && error "$ost_idx1 == $ost_idx2"
1714
1715         flg_opts="--comp-flags init"
1716         found=$($LFS find --comp-start 256M $flg_opts $comp_file | wc -l)
1717         [ $found -eq 1 ] || error "Write: second component not found"
1718
1719         flg_opts="--comp-flags extension"
1720         found=$($LFS find --comp-start 384M -E EOF $flg_opts $comp_file | wc -l)
1721         [ $found -eq 1 ] || error "Write: extension component not found"
1722
1723         fail $SINGLEMDS
1724
1725         local ost_idx2_2=$($LFS getstripe -I2 -i $comp_file)
1726         [ $ost_idx2_2 -ne $ost_idx2 ] && error "$ost_idx2_2 != $ost_idx2"
1727
1728         flg_opts="--comp-flags init"
1729         found=$($LFS find --comp-start 256M $flg_opts $comp_file | wc -l)
1730         [ $found -eq 1 ] || error "Failover: second component not found"
1731
1732         flg_opts="--comp-flags extension"
1733         found=$($LFS find --comp-start 384M -E EOF $flg_opts $comp_file | wc -l)
1734         [ $found -eq 1 ] || error "Failover: extension component not found"
1735
1736         sel_layout_sanity $comp_file 3
1737 }
1738 run_test 22a "Test repeat component behavior with degraded OST"
1739
1740 # Test repeat behavior with low space
1741 test_22b() {
1742         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
1743         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code $SEL_VER) ] &&
1744                 skip "skipped for lustre < $SEL_VER"
1745
1746         local comp_file=$DIR/$tdir/$tfile
1747         local flg_opts=""
1748         local found=""
1749
1750         test_mkdir -p $DIR/$tdir
1751
1752         # without this, a previous delete can finish after we check free space
1753         wait_delete_completed
1754         wait_mds_ost_sync
1755
1756         $LFS setstripe -E -1 -c 1 -z 128M \
1757                 $comp_file || error "Create $comp_file failed"
1758
1759         # write past end of first component, so it is extended
1760         dd if=/dev/zero of=$comp_file bs=1M count=1 seek=130 ||
1761                 error "dd to extend failed"
1762
1763         flg_opts="--comp-flags extension"
1764         found=$($LFS find --comp-start 256M -E EOF $flg_opts $comp_file | wc -l)
1765         [ $found -eq 1 ] || error "Write: Second component not found"
1766
1767         # set our OST low on space
1768         local ost_idx1=$($LFS getstripe -I1 -i $comp_file)
1769         local wms=$(ost_watermarks_set_low_space $ost_idx1 | grep "watermarks")
1770
1771         stack_trap "ost_watermarks_clear_enospc $tfile $ost_idx1 $wms" EXIT
1772
1773         # Write past end of current space, fail to extend, causing repeat
1774         dd if=/dev/zero of=$comp_file bs=1M count=1 seek=300 ||
1775                 error "dd to repeat failed"
1776
1777         $LFS getstripe $comp_file
1778
1779         local ost_idx2=$($LFS getstripe -I2 -i $comp_file)
1780
1781         [ $ost_idx1 -eq $ost_idx2 ] && error "$ost_idx1 == $ost_idx2"
1782
1783         flg_opts="--comp-flags init"
1784         found=$($LFS find --comp-start 256M $flg_opts $comp_file | wc -l)
1785         [ $found -eq 1 ] || error "Write: Second component not found"
1786
1787         flg_opts="--comp-flags extension"
1788         found=$($LFS find --comp-start 384M -E EOF $flg_opts $comp_file | wc -l)
1789         [ $found -eq 1 ] || error "Write: Extension component not found"
1790
1791         sel_layout_sanity $comp_file 3
1792 }
1793 run_test 22b "Test simple 'out of space' condition with repeat"
1794
1795 # This tests both "repeat" and "extend in place when repeat fails" aspects
1796 # of repeating components
1797 test_22c() {
1798         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
1799         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code $SEL_VER) ] &&
1800                 skip "skipped for lustre < $SEL_VER"
1801
1802         local comp_file=$DIR/$tdir/$tfile
1803         local flg_opts=""
1804         local found=""
1805
1806         test_mkdir -p $DIR/$tdir
1807
1808         # pool is used to limit available OSTs to 0 and 1, so we can set all
1809         # available OSTs out of space
1810         pool_add $TESTNAME || error "Pool creation failed"
1811         pool_add_targets $TESTNAME 0 1 || error "Pool add targets failed"
1812
1813         # without this, a previous delete can finish after we check free space
1814         wait_delete_completed
1815         wait_mds_ost_sync
1816
1817         $LFS setstripe -E -1 -z 64M -c 1 -p "$TESTNAME" $comp_file || \
1818                 error "Create $comp_file failed"
1819
1820         # write past end of first component, so it is extended
1821         dd if=/dev/zero of=$comp_file bs=1M count=1 seek=80 conv=notrunc ||
1822                 error "dd to extend failed"
1823
1824         $LFS getstripe $comp_file
1825
1826         flg_opts="--comp-flags extension"
1827         found=$($LFS find --comp-start 128M -E EOF $flg_opts $comp_file | wc -l)
1828         [ $found -eq 1 ] || error "Write: second component not found"
1829
1830         # set our OST out of space
1831         local ost_idx1=$($LFS getstripe -I1 -i $comp_file)
1832         local wms=$(ost_watermarks_set_enospc $tfile $ost_idx1 |
1833                     grep "watermarks")
1834         stack_trap "ost_watermarks_clear_enospc $tfile $ost_idx1 $wms" EXIT
1835
1836         # This should create a repeat component on a new OST
1837         dd if=/dev/zero of=$comp_file bs=1M count=1 seek=180 conv=notrunc ||
1838                 error "dd to repeat failed"
1839
1840         $LFS getstripe $comp_file
1841
1842         local comp_cnt=$($LFS getstripe --component-count $comp_file)
1843         [ $comp_cnt -ne 3 ] && error "component count: $comp_cnt, should be 3"
1844
1845         # New second component should be on a different OST
1846         local ost_idx2=$($LFS getstripe --comp-start=128m \
1847                          --comp-end=192m --comp-flags=init -i $comp_file)
1848
1849         [ $ost_idx1 -eq $ost_idx2 ] && error "2nd comp: same OST $ost_idx1"
1850
1851         local wms2=$(ost_watermarks_set_enospc $tfile $ost_idx2 |
1852                      grep "watermarks")
1853         stack_trap "ost_watermarks_clear_enospc $tfile $ost_idx2 $wms2" EXIT
1854
1855         # now that the second OST is out of space (as is the first OST), we
1856         # attempt to extend.  This should result in an extension of the
1857         # existing component, rather than a new component.
1858         dd if=/dev/zero of=$comp_file bs=1M count=1 seek=240 conv=notrunc ||
1859                 error "dd for forced extension failed"
1860
1861         $LFS getstripe $comp_file
1862
1863         # clear out of space on first OST
1864         ost_watermarks_clear_enospc $tfile $ost_idx1 $wms
1865
1866         # finally, now that the first OST has space again, we attempt to
1867         # extend one last time.  This should create a new component on the
1868         # first OST
1869         dd if=/dev/zero of=$comp_file bs=1M count=1 seek=300 conv=notrunc ||
1870                 error "dd for repeat on first OST failed"
1871
1872         $LFS getstripe $comp_file
1873
1874         flg_opts="--comp-flags init"
1875         found=$($LFS find --comp-start 128M $flg_opts $comp_file | wc -l)
1876         [ $found -eq 1 ] || error "Write: second component not found"
1877
1878         flg_opts="--comp-flags init"
1879         found=$($LFS find --comp-start 256M $flg_opts $comp_file | wc -l)
1880         [ $found -eq 1 ] || error "Write: third component not found"
1881
1882         flg_opts="--comp-flags extension"
1883         found=$($LFS find --comp-start 320M -E EOF $flg_opts $comp_file | wc -l)
1884         [ $found -eq 1 ] || error "Write: extension component not found"
1885
1886         sel_layout_sanity $comp_file 4
1887 }
1888 run_test 22c "Test repeat with out of space on > 1 OST"
1889
1890 test_22d_post_check() {
1891         local comp_file=$1
1892         local name=$2
1893         local flg_opts="--comp-flags init"
1894         local found=$($LFS find --comp-start 0M -E 128M $flg_opts $comp_file |
1895                       wc -l)
1896         [ $found -eq 1 ] || {
1897                 $LFS getstripe $comp_file
1898                 error "$name: second component not found"
1899         }
1900
1901         flg_opts="--comp-flags extension"
1902         found=$($LFS find --comp-start 128M -E EOF $flg_opts $comp_file | wc -l)
1903         [ $found -eq 1 ] || error "$name: third extension component not found"
1904
1905         sel_layout_sanity $comp_file 2
1906 }
1907
1908 test_22d_pre() {
1909         local comp_file=$1
1910         local wms="$2"
1911         local RC
1912
1913         # write past end of first component
1914         dd if=/dev/zero of=$comp_file bs=1M count=1 seek=70
1915         RC=$?
1916
1917         ost_watermarks_clear_enospc $tfile 0 $wms
1918         [ $RC -eq 0 ] || error "dd to force extend failed"
1919
1920         test_22d_post_check $comp_file "Write"
1921 }
1922
1923 test_22d() {
1924         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
1925         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code $SEL_VER) ] &&
1926                 skip "skipped for lustre < $SEL_VER"
1927
1928         local comp_file=$DIR/$tdir/$tfile
1929         local flg_opts=""
1930         local found=""
1931
1932         test_mkdir -p $DIR/$tdir
1933
1934         # without this, a previous delete can finish after we check free space
1935         wait_delete_completed
1936         wait_mds_ost_sync
1937
1938         # Pool allows us to force use of only certain OSTs
1939         pool_add $TESTNAME || error "Pool creation failed"
1940         pool_add_targets $TESTNAME 0 || error "Pool add targets failed"
1941
1942         # 1. Fail to extend due to OOS, try to repeat within the same pool,
1943         # fail to stripe (again OOS) the 0-length component, remove the
1944         # repeated one, force the extension on the original one.
1945         $LFS setstripe -E -1 -p $TESTNAME -z 64M $comp_file ||
1946                 error "Create $comp_file failed"
1947
1948         replay_barrier $SINGLEMDS
1949
1950         # set our OST out of space
1951         local wms=$(ost_watermarks_set_enospc $tfile 0 | grep "watermarks")
1952
1953         test_22d_pre $comp_file "$wms"
1954         fail $SINGLEMDS
1955         test_22d_post_check $comp_file "Failover"
1956
1957         # 2. repeat with low on space: 0-length repeated component will be
1958         # striped, but still fails to be extended; otherwise the same as (1).
1959         rm -f $comp_file
1960         $LFS setstripe -E -1 -p $TESTNAME -z 64M $comp_file ||
1961                 error "Create $comp_file failed"
1962
1963         replay_barrier $SINGLEMDS
1964
1965         # set our OST low on space
1966         local wms=$(ost_watermarks_set_low_space 0 | grep "watermarks")
1967
1968         test_22d_pre $comp_file "$wms"
1969         fail $SINGLEMDS
1970         test_22d_post_check $comp_file "Failover"
1971 }
1972 run_test 22d "out of/low on space + failed to repeat + forced extension"
1973
1974 test_23a() {
1975         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
1976         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code $SEL_VER) ] &&
1977                 skip "skipped for lustre < $SEL_VER"
1978
1979         local comp_file=$DIR/$tdir/$tfile
1980         test_mkdir -p $DIR/$tdir
1981
1982         $LFS setstripe -z 64M -c 1 -E -1 $comp_file ||
1983                 error "Create $comp_file failed"
1984
1985         dd if=/dev/zero bs=1M oflag=append count=1 of=$comp_file ||
1986                 error "dd append failed"
1987
1988         local flg_opts="--comp-start 0 -E EOF --comp-flags init"
1989         local found=$($LFS find $flg_opts $comp_file | wc -l)
1990         [ $found -eq 1 ] || error "Append: first component (0-EOF) not found"
1991
1992         local ost_idx=$($LFS getstripe -I2 -i $comp_file)
1993         [ "$ost_idx" != "" ] && error "Append: second component still exists"
1994
1995         sel_layout_sanity $comp_file 1
1996 }
1997 run_test 23a "Append: remove EXT comp"
1998
1999 test_23b() {
2000         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
2001         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code $SEL_VER) ] &&
2002                 skip "skipped for lustre < $SEL_VER"
2003
2004         local comp_file=$DIR/$tdir/$tfile
2005         test_mkdir -p $DIR/$tdir
2006
2007         $LFS setstripe -E 64m -E -1 -z 64M $comp_file ||
2008                 error "Create $comp_file failed"
2009
2010         dd if=/dev/zero bs=1M oflag=append count=1 of=$comp_file ||
2011                 error "dd append failed"
2012
2013         local flg_opts="--comp-start 64M -E EOF --comp-flags init"
2014         local found=$($LFS find $flg_opts $comp_file | wc -l)
2015         [ $found -eq 1 ] || error "Append: component (64M-EOF) not found"
2016
2017         local ost_idx=$($LFS getstripe -I3 -i $comp_file)
2018         [ "$ost_idx" != "" ] && error "Append: third component still exists"
2019
2020         sel_layout_sanity $comp_file 2
2021 }
2022 run_test 23b "Append with 0-length comp: remove EXT comp"
2023
2024 test_23c() {
2025         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
2026         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code $SEL_VER) ] &&
2027                 skip "skipped for lustre < $SEL_VER"
2028
2029         local comp_file=$DIR/$tdir/$tfile
2030         test_mkdir -p $DIR/$tdir
2031
2032         wait_delete_completed
2033         wait_mds_ost_sync
2034
2035         pool_add $TESTNAME || error "Pool creation failed"
2036         pool_add_targets $TESTNAME 0 || error "Pool add targets failed"
2037         $LFS setstripe -E 64m -E -1 -p $TESTNAME -z 64M $comp_file ||
2038                 error "Create $comp_file failed"
2039
2040         local wms=$(ost_watermarks_set_low_space 0 | grep "watermarks")
2041         dd if=/dev/zero bs=1M oflag=append count=1 of=$comp_file
2042         RC=$?
2043
2044         ost_watermarks_clear_enospc $tfile 0 $wms
2045         [ $RC -eq 0 ] || error "dd append failed: $RC"
2046
2047         local flg_opts="--comp-start 64M -E EOF --comp-flags init"
2048         local found=$($LFS find $flg_opts $comp_file | wc -l)
2049         [ $found -eq 1 ] || error "Append: component (64M-EOF) not found"
2050
2051         local ost_idx=$($LFS getstripe -I3 -i $comp_file)
2052         [ "$ost_idx" != "" ] && error "Append: EXT component still exists"
2053
2054         sel_layout_sanity $comp_file 2
2055 }
2056 run_test 23c "Append with low on space + 0-length comp: force extension"
2057
2058 test_23d() {
2059         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
2060         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code $SEL_VER) ] &&
2061                 skip "skipped for lustre < $SEL_VER"
2062
2063         local comp_file=$DIR/$tdir/$tfile
2064         test_mkdir -p $DIR/$tdir
2065
2066         $LFS setstripe -E 64m -E 640M -z 64M -E -1 $comp_file ||
2067                 error "Create $comp_file failed"
2068
2069         dd if=/dev/zero bs=1M oflag=append count=1 of=$comp_file ||
2070                 error "dd append failed"
2071
2072         flg_opts="--comp-start 64M -E 640M --comp-flags init"
2073         found=$($LFS find $flg_opts $comp_file | wc -l)
2074         [ $found -eq 1 ] || error "Append: component (64M-640M) not found"
2075
2076         ost_idx=$($LFS getstripe -I3 -i $comp_file)
2077         [ "$ost_idx" != "" ] && error "Append: third component still exists"
2078
2079         sel_layout_sanity $comp_file 3
2080 }
2081 run_test 23d "Append with 0-length comp + next real comp: remove EXT comp"
2082
2083 test_23e() {
2084         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
2085         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code $SEL_VER) ] &&
2086                 skip "skipped for lustre < $SEL_VER"
2087
2088         local comp_file=$DIR/$tdir/$tfile
2089         test_mkdir -p $DIR/$tdir
2090
2091         wait_delete_completed
2092         wait_mds_ost_sync
2093
2094         pool_add $TESTNAME || error "Pool creation failed"
2095         pool_add_targets $TESTNAME 0 || error "Pool add targets failed"
2096
2097         $LFS setstripe -E 64m -E 640M -z 64M -p $TESTNAME -E -1 $comp_file ||
2098                 error "Create $comp_file failed"
2099
2100         local wms=$(ost_watermarks_set_low_space 0 | grep "watermarks")
2101
2102         dd if=/dev/zero bs=1M oflag=append count=1 of=$comp_file
2103         RC=$?
2104
2105         ost_watermarks_clear_enospc $tfile 0 $wms
2106         [ $RC -eq 0 ] || error "dd append failed $RC"
2107
2108         local flg_opts="--comp-start 64M -E EOF --comp-flags init"
2109         local found=$($LFS find $flg_opts $comp_file | wc -l)
2110         [ $found -eq 1 ] || error "Append: component (64M-EOF) not found"
2111
2112         local ost_idx=$($LFS getstripe -I2 -i $comp_file)
2113         [ "$ost_idx" != "" ] && error "Append: 0-length component still exists"
2114         ost_idx=$($LFS getstripe -I3 -i $comp_file)
2115         [ "$ost_idx" != "" ] && error "Append: extension component still exists"
2116
2117         sel_layout_sanity $comp_file 2
2118 }
2119 run_test 23e "Append with next real comp: spillover and backward extension"
2120
2121 test_23f() {
2122         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
2123         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code $SEL_VER) ] &&
2124                 skip "skipped for lustre < $SEL_VER"
2125
2126         local comp_file=$DIR/$tdir/$tfile
2127         test_mkdir -p $DIR/$tdir
2128
2129         $LFS setstripe -z 64M -c 1 -E -1 $comp_file ||
2130                 error "Create $comp_file failed"
2131
2132         local ost_idx=$($LFS getstripe -I1 -i $comp_file)
2133         local wms=$(ost_watermarks_set_low_space $ost_idx | grep "watermarks")
2134
2135         dd if=/dev/zero bs=1M oflag=append count=1 of=$comp_file
2136         RC=$?
2137
2138         ost_watermarks_clear_enospc $tfile $ost_idx $wms
2139         [ $RC -eq 0 ] || error "dd append failed"
2140
2141         local flg_opts="--comp-start 64M -E EOF --comp-flags init"
2142         local found=$($LFS find $flg_opts $comp_file | wc -l)
2143         [ $found -eq 1 ] || error "Append: component (64M-EOF) not found"
2144
2145         ost_idx=$($LFS getstripe -I2 -i $comp_file)
2146         [ "$ost_idx" != "" ] && error "Append: extension component still exists"
2147
2148         sel_layout_sanity $comp_file 2
2149 }
2150 run_test 23f "Append with low on space: repeat and remove EXT comp"
2151
2152 complete $SECONDS
2153 check_and_cleanup_lustre
2154 exit_status