Whamcloud - gitweb
865f62f68798fc2e7a5ce443ec4db01a499558ee
[fs/lustre-release.git] / lustre / tests / ost-pools.sh
1 #!/bin/bash
2 # -*- mode: Bash; tab-width: 4; indent-tabs-mode: t; -*-
3 # vim:shiftwidth=4:softtabstop=4:tabstop=4:
4 #
5 # Run select tests by setting ONLY, or as arguments to the script.
6 # Skip specific tests by setting EXCEPT.
7 #
8 # Run test by setting NOSETUP=true when ltest has setup env for us
9
10 SRCDIR=$(dirname $0)
11 export PATH=$PWD/$SRCDIR:$SRCDIR:$PWD/$SRCDIR/../utils:$PATH:/sbin
12
13 ONLY=${ONLY:-"$*"}
14 ALWAYS_EXCEPT="$OST_POOLS_EXCEPT"
15 # bug number for skipped test: -
16 # UPDATE THE COMMENT ABOVE WITH BUG NUMBERS WHEN CHANGING ALWAYS_EXCEPT!
17
18 [ "$ALWAYS_EXCEPT$EXCEPT" ] &&
19     echo "Skipping tests: $(echo $ALWAYS_EXCEPT $EXCEPT)"
20
21 TMP=${TMP:-/tmp}
22 ORIG_PWD=${PWD}
23
24 LUSTRE=${LUSTRE:-$(cd $(dirname $0)/..; echo $PWD)}
25 . $LUSTRE/tests/test-framework.sh
26 init_test_env $@
27 . ${CONFIG:=$LUSTRE/tests/cfg/$NAME.sh}
28 init_logging
29
30 check_and_setup_lustre
31
32 [ "$SLOW" = "no" ] && EXCEPT_SLOW="5b 18 22 23b 25"
33
34 DIR=${DIR:-$MOUNT}
35 assert_DIR
36
37 build_test_filter
38
39 MAXFREE=${MAXFREE:-$((2000000 * OSTCOUNT))}
40
41 # OST pools tests
42 POOL=testpool
43 POOL2=${POOL2:-${POOL}2}
44 POOL3=${POOL3:-${POOL}3}
45 NON_EXISTANT_POOL=nonexistantpool
46 NON_EXISTANT_FS=nonexistantfs
47 INVALID_POOL=some_invalid_pool_name
48 TGT_COUNT=$OSTCOUNT
49 TGT_FIRST=$(printf %04x 0)
50 TGT_MAX=$(printf %04x $((TGT_COUNT-1)))
51 TGT_STEP=1
52 TGT_LIST=$(seq 0x$TGT_FIRST $TGT_STEP 0x$TGT_MAX)
53 TGT_LIST2=$(seq 0x$TGT_FIRST 2 0x$TGT_MAX)
54
55 TGT_ALL="$FSNAME-OST[$TGT_FIRST-$TGT_MAX/1]"
56 TGT_HALF="$FSNAME-OST[$TGT_FIRST-$TGT_MAX/2]"
57
58 TGT_UUID=$(for i in $TGT_LIST; do printf "$FSNAME-OST%04x_UUID " $i; done)
59 TGT_UUID2=$(for i in $TGT_LIST2; do printf "$FSNAME-OST%04x_UUID " $i; done)
60
61 create_dir() {
62     local dir=$1
63     local pool=$2
64     local count=${3:-"-1"}
65     local idx=$4
66
67     mkdir -p $dir
68     if [[ -n $idx ]]; then
69         $SETSTRIPE -c $count -p $pool -i $idx $dir
70     else
71         $SETSTRIPE -c $count -p $pool $dir
72     fi
73     [[ $? -eq 0 ]] ||
74         error "$SETSTRIPE -p $pool $dir failed."
75 }
76
77 create_file() {
78     local file=$1
79     local pool=$2
80     local count=${3:-"-1"}
81     local index=${4:-"-1"}
82     rm -f $file
83     $SETSTRIPE -i $index -c $count -p $pool $file
84     [[ $? -eq 0 ]] ||
85         error "$SETSTRIPE -p $pool $file failed."
86 }
87
88 osts_in_pool() {
89     local pool=$1
90     local res
91     for i in $(do_facet $SINGLEMDS lctl pool_list $FSNAME.$pool |
92                grep -v "^Pool:" | sed -e 's/_UUID$//;s/^.*-OST//'); do
93         res="$res $(printf "%d" 0x$i)"
94     done
95     echo $res
96 }
97
98 check_dir_in_pool() {
99     local dir=$1
100     local pool=$2
101     local res=$($GETSTRIPE $dir | grep "^stripe_count:" |
102                 cut -d ':' -f 5 | tr -d "[:blank:]")
103     if [[ "$res" != "$pool" ]]; then
104         error found $res instead of $pool
105         return 1
106     fi
107
108     return 0
109 }
110
111 check_file_in_pool() {
112     local osts=$(osts_in_pool $2)
113     check_file_in_osts $1 "$osts" $3
114 }
115
116 check_file_in_osts() {
117         local file=$1
118         local pool_list=${2:-$TGT_LIST}
119         local count=$3
120         local res=$($GETSTRIPE $file | grep 0x | cut -f2)
121         local i
122         for i in $res; do
123                 found=$(echo :$pool_list: | tr " " ":" | grep :$i:)
124                 if [[ "$found" == "" ]]; then
125                         echo "pool list: $pool_list"
126                         echo "striping: $res"
127                         $GETSTRIPE $file
128                         error "$file not allocated from OSTs $pool_list."
129                         return 1
130                 fi
131         done
132
133         local ost_count=$($GETSTRIPE $file | grep 0x | wc -l)
134         [[ -n "$count" ]] && [[ $ost_count -ne $count ]] &&
135             { error "Stripe count $count expected; got $ost_count" && return 1;}
136
137
138 }
139
140 file_pool() {
141     $GETSTRIPE -v $1 | grep "^lmm_pool:" | tr -d "[:blank:]" | cut -f 2 -d ':'
142 }
143
144 check_file_not_in_pool() {
145     local file=$1
146     local pool=$2
147     local res=$(file_pool $file)
148
149     if [[ "$res" == "$pool" ]]; then
150         error "File $file is in pool: $res"
151         return 1
152     else
153         return 0
154     fi
155 }
156
157 check_dir_not_in_pool() {
158         local dir=$1
159         local pool=$2
160         local res=$($GETSTRIPE -v $dir | grep "^stripe_count" | head -n1 |
161                 cut -f 8 -d ' ')
162         if [[ "$res" == "$pool" ]]; then
163                 error "File $dir is in pool: $res"
164                 return 1
165         fi
166         return 0
167 }
168
169 drain_pool() {
170     pool=$1
171     wait_update $HOSTNAME "lctl get_param -n lov.$FSNAME-*.pools.$pool" "" ||
172         error "Failed to remove targets from pool: $pool"
173 }
174
175 add_pool() {
176     local pool=$1
177     local osts=$2
178     local tgt="${3}$(lctl get_param -n lov.$FSNAME-*.pools.$pool |
179                sort -u | tr '\n' ' ')"
180
181     do_facet $SINGLEMDS lctl pool_add $FSNAME.$pool $osts
182     local RC=$?
183     [[ $RC -ne 0 ]] && return $RC
184
185     wait_update $HOSTNAME "lctl get_param -n lov.$FSNAME-*.pools.$pool |
186                            sort -u | tr '\n' ' ' " "$tgt" >/dev/null || RC=1
187     [[ $RC -ne 0 ]] && error "pool_add failed: $1; $2"
188     return $RC
189 }
190
191 create_pool_nofail() {
192     create_pool $FSNAME.$1
193     if [[ $? != 0 ]]; then
194         error "Pool creation of $1 failed"
195     fi
196 }
197
198 create_pool_fail() {
199     create_pool $FSNAME.$1
200     if [[ $? == 0 ]]; then
201         error "Pool creation of $1 succeeded; should have failed"
202     fi
203 }
204
205 cleanup_tests() {
206     # Destroy pools from previous test runs
207     for p in $(do_facet $SINGLEMDS lctl pool_list $FSNAME | grep $POOL); do
208         destroy_pool_int $p;
209     done
210     rm -rf $DIR/d0.${TESTSUITE}
211 }
212
213 ost_pools_init() {
214     cleanup_tests
215 }
216
217 set_cleanup_trap() {
218     trap "cleanup_tests $FSNAME" EXIT
219 }
220
221 # Initialization
222 remote_mds_nodsh && skip "remote MDS with nodsh" && exit 0
223 remote_ost_nodsh && skip "remote OST with nodsh" && exit 0
224 ost_pools_init
225
226
227 # Tests for new commands added
228 test_1a() {
229     set_cleanup_trap
230     create_pool_nofail p
231     destroy_pool p
232 }
233 run_test 1a "Create a pool with a 1 character pool name"
234
235 test_1b() {
236     set_cleanup_trap
237     create_pool_nofail ${POOL}12
238     destroy_pool ${POOL}12
239 }
240 run_test 1b "Create a pool with a 10 char pool name"
241
242 test_1c() {
243     set_cleanup_trap
244     create_pool_nofail ${POOL}1234567
245     destroy_pool ${POOL}1234567
246 }
247 run_test 1c "Create a pool with a 15 char pool name"
248
249 test_1d() {
250     set_cleanup_trap
251     create_pool_fail ${POOL}12345678
252 }
253 run_test 1d "Create a pool with a 16 char pool name; should fail"
254
255 test_1e() {
256     set_cleanup_trap
257     local pool_name="$POOL"
258     for ((i = 1; i <= 991; i++)); do pool_name=${pool_name}"o"; done
259     create_pool_fail $pool_name
260 }
261 run_test 1e "Create a pool with a 1000 char pool name; should fail"
262
263 test_1f() {
264     set_cleanup_trap
265     do_facet $SINGLEMDS lctl pool_new .$POOL 2>/dev/null
266     [[ $? -ne 0 ]] ||
267         error "pool_new did not fail even though fs-name was missing"
268 }
269 run_test 1f "pool_new should fail if fs-name is missing"
270
271 test_1g() {
272     set_cleanup_trap
273     do_facet $SINGLEMDS lctl pool_new $POOL 2>/dev/null
274     [[ $? -ne 0 ]] ||
275         error "pool_new did not fail even though fs-name was missing"
276 }
277 run_test 1g "pool_new should fail if fs-name is missing"
278
279 test_1h() {
280     set_cleanup_trap
281     do_facet $SINGLEMDS lctl pool_new ${FSNAME}. 2>/dev/null
282     [[ $? -ne 0 ]] ||
283         error "pool_new did not fail even though pool name was missing"
284 }
285 run_test 1h "pool_new should fail if poolname is missing"
286
287 test_1i() {
288     set_cleanup_trap
289     do_facet $SINGLEMDS lctl pool_new . 2>/dev/null
290     [[ $? -ne 0 ]] ||
291         error "pool_new did not fail even if pool and fs-name were missing"
292 }
293 run_test 1i "pool_new should fail if poolname and fs-name are missing"
294
295 test_1j() {
296     set_cleanup_trap
297     do_facet $SINGLEMDS lctl pool_new ${FSNAME},$POOL 2>/dev/null
298     [[ $? -ne 0 ]] ||
299         error "pool_new did not fail even though pool name format was wrong"
300 }
301 run_test 1j "pool_new should fail if poolname format is wrong"
302
303 test_1k() {
304     set_cleanup_trap
305     do_facet $SINGLEMDS lctl pool_new ${FSNAME}/$POOL 2>/dev/null
306     [[ $? -ne 0 ]] ||
307         error "pool_new did not fail even though pool name format was wrong"
308 }
309 run_test 1k "pool_new should fail if poolname format is wrong"
310
311 test_1m() {
312     set_cleanup_trap
313     create_pool_nofail $POOL2
314     do_facet $SINGLEMDS lctl pool_new ${FSNAME}.$POOL2 2>/dev/null
315     [[ $? -ne 0 ]] ||
316         error "pool_new did not fail even though $POOL2 existed"
317     destroy_pool $POOL2
318 }
319 run_test 1m "pool_new did not fail even though $POOL2 existed"
320
321 test_1n() {
322     set_cleanup_trap
323     create_pool_nofail ${POOL}1234567
324
325     add_pool ${POOL}1234567 "OST0000" "$FSNAME-OST0000_UUID "
326     local POOL_ROOT=${POOL_ROOT:-$DIR/$tdir}
327     create_dir $POOL_ROOT ${POOL}1234567
328     dd if=/dev/zero of=$POOL_ROOT/file bs=1M count=100
329     RC=$?; [[ $RC -eq 0 ]] ||
330         error "failed to write to $POOL_ROOT/file: $RC"
331     do_facet $SINGLEMDS lctl pool_remove $FSNAME.${POOL}1234567 OST0000
332     drain_pool ${POOL}1234567
333
334     destroy_pool ${POOL}1234567
335 }
336 run_test 1n "Pool with a 15 char pool name works well"
337
338 test_2a() {
339     set_cleanup_trap
340     destroy_pool $POOL
341
342     do_facet $SINGLEMDS lctl pool_add $FSNAME.$POOL $FSNAME-OST0000 2>/dev/null
343     [[ $? -ne 0 ]] ||
344         error "pool_add did not fail even though $POOL did not exist"
345 }
346 run_test 2a "pool_add: non-existant pool $POOL"
347
348 test_2b() {
349     set_cleanup_trap
350     do_facet $SINGLEMDS lctl pool_add $FSNAME.${POOL}1234567890 \
351         $FSNAME-OST0000 2>/dev/null
352     [[ $? -ne 0 ]] ||
353         error "pool_add did not fail even though pool name was invalid."
354 }
355 run_test 2b "pool_add: Invalid pool name"
356
357 # Testing various combinations of OST name list
358 test_2c() {
359     set_cleanup_trap
360     local TGT
361     local RC
362
363     lctl get_param -n lov.$FSNAME-*.pools.$POOL 2>/dev/null
364     [[ $? -ne 0 ]] || destroy_pool $POOL
365
366     create_pool_nofail $POOL
367
368     # 1. OST0000
369     do_facet $SINGLEMDS lctl pool_add $FSNAME.$POOL OST0000
370     RC=$?; [[ $RC -eq 0 ]] ||
371         error "pool_add failed. $FSNAME $POOL OST0000: $RC"
372     do_facet $SINGLEMDS lctl pool_remove $FSNAME.$POOL OST0000
373     drain_pool $POOL
374
375     # 2. $FSNAME-OST0000
376     do_facet $SINGLEMDS lctl pool_add $FSNAME.$POOL $FSNAME-OST0000
377     RC=$?; [[ $RC -eq 0 ]] ||
378         error "pool_add failed. $FSNAME $POOL $FSNAME-OST0000: $RC"
379     do_facet $SINGLEMDS lctl pool_remove $FSNAME.$POOL $FSNAME-OST0000
380     drain_pool $POOL
381
382     # 3. $FSNAME-OST0000_UUID
383     do_facet $SINGLEMDS lctl pool_add $FSNAME.$POOL $FSNAME-OST0000_UUID
384     RC=$?; [[ $RC -eq 0 ]] ||
385         error "pool_add failed. $FSNAME $POOL $FSNAME-OST0000_UUID: $RC"
386     do_facet $SINGLEMDS lctl pool_remove $FSNAME.$POOL $FSNAME-OST0000_UUID
387     drain_pool $POOL
388
389     # 4. $FSNAME-OST[0,1,2,3,]
390     TGT="$FSNAME-OST["
391     for i in $TGT_LIST; do TGT=${TGT}$(printf "%04x," $i); done
392     TGT="${TGT}]"
393     do_facet $SINGLEMDS lctl pool_add $FSNAME.$POOL $TGT
394     [[ $? -eq 0 ]] || error "pool_add failed. $FSNAME.$POOL $TGT. $RC"
395     do_facet $SINGLEMDS lctl pool_remove $FSNAME.$POOL $TGT
396     drain_pool $POOL
397
398     # 5. $FSNAME-OST[0-5/1]
399     do_facet $SINGLEMDS lctl pool_add $FSNAME.$POOL $TGT_ALL
400     RC=$?; [[ $RC -eq 0 ]] ||
401         error "pool_add failed. $FSNAME $POOL" "$TGT_ALL $RC"
402     wait_update $HOSTNAME "lctl get_param -n lov.$FSNAME-*.pools.$POOL |
403       sort -u | tr '\n' ' ' " "$TGT_UUID" || error "Add to pool failed"
404     do_facet $SINGLEMDS lctl pool_remove $FSNAME.$POOL $TGT_ALL
405     drain_pool $POOL
406
407     destroy_pool $POOL
408 }
409 run_test 2c "pool_add: OST index combinations"
410
411 test_2d() {
412     set_cleanup_trap
413     local TGT
414     local RC
415
416     lctl get_param -n lov.$FSNAME-*.pools.$POOL 2>/dev/null
417     [[ $? -ne 0 ]] || destroy_pool $POOL
418
419     create_pool_nofail $POOL
420
421     TGT=$(printf "$FSNAME-OST%04x_UUID " $OSTCOUNT)
422     do_facet $SINGLEMDS lctl pool_add $FSNAME.$POOL $TGT
423     RC=$?; [[ $RC -ne 0 ]] ||
424         error "pool_add succeeded for an OST ($TGT) that does not exist."
425
426     destroy_pool $POOL
427 }
428 run_test 2d "pool_add: OSTs that don't exist should be rejected"
429
430 test_2e() {
431     set_cleanup_trap
432     local TGT
433     local RC
434     local RESULT
435
436     $LCTL get_param -n lov.$FSNAME-*.pools.$POOL 2>/dev/null
437     [[ $? -ne 0 ]] || destroy_pool $POOL
438
439     create_pool_nofail $POOL
440
441     TGT="$FSNAME-OST0000_UUID "
442     do_facet $SINGLEMDS lctl pool_add $FSNAME.$POOL $TGT
443     wait_update $HOSTNAME "lctl get_param -n lov.$FSNAME-*.pools.$POOL |
444         sort -u | tr '\n' ' ' " "$TGT" || error "Add to pool failed"
445     RESULT=$(do_facet $SINGLEMDS \
446              "LOCALE=C $LCTL pool_add $FSNAME.$POOL $TGT 2>&1")
447     RC=$?
448     echo $RESULT
449
450     [[ $RC -ne 0 ]] ||
451         error "pool_add succeeded for an OST that was already in the pool."
452
453     [[ $(grep "already in pool" <<< $RESULT) ]] ||
454         error "pool_add failed as expected but error message not as expected."
455
456     destroy_pool $POOL
457 }
458 run_test 2e "pool_add: OST already in a pool should be rejected"
459
460 test_3a() {
461     set_cleanup_trap
462     lctl get_param -n lov.$FSNAME-*.pools.$POOL 2>/dev/null
463     [[ $? -ne 0 ]] || destroy_pool $POOL
464
465     do_facet $SINGLEMDS \
466         lctl pool_remove $FSNAME.$POOL $FSNAME-OST0000 2>/dev/null
467     [[ $? -ne 0 ]] ||
468         error "pool_remove did not fail even though pool did not exist."
469 }
470 run_test 3a "pool_remove: non-existant pool"
471
472 test_3b() {
473     set_cleanup_trap
474     do_facet $SINGLEMDS \
475         lctl pool_remove ${NON_EXISTANT_FS}.$POOL OST0000 2>/dev/null
476     [[ $? -ne 0 ]] ||
477         error "pool_remove did not fail even though fsname did not exist."
478 }
479 run_test 3b "pool_remove: non-existant fsname"
480
481 test_3c() {
482     set_cleanup_trap
483     do_facet $SINGLEMDS lctl pool_remove $FSNAME.p1234567891234567890 \
484         $FSNAME-OST0000 2>/dev/null
485     [[ $? -ne 0 ]] ||
486         error "pool_remove did not fail even though pool name was invalid."
487 }
488 run_test 3c "pool_remove: Invalid pool name"
489
490 # Testing various combinations of OST name list
491 test_3d() {
492     set_cleanup_trap
493     lctl get_param -n lov.$FSNAME-*.pools.$POOL 2>/dev/null
494     [[ $? -ne 0 ]] || destroy_pool $POOL
495
496     create_pool_nofail $POOL
497     do_facet $SINGLEMDS lctl pool_add $FSNAME.$POOL OST0000
498     do_facet $SINGLEMDS lctl pool_remove $FSNAME.$POOL OST0000
499     [[ $? -eq 0 ]] || error "pool_remove failed. $FSNAME $POOL OST0000"
500     drain_pool $POOL
501
502     do_facet $SINGLEMDS lctl pool_add $FSNAME.$POOL $FSNAME-OST0000
503     do_facet $SINGLEMDS lctl pool_remove $FSNAME.$POOL $FSNAME-OST0000
504     [[ $? -eq 0 ]] || error "pool_remove failed. $FSNAME $POOL $FSNAME-OST0000"
505     drain_pool $POOL
506
507     do_facet $SINGLEMDS lctl pool_add $FSNAME.$POOL $FSNAME-OST0000_UUID
508     do_facet $SINGLEMDS lctl pool_remove $FSNAME.$POOL $FSNAME-OST0000_UUID
509     [[ $? -eq 0 ]] ||
510         error "pool_remove failed. $FSNAME $POOL $FSNAME-OST0000_UUID"
511     drain_pool $POOL
512
513     add_pool $POOL $TGT_ALL "$TGT_UUID"
514     do_facet $SINGLEMDS lctl pool_remove $FSNAME.$POOL $TGT_ALL
515     [[ $? -eq 0 ]] || error "pool_remove failed. $FSNAME $POOL" $TGT_ALL
516     drain_pool $POOL
517
518     destroy_pool $POOL
519 }
520 run_test 3d "pool_remove: OST index combinations"
521
522 test_4a() {
523     set_cleanup_trap
524     lctl get_param -n lov.$FSNAME-*.pools.$POOL 2>/dev/null
525     [[ $? -ne 0 ]] || destroy_pool $POOL
526
527     do_facet $SINGLEMDS lctl pool_destroy $FSNAME.$POOL 2>/dev/null
528     [[ $? -ne 0 ]] ||
529         error "pool_destroy did not fail even though pool did not exist."
530 }
531 run_test 4a "pool_destroy: non-existant pool"
532
533 test_4b() {
534     set_cleanup_trap
535     do_facet $SINGLEMDS lctl pool_destroy ${NON_EXISTANT_FS}.$POOL 2>/dev/null
536     [[ $? -ne 0 ]] ||
537         error "pool_destroy did not fail even though filesystem did not exist."
538 }
539 run_test 4b "pool_destroy: non-existant fs-name"
540
541 test_4c() {
542     set_cleanup_trap
543     create_pool_nofail $POOL
544     add_pool $POOL "OST0000" "$FSNAME-OST0000_UUID "
545
546     do_facet $SINGLEMDS lctl pool_destroy ${FSNAME}.$POOL
547     [[ $? -ne 0 ]] || error "pool_destroy succeeded with a non-empty pool."
548     destroy_pool $POOL
549 }
550 run_test 4c "pool_destroy: non-empty pool"
551
552 sub_test_5() {
553     local LCMD=$1
554
555     $LCMD pool_list 2>/dev/null
556     [[ $? -ne 0 ]] || error "pool_list did not fail even though fsname missing."
557
558     destroy_pool $POOL 2>/dev/null
559     destroy_pool $POOL2 2>/dev/null
560
561     create_pool_nofail $POOL
562     create_pool_nofail $POOL2
563     $LCMD pool_list $FSNAME
564     [[ $? -eq 0 ]] || error "pool_list $FSNAME failed."
565
566     do_facet $SINGLEMDS lctl pool_add $FSNAME.$POOL $TGT_ALL
567
568     $LCMD pool_list $FSNAME.$POOL
569     [[ $? -eq 0 ]] || error "pool_list $FSNAME.$POOL failed."
570
571     $LCMD pool_list ${NON_EXISTANT_FS} 2>/dev/null
572     [[ $? -ne 0 ]] || error "pool_list did not fail for fsname $NON_EXISTANT_FS"
573
574     $LCMD pool_list ${FSNAME}.$NON_EXISTANT_POOL 2>/dev/null
575     [[ $? -ne 0 ]] || error "pool_list did not fail for pool $NON_EXISTANT_POOL"
576
577     if [[ ! $(grep $SINGLEMDS <<< $LCMD) ]]; then
578         echo $LCMD pool_list $DIR
579         $LCMD pool_list $DIR
580         [[ $? -eq 0 ]] || error "pool_list failed for $DIR"
581
582         mkdir -p ${DIR}/d1
583         $LCMD pool_list ${DIR}/d1
584         [[ $? -eq 0 ]] || error "pool_list failed for ${DIR}/d1"
585     fi
586
587     rm -rf ${DIR}nonexistant
588     $LCMD pool_list ${DIR}nonexistant 2>/dev/null
589     [[ $? -ne 0 ]] ||
590         error "pool_list did not fail for invalid mountpoint ${DIR}nonexistant"
591
592     destroy_pool $POOL
593     destroy_pool $POOL2
594 }
595
596 test_5a() {
597     set_cleanup_trap
598     # Issue commands from client
599     sub_test_5 $LFS
600 }
601 run_test 5a "lfs pool_list from client"
602
603 test_5b() {
604     set_cleanup_trap
605     sub_test_5 "do_facet $SINGLEMDS lctl"
606 }
607 run_test 5b "lctl pool_list from MDS"
608
609 test_6() {
610     set_cleanup_trap
611     local POOL_ROOT=${POOL_ROOT:-$DIR/$tdir}
612     local POOL_DIR=$POOL_ROOT/dir_tst
613     local POOL_FILE=$POOL_ROOT/file_tst
614
615     create_pool_nofail $POOL
616
617     do_facet $SINGLEMDS lctl pool_list $FSNAME
618     [[ $? -eq 0 ]] || error "pool_list $FSNAME failed."
619
620     add_pool $POOL $TGT_ALL "$TGT_UUID"
621
622     mkdir -p $POOL_DIR
623     $SETSTRIPE -c -1 -p $POOL $POOL_DIR
624     [[ $? -eq 0 ]] || error "$SETSTRIPE -p $POOL failed."
625     check_dir_in_pool $POOL_DIR $POOL
626
627     # If an invalid pool name is specified, the command should fail
628     $SETSTRIPE -c 2 -p $INVALID_POOL $POOL_DIR 2>/dev/null
629     [[ $? -ne 0 ]] || error "setstripe to invalid pool did not fail."
630
631     # If the pool name does not exist, the command should fail
632     $SETSTRIPE -c 2 -p $NON_EXISTANT_POOL $POOL_DIR 2>/dev/null
633     [[ $? -ne 0 ]] || error "setstripe to non-existant pool did not fail."
634
635     # lfs setstripe should work as before if a pool name is not specified.
636     $SETSTRIPE -c -1 $POOL_DIR
637     [[ $? -eq 0 ]] || error "$SETSTRIPE -p $POOL_DIR failed."
638     $SETSTRIPE -c -1 $POOL_FILE
639     [[ $? -eq 0 ]] || error "$SETSTRIPE -p $POOL_FILE failed."
640
641     # lfs setstripe should fail if a start index that is outside the
642     # pool is specified.
643     create_pool_nofail $POOL2
644     add_pool $POOL2 "OST0000" "$FSNAME-OST0000_UUID "
645     $SETSTRIPE -i 1 -p $POOL2 $ROOT_POOL/$tfile 2>/dev/null
646     [[ $? -ne 0 ]] ||
647         error "$SETSTRIPE with start index outside the pool did not fail."
648
649 }
650 run_test 6 "getstripe/setstripe"
651
652 test_11() {
653     set_cleanup_trap
654     local POOL_ROOT=${POOL_ROOT:-$DIR/$tdir}
655
656     [[ $OSTCOUNT -le 1 ]] && skip_env "Need at least 2 OSTs" && return
657
658     create_pool_nofail $POOL
659     create_pool_nofail $POOL2
660
661     local start=$(printf %04x $((TGT_FIRST + 1)))
662     do_facet $SINGLEMDS lctl pool_add $FSNAME.$POOL2 \
663         $FSNAME-OST[$start-$TGT_MAX/2]
664
665     add_pool $POOL $TGT_HALF "$TGT_UUID2"
666
667     create_dir $POOL_ROOT/dir1  $POOL
668     create_dir $POOL_ROOT/dir2  $POOL2
669     check_dir_in_pool $POOL_ROOT/dir1 $POOL
670     check_dir_in_pool $POOL_ROOT/dir1 $POOL
671
672     local numfiles=100
673     createmany -o $POOL_ROOT/dir1/$tfile $numfiles ||
674         error "createmany $POOL_ROOT/dir1/$tfile failed!"
675
676     for file in $POOL_ROOT/dir1/*; do
677         check_file_in_pool $file $POOL
678     done
679
680     createmany -o $POOL_ROOT/dir2/$tfile $numfiles ||
681         error "createmany $POOL_ROOT/dir2/$tfile failed!"
682     for file in $POOL_ROOT/dir2/*; do
683         check_file_in_pool $file $POOL2
684     done
685
686     rm -rf $POOL_ROOT/dir?
687
688     return 0
689 }
690 run_test 11 "OSTs in overlapping/multiple pools"
691
692 test_12() {
693     set_cleanup_trap
694     local POOL_ROOT=${POOL_ROOT:-$DIR/$tdir}
695
696     [[ $OSTCOUNT -le 2 ]] && skip_env "Need at least 3 OSTs" && return
697
698     create_pool_nofail $POOL
699     create_pool_nofail $POOL2
700
701     local start=$(printf %04x $((TGT_FIRST + 1)))
702     do_facet $SINGLEMDS lctl pool_add $FSNAME.$POOL2 \
703         $FSNAME-OST[$start-$TGT_MAX/2]
704
705     add_pool $POOL $TGT_HALF "$TGT_UUID2"
706
707     echo creating some files in $POOL and $POOL2
708
709     create_dir $POOL_ROOT/dir1  $POOL
710     create_dir $POOL_ROOT/dir2  $POOL2
711     create_file $POOL_ROOT/file1 $POOL
712     create_file $POOL_ROOT/file2 $POOL2
713
714     echo Checking the files created
715     check_dir_in_pool $POOL_ROOT/dir1 $POOL
716     check_dir_in_pool $POOL_ROOT/dir2 $POOL2
717     check_file_in_pool $POOL_ROOT/file1 $POOL
718     check_file_in_pool $POOL_ROOT/file2 $POOL2
719
720     echo Changing the pool membership
721     do_facet $SINGLEMDS lctl pool_remove $FSNAME.$POOL $FSNAME-OST[$TGT_FIRST]
722     do_facet $SINGLEMDS lctl pool_list $FSNAME.$POOL
723     FIRST_UUID=$(echo $TGT_UUID | awk '{print $1}')
724     add_pool $POOL2 $FSNAME-OST[$TGT_FIRST] "$FIRST_UUID "
725     do_facet $SINGLEMDS lctl pool_list $FSNAME.$POOL2
726
727     echo Checking the files again
728     check_dir_in_pool $POOL_ROOT/dir1 $POOL
729     check_dir_in_pool $POOL_ROOT/dir2 $POOL2
730     check_file_in_osts $POOL_ROOT/file1 "$TGT_LIST2"
731     check_file_in_osts $POOL_ROOT/file2 "$(seq 0x$start 2 0x$TGT_MAX)"
732
733     echo Creating some more files
734     create_dir $POOL_ROOT/dir3 $POOL
735     create_dir $POOL_ROOT/dir4 $POOL2
736     create_file $POOL_ROOT/file3 $POOL
737     create_file $POOL_ROOT/file4 $POOL2
738
739     echo Checking the new files
740     check_file_in_pool $POOL_ROOT/file3 $POOL
741     check_file_in_pool $POOL_ROOT/file4 $POOL2
742
743     return 0
744 }
745 run_test 12 "OST Pool Membership"
746
747 test_13() {
748     set_cleanup_trap
749     [[ $OSTCOUNT -le 2 ]] && skip_env "Need at least 3 OSTs" && return
750
751     local POOL_ROOT=${POOL_ROOT:-$DIR/$tdir}
752     local numfiles=10
753     local count=3
754
755     create_pool_nofail $POOL
756     add_pool $POOL $TGT_ALL "$TGT_UUID"
757
758     create_dir $POOL_ROOT/dir1 $POOL -1
759     createmany -o $POOL_ROOT/dir1/$tfile $numfiles ||
760         error "createmany $POOL_ROOT/dir1/$tfile failed!"
761     for file in $POOL_ROOT/dir1/*; do
762         check_file_in_pool $file $POOL $OSTCOUNT
763     done
764
765     create_file $POOL_ROOT/dir1/file1 $POOL 1 $TGT_FIRST
766     create_file $POOL_ROOT/dir1/file2 $POOL 1 $((TGT_FIRST + 1))
767     create_file $POOL_ROOT/dir1/file3 $POOL 1 $((TGT_FIRST + 2))
768     check_file_in_pool $POOL_ROOT/dir1/file1 $POOL 1
769     check_file_in_pool $POOL_ROOT/dir1/file2 $POOL 1
770     create_file $POOL_ROOT/dir1/file3 $POOL 1 $((TGT_FIRST + 2))
771     check_file_in_osts $POOL_ROOT/dir1/file1 $((16#$TGT_FIRST))
772     check_file_in_osts $POOL_ROOT/dir1/file2 "$((TGT_FIRST + 1))"
773     check_file_in_osts $POOL_ROOT/dir1/file3 "$((TGT_FIRST + 2))"
774
775     create_dir $POOL_ROOT/dir2 $POOL $count
776     createmany -o $POOL_ROOT/dir2/$tfile- $numfiles ||
777         error "createmany $POOL_ROOT/dir2/$tfile- failed!"
778     for file in $POOL_ROOT/dir2/*; do
779         check_file_in_pool $file $POOL $count
780     done
781
782     create_dir $POOL_ROOT/dir3 $POOL $count $((TGT_FIRST + 1))
783     createmany -o $POOL_ROOT/dir3/$tfile- $numfiles ||
784         error "createmany $POOL_ROOT/dir3/$tfile- failed!"
785     for file in $POOL_ROOT/dir3/*; do
786         check_file_in_pool $file $POOL $count
787     done
788
789     create_dir $POOL_ROOT/dir4 $POOL 1
790     createmany -o $POOL_ROOT/dir4/$tfile- $numfiles ||
791         error "createmany $POOL_ROOT/dir4/$tfile- failed!"
792     for file in $POOL_ROOT/dir4/*; do
793         check_file_in_pool $file $POOL 1
794     done
795
796     create_dir $POOL_ROOT/dir5 $POOL 1 $((TGT_FIRST + 2))
797     createmany -o $POOL_ROOT/dir5/$tfile- $numfiles ||
798         error "createmany $POOL_ROOT/dir5/$tfile- failed!"
799     for file in $POOL_ROOT/dir5/*; do
800         check_file_in_pool $file $POOL 1
801         check_file_in_osts  $file "$((TGT_FIRST + 2))"
802     done
803
804     rm -rf $POOL_ROOT/dir[1-5]/
805
806     return 0
807 }
808 run_test 13 "Striping characteristics in a pool"
809
810 test_14() {
811     set_cleanup_trap
812     [[ $OSTCOUNT -le 2 ]] && skip_env "Need at least 3 OSTs" && return
813
814     local POOL_ROOT=${POOL_ROOT:-$DIR/$tdir}
815     local numfiles=100
816     local i
817
818     [ $OSTSIZE -gt $((MAXFREE / OSTCOUNT)) ] &&
819         skip_env "OST size $OSTSIZE is larger than $((MAXFREE / OSTCOUNT))" &&
820                         return 0
821
822     create_pool_nofail $POOL
823     create_pool_nofail $POOL2
824
825     add_pool $POOL $TGT_HALF "$TGT_UUID2"
826     add_pool $POOL2 "OST0000" "$FSNAME-OST0000_UUID "
827
828     create_dir $POOL_ROOT/dir1 $POOL 1
829     create_file $POOL_ROOT/dir1/file $POOL 1
830     local OST=$($GETSTRIPE -i $POOL_ROOT/dir1/file)
831     i=0
832     while [[ $i -lt $numfiles ]]; do
833         OST=$((OST + 2))
834         [[ $OST -gt $((16#$TGT_MAX)) ]] && OST=$TGT_FIRST
835
836         # echo "Iteration: $i OST: $OST"
837         create_file $POOL_ROOT/dir1/file${i} $POOL 1
838         check_file_in_pool $POOL_ROOT/dir1/file${i} $POOL
839         i=$((i + 1))
840     done
841
842     # Fill up OST0 until it is nearly full.
843     # Create 9 files of size OST0_SIZE/10 each.
844     create_dir $POOL_ROOT/dir2 $POOL2 1
845     $LFS df $POOL_ROOT/dir2
846     OST0_SIZE=$($LFS df $POOL_ROOT/dir2 | awk '/\[OST:0\]/ { print $4 }')
847     FILE_SIZE=$((OST0_SIZE/1024/10))
848     echo "Filling OST0 with 9 files of ${FILE_SIZE}MB in $POOL_ROOT/dir2"
849     i=1
850     while [[ $i -lt 10 ]]; do
851         dd if=/dev/zero of=$POOL_ROOT/dir2/f${i} bs=1M count=$FILE_SIZE
852         i=$((i + 1))
853     done
854     sleep 1 # get new statfs info
855     $LFS df $POOL_ROOT/dir2
856
857     # OST $TGT_FIRST is no longer favored; but it may still be used.
858     create_dir $POOL_ROOT/dir3 $POOL 1
859     create_file $POOL_ROOT/dir3/file $POOL 1
860     createmany -o $POOL_ROOT/dir3/$tfile- $numfiles ||
861         error "createmany $POOL_ROOT/dir3/$tfile- failed!"
862     for file in $POOL_ROOT/dir3/*; do
863         check_file_in_pool $file $POOL
864     done
865
866     rm -rf $POOL_ROOT
867
868     return 0
869 }
870 run_test 14 "Round robin and QOS striping within a pool"
871
872 test_15() {
873     set_cleanup_trap
874     local POOL_ROOT=${POOL_ROOT:-$DIR/$tdir}
875     local numfiles=100
876     local i=0
877
878     while [[ $i -lt $OSTCOUNT ]]; do
879         create_pool_nofail $POOL${i}
880
881         local tgt=$(printf "$FSNAME-OST%04x_UUID " $i)
882         add_pool $POOL${i} "$FSNAME-OST[$(printf %04x $i)]" "$tgt"
883         create_dir $POOL_ROOT/dir${i} $POOL${i}
884         createmany -o $POOL_ROOT/dir$i/$tfile $numfiles ||
885             error "createmany $POOL_ROOT/dir$i/$tfile failed!"
886
887         for file in $POOL_ROOT/dir$i/*; do
888             check_file_in_osts $file $i
889         done
890
891         i=$((i + 1))
892     done
893
894     return 0
895 }
896 run_test 15 "One directory per OST/pool"
897
898 test_16() {
899     set_cleanup_trap
900     local POOL_ROOT=${POOL_ROOT:-$DIR/$tdir}
901     local numfiles=10
902     local i=0
903
904     create_pool_nofail $POOL
905
906     add_pool $POOL $TGT_HALF "$TGT_UUID2"
907
908     local dir=$POOL_ROOT/$tdir
909     create_dir $dir $POOL
910
911     for i in $(seq 1 10); do
912         dir=${dir}/dir${i}
913     done
914     mkdir -p $dir
915
916     createmany -o $dir/$tfile $numfiles ||
917         error "createmany $dir/$tfile failed!"
918
919     for file in $dir/*; do
920         check_file_in_pool $file $POOL
921     done
922
923     rm -rf $POOL_ROOT/$tdir
924
925     return 0
926 }
927 run_test 16 "Inheritance of pool properties"
928
929 test_17() {
930     set_cleanup_trap
931     local POOL_ROOT=${POOL_ROOT:-$DIR/$tdir}
932     local numfiles=10
933     local i=0
934
935     create_pool_nofail $POOL
936
937     add_pool $POOL $TGT_ALL "$TGT_UUID"
938
939     local dir=$POOL_ROOT/dir
940     create_dir $dir $POOL
941
942     createmany -o $dir/${tfile}1_ $numfiles ||
943         error "createmany $dir/${tfile}1_ failed!"
944
945     for file in $dir/*; do
946         check_file_in_pool $file $POOL
947     done
948
949     destroy_pool $POOL
950
951     createmany -o $dir/${tfile}2_ $numfiles ||
952           error "createmany $dir/${tfile}2_ failed!"
953
954     rm -rf $dir
955     return 0
956 }
957 run_test 17 "Referencing an empty pool"
958
959 create_perf() {
960     local cdir=$1/d
961     local numsec=$2
962     local time
963
964     mkdir -p $cdir
965     sync
966     wait_delete_completed >/dev/null # give pending IO a chance to go to disk
967     stat=$(createmany -o $cdir/${tfile} -$numsec | tail -1)
968     files=$(echo $stat | cut -f 2 -d ' ')
969     echo $stat 1>&2
970     unlinkmany $cdir/${tfile} $files > /dev/null
971     sync
972
973     echo $files
974 }
975
976 test_18() {
977     set_cleanup_trap
978     local POOL_ROOT=${POOL_ROOT:-$DIR/$tdir}
979     local numsec=15
980     local iter=3
981     local plaindir=$POOL_ROOT/plaindir
982     local pooldir=$POOL_ROOT/pooldir
983     local f1=0
984     local f2=0
985     local f3=0
986     local diff
987
988     for i in $(seq 1 $iter); do
989         echo "Create performance, iteration $i, $numsec seconds x 3"
990
991         files1=$(create_perf $plaindir $numsec)
992         echo "iter $i: $files1 creates without pool"
993         f1=$(($f1 + $files1))
994
995         create_pool_nofail $POOL > /dev/null
996         add_pool $POOL $TGT_ALL "$TGT_UUID" > /dev/null
997         create_dir $pooldir $POOL
998         files2=$(create_perf $pooldir $numsec)
999         echo "iter $i: $files2 creates with pool"
1000         f2=$(($f2 + $files2))
1001
1002         destroy_pool $POOL > /dev/null
1003         files3=$(create_perf $pooldir $numsec)
1004         echo "iter $i: $files3 creates with missing pool"
1005         f3=$(($f3 + $files3))
1006
1007         echo
1008     done
1009
1010     echo Avg files created in $numsec seconds without pool: $((files1 / iter))
1011     echo Avg files created in $numsec seconds with pool: $((files2 / iter))
1012     echo Avg files created in $numsec seconds missing pool: $((files3 / iter))
1013
1014     # Set this high until we establish a baseline for what the degradation
1015     # is / should be
1016     max=30
1017     diff=$((($files1 - $files2) * 100 / $files1))
1018         echo  "No pool / wide pool: $diff %."
1019         [ $diff -gt $max ] &&
1020                 error_ignore bz23408 "Degradation with wide pool is $diff% > $max%"
1021
1022         max=30
1023         diff=$((($files1 - $files3) * 100 / $files1))
1024         echo  "No pool / missing pool: $diff %."
1025         [ $diff -gt $max ] &&
1026                 error_ignore bz23408 "Degradation with wide pool is $diff% > $max%"
1027
1028         return 0
1029 }
1030 run_test 18 "File create in a directory which references a deleted pool"
1031
1032 test_19() {
1033     set_cleanup_trap
1034     local POOL_ROOT=${POOL_ROOT:-$DIR/$tdir}
1035     local numfiles=12
1036     local dir1=$POOL_ROOT/dir1
1037     local dir2=$POOL_ROOT/dir2
1038     local i=0
1039
1040     create_pool_nofail $POOL
1041
1042     add_pool $POOL $TGT_HALF "$TGT_UUID2"
1043
1044     create_dir $dir1 $POOL
1045     createmany -o $dir1/${tfile} $numfiles ||
1046           error "createmany $dir1/${tfile} failed!"
1047     for file in $dir1/*; do
1048         check_file_in_pool $file $POOL
1049     done
1050
1051     mkdir -p $dir2
1052     createmany -o $dir2/${tfile} $numfiles ||
1053           error "createmany $dir2/${tfile} failed!"
1054     for file in $dir2/*; do
1055         check_file_not_in_pool $file $POOL
1056     done
1057
1058     rm -rf $dir1 $dir2
1059
1060     return 0
1061 }
1062 run_test 19 "Pools should not come into play when not specified"
1063
1064 test_20() {
1065     set_cleanup_trap
1066     local POOL_ROOT=${POOL_ROOT:-$DIR/$tdir}
1067     local numfiles=12
1068     local dir1=$POOL_ROOT/dir1
1069     local dir2=$dir1/dir2
1070     local dir3=$dir1/dir3
1071     local i=0
1072     local TGT
1073
1074     create_pool_nofail $POOL
1075     create_pool_nofail $POOL2
1076
1077     add_pool $POOL $TGT_HALF "$TGT_UUID2"
1078
1079     local start=$(printf %04x $((TGT_FIRST + 1)))
1080     TGT=$(for i in $(seq 0x$start 2 0x$TGT_MAX); do \
1081           printf "$FSNAME-OST%04x_UUID " $i; done)
1082     add_pool $POOL2 "$FSNAME-OST[$start-$TGT_MAX/2]" "$TGT"
1083
1084     create_dir $dir1 $POOL
1085     create_file $dir1/file1 $POOL2
1086     create_dir $dir2 $POOL2
1087     touch $dir2/file2
1088     mkdir $dir3
1089     $SETSTRIPE -c 1 $dir3 # No pool assignment
1090     touch $dir3/file3
1091     $SETSTRIPE -c 1 $dir2/file4 # No pool assignment
1092
1093     check_file_in_pool $dir1/file1 $POOL2
1094     check_file_in_pool $dir2/file2 $POOL2
1095
1096     check_dir_not_in_pool $dir3 $POOL
1097     check_dir_not_in_pool $dir3 $POOL2
1098
1099     check_file_not_in_pool $dir3/file3 $POOL
1100     check_file_not_in_pool $dir3/file3 $POOL2
1101
1102     check_file_not_in_pool $dir2/file4 $POOL
1103     check_file_not_in_pool $dir2/file4 $POOL2
1104
1105     rm -rf $dir1
1106
1107     return 0
1108 }
1109 run_test 20 "Different pools in a directory hierarchy."
1110
1111 test_21() {
1112     set_cleanup_trap
1113     local POOL_ROOT=${POOL_ROOT:-$DIR/$tdir}
1114     [[ $OSTCOUNT -le 1 ]] && skip_env "Need at least 2 OSTs" && return
1115
1116     local numfiles=12
1117     local i=0
1118     local dir=$POOL_ROOT/dir
1119
1120     create_pool_nofail $POOL
1121
1122     add_pool $POOL $TGT_HALF "$TGT_UUID2"
1123
1124     create_dir $dir $POOL $OSTCOUNT
1125     create_file $dir/file1 $POOL $OSTCOUNT
1126     $GETSTRIPE -v $dir/file1
1127     check_file_in_pool $dir/file1 $POOL
1128
1129     rm -rf $dir
1130
1131     return 0
1132 }
1133 run_test 21 "OST pool with fewer OSTs than stripe count"
1134
1135 add_loop() {
1136     local pool=$1
1137     local step=$2
1138
1139     echo loop for $pool
1140
1141     for c in $(seq 1 10); do
1142         echo "Pool $pool, iteration $c"
1143         do_facet $SINGLEMDS lctl pool_add $FSNAME.$pool \
1144             OST[$TGT_FIRST-$TGT_MAX/$step] 2>/dev/null
1145         local TGT_SECOND=$(printf %04x $((TGT_FIRST + $step)))
1146         if [ $((16#$TGT_SECOND)) -le $((16#$TGT_MAX)) ]; then
1147             do_facet $SINGLEMDS lctl pool_remove $FSNAME.$pool \
1148                 OST[$TGT_SECOND-$TGT_MAX/$step]
1149         fi
1150     done
1151     echo loop for $pool complete
1152 }
1153
1154 test_22() {
1155     set_cleanup_trap
1156     local POOL_ROOT=${POOL_ROOT:-$DIR/$tdir}
1157     [[ $OSTCOUNT -le 1 ]] && skip_env "Need at least 2 OSTs" && return
1158
1159     local numfiles=100
1160
1161     create_pool_nofail $POOL
1162     add_pool $POOL "OST0000" "$FSNAME-OST0000_UUID "
1163     create_pool_nofail $POOL2
1164     add_pool $POOL2 "OST0000" "$FSNAME-OST0000_UUID "
1165
1166     add_loop $POOL 1 &
1167     add_loop $POOL2 2 &
1168     sleep 5
1169     create_dir $POOL_ROOT $POOL
1170     createmany -o $POOL_ROOT/${tfile} $numfiles ||
1171         error "createmany $POOL_ROOT/${tfile} failed!"
1172     wait
1173
1174     return 0
1175 }
1176 run_test 22 "Simultaneous manipulation of a pool"
1177
1178 test_23a() {
1179     set_cleanup_trap
1180     local POOL_ROOT=${POOL_ROOT:-$DIR/$tdir}
1181     [[ $OSTCOUNT -le 1 ]] && skip_env "Need at least 2 OSTs" && return
1182
1183     mkdir -p $POOL_ROOT
1184     check_runas_id $RUNAS_ID $RUNAS_GID $RUNAS || {
1185         skip_env "User $RUNAS_ID does not exist - skipping"
1186         return 0
1187     }
1188
1189     local i=0
1190     local TGT
1191     local BUNIT_SZ=1024  # min block quota unit(kB)
1192     local LIMIT=$((BUNIT_SZ * (OSTCOUNT + 1)))
1193     local dir=$POOL_ROOT/dir
1194     local file="$dir/$tfile-quota"
1195
1196     create_pool_nofail $POOL
1197
1198     local TGT=$(for i in $(seq 0x$TGT_FIRST 3 0x$TGT_MAX); do \
1199                 printf "$FSNAME-OST%04x_UUID " $i; done)
1200     add_pool $POOL "$FSNAME-OST[$TGT_FIRST-$TGT_MAX/3]" "$TGT"
1201     create_dir $dir $POOL
1202
1203         # XXX remove the interoperability code once we drop the old server
1204         #     ( < 2.3.50) support.
1205         if [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.50) ]; then
1206                 $LFS quotaoff -ug $MOUNT
1207                 $LFS quotacheck -ug $MOUNT
1208         else
1209                 do_facet mgs $LCTL conf_param $FSNAME.quota.ost=ug
1210                 sleep 5
1211         fi
1212
1213     $LFS setquota -u $RUNAS_ID -b $LIMIT -B $LIMIT $dir
1214     sleep 3
1215     $LFS quota -v -u $RUNAS_ID $dir
1216
1217     $SETSTRIPE -c 1 -p $POOL $file
1218     chown $RUNAS_ID.$RUNAS_GID $file
1219     ls -l $file
1220
1221     # This does two "dd" runs to ensure that the quota failure is returned
1222     # to userspace when we check.  The first "dd" might otherwise complete
1223     # without error if it is only writing into cache.
1224     stat=$(LOCALE=C $RUNAS dd if=/dev/zero of=$file bs=$BUNIT_SZ \
1225            count=$((BUNIT_SZ*2)) 2>&1)
1226     echo $stat | grep "Disk quota exceeded" > /dev/null
1227     if [ $? -eq 0 ]; then
1228         $LFS quota -v -u $RUNAS_ID $dir
1229         cancel_lru_locks osc
1230         stat=$(LOCALE=C $RUNAS dd if=/dev/zero of=$file bs=$BUNIT_SZ \
1231                count=$BUNIT_SZ seek=$((BUNIT_SZ*2)) 2>&1)
1232         RC=$?
1233         echo $stat
1234         [[ $RC -eq 0 ]] && error "second dd did not fail."
1235         echo $stat | grep "Disk quota exceeded" > /dev/null
1236         [[ $? -eq 1 ]] && error "second dd did not fail with EDQUOT."
1237     else
1238         log "first dd failed with EDQUOT."
1239     fi
1240     $LFS quota -v -u $RUNAS_ID $dir
1241 }
1242 run_test 23a "OST pools and quota"
1243
1244 test_23b() {
1245     set_cleanup_trap
1246     local POOL_ROOT=${POOL_ROOT:-$DIR/$tdir}
1247     [[ $OSTCOUNT -le 1 ]] && skip_env "Need at least 2 OSTs" && return 0
1248
1249     mkdir -p $POOL_ROOT
1250     check_runas_id $RUNAS_ID $RUNAS_GID $RUNAS || {
1251         skip_env "User $RUNAS_ID does not exist - skipping"
1252         return 0
1253     }
1254
1255     local i=0
1256     local TGT
1257     local dir=$POOL_ROOT/dir
1258     local file="$dir/$tfile-quota"
1259
1260     create_pool_nofail $POOL
1261
1262     local TGT=$(for i in $(seq 0x$TGT_FIRST 3 0x$TGT_MAX); do \
1263                 printf "$FSNAME-OST%04x_UUID " $i; done)
1264     add_pool $POOL "$FSNAME-OST[$TGT_FIRST-$TGT_MAX/3]" "$TGT"
1265     create_dir $dir $POOL
1266
1267         local maxfree=$((1024 * 1024 * 30)) # 30G
1268         local AVAIL=$(lfs_df -p $POOL $dir | awk '/summary/ { print $4 }')
1269         [ $AVAIL -gt $maxfree ] &&
1270                 skip_env "Filesystem space $AVAIL is larger than " \
1271                         "$maxfree limit" && return 0
1272
1273         echo "OSTCOUNT=$OSTCOUNT, OSTSIZE=$OSTSIZE, AVAIL=$AVAIL"
1274         echo "MAXFREE=$maxfree, SLOW=$SLOW"
1275
1276         # XXX remove the interoperability code once we drop the old server
1277         #     ( < 2.3.50) support.
1278         if [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.50) ]; then
1279                 $LFS quotaoff -ug $MOUNT
1280         else
1281                 do_facet mgs $LCTL conf_param $FSNAME.quota.ost=none
1282                 sleep 5
1283         fi
1284
1285         chown $RUNAS_ID.$RUNAS_ID $dir
1286         i=0
1287         local RC=0
1288         local TOTAL=0 # KB
1289         local stime=$(date +%s)
1290         local stat
1291         local etime
1292         local elapsed
1293         local maxtime=300 # minimum speed: 5GB / 300sec ~= 17MB/s
1294         while [ $RC -eq 0 ]; do
1295                 i=$((i + 1))
1296                 stat=$(LOCALE=C $RUNAS2 dd if=/dev/zero of=${file}$i bs=1M \
1297                         count=$((5 * 1024)) 2>&1)
1298                 RC=$?
1299                 TOTAL=$((TOTAL + 1024 * 1024 * 5))
1300                 echo "[$i iteration] $stat"
1301                 echo "total written: $TOTAL"
1302
1303                 etime=$(date +%s)
1304                 elapsed=$((etime - stime))
1305                 echo "stime=$stime, etime=$etime, elapsed=$elapsed"
1306
1307                 if [ $RC -eq 1 ]; then
1308                         echo $stat | grep -q "Disk quota exceeded"
1309                         [[ $? -eq 0 ]] &&
1310                                 error "dd failed with EDQUOT with quota off"
1311
1312                         echo $stat | grep -q "No space left on device"
1313                         [[ $? -ne 0 ]] &&
1314                                 error "dd did not fail with ENOSPC"
1315                 elif [ $TOTAL -gt $AVAIL ]; then
1316                         error "dd didn't fail with ENOSPC ($TOTAL > $AVAIL)"
1317                 elif [ $i -eq 1 -a $elapsed -gt $maxtime ]; then
1318                         log "The first 5G write used $elapsed (> $maxtime) " \
1319                                 "seconds, terminated"
1320                         RC=1
1321                 fi
1322         done
1323
1324         df -h
1325         rm -rf $POOL_ROOT
1326 }
1327 run_test 23b "OST pools and OOS"
1328
1329 test_24() {
1330     set_cleanup_trap
1331     local POOL_ROOT=${POOL_ROOT:-$DIR/$tdir}
1332     [[ $OSTCOUNT -le 1 ]] && skip_env "Need at least 2 OSTs" && return
1333
1334     local numfiles=10
1335     local i=0
1336     local TGT
1337     local dir
1338     local res
1339
1340     create_pool_nofail $POOL
1341
1342     add_pool $POOL $TGT_ALL "$TGT_UUID"
1343
1344     create_dir $POOL_ROOT/dir1 $POOL $OSTCOUNT
1345
1346     mkdir $POOL_ROOT/dir2
1347     $SETSTRIPE -p $POOL -S 65536 -i 0 -c 1 $POOL_ROOT/dir2 ||
1348         error "$SETSTRIPE $POOL_ROOT/dir2 failed"
1349
1350     mkdir $POOL_ROOT/dir3
1351     $SETSTRIPE -S 65536 -i 0 -c 1 $POOL_ROOT/dir3 ||
1352         error "$SETSTRIPE $POOL_ROOT/dir3 failed"
1353
1354     mkdir $POOL_ROOT/dir4
1355
1356     for i in 1 2 3 4; do
1357         dir=${POOL_ROOT}/dir${i}
1358         local pool
1359         local pool1
1360         local count
1361         local count1
1362         local index
1363         local size
1364         local size1
1365
1366         createmany -o $dir/${tfile} $numfiles ||
1367             error "createmany $dir/${tfile} failed!"
1368         res=$($GETSTRIPE -v $dir | grep "^stripe_count:")
1369         if [ $? -ne 0 ]; then
1370             res=$($GETSTRIPE -v $dir | grep "^(Default) ")
1371             pool=$(cut -f 9 -d ' ' <<< $res)
1372             index=$(cut -f 7 -d ' ' <<< $res)
1373             size=$(cut -f 5 -d ' ' <<< $res)
1374             count=$(cut -f 3 -d ' ' <<< $res)
1375         else
1376             pool=$(cut -f 8 -d ' ' <<< $res)
1377             index=$(cut -f 6 -d ' ' <<< $res)
1378             size=$(cut -f 4 -d ' ' <<< $res)
1379             count=$(cut -f 2 -d ' ' <<< $res)
1380         fi
1381
1382         for file in $dir/*; do
1383             if [ "$pool" != "" ]; then
1384                 check_file_in_pool $file $pool
1385             fi
1386             pool1=$(file_pool $file)
1387             count1=$($GETSTRIPE -v $file | grep "^lmm_stripe_count:" |
1388                      tr -d '[:blank:]' | cut -f 2 -d ':')
1389             size1=$($GETSTRIPE -v $file | grep "^lmm_stripe_size:" |
1390                     tr -d '[:blank:]' | cut -f 2 -d ':')
1391             [[ "$pool" != "$pool1" ]] &&
1392                 error "Pool name ($pool) not inherited in $file($pool1)"
1393             [[ "$count" != "$count1" ]] &&
1394                 error "Stripe count ($count) not inherited in $file ($count1)"
1395             [[ "$size" != "$size1" ]] && [[ "$size" != "0" ]] &&
1396                 error "Stripe size ($size) not inherited in $file ($size1)"
1397         done
1398     done
1399
1400     rm -rf $POOL_ROOT
1401
1402     return 0
1403 }
1404 run_test 24 "Independence of pool from other setstripe parameters"
1405
1406 test_25() {
1407     set_cleanup_trap
1408     local POOL_ROOT=${POOL_ROOT:-$DIR/$tdir}
1409
1410     mkdir -p $POOL_ROOT
1411
1412     for i in $(seq 10); do
1413         create_pool_nofail $POOL$i
1414         do_facet $SINGLEMDS "lctl pool_add $FSNAME.$POOL$i OST0000; sync"
1415         wait_update $HOSTNAME "lctl get_param -n lov.$FSNAME-*.pools.$POOL$i |
1416             sort -u | tr '\n' ' ' " "$FSNAME-OST0000_UUID " >/dev/null ||
1417                 error "pool_add failed: $1; $2"
1418
1419         facet_failover $SINGLEMDS || error "failed to failover $SINGLEMDS"
1420         wait_osc_import_state $SINGLEMDS ost FULL
1421         clients_up
1422
1423         wait_mds_ost_sync
1424         # Veriy that the pool got created and is usable
1425         df $POOL_ROOT > /dev/null
1426         sleep 5
1427         # Make sure OST0 can be striped on
1428         $SETSTRIPE -i 0 -c 1 $POOL_ROOT/$tfile
1429         STR=$($GETSTRIPE $POOL_ROOT/$tfile | grep 0x | cut -f2 | tr -d " ")
1430         rm $POOL_ROOT/$tfile
1431         if [[ "$STR" == "0" ]]; then
1432             echo "Creating a file in pool$i"
1433             create_file $POOL_ROOT/file$i $POOL$i || break
1434             check_file_in_pool $POOL_ROOT/file$i $POOL$i || break
1435         else
1436             echo "OST 0 seems to be unavailable.  Try later."
1437         fi
1438     done
1439
1440     rm -rf $POOL_ROOT
1441 }
1442 run_test 25 "Create new pool and restart MDS"
1443
1444 test_26() {
1445     [[ $OSTCOUNT -le 2 ]] && skip_env "Need at least 3 OSTs" && return
1446     set_cleanup_trap
1447     local dev=$(mdsdevname ${SINGLEMDS//mds/})
1448     local POOL_ROOT=${POOL_ROOT:-$DIR/$tdir}
1449
1450     mkdir -p $POOL_ROOT
1451
1452     create_pool_nofail $POOL2
1453
1454     do_facet $SINGLEMDS "lctl pool_add $FSNAME.$POOL2 OST0000; sync"
1455     wait_update $HOSTNAME "lctl get_param -n lov.$FSNAME-*.pools.$POOL2 |
1456         sort -u | grep $FSNAME-OST0000_UUID " "$FSNAME-OST0000_UUID" ||
1457             error "pool_add failed: $1; $2"
1458
1459     do_facet $SINGLEMDS "lctl pool_add $FSNAME.$POOL2 OST0002; sync"
1460     wait_update $HOSTNAME "lctl get_param -n lov.$FSNAME-*.pools.$POOL2 |
1461         sort -u | grep $FSNAME-OST0002_UUID" "$FSNAME-OST0002_UUID" ||
1462             error "pool_add failed: $1; $2"
1463
1464     # Veriy that the pool got created and is usable
1465     df $POOL_ROOT
1466     echo "Creating files in $POOL2"
1467
1468     for ((i = 0; i < 10; i++)); do
1469         #OBD_FAIL_MDS_OSC_CREATE_FAIL     0x147
1470         #Fail OST0000 to ensure objects create on the other OST in the pool
1471         do_facet $SINGLEMDS lctl set_param fail_loc=0x147
1472         do_facet $SINGLEMDS lctl set_param fail_val=0
1473         create_file $POOL_ROOT/file$i $POOL2 1 -1 || break
1474         do_facet $SINGLEMDS lctl set_param fail_loc=0
1475         check_file_in_pool $POOL_ROOT/file$i $POOL2 || break
1476     done
1477     rm -rf $POOL_ROOT
1478 }
1479 run_test 26 "Choose other OSTs in the pool first in the creation remedy"
1480
1481 cd $ORIG_PWD
1482
1483 complete $SECONDS
1484 cleanup_pools $FSNAME
1485 check_and_cleanup_lustre
1486 exit_status