Whamcloud - gitweb
106842bd73ed08aa8514fe1993855141dad36b7d
[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 [[ "$MDS1_VERSION" -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 to exact start of new component - LU-12586
532         $TRUNCATE $comp_file $((1024*1024*1))
533
534         f2=$($LFS getstripe -I2 $comp_file | grep "l_fid")
535         [[ -z $f2 ]] && error "2: 2nd component uninstantiated"
536         f3=$($LFS getstripe -I3 $comp_file | grep "l_fid")
537         [[ -n $f3 ]] && error "2: 3rd component instantiated"
538         f4=$($LFS getstripe -I4 $comp_file | grep "l_fid")
539         [[ -n $f4 ]] && error "2: 4th component instantiated"
540
541         # the first 3 components instantiated
542         $TRUNCATE $comp_file $((1024*1024*3 - 1))
543         $TRUNCATE $comp_file $((1024*1024*1+1))
544
545         f2=$($LFS getstripe -I2 $comp_file | grep "l_fid")
546         [[ -z $f2 ]] && error "3: 2nd component uninstantiated"
547         f3=$($LFS getstripe -I3 $comp_file | grep "l_fid")
548         [[ -z $f3 ]] && error "3: 3rd component uninstantiated"
549         f4=$($LFS getstripe -I4 $comp_file | grep "l_fid")
550         [[ -n $f4 ]] && error "3: 4th component instantiated"
551
552         # all 4 components instantiated, using append write
553         dd if=/dev/zero of=$comp_file bs=1k count=1 seek=2k
554         ls -l $comp_file
555         rwv -f $comp_file -w -a -n 2 $((1024*1023)) 1
556         ls -l $comp_file
557
558         f4=$($LFS getstripe -I4 $comp_file | grep "l_fid")
559         [[ -z $f4 ]] && error "4: 4th component uninstantiated"
560
561         return 0
562 }
563 run_test 11 "Verify component instantiation with write/truncate"
564
565 test_12() {
566         [ $OSTCOUNT -lt 3 ] && skip "needs >= 3 OSTs"
567
568         local file=$DIR/$tdir/$tfile
569         test_mkdir $DIR/$tdir
570         rm -f $file
571
572         # specify ost list for component
573         $LFS setstripe -E 1M -S 1M -c 2 -o 0,1 -E 2M -c 2 -o 1,2 \
574                 -E 3M -c 2 -o 2,1 -E 4M -c 1 -i 2 -E -1 $file ||
575                 error "Create $file failed"
576
577         # clear lod component cache
578         stop $SINGLEMDS || error "stop MDS"
579         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
580         start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS || error "start MDS"
581
582         # instantiate all components
583         $TRUNCATE $file $((1024*1024*4+1))
584
585         #verify object alloc order
586         local o1=$($LFS getstripe -I1 $file |
587                         awk '/l_ost_idx:/ {printf("%d",$5)}')
588         [[ $o1 != "01" ]] && error "$o1 is not 01"
589
590         local o2=$($LFS getstripe -I2 $file |
591                         awk '/l_ost_idx:/ {printf("%d",$5)}')
592         [[ $o2 != "12" ]] && error "$o2 is not 12"
593
594         local o3=$($LFS getstripe -I3 $file |
595                         awk '/l_ost_idx:/ {printf("%d",$5)}')
596         [[ $o3 != "21" ]] && error "$o3 is not 21"
597
598         local o4=$($LFS getstripe -I4 $file |
599                         awk '/l_ost_idx:/ {printf("%d",$5)}')
600         [[ $o4 != "2" ]] && error "$o4 is not 2"
601
602         return 0
603 }
604 run_test 12 "Verify ost list specification"
605
606 test_13() { # LU-9311
607         [ $OSTCOUNT -lt 8 ] && skip "needs >= 8 OSTs"
608
609         local file=$DIR/$tfile
610         local dd_count=4
611         local dd_size=$(($dd_count * 1024 * 1024))
612         local real_size
613
614         rm -f $file
615         $LFS setstripe -E 1M -S 1M -c 1 -E 2M -c 2 -E -1 -c -1 -i 1 $file ||
616                 error "Create $file failed"
617         dd if=/dev/zero of=$file bs=1M count=$dd_count
618         real_size=$(stat -c %s $file)
619         [ $real_size -eq $dd_size ] ||
620                 error "dd actually wrote $real_size != $dd_size bytes"
621
622         rm -f $file
623 }
624 run_test 13 "shouldn't reprocess granted resent request"
625
626 test_14() {
627         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs"
628         local file=$DIR/$tdir/$tfile
629         test_mkdir -p $DIR/$tdir
630         rm -f $file
631
632         $LFS setstripe -E1m -c1 -S1m --pool="pool1" -E2m \
633                         -E4m -c2 -S2m --pool="pool2" -E-1 $file ||
634                 error "Create $file failed"
635
636         # check --pool inheritance
637         local pool
638         pool="$($LFS getstripe -I2 --pool $file)"
639         [ x"$pool" != "xpool1" ] && $LFS getstripe -I2 $file &&
640                 error "$file: component 2 doesn't have poolname pool1"
641         pool="$($LFS getstripe -I4 --pool $file)"
642         [ x"$pool" != "xpool2" ] && $LFS getstripe -I4 $file &&
643                 error "$file: component 4 doesn't have poolname pool2"
644
645         #check --stripe-count inheritance
646         local count
647         count="$($LFS getstripe -I2 -c $file)"
648         [ $count -ne 1 ] && $LFS getstripe -I2 $file &&
649                 error "$file: component 2 doesn't have 1 stripe_count"
650         count="$($LFS getstripe -I4 -c $file)"
651         [ $count -ne 2 ] && $LFS getstripe -I4 $file &&
652                 error "$file: component 4 doesn't have 2 stripe_count"
653
654         #check --stripe-size inheritance
655         local size
656         size="$($LFS getstripe -I2 -S $file)"
657         [ $size -ne $((1024*1024)) ] && $LFS getstripe -I2 $file &&
658                 error "$file: component 2 doesn't have 1M stripe_size"
659         size="$($LFS getstripe -I4 -S $file)"
660         [ $size -ne $((1024*1024*2)) ] && $LFS getstripe -I4 $file &&
661                 error "$file: component 4 doesn't have 2M stripe_size"
662
663         return 0
664 }
665 run_test 14 "Verify setstripe poolname/stripe_count/stripe_size inheritance"
666
667 test_15() {
668         local parent=$DIR/$tdir
669
670         rm -fr $parent
671         test_mkdir $parent
672
673         $LFS setstripe -d $parent || error "delete default layout"
674
675         $LFS setstripe -E 1M -S 1M -E 10M -E eof $parent/f1 || error "create f1"
676         $LFS setstripe -E 4M -E 20M -E eof $parent/f2 || error "create f2"
677         test_mkdir $parent/subdir
678         $LFS setstripe -E 6M -S 1M -c1 -E 30M -c4 -E eof -c -1 $parent/subdir ||
679                 error "setstripe to subdir"
680         $LFS setstripe -E 8M -E eof $parent/subdir/f3 || error "create f3"
681         $LFS setstripe -c 1 $parent/subdir/f4 || error "create f4"
682
683         # none
684         local found=$($LFS find --component-start +2M -E -15M $parent | wc -l)
685         [ $found -eq 0 ] || error "start+2M, end-15M, $found != 0"
686
687         # f2, f3
688         found=$($LFS find --component-start +2M -E -35M $parent | wc -l)
689         [ $found -eq 2 ] || error "start+2M, end-35M, $found != 2"
690
691         # subdir
692         found=$($LFS find --component-start +4M -E -eof $parent | wc -l)
693         [ $found -eq 1 ] || error "start+4M, end-eof, $found != 1"
694
695         local flg_opts="--component-flags init"
696         # none
697         found=$($LFS find --component-start 1M -E 10M $flg_opts $parent | wc -l)
698         [ $found -eq 0 ] ||
699                 error "before write: start=1M, end=10M, flag=init, $found != 0"
700
701         dd if=/dev/zero of=$parent/f1 bs=1M count=2 ||
702                 error "dd $parent/f1 failed"
703
704         # f1
705         found=$($LFS find --component-start 1M -E 10M $flg_opts $parent | wc -l)
706         [ $found -eq 1 ] ||
707                 error "after write: start=1M, end=10M, flag=init, $found != 1"
708
709         local ext_opts="--component-start -1M -E +5M"
710         # parent, subdir, f3, f4
711         found=$($LFS find $ext_opts $parent | wc -l)
712         [ $found -eq 4 ] || error "start-1M, end+5M, $found != 4"
713
714         local cnt_opts="--component-count +2"
715         # subdir
716         found=$($LFS find $ext_opts $cnt_opts $parent | wc -l)
717         [ $found -eq 1 ] || error "start-1M, end+5M, count+2, $found != 1"
718
719         # none
720         found=$($LFS find $ext_opts $cnt_opts $flg_opts $parent | wc -l)
721         [ $found -eq 0 ] ||
722                 error "start-1M, end+5M, count+2, flag=init, $found != 0"
723
724         # f3, f4
725         found=$($LFS find $ext_opts ! $cnt_opts $flg_opts $parent | wc -l)
726         [ $found -eq 2 ] ||
727                 error "start-1M, end+5M, !count+2, flag=init, $found != 2"
728
729         # check last component stripe count
730         if [ $OSTCOUNT -gt 1 ]; then
731                 touch $parent/subdir/f5
732                 $TRUNCATE $parent/subdir/f5 $((32*1024*1024))
733                 found=$($LFS find $parent/subdir -c $OSTCOUNT)
734                 [[ "$found" == "$parent/subdir/f5" ]] ||
735                         error "got '$found' with stripe_count=$OSTCOUNT, not f5"
736         fi
737 }
738 run_test 15 "Verify component options for lfs find"
739
740 test_16a() {
741         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs"
742         large_xattr_enabled || skip_env "ea_inode feature disabled"
743
744         local file=$DIR/$tdir/$tfile
745         local dir=$DIR/$tdir/dir
746         local temp=$DIR/$tdir/template
747         rm -rf $DIR/$tdir
748         test_mkdir $DIR/$tdir
749
750         #####################################################################
751         #                           1. PFL file
752         # set stripe for source file
753         $LFS setstripe -E1m -S 1M -c2 -o0,1 -E2m -c2 -E3m -o1,0 -E4m -c1 -E-1 \
754                 $file || error "Create $file failed"
755
756         echo "1. PFL file"
757         verify_yaml_layout $file $file.copy $temp "1. PFL file"
758
759         #####################################################################
760         #                           2. plain file
761         # set stripe for source file
762         rm -f $file
763         $LFS setstripe -c2 -o0,1 -i1 $file || error "Create $file failed"
764
765         rm -f $file.copy
766         echo "2. plain file"
767         verify_yaml_layout $file $file.copy $temp "2. plain file"
768
769         #####################################################################
770         #                           3. PFL dir
771         # set stripe for source dir
772         test_mkdir $dir
773         $LFS setstripe -E1m -S 1M -c2 -E2m -c1 -E-1 $dir ||
774                 error "setstripe $dir failed"
775
776         test_mkdir $dir.copy
777         echo "3. PFL dir"
778         verify_yaml_layout $dir $dir.copy $temp.dir "3. PFL dir"
779
780         #####################################################################
781         #                           4. plain dir
782         # set stripe for source dir
783         $LFS setstripe -c2 -i-1 $dir || error "setstripe $dir failed"
784
785         echo "4. plain dir"
786         verify_yaml_layout $dir $dir.copy $temp.dir "4. plain dir"
787 }
788 run_test 16a "Verify setstripe/getstripe with YAML config file"
789
790 test_16b() {
791         [[ $($LCTL get_param mdc.*.import |
792                 grep "connect_flags:.*overstriping") ]] ||
793                 skip "server does not support overstriping"
794         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs"
795         [[ $OSTCOUNT -ge $(($LOV_MAX_STRIPE_COUNT / 2)) ]] &&
796                 skip_env "too many osts, skipping"
797         large_xattr_enabled || skip_env "ea_inode feature disabled"
798
799         local file=$DIR/$tdir/$tfile
800         local dir=$DIR/$tdir/dir
801         local temp=$DIR/$tdir/template
802         # We know OSTCOUNT < (LOV_MAX_STRIPE_COUNT / 2), so this is overstriping
803         local large_count=$((LOV_MAX_STRIPE_COUNT / 2 + 10))
804
805         rm -rf $DIR/$tdir
806         test_mkdir $DIR/$tdir
807
808         #####################################################################
809         #                           1. PFL file, overstriping in first comps
810         # set stripe for source file
811         $LFS setstripe -E1m -S 1M -o0,0 -E2m -o1,1 -E3m -C $large_count -E-1 \
812                 $file || error "Create $file failed"
813
814         echo "1. PFL file"
815         verify_yaml_layout $file $file.copy $temp "1. PFL file"
816
817         #####################################################################
818         #                           2. plain file + overstriping
819         # set stripe for source file
820         rm -f $file
821         $LFS setstripe -C $large_count -i1 $file || error "Create $file failed"
822
823         rm -f $file.copy
824         echo "2. plain file"
825         verify_yaml_layout $file $file.copy $temp "2. plain file"
826
827         #####################################################################
828         #                           3. PFL dir + overstriping
829         # set stripe for source dir
830         test_mkdir $dir
831         $LFS setstripe -E1m -S 1M -o 0,0 -E2m -C $large_count -E-1 $dir ||
832                 error "setstripe $dir failed"
833
834         test_mkdir $dir.copy
835         echo "3. PFL dir"
836         verify_yaml_layout $dir $dir.copy $temp.dir "3. PFL dir"
837
838         #####################################################################
839         #                           4. plain dir + overstriping
840         # set stripe for source dir
841         $LFS setstripe -C $large_count $dir || error "setstripe $dir failed"
842
843         echo "4. plain dir"
844         verify_yaml_layout $dir $dir.copy $temp.dir "4. plain dir"
845 }
846 run_test 16b "Verify setstripe/getstripe with YAML config file + overstriping"
847
848 test_17() {
849         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs"
850         local file=$DIR/$tdir/$tfile
851         test_mkdir -p $DIR/$tdir
852         rm -f $file
853
854         $LFS setstripe -E 1M -S 1M -E 2M -c 2 -E -1 -c -1 $file ||
855                 error "Create $file failed"
856
857         local s1=$($LFS getstripe -I1 -v $file | awk '/lcme_size:/{print $2}')
858         local s2=$($LFS getstripe -I2 -v $file | awk '/lcme_size:/{print $2}')
859         local s3=$($LFS getstripe -I3 -v $file | awk '/lcme_size:/{print $2}')
860         echo "1st init: comp size 1:$s1 2:$s2 3:$s3"
861
862         # init 2nd component
863         $TRUNCATE $file $((1024*1024+1))
864         local s1n=$($LFS getstripe -I1 -v $file | awk '/lcme_size:/{print $2}')
865         local s2n=$($LFS getstripe -I2 -v $file | awk '/lcme_size:/{print $2}')
866         echo "2nd init: comp size 1:$s1n 2:$s2n 3:$s3"
867
868         [ $s1 -eq $s1n ] || error "1st comp size $s1 should == $s1n"
869         [ $s2 -lt $s2n ] || error "2nd comp size $s2 should < $s2n"
870
871         # init 3rd component
872         $TRUNCATE $file $((1024*1024*2+1))
873         s1n=$($LFS getstripe -I1 -v $file | awk '/lcme_size:/{print $2}')
874         s2n=$($LFS getstripe -I2 -v $file | awk '/lcme_size:/{print $2}')
875         local s3n=$($LFS getstripe -I3 -v $file | awk '/lcme_size:/{print $2}')
876         echo "3rd init: comp size 1:$s1n 2:$s2n 3:$s3n"
877
878         [ $s1 -eq $s1n ] || error "1st comp size $s1 should == $s1n"
879         [ $s2 -lt $s2n ] || error "2nd comp size $s2 should < $s2n"
880         [ $s3 -lt $s3n ] || error "3rd comp size $s3 should < $s3n"
881 }
882 run_test 17 "Verify LOVEA grows with more component inited"
883
884 check_distribution() {
885         local file=$1
886         local objs
887         local ave
888         local obj_min_one=$((OSTCOUNT - 1))
889
890         objs=$($LFS getstripe $file |
891                 awk '/l_ost_idx:/ { print $5 }' | wc -l)
892         let ave=$((objs / OSTCOUNT))
893
894         # collect objects per OST distribution
895         $LFS getstripe $file | awk '/l_ost_idx:/ { print $5 }' | tr -d "," |
896                 (inuse=( $(for i in $(seq 0 $obj_min_one); do echo 0; done) )
897                 while read O; do
898                         let inuse[$O]=$((1 + ${inuse[$O]}))
899                 done;
900
901                 # verify object distribution varies no more than +-1
902                 for idx in $(seq 0 $obj_min_one); do
903                         let dif=$((${inuse[$idx]} - ave))
904                         let dif=${dif#-}
905                         if [ "$dif" -gt 1 ]; then
906                                 echo "OST${idx}: ${inuse[$idx]} objects"
907                                 error "bad distribution on OST${idx}"
908                         fi
909                 done)
910 }
911
912 test_18() {
913         local file1=$DIR/${tfile}-1
914         local file2=$DIR/${tfile}-2
915         local file3=$DIR/${tfile}-3
916
917         rm -f $file1 $file2 $file3
918
919         $LFS setstripe -E 1m -S 1m $file1 ||
920                 error "Create $file1 failed"
921         $LFS setstripe -E 1m -S 1m $file2 ||
922                 error "Create $file2 failed"
923         $LFS setstripe -E 1m -S 1m $file3 ||
924                 error "Create $file3 failed"
925
926         local objs=$((OSTCOUNT+1))
927         for comp in $(seq 1 $OSTCOUNT); do
928                 $LFS setstripe --component-add -E $((comp+1))M -c 1 $file1 ||
929                         error "Add component to $file1 failed 2"
930                 $LFS setstripe --component-add -E $((comp+1))M -c 1 $file2 ||
931                         error "Add component to $file2 failed 2"
932                 $LFS setstripe --component-add -E $((comp+1))M -c 1 $file3 ||
933                         error "Add component to $file3 failed 2"
934         done
935
936         $LFS setstripe --component-add -E -1 -c -1 $file1 ||
937                 error "Add component to $file1 failed 3"
938         $LFS setstripe --component-add -E -1 -c -1 $file2 ||
939                 error "Add component to $file2 failed 3"
940         $LFS setstripe --component-add -E -1 -c -1 $file3 ||
941                 error "Add component to $file3 failed 3"
942
943         # Instantiate all components
944         dd if=/dev/urandom of=$file1 bs=1M count=$((objs+1)) ||
945                 error "dd failed for $file1"
946         dd if=/dev/urandom of=$file2 bs=1M count=$((objs+1)) ||
947                 error "dd failed for $file2"
948         dd if=/dev/urandom of=$file3 bs=1M count=$((objs+1)) ||
949                 error "dd failed for $file3"
950
951         check_distribution $file1
952         check_distribution $file2
953         check_distribution $file3
954
955 }
956 run_test 18 "check component distribution"
957
958 test19_io_base() {
959         local comp_file=$1
960         local already_created=${2:-0}
961         local rw_len=$((3 * 1024 * 1024))       # 3M
962         local flg_opts=""
963         local found=""
964
965         if [ $already_created != 1 ]; then
966                 test_mkdir -p $DIR/$tdir
967                 $LFS setstripe --extension-size 64M -c 1 -E -1 $comp_file ||
968                         error "Create $comp_file failed"
969         fi
970
971         # write past end of first component, so it is extended
972         dd if=/dev/zero of=$comp_file bs=1M count=1 seek=127 conv=notrunc ||
973                 error "dd to extend failed"
974
975         local ost_idx1=$($LFS getstripe -I1 -i $comp_file)
976         local ost_idx2=$($LFS getstripe -I2 -i $comp_file)
977
978         [ $ost_idx1 -eq $ost_idx2 ] && error "$ost_idx1 == $ost_idx2"
979         [ $ost_idx2 -ne "-1" ] && error "second component init $ost_idx2"
980
981         flg_opts="--comp-flags init"
982         found=$($LFS find --comp-start 0 -E 128M $flg_opts $comp_file | wc -l)
983         [ $found -eq 1 ] || error "Write: Extended first component not found"
984
985         flg_opts="--comp-flags extension"
986         found=$($LFS find --comp-start 128M -E EOF $flg_opts $comp_file | wc -l)
987         [ $found -eq 1 ] || error "Write: second component not found"
988
989         found=$($LFS find -z 64M $comp_file | wc -l)
990         [ $found -eq 1 ] || error "component not found by ext size"
991
992         found=$($LFS find --extension-size +63M $comp_file | wc -l)
993         [ $found -eq 1 ] || error "component not found by +ext size"
994
995         found=$($LFS find --ext-size -65M $comp_file | wc -l)
996         [ $found -eq 1 ] || error "component not found by -ext size"
997
998         found=$($LFS find -z 65M $comp_file | wc -l)
999         [ $found -eq 0 ] || error "component found by wrong ext size"
1000
1001         found=$($LFS find -z +65M $comp_file | wc -l)
1002         [ $found -eq 0 ] || error "component found by wrong +ext size"
1003
1004         found=$($LFS find -z -63M $comp_file | wc -l)
1005         [ $found -eq 0 ] || error "component found by wrong -ext size"
1006
1007         found=$($LFS find ! -z 64M $comp_file | wc -l)
1008         [ $found -eq 0 ] || error "component found by negation of ext size"
1009
1010         found=$($LFS find ! -z +63M $comp_file | wc -l)
1011         [ $found -eq 0 ] || error "component found by negation of +ext size"
1012
1013         found=$($LFS find ! -z -65M $comp_file | wc -l)
1014         [ $found -eq 0 ] || error "component found by negation of -ext size"
1015
1016         found=$($LFS find ! -z 65M $comp_file | wc -l)
1017         [ $found -eq 1 ] ||
1018                 error "component not found by negation of wrong ext size"
1019
1020         found=$($LFS find ! -z +65M $comp_file | wc -l)
1021         [ $found -eq 1 ] ||
1022                 error "component not found by negation of wrong +ext size"
1023
1024         found=$($LFS find ! -z -63M $comp_file | wc -l)
1025         [ $found -eq 1 ] ||
1026                 error "component not found by negation of wrong -ext size"
1027
1028         found=$($LFS find -S +1M $comp_file | wc -l)
1029         [ $found -eq 0 ] || error "component found by wrong +stripe size"
1030
1031         found=$($LFS find -c 1 $comp_file | wc -l)
1032         [ $found -eq 1 ] || error "component not found by stripe count"
1033
1034         small_write $comp_file $rw_len || error "Verify RW failed"
1035
1036         sel_layout_sanity $comp_file 2
1037 }
1038
1039 # Self-extending PFL tests
1040 test_19a() {
1041         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs"
1042         [ "$MDS1_VERSION" -lt $(version_code $SEL_VER) ] &&
1043                 skip "skipped for lustre < $SEL_VER"
1044
1045         test19_io_base $DIR/$tdir/$tfile
1046 }
1047 run_test 19a "Simple test of extension behavior"
1048
1049 # Same as 19a, but with default layout set on directory rather than on file
1050 test_19b() {
1051         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs"
1052         [ "$MDS1_VERSION" -lt $(version_code $SEL_VER) ] &&
1053                 skip "skipped for lustre < $SEL_VER"
1054
1055         local comp_file=$DIR/$tdir/$tfile
1056         local comp_dir=$DIR/$tdir/$tdir
1057         local flg_opts=""
1058         local found=""
1059
1060         test_mkdir -p $DIR/$tdir
1061         $LFS setstripe --ext-size 64M -c 1 -E -1 $DIR/$tdir ||
1062                 error "Setstripe on $DIR/$tdir failed"
1063
1064         # check inheritance for a sub-dir and a file
1065         test_mkdir $comp_dir
1066         found=$($LFS find --comp-start 0 -E 64M $comp_dir | wc -l)
1067         [ $found -eq 1 ] || error "Dir Inheritance: wrong first component size"
1068
1069         flg_opts="--comp-flags extension"
1070         found=$($LFS find --comp-start 64M -E EOF $flg_opts $comp_dir | wc -l)
1071         [ $found -eq 1 ] || error "Dir Inheritance: Second component not found"
1072
1073         touch $comp_file
1074
1075         flg_opts="--comp-flags init"
1076         found=$($LFS find --comp-start 0 -E 64M $flg_opts $comp_file | wc -l)
1077         [ $found -eq 1 ] || error "File Inheritance: wrong first component size"
1078
1079         flg_opts="--comp-flags extension"
1080         found=$($LFS find --comp-start 64M -E EOF $flg_opts $comp_file | wc -l)
1081         [ $found -eq 1 ] || error "File Inheritance: Second component not found"
1082
1083         test19_io_base $comp_file 1
1084 }
1085 run_test 19b "Simple test of SEL as default layout"
1086
1087 # Test behavior when seeking deep in a file
1088 test_19c() {
1089         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs"
1090         [ "$MDS1_VERSION" -lt $(version_code $SEL_VER) ] &&
1091                 skip "skipped for lustre < $SEL_VER"
1092
1093         local comp_file=$DIR/$tdir/$tfile
1094         local flg_opts=""
1095         local found=""
1096
1097         test_mkdir -p $DIR/$tdir
1098
1099         $LFS setstripe -z 128M -E 1G -E -1 $comp_file ||
1100                 error "Create $comp_file failed"
1101
1102         # write past end of first component, so it is extended
1103         dd if=/dev/zero of=$comp_file bs=1M count=1 seek=130 conv=notrunc ||
1104                 error "dd to extend failed"
1105
1106         flg_opts="--comp-flags init"
1107         found=$($LFS find --comp-start 0M -E 256M $flg_opts $comp_file | wc -l)
1108         [ $found -eq 1 ] || error "Write: first extension component not found"
1109
1110         flg_opts="--comp-flags extension,^init"
1111         found=$($LFS find --comp-start 256M -E 1024M $flg_opts $comp_file |\
1112                 wc -l)
1113         [ $found -eq 1 ] || error "Write: second extension component not found"
1114
1115         local end_1=$($LFS getstripe -I1 -E $comp_file)
1116
1117         # 256 MiB
1118         [ $end_1 -eq 268435456 ] ||
1119                 error "end of first component $end_1 != 268435456"
1120
1121         # Write past end of extension space component, in to normal component
1122         # should exhaust & remove extension component
1123         dd if=/dev/zero bs=1M count=1 seek=1100 of=$comp_file conv=notrunc ||
1124                 error "dd distant seek failed"
1125
1126         local ost_idx1=$($LFS getstripe -I1 -i $comp_file)
1127         # the last component index is 3
1128         local ost_idx2=$($LFS getstripe -I3 -i $comp_file)
1129
1130         [ $ost_idx1 -eq $ost_idx2 ] && error "$ost_idx1 == $ost_idx2"
1131
1132         local start1=$($LFS getstripe -I1 --comp-start $comp_file)
1133         local end1=$($LFS getstripe -I1 -E $comp_file)
1134         local start2=$($LFS getstripe -I3 --comp-start $comp_file)
1135         local end2=$($LFS getstripe -I3 -E $comp_file)
1136
1137         [ $start1 -eq 0 ] || error "start of first component incorrect"
1138         [ $end1 -eq 1073741824 ] || error "end of first component incorrect"
1139         [ $start2 -eq 1073741824  ] ||
1140                 error "start of second component incorrect"
1141         [ "$end2" = "EOF" ] || error "end of second component incorrect"
1142
1143         flg_opts="--comp-flags extension"
1144         found=$($LFS find $flg_opts $comp_file | wc -l)
1145         [ $found -eq 0 ] || error "Seek Write: extension component exists"
1146
1147         sel_layout_sanity $comp_file 2
1148 }
1149 run_test 19c "Test self-extending layout seeking behavior"
1150
1151 test_19d() {
1152         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs"
1153         [ "$MDS1_VERSION" -lt $(version_code $SEL_VER) ] &&
1154                 skip "skipped for lustre < $SEL_VER"
1155
1156         local comp_file=$DIR/$tdir/$tfile
1157         local flg_opts=""
1158         local found=""
1159
1160         test_mkdir -p $DIR/$tdir
1161
1162         $LFS setstripe -E 128M -c 1 -z 64M -E -1 $comp_file ||
1163                 error "Create $comp_file failed"
1164
1165         # This will cause component 1 to be extended to 128M, then the
1166         # extension space component will be removed
1167         dd if=/dev/zero of=$comp_file bs=130M count=1 ||
1168                 error "dd to extend failed"
1169
1170         flg_opts="--comp-flags init"
1171         found=$($LFS find --comp-start 0M -E 128M $flg_opts $comp_file | wc -l)
1172         [ $found -eq 1 ] || error "Write: first component not found"
1173
1174         flg_opts="--comp-flags init"
1175         found=$($LFS find --comp-start 128M -E EOF $flg_opts $comp_file | wc -l)
1176         [ $found -eq 1 ] || error "Write: second component not found"
1177
1178         sel_layout_sanity $comp_file 2
1179
1180         # always remove large files in case of DO_CLEANUP=false
1181         rm -f $comp_file || error "Delete $comp_file failed"
1182 }
1183 run_test 19d "Test write which completely spans extension space component"
1184
1185 test_19e_check() {
1186         comp_file=$1
1187
1188         local comp2_flags=$($LFS getstripe -I2 --comp-flags $comp_file)
1189         local comp3_flags=$($LFS getstripe -I3 --comp-flags $comp_file)
1190
1191         [ "$comp2_flags" != "init" ] && error "$comp2_flags != init"
1192         [ "$comp3_flags" != "extension" ] && error "$comp3_flags != extension"
1193
1194         local flg_opts=" --comp-start 2M -E 66M --comp-flags init"
1195         local found=$($LFS find $flg_opts $comp_file | wc -l)
1196         [ $found -eq 1 ] || error "Write: extended second component not found"
1197
1198         flg_opts="--comp-start 66M -E EOF --comp-flags extension"
1199         found=$($LFS find $flg_opts $comp_file | wc -l)
1200         [ $found -eq 1 ] || error "Write: third component not found"
1201
1202         sel_layout_sanity $comp_file 3
1203 }
1204
1205 test_19e() {
1206         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs"
1207         [ "$MDS1_VERSION" -lt $(version_code $SEL_VER) ] &&
1208                 skip "skipped for lustre < $SEL_VER"
1209
1210         local comp_file=$DIR/$tdir/$tfile
1211         local rw_len=$((3 * 1024 * 1024))       # 3M
1212         local flg_opts=""
1213         local found=""
1214
1215         test_mkdir -p $DIR/$tdir
1216
1217         $LFS setstripe -E 2m -E -1 -z 64M $comp_file ||
1218                 error "Create $comp_file failed"
1219
1220         replay_barrier $SINGLEMDS
1221
1222         #instantiate & extend second component
1223         dd if=/dev/zero of=$comp_file bs=4M count=1 ||
1224                 error "dd to extend failed"
1225
1226         local ost_idx2=$($LFS getstripe -I2 -i $comp_file)
1227         local ost_idx3=$($LFS getstripe -I3 -i $comp_file)
1228
1229         [ $ost_idx2 -eq $ost_idx3 ] && error "$ost_idx2 == $ost_idx3"
1230         [ $ost_idx3 -ne "-1" ] && error "third component init $ost_idx3"
1231
1232         test_19e_check $comp_file
1233
1234         local f1=$($LFS getstripe -I2 $comp_file | awk '/l_fid:/ {print $7}')
1235         echo "before MDS recovery, the ost fid of 2nd component is $f1"
1236
1237         fail $SINGLEMDS
1238
1239         local f2=$($LFS getstripe -I2 $comp_file | awk '/l_fid:/ {print $7}')
1240         echo "after MDS recovery, the ost fid of 2nd component is $f2"
1241         [ "x$f1" == "x$f2" ] || error "$f1 != $f2"
1242
1243         # simply repeat all previous checks, but also verify components are on
1244         # the same OST as before
1245
1246         local ost_idx2_2=$($LFS getstripe -I2 -i $comp_file)
1247         local ost_idx3_2=$($LFS getstripe -I3 -i $comp_file)
1248
1249         [ $ost_idx2_2 -eq $ost_idx3_2 ] && error "$ost_idx2_2 == $ost_idx3_2"
1250         [ $ost_idx3_2 -ne "-1" ] && error "second component init $ost_idx3_2"
1251
1252         # verify OST id is the same after failover
1253         [ $ost_idx2 -ne $ost_idx2_2 ] &&
1254                 error "$ost_idx2 != $ost_idx2_2, changed after failover"
1255
1256         test_19e_check $comp_file
1257 }
1258 run_test 19e "Replay of layout instantiation & extension"
1259
1260 test_19f() {
1261         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs"
1262         [ "$MDS1_VERSION" -lt $(version_code $SEL_VER) ] &&
1263                 skip "skipped for lustre < $SEL_VER"
1264
1265         local comp_file=$DIR/$tdir/$tfile
1266         local flg_opts=""
1267         local found=""
1268
1269         test_mkdir -p $DIR/$tdir
1270
1271         $LFS setstripe -E 256M --comp-flags extension -E -1 $comp_file
1272
1273         [ $? != 0 ] || error "should not be able to manually set extension flag"
1274
1275 }
1276 run_test 19f "Rejection of invalid layouts"
1277
1278 test_19g() {
1279         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs"
1280         [ "$MDS1_VERSION" -lt $(version_code $SEL_VER) ] &&
1281                 skip "skipped for lustre < $SEL_VER"
1282
1283         local file1=$DIR/${tfile}-1
1284         local file2=$DIR/${tfile}-2
1285
1286         test_mkdir -p $DIR/$tdir
1287         multiop $file1 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:c ||
1288                 error "create failed $file1"
1289         multiop $file2 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:c ||
1290                 error "create failed $file2"
1291
1292         $LFS setstripe --component-add -E 1G -c 1 $file1 ||
1293                 error "comp-add [0,1G] failed $file1"
1294         $LFS setstripe --component-add -E 512M -z 128M $file1 &&
1295                 error "comp-add [1G,1G],SEL[1G,512M] succeded $file1"
1296         $LFS setstripe --component-add -E 10G -z 128M $file1 ||
1297                 error "comp-add [1G,1G],SEL[1G,10G] failed $file1"
1298         $LFS setstripe --component-add -E -1 $file1 ||
1299                 error "comp-add [10G,-1] failed $file1"
1300
1301         $LFS setstripe --component-add -E 1G -z 32M -c 1 $file2 &&
1302                 error "comp-add with smal ext size succeeded $file1"
1303         $LFS setstripe --component-add -E 1G -z 100M -c 1 $file2 &&
1304                 error "comp-add with not aligned ext size succeeded $file1"
1305         $LFS setstripe --component-add -E 1G -z 128M -c 1 $file2 ||
1306                 error "comp-add [0,128M],SEL[128M,1G] failed $file1"
1307         $LFS setstripe --component-add -E 10G $file2 ||
1308                 error "comp-add [1G,10G] failed $file1"
1309         $LFS setstripe --component-add -E -1 -z 128M -c 1 $file2 ||
1310                 error "comp-add [10G,10G],SEL[10G,-1] failed $file1"
1311         $LFS setstripe --component-add -E -1 -z 128M -c 1 $file2 &&
1312                 error "repeated comp-add [10G,10G],SEL[10G,-1] succeeded $file1"
1313
1314         $LFS getstripe $file1
1315         flg_opts="--comp-flags init"
1316         found=$($LFS find --comp-start 0 -E 1G $flg_opts $file1 | wc -l)
1317         [ $found -eq 1 ] || error "First component not found $file1"
1318
1319         flg_opts="--comp-flags ^init"
1320         found=$($LFS find --comp-start 1G -E 1G $flg_opts $file1 | wc -l)
1321         [ $found -eq 1 ] || error "Second component not found $file1"
1322
1323         flg_opts="--comp-flags ^init,extension"
1324         found=$($LFS find --comp-start 1G -E 10G $flg_opts $file1 | wc -l)
1325         [ $found -eq 1 ] || error "Third component not found $file1"
1326
1327         flg_opts="--comp-flags ^init"
1328         found=$($LFS find --comp-start 10G -E EOF $flg_opts $file1 | wc -l)
1329         [ $found -eq 1 ] || error "Fourth component not found $file1"
1330
1331         $LFS getstripe $file2
1332         flg_opts="--comp-flags init"
1333         found=$($LFS find --comp-start 0 -E 128M $flg_opts $file2 | wc -l)
1334         [ $found -eq 1 ] || error "First component not found $file2"
1335
1336         flg_opts="--comp-flags extension"
1337         found=$($LFS find --comp-start 128M -E 1G $flg_opts $file2 | wc -l)
1338         [ $found -eq 1 ] || error "Second component not found $file2"
1339
1340         flg_opts="--comp-flags ^init"
1341         found=$($LFS find --comp-start 1G -E 10G $flg_opts $file2 | wc -l)
1342         [ $found -eq 1 ] || error "Third component not found $file2"
1343
1344         flg_opts="--comp-flags ^init"
1345         found=$($LFS find --comp-start 10G -E 10G $flg_opts $file2 | wc -l)
1346         [ $found -eq 1 ] || error "Fourth component not found $file2"
1347
1348         flg_opts="--comp-flags ^init,extension"
1349         found=$($LFS find --comp-start 10G -E EOF $flg_opts $file2 | wc -l)
1350         [ $found -eq 1 ] || error "Fifth component not found $file2"
1351 }
1352 run_test 19g "component-add behaviour"
1353
1354 # Test out of space behavior
1355 test_20a() {
1356         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs"
1357         [ "$MDS1_VERSION" -lt $(version_code $SEL_VER) ] &&
1358                 skip "skipped for lustre < $SEL_VER"
1359
1360         local comp_file=$DIR/$tdir/$tfile
1361         local flg_opts=""
1362         local found=""
1363
1364         test_mkdir -p $DIR/$tdir
1365
1366         # without this, a previous delete can finish after we check free space
1367         wait_delete_completed
1368         wait_mds_ost_sync
1369
1370         # First component is on OST0
1371         $LFS setstripe -E 256M -i 0 -z 64M -E -1 -z 1G $comp_file ||
1372                 error "Create $comp_file failed"
1373
1374         # write past end of first component, so it is extended
1375         dd if=/dev/zero of=$comp_file bs=1M count=1 seek=66 ||
1376                 error "dd to extend failed"
1377
1378         flg_opts="--comp-flags extension"
1379         found=$($LFS find --comp-start 128M -E 256M $flg_opts $comp_file |wc -l)
1380         [ $found -eq 1 ] || error "Write: Second component not found"
1381
1382         local ost_idx1=$($LFS getstripe -I1 -i $comp_file)
1383         local wms=$(ost_watermarks_set_enospc $tfile $ost_idx1 |
1384                     grep "watermarks")
1385         stack_trap "ost_watermarks_clear_enospc $tfile $ost_idx1 $wms" EXIT
1386
1387         flg_opts="--comp-flags extension"
1388         # Write past current init comp, but we won't extend (because no space)
1389         dd if=/dev/zero of=$comp_file bs=1M count=10 seek=200 ||
1390                 error "dd write past current comp failed"
1391
1392         $LFS getstripe $comp_file
1393
1394         flg_opts="--comp-flags init"
1395         found=$($LFS find --comp-start 128M -E 1152M $flg_opts $comp_file | \
1396                 wc -l)
1397         [ $found -eq 1 ] || error "Write: third component not found"
1398
1399         flg_opts="--comp-flags extension"
1400         found=$($LFS find --comp-start 1152M -E EOF $flg_opts $comp_file |wc -l)
1401         [ $found -eq 1 ] || error "Write: fourth extension component not found"
1402
1403         sel_layout_sanity $comp_file 3
1404 }
1405 run_test 20a "Test out of space, spillover to defined component"
1406
1407 test_20b() {
1408         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs"
1409         [ "$MDS1_VERSION" -lt $(version_code $SEL_VER) ] &&
1410                 skip "skipped for lustre < $SEL_VER"
1411
1412         local comp_file=$DIR/$tdir/$tfile
1413         local flg_opts=""
1414         local found=""
1415
1416         test_mkdir -p $DIR/$tdir
1417
1418         # Pool allows us to force use of only certain OSTs
1419         pool_add $TESTNAME || error "Pool creation failed"
1420         pool_add_targets $TESTNAME 0 || error "Pool add targets failed"
1421
1422         # normal component to 10M, extendable component to 1G
1423         # further extendable to EOF
1424         $LFS setstripe -E 10M -E 1G -p $TESTNAME -z 64M -E -1 -p "" -z 512M \
1425                 $comp_file || error "Create $comp_file failed"
1426
1427         replay_barrier $SINGLEMDS
1428
1429         found=$($LFS find --comp-start 10M -E 10M $flg_opts $comp_file | wc -l)
1430         [ $found -eq 1 ] || error "Zero length component not found"
1431
1432         local ost_idx1=0
1433         local wms=$(ost_watermarks_set_enospc $tfile $ost_idx1 |
1434                     grep "watermarks")
1435         stack_trap "ost_watermarks_clear_enospc $tfile $ost_idx1 $wms" EXIT
1436
1437         # write past end of first component
1438         # This should remove the next component, since OST0 is out of space
1439         # and it is striped there (pool contains only OST0)
1440         dd if=/dev/zero of=$comp_file bs=1M count=1 seek=14 ||
1441                 error "dd to extend/remove failed"
1442
1443         $LFS getstripe $comp_file
1444
1445         found=$($LFS find --comp-start 10M -E 10M $flg_opts $comp_file | wc -l)
1446         [ $found -eq 0 ] || error "Write: zero length component still present"
1447
1448         flg_opts="--comp-flags init"
1449         found=$($LFS find --comp-start 10M -E 522M $flg_opts $comp_file | wc -l)
1450         [ $found -eq 1 ] || error "Write: second component not found"
1451
1452         flg_opts="--comp-flags extension"
1453         found=$($LFS find --comp-start 522M -E EOF $flg_opts $comp_file | wc -l)
1454         [ $found -eq 1 ] || error "Write: third component not found"
1455
1456         fail $SINGLEMDS
1457
1458         found=$($LFS find --comp-start 10M -E 10M $flg_opts $comp_file | wc -l)
1459         [ $found -eq 0 ] || error "Failover: 0-length component still present"
1460
1461         flg_opts="--comp-flags init"
1462         found=$($LFS find --comp-start 10M -E 522M $flg_opts $comp_file | wc -l)
1463         [ $found -eq 1 ] || error "Failover: second component not found"
1464
1465         flg_opts="--comp-flags extension"
1466         found=$($LFS find --comp-start 522M -E EOF $flg_opts $comp_file | wc -l)
1467         [ $found -eq 1 ] || error "Failover: third component not found"
1468
1469         sel_layout_sanity $comp_file 3
1470 }
1471 run_test 20b "Remove component without instantiation when there is no space"
1472
1473 test_20c() {
1474         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs"
1475         [ "$MDS1_VERSION" -lt $(version_code $SEL_VER) ] &&
1476                 skip "skipped for lustre < $SEL_VER"
1477
1478         local comp_file=$DIR/$tdir/$tfile
1479         local flg_opts=""
1480         local found=""
1481
1482         test_mkdir -p $DIR/$tdir
1483
1484         # pool is used to limit available OSTs to 0 and 1, so we can set all
1485         # available OSTs out of space
1486         pool_add $TESTNAME || error "Pool creation failed"
1487         pool_add_targets $TESTNAME 0 1 || error "Pool add targets failed"
1488
1489         # without this, a previous delete can finish after we check free space
1490         wait_delete_completed
1491         wait_mds_ost_sync
1492
1493         $LFS setstripe -E 100M -E -1 -p $TESTNAME -z 64M $comp_file ||
1494                 error "Create $comp_file failed"
1495
1496         local ost_idx1=0
1497         local ost_idx2=1
1498         local wms=$(ost_watermarks_set_enospc $tfile $ost_idx1 |
1499                     grep "watermarks")
1500         local wms2=$(ost_watermarks_set_enospc $tfile $ost_idx2 |
1501                      grep "watermarks")
1502         stack_trap "ost_watermarks_clear_enospc $tfile $ost_idx1 $wms" EXIT
1503         stack_trap "ost_watermarks_clear_enospc $tfile $ost_idx2 $wms2" EXIT
1504
1505         dd if=/dev/zero of=$comp_file bs=1M count=1 seek=120 &&
1506                 error "dd should fail with ENOSPC"
1507
1508         flg_opts="--comp-flags init"
1509         found=$($LFS find --comp-start 0M -E 100M $flg_opts $comp_file | wc -l)
1510         [ $found -eq 1 ] || error "Write: First component not found"
1511
1512         flg_opts="--comp-flags ^init"
1513         found=$($LFS find --comp-start 100M -E 100M $flg_opts $comp_file |wc -l)
1514         [ $found -eq 1 ] || error "Write: 0-length component not found"
1515
1516         flg_opts="--comp-flags extension"
1517         found=$($LFS find --comp-start 100M -E EOF $flg_opts $comp_file | wc -l)
1518         [ $found -eq 1 ] || error "Write: third extension component not found"
1519
1520         sel_layout_sanity $comp_file 3
1521 }
1522 run_test 20c "Test inability to stripe new extension component"
1523
1524 test_20d() {
1525         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs"
1526         [ "$MDS1_VERSION" -lt $(version_code $SEL_VER) ] &&
1527                 skip "skipped for lustre < $SEL_VER"
1528
1529         local comp_file=$DIR/$tdir/$tfile
1530         test_mkdir -p $DIR/$tdir
1531
1532         wait_delete_completed
1533         wait_mds_ost_sync
1534
1535         pool_add $TESTNAME || error "Pool creation failed"
1536         pool_add_targets $TESTNAME 0 || error "Pool add targets failed"
1537         $LFS setstripe -E 64m -E -1 -p $TESTNAME -z 64M $comp_file ||
1538                 error "Create $comp_file failed"
1539
1540         replay_barrier $SINGLEMDS
1541
1542         local wms=$(ost_watermarks_set_low_space 0 | grep "watermarks")
1543         dd if=/dev/zero bs=1M count=1 seek=100 of=$comp_file
1544         RC=$?
1545
1546         ost_watermarks_clear_enospc $tfile 0 $wms
1547         [ $RC -eq 0 ] || error "dd failed: $RC"
1548
1549         $LFS getstripe $comp_file
1550         local flg_opts="--comp-start 64M -E 128M --comp-flags init"
1551         local found=$($LFS find $flg_opts $comp_file | wc -l)
1552         [ $found -eq 1 ] || error "Write: component (64M-128M) not found"
1553
1554         local ost_idx=$($LFS getstripe -I3 -i $comp_file)
1555         [ "$ost_idx" != "-1" ] && error "Write: EXT component disappeared"
1556
1557         fail $SINGLEMDS
1558
1559         found=$($LFS find $flg_opts $comp_file | wc -l)
1560         [ $found -eq 1 ] || error "Failover: component (64M-128M) not found"
1561
1562         ost_idx=$($LFS getstripe -I3 -i $comp_file)
1563         [ "$ost_idx" != "-1" ] && error "Failover: EXT component disappeared"
1564
1565         sel_layout_sanity $comp_file 3
1566 }
1567 run_test 20d "Low on space + 0-length comp: force extension"
1568
1569 test_20e() {
1570         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs"
1571         [ "$MDS1_VERSION" -lt $(version_code $SEL_VER) ] &&
1572                 skip "skipped for lustre < $SEL_VER"
1573
1574         local comp_file=$DIR/$tdir/$tfile
1575         test_mkdir -p $DIR/$tdir
1576
1577         wait_delete_completed
1578         wait_mds_ost_sync
1579
1580         pool_add $TESTNAME || error "Pool creation failed"
1581         pool_add_targets $TESTNAME 0 || error "Pool add targets failed"
1582
1583         $LFS setstripe -E 64m -E 640M -z 64M -p $TESTNAME -E -1 $comp_file ||
1584                 error "Create $comp_file failed"
1585
1586         local wms=$(ost_watermarks_set_low_space 0 | grep "watermarks")
1587
1588         dd if=/dev/zero bs=1M count=1 seek=100 of=$comp_file
1589         RC=$?
1590
1591         ost_watermarks_clear_enospc $tfile 0 $wms
1592         [ $RC -eq 0 ] || error "dd failed $RC"
1593
1594         $LFS getstripe $comp_file
1595         local flg_opts="--comp-start 64M -E EOF --comp-flags init"
1596         local found=$($LFS find $flg_opts $comp_file | wc -l)
1597         [ $found -eq 1 ] || error "Write: component (64M-EOF) not found"
1598
1599         local ost_idx=$($LFS getstripe -I2 -i $comp_file)
1600         [ "$ost_idx" != "" ] && error "Write: 0-length component still exists"
1601         ost_idx=$($LFS getstripe -I3 -i $comp_file)
1602         [ "$ost_idx" != "" ] && error "Write: extension component still exists"
1603
1604         sel_layout_sanity $comp_file 2
1605 }
1606 run_test 20e "ENOSPC with next real comp: spillover and backward extension"
1607
1608 # Simple DoM interaction test
1609 test_21a() {
1610         [ "$MDS1_VERSION" -lt $(version_code $SEL_VER) ] &&
1611                 skip "skipped for lustre < $SEL_VER"
1612
1613         local comp_file=$DIR/$tdir/$tfile
1614         local flg_opts=""
1615         local found=""
1616
1617         test_mkdir -p $DIR/$tdir
1618
1619         # simple, correct self-extending layout after DoM component
1620         $LFS setstripe -E 1M -L mdt -E -1 -z 64m $comp_file || \
1621                 error "Create $comp_file failed"
1622
1623         # Write to DoM component & to self-extending comp after it
1624         dd if=/dev/zero bs=1M count=12 of=$comp_file ||
1625                 error "dd to extend failed"
1626
1627         flg_opts="--comp-flags init"
1628         found=$($LFS find --comp-start 1M -E 65M $flg_opts $comp_file | wc -l)
1629         [ $found -eq 1 ] || error "Write: extended component not found"
1630
1631         flg_opts="--comp-flags extension"
1632         found=$($LFS find --comp-start 65M $flg_opts $comp_file | wc -l)
1633         [ $found -eq 1 ] || error "Write: extension component not found"
1634
1635         sel_layout_sanity $comp_file 3
1636 }
1637 run_test 21a "Simple DoM interaction tests"
1638
1639 # DoM + extension + removal
1640 test_21b() {
1641         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs"
1642         [ "$MDS1_VERSION" -lt $(version_code $SEL_VER) ] &&
1643                 skip "skipped for lustre < $SEL_VER"
1644
1645         local comp_file=$DIR/$tdir/$tfile
1646         local ost_name=$(ostname_from_index 0)
1647         local flg_opts=""
1648         local found=""
1649
1650         test_mkdir -p $DIR/$tdir
1651
1652         # DoM, extendable component, further extendable component
1653         $LFS setstripe -E 1M -L mdt -E 256M -i 0 -z 64M -E -1 -z 1G \
1654                 $comp_file || error "Create $comp_file failed"
1655
1656         found=$($LFS find --comp-start 1M -E 1M $flg_opts $comp_file | wc -l)
1657         [ $found -eq 1 ] || error "Write: Zero length component not found"
1658
1659         # This also demonstrates that we will avoid degraded OSTs
1660         do_facet ost1 $LCTL set_param -n obdfilter.$ost_name.degraded=1
1661         # sleep to guarantee we see the degradation
1662         sleep_maxage
1663
1664         # un-degrade on exit
1665         stack_trap "do_facet ost1 $LCTL set_param -n \
1666                 obdfilter.$ost_name.degraded=0; sleep_maxage" EXIT
1667
1668         # This should remove the first component after DoM and spill over to
1669         # the next one
1670         dd if=/dev/zero bs=1M count=2 of=$comp_file ||
1671                 error "dd to remove+spill over failed"
1672
1673         found=$($LFS find --comp-start 1M -E 1M $flg_opts $comp_file | wc -l)
1674         [ $found -eq 0 ] || error "Write: Zero length component still present"
1675
1676         flg_opts="--comp-flags init"
1677         found=$($LFS find --comp-start 1M -E 1025M $flg_opts $comp_file | wc -l)
1678         [ $found -eq 1 ] || error "Write: extended component not found"
1679
1680         flg_opts="--comp-flags extension"
1681         found=$($LFS find --comp-start 1025M -E EOF $flg_opts $comp_file |wc -l)
1682         [ $found -eq 1 ] || error "Write: extension component not found"
1683
1684         sel_layout_sanity $comp_file 3
1685 }
1686 run_test 21b "DoM followed by extendable component with removal"
1687
1688 # Test of repeat component behavior with OOS/degraded OST
1689 test_22a() {
1690         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs"
1691         [ "$MDS1_VERSION" -lt $(version_code $SEL_VER) ] &&
1692                 skip "skipped for lustre < $SEL_VER"
1693
1694         local comp_file=$DIR/$tdir/$tfile
1695         local flg_opts=""
1696         local found=""
1697
1698         test_mkdir -p $DIR/$tdir
1699
1700         $LFS setstripe -E -1 -c 1 -z 128M $comp_file ||
1701                 error "Create $comp_file failed"
1702
1703         local ost_idx1=$($LFS getstripe -I1 -i $comp_file)
1704         local ost_name=$(ostname_from_index $ost_idx1)
1705
1706         # write past end of first component, so it is extended
1707         dd if=/dev/zero of=$comp_file bs=1M count=1 seek=130 ||
1708                 error "dd to extend failed"
1709
1710         flg_opts="--comp-flags extension"
1711         found=$($LFS find --comp-start 256M -E EOF $flg_opts $comp_file | wc -l)
1712         [ $found -eq 1 ] || error "Write: second component not found"
1713
1714         # degrade OST for component 1
1715         do_facet ost$((ost_idx1+1)) $LCTL set_param -n \
1716                 obdfilter.$ost_name.degraded=1
1717         # sleep to guarantee we see the degradation
1718         sleep_maxage
1719
1720         # un-degrade on exit
1721         stack_trap "do_facet ost$((ost_idx1+1)) $LCTL set_param -n \
1722                 obdfilter.$ost_name.degraded=0; sleep_maxage" EXIT
1723
1724         replay_barrier $SINGLEMDS
1725
1726         # seek past the end of current comp & write, should cause a new comp
1727         # to be created (ie repeat previous comp)
1728         dd if=/dev/zero of=$comp_file bs=1M count=1 seek=300 ||
1729                 error "dd to repeat failed"
1730
1731         local ost_idx2=$($LFS getstripe -I2 -i $comp_file)
1732
1733         [ $ost_idx1 -eq $ost_idx2 ] && error "$ost_idx1 == $ost_idx2"
1734
1735         flg_opts="--comp-flags init"
1736         found=$($LFS find --comp-start 256M $flg_opts $comp_file | wc -l)
1737         [ $found -eq 1 ] || error "Write: second component not found"
1738
1739         flg_opts="--comp-flags extension"
1740         found=$($LFS find --comp-start 384M -E EOF $flg_opts $comp_file | wc -l)
1741         [ $found -eq 1 ] || error "Write: extension component not found"
1742
1743         fail $SINGLEMDS
1744
1745         local ost_idx2_2=$($LFS getstripe -I2 -i $comp_file)
1746         [ $ost_idx2_2 -ne $ost_idx2 ] && error "$ost_idx2_2 != $ost_idx2"
1747
1748         flg_opts="--comp-flags init"
1749         found=$($LFS find --comp-start 256M $flg_opts $comp_file | wc -l)
1750         [ $found -eq 1 ] || error "Failover: second component not found"
1751
1752         flg_opts="--comp-flags extension"
1753         found=$($LFS find --comp-start 384M -E EOF $flg_opts $comp_file | wc -l)
1754         [ $found -eq 1 ] || error "Failover: extension component not found"
1755
1756         sel_layout_sanity $comp_file 3
1757 }
1758 run_test 22a "Test repeat component behavior with degraded OST"
1759
1760 # Test repeat behavior with low space
1761 test_22b() {
1762         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs"
1763         [ "$MDS1_VERSION" -lt $(version_code $SEL_VER) ] &&
1764                 skip "skipped for lustre < $SEL_VER"
1765
1766         local comp_file=$DIR/$tdir/$tfile
1767         local flg_opts=""
1768         local found=""
1769
1770         test_mkdir -p $DIR/$tdir
1771
1772         # without this, a previous delete can finish after we check free space
1773         wait_delete_completed
1774         wait_mds_ost_sync
1775
1776         $LFS setstripe -E -1 -c 1 -z 128M \
1777                 $comp_file || error "Create $comp_file failed"
1778
1779         # write past end of first component, so it is extended
1780         dd if=/dev/zero of=$comp_file bs=1M count=1 seek=130 ||
1781                 error "dd to extend failed"
1782
1783         flg_opts="--comp-flags extension"
1784         found=$($LFS find --comp-start 256M -E EOF $flg_opts $comp_file | wc -l)
1785         [ $found -eq 1 ] || error "Write: Second component not found"
1786
1787         # set our OST low on space
1788         local ost_idx1=$($LFS getstripe -I1 -i $comp_file)
1789         local wms=$(ost_watermarks_set_low_space $ost_idx1 | grep "watermarks")
1790
1791         stack_trap "ost_watermarks_clear_enospc $tfile $ost_idx1 $wms" EXIT
1792
1793         # Write past end of current space, fail to extend, causing repeat
1794         dd if=/dev/zero of=$comp_file bs=1M count=1 seek=300 ||
1795                 error "dd to repeat failed"
1796
1797         $LFS getstripe $comp_file
1798
1799         local ost_idx2=$($LFS getstripe -I2 -i $comp_file)
1800
1801         [ $ost_idx1 -eq $ost_idx2 ] && error "$ost_idx1 == $ost_idx2"
1802
1803         flg_opts="--comp-flags init"
1804         found=$($LFS find --comp-start 256M $flg_opts $comp_file | wc -l)
1805         [ $found -eq 1 ] || error "Write: Second component not found"
1806
1807         flg_opts="--comp-flags extension"
1808         found=$($LFS find --comp-start 384M -E EOF $flg_opts $comp_file | wc -l)
1809         [ $found -eq 1 ] || error "Write: Extension component not found"
1810
1811         sel_layout_sanity $comp_file 3
1812 }
1813 run_test 22b "Test simple 'out of space' condition with repeat"
1814
1815 # This tests both "repeat" and "extend in place when repeat fails" aspects
1816 # of repeating components
1817 test_22c() {
1818         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs"
1819         [ "$MDS1_VERSION" -lt $(version_code $SEL_VER) ] &&
1820                 skip "skipped for lustre < $SEL_VER"
1821
1822         local comp_file=$DIR/$tdir/$tfile
1823         local flg_opts=""
1824         local found=""
1825
1826         test_mkdir -p $DIR/$tdir
1827
1828         # pool is used to limit available OSTs to 0 and 1, so we can set all
1829         # available OSTs out of space
1830         pool_add $TESTNAME || error "Pool creation failed"
1831         pool_add_targets $TESTNAME 0 1 || error "Pool add targets failed"
1832
1833         # without this, a previous delete can finish after we check free space
1834         wait_delete_completed
1835         wait_mds_ost_sync
1836
1837         $LFS setstripe -E -1 -z 64M -c 1 -p "$TESTNAME" $comp_file || \
1838                 error "Create $comp_file failed"
1839
1840         # write past end of first component, so it is extended
1841         dd if=/dev/zero of=$comp_file bs=1M count=1 seek=80 conv=notrunc ||
1842                 error "dd to extend failed"
1843
1844         $LFS getstripe $comp_file
1845
1846         flg_opts="--comp-flags extension"
1847         found=$($LFS find --comp-start 128M -E EOF $flg_opts $comp_file | wc -l)
1848         [ $found -eq 1 ] || error "Write: second component not found"
1849
1850         # set our OST out of space
1851         local ost_idx1=$($LFS getstripe -I1 -i $comp_file)
1852         local wms=$(ost_watermarks_set_enospc $tfile $ost_idx1 |
1853                     grep "watermarks")
1854         stack_trap "ost_watermarks_clear_enospc $tfile $ost_idx1 $wms" EXIT
1855
1856         # This should create a repeat component on a new OST
1857         dd if=/dev/zero of=$comp_file bs=1M count=1 seek=180 conv=notrunc ||
1858                 error "dd to repeat failed"
1859
1860         $LFS getstripe $comp_file
1861
1862         local comp_cnt=$($LFS getstripe --component-count $comp_file)
1863         [ $comp_cnt -ne 3 ] && error "component count: $comp_cnt, should be 3"
1864
1865         # New second component should be on a different OST
1866         local ost_idx2=$($LFS getstripe --comp-start=128m \
1867                          --comp-end=192m --comp-flags=init -i $comp_file)
1868
1869         [ $ost_idx1 -eq $ost_idx2 ] && error "2nd comp: same OST $ost_idx1"
1870
1871         local wms2=$(ost_watermarks_set_enospc $tfile $ost_idx2 |
1872                      grep "watermarks")
1873         stack_trap "ost_watermarks_clear_enospc $tfile $ost_idx2 $wms2" EXIT
1874
1875         # now that the second OST is out of space (as is the first OST), we
1876         # attempt to extend.  This should result in an extension of the
1877         # existing component, rather than a new component.
1878         dd if=/dev/zero of=$comp_file bs=1M count=1 seek=240 conv=notrunc ||
1879                 error "dd for forced extension failed"
1880
1881         $LFS getstripe $comp_file
1882
1883         # clear out of space on first OST
1884         ost_watermarks_clear_enospc $tfile $ost_idx1 $wms
1885
1886         # finally, now that the first OST has space again, we attempt to
1887         # extend one last time.  This should create a new component on the
1888         # first OST
1889         dd if=/dev/zero of=$comp_file bs=1M count=1 seek=300 conv=notrunc ||
1890                 error "dd for repeat on first OST failed"
1891
1892         $LFS getstripe $comp_file
1893
1894         flg_opts="--comp-flags init"
1895         found=$($LFS find --comp-start 128M $flg_opts $comp_file | wc -l)
1896         [ $found -eq 1 ] || error "Write: second component not found"
1897
1898         flg_opts="--comp-flags init"
1899         found=$($LFS find --comp-start 256M $flg_opts $comp_file | wc -l)
1900         [ $found -eq 1 ] || error "Write: third component not found"
1901
1902         flg_opts="--comp-flags extension"
1903         found=$($LFS find --comp-start 320M -E EOF $flg_opts $comp_file | wc -l)
1904         [ $found -eq 1 ] || error "Write: extension component not found"
1905
1906         sel_layout_sanity $comp_file 4
1907 }
1908 run_test 22c "Test repeat with out of space on > 1 OST"
1909
1910 test_22d_post_check() {
1911         local comp_file=$1
1912         local name=$2
1913         local flg_opts="--comp-flags init"
1914         local found=$($LFS find --comp-start 0M -E 128M $flg_opts $comp_file |
1915                       wc -l)
1916         [ $found -eq 1 ] || {
1917                 $LFS getstripe $comp_file
1918                 error "$name: second component not found"
1919         }
1920
1921         flg_opts="--comp-flags extension"
1922         found=$($LFS find --comp-start 128M -E EOF $flg_opts $comp_file | wc -l)
1923         [ $found -eq 1 ] || error "$name: third extension component not found"
1924
1925         sel_layout_sanity $comp_file 2
1926 }
1927
1928 test_22d_pre() {
1929         local comp_file=$1
1930         local wms="$2"
1931         local RC
1932
1933         # write past end of first component
1934         dd if=/dev/zero of=$comp_file bs=1M count=1 seek=70
1935         RC=$?
1936
1937         ost_watermarks_clear_enospc $tfile 0 $wms
1938         [ $RC -eq 0 ] || error "dd to force extend failed"
1939
1940         test_22d_post_check $comp_file "Write"
1941 }
1942
1943 test_22d() {
1944         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs"
1945         [ "$MDS1_VERSION" -lt $(version_code $SEL_VER) ] &&
1946                 skip "skipped for lustre < $SEL_VER"
1947
1948         local comp_file=$DIR/$tdir/$tfile
1949         local flg_opts=""
1950         local found=""
1951
1952         test_mkdir -p $DIR/$tdir
1953
1954         # without this, a previous delete can finish after we check free space
1955         wait_delete_completed
1956         wait_mds_ost_sync
1957
1958         # Pool allows us to force use of only certain OSTs
1959         pool_add $TESTNAME || error "Pool creation failed"
1960         pool_add_targets $TESTNAME 0 || error "Pool add targets failed"
1961
1962         # 1. Fail to extend due to OOS, try to repeat within the same pool,
1963         # fail to stripe (again OOS) the 0-length component, remove the
1964         # repeated one, force the extension on the original one.
1965         $LFS setstripe -E -1 -p $TESTNAME -z 64M $comp_file ||
1966                 error "Create $comp_file failed"
1967
1968         replay_barrier $SINGLEMDS
1969
1970         # set our OST out of space
1971         local wms=$(ost_watermarks_set_enospc $tfile 0 | grep "watermarks")
1972
1973         test_22d_pre $comp_file "$wms"
1974         fail $SINGLEMDS
1975         test_22d_post_check $comp_file "Failover"
1976
1977         # 2. repeat with low on space: 0-length repeated component will be
1978         # striped, but still fails to be extended; otherwise the same as (1).
1979         rm -f $comp_file
1980         $LFS setstripe -E -1 -p $TESTNAME -z 64M $comp_file ||
1981                 error "Create $comp_file failed"
1982
1983         replay_barrier $SINGLEMDS
1984
1985         # set our OST low on space
1986         local wms=$(ost_watermarks_set_low_space 0 | grep "watermarks")
1987
1988         test_22d_pre $comp_file "$wms"
1989         fail $SINGLEMDS
1990         test_22d_post_check $comp_file "Failover"
1991 }
1992 run_test 22d "out of/low on space + failed to repeat + forced extension"
1993
1994 test_23a() {
1995         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs"
1996         [ "$MDS1_VERSION" -lt $(version_code $SEL_VER) ] &&
1997                 skip "skipped for lustre < $SEL_VER"
1998
1999         local comp_file=$DIR/$tdir/$tfile
2000         test_mkdir -p $DIR/$tdir
2001
2002         $LFS setstripe -z 64M -c 1 -E -1 $comp_file ||
2003                 error "Create $comp_file failed"
2004
2005         dd if=/dev/zero bs=1M oflag=append count=1 of=$comp_file ||
2006                 error "dd append failed"
2007
2008         local flg_opts="--comp-start 0 -E EOF --comp-flags init"
2009         local found=$($LFS find $flg_opts $comp_file | wc -l)
2010         [ $found -eq 1 ] || error "Append: first component (0-EOF) not found"
2011
2012         local ost_idx=$($LFS getstripe -I2 -i $comp_file)
2013         [ "$ost_idx" != "" ] && error "Append: second component still exists"
2014
2015         sel_layout_sanity $comp_file 1
2016 }
2017 run_test 23a "Append: remove EXT comp"
2018
2019 test_23b() {
2020         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs"
2021         [ "$MDS1_VERSION" -lt $(version_code $SEL_VER) ] &&
2022                 skip "skipped for lustre < $SEL_VER"
2023
2024         local comp_file=$DIR/$tdir/$tfile
2025         test_mkdir -p $DIR/$tdir
2026
2027         $LFS setstripe -E 64m -E -1 -z 64M $comp_file ||
2028                 error "Create $comp_file failed"
2029
2030         dd if=/dev/zero bs=1M oflag=append count=1 of=$comp_file ||
2031                 error "dd append failed"
2032
2033         local flg_opts="--comp-start 64M -E EOF --comp-flags init"
2034         local found=$($LFS find $flg_opts $comp_file | wc -l)
2035         [ $found -eq 1 ] || error "Append: component (64M-EOF) not found"
2036
2037         local ost_idx=$($LFS getstripe -I3 -i $comp_file)
2038         [ "$ost_idx" != "" ] && error "Append: third component still exists"
2039
2040         sel_layout_sanity $comp_file 2
2041 }
2042 run_test 23b "Append with 0-length comp: remove EXT comp"
2043
2044 test_23c() {
2045         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs"
2046         [ "$MDS1_VERSION" -lt $(version_code $SEL_VER) ] &&
2047                 skip "skipped for lustre < $SEL_VER"
2048
2049         local comp_file=$DIR/$tdir/$tfile
2050         test_mkdir -p $DIR/$tdir
2051
2052         wait_delete_completed
2053         wait_mds_ost_sync
2054
2055         pool_add $TESTNAME || error "Pool creation failed"
2056         pool_add_targets $TESTNAME 0 || error "Pool add targets failed"
2057         $LFS setstripe -E 64m -E -1 -p $TESTNAME -z 64M $comp_file ||
2058                 error "Create $comp_file failed"
2059
2060         local wms=$(ost_watermarks_set_low_space 0 | grep "watermarks")
2061         dd if=/dev/zero bs=1M oflag=append count=1 of=$comp_file
2062         RC=$?
2063
2064         ost_watermarks_clear_enospc $tfile 0 $wms
2065         [ $RC -eq 0 ] || error "dd append failed: $RC"
2066
2067         local flg_opts="--comp-start 64M -E EOF --comp-flags init"
2068         local found=$($LFS find $flg_opts $comp_file | wc -l)
2069         [ $found -eq 1 ] || error "Append: component (64M-EOF) not found"
2070
2071         local ost_idx=$($LFS getstripe -I3 -i $comp_file)
2072         [ "$ost_idx" != "" ] && error "Append: EXT component still exists"
2073
2074         sel_layout_sanity $comp_file 2
2075 }
2076 run_test 23c "Append with low on space + 0-length comp: force extension"
2077
2078 test_23d() {
2079         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs"
2080         [ "$MDS1_VERSION" -lt $(version_code $SEL_VER) ] &&
2081                 skip "skipped for lustre < $SEL_VER"
2082
2083         local comp_file=$DIR/$tdir/$tfile
2084         test_mkdir -p $DIR/$tdir
2085
2086         $LFS setstripe -E 64m -E 640M -z 64M -E -1 $comp_file ||
2087                 error "Create $comp_file failed"
2088
2089         dd if=/dev/zero bs=1M oflag=append count=1 of=$comp_file ||
2090                 error "dd append failed"
2091
2092         flg_opts="--comp-start 64M -E 640M --comp-flags init"
2093         found=$($LFS find $flg_opts $comp_file | wc -l)
2094         [ $found -eq 1 ] || error "Append: component (64M-640M) not found"
2095
2096         ost_idx=$($LFS getstripe -I3 -i $comp_file)
2097         [ "$ost_idx" != "" ] && error "Append: third component still exists"
2098
2099         sel_layout_sanity $comp_file 3
2100 }
2101 run_test 23d "Append with 0-length comp + next real comp: remove EXT comp"
2102
2103 test_23e() {
2104         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs"
2105         [ "$MDS1_VERSION" -lt $(version_code $SEL_VER) ] &&
2106                 skip "skipped for lustre < $SEL_VER"
2107
2108         local comp_file=$DIR/$tdir/$tfile
2109         test_mkdir -p $DIR/$tdir
2110
2111         wait_delete_completed
2112         wait_mds_ost_sync
2113
2114         pool_add $TESTNAME || error "Pool creation failed"
2115         pool_add_targets $TESTNAME 0 || error "Pool add targets failed"
2116
2117         $LFS setstripe -E 64m -E 640M -z 64M -p $TESTNAME -E -1 $comp_file ||
2118                 error "Create $comp_file failed"
2119
2120         local wms=$(ost_watermarks_set_low_space 0 | grep "watermarks")
2121
2122         dd if=/dev/zero bs=1M oflag=append count=1 of=$comp_file
2123         RC=$?
2124
2125         ost_watermarks_clear_enospc $tfile 0 $wms
2126         [ $RC -eq 0 ] || error "dd append failed $RC"
2127
2128         local flg_opts="--comp-start 64M -E EOF --comp-flags init"
2129         local found=$($LFS find $flg_opts $comp_file | wc -l)
2130         [ $found -eq 1 ] || error "Append: component (64M-EOF) not found"
2131
2132         local ost_idx=$($LFS getstripe -I2 -i $comp_file)
2133         [ "$ost_idx" != "" ] && error "Append: 0-length component still exists"
2134         ost_idx=$($LFS getstripe -I3 -i $comp_file)
2135         [ "$ost_idx" != "" ] && error "Append: extension component still exists"
2136
2137         sel_layout_sanity $comp_file 2
2138 }
2139 run_test 23e "Append with next real comp: spillover and backward extension"
2140
2141 test_23f() {
2142         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs"
2143         [ "$MDS1_VERSION" -lt $(version_code $SEL_VER) ] &&
2144                 skip "skipped for lustre < $SEL_VER"
2145
2146         local comp_file=$DIR/$tdir/$tfile
2147         test_mkdir -p $DIR/$tdir
2148
2149         $LFS setstripe -z 64M -c 1 -E -1 $comp_file ||
2150                 error "Create $comp_file failed"
2151
2152         local ost_idx=$($LFS getstripe -I1 -i $comp_file)
2153         local wms=$(ost_watermarks_set_low_space $ost_idx | grep "watermarks")
2154
2155         dd if=/dev/zero bs=1M oflag=append count=1 of=$comp_file
2156         RC=$?
2157
2158         ost_watermarks_clear_enospc $tfile $ost_idx $wms
2159         [ $RC -eq 0 ] || error "dd append failed"
2160
2161         local flg_opts="--comp-start 64M -E EOF --comp-flags init"
2162         local found=$($LFS find $flg_opts $comp_file | wc -l)
2163         [ $found -eq 1 ] || error "Append: component (64M-EOF) not found"
2164
2165         ost_idx=$($LFS getstripe -I2 -i $comp_file)
2166         [ "$ost_idx" != "" ] && error "Append: extension component still exists"
2167
2168         sel_layout_sanity $comp_file 2
2169 }
2170 run_test 23f "Append with low on space: repeat and remove EXT comp"
2171
2172 complete $SECONDS
2173 check_and_cleanup_lustre
2174 exit_status