Whamcloud - gitweb
LU-6234 util: check fsname and pool name
[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 helper_test_7a()
653 {
654         # Create a pool, stripe a directory and file with it
655         local pool=$1
656
657         pool_add $pool || error "pool_add failed"
658         pool_add_targets $pool 0 1 || error "pool_add_targets failed"
659
660         $SETSTRIPE -c 1 $DIR/$tdir/testfile1 --pool "$pool" || \
661                 error "setstripe failed"
662         $SETSTRIPE -c 1 $DIR/$tdir/testfile2 --pool "$FSNAME.$pool" || \
663                 error "setstripe failed"
664
665         mkdir $DIR/$tdir/testdir
666         $SETSTRIPE -c 1 $DIR/$tdir/testdir  -p "$pool" || \
667                 error "setstripe failed"
668         $SETSTRIPE -c 1 $DIR/$tdir/testdir  -p "$FSNAME.$pool" || \
669                 error "setstripe failed"
670
671         rm -f $DIR/$tdir/testfile1
672         rm -f $DIR/$tdir/testfile2
673         rmdir $DIR/$tdir/testdir
674
675         destroy_pool_int $FSNAME.$pool
676 }
677
678 test_7a()
679 {
680         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
681
682         mkdir -p $DIR/$tdir
683
684         # Generate pool with random name from 1 to 15 characters
685         for i in 1 9 15 ; do
686                 POOLNAME=$(cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w $i |
687                            head -n 1)
688                 echo set poolname to $POOLNAME
689                 helper_test_7a $POOLNAME
690         done
691 }
692 run_test 7a "create various pool name"
693
694 test_7b()
695 {
696         # No fsname
697         do_facet mgs lctl pool_new qwerty
698         [ $? -ne 22 ] && error "can create a pool with no fsname"
699
700         # No pool name
701         do_facet mgs lctl pool_new $FSNAME.
702         [ $? -ne 22 ] && error "can create a pool with no name"
703
704         # Invalid character
705         do_facet mgs lctl pool_new $FSNAME.0123456789^bdef
706         [ $? -ne 22 ] && error "can create a pool with an invalid name"
707
708         # Too long
709         do_facet mgs lctl pool_new $FSNAME.0123456789abdefg
710         [ $? -ne 36 ] && error "can create a pool with a name too long"
711
712         return 0
713 }
714 run_test 7b "try to create pool name with invalid lengths or names"
715
716 test_7c()
717 {
718         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
719
720         mkdir -p $DIR/$tdir
721
722         # Create a pool with 15 letters
723         local pool=0123456789abcde
724         pool_add $pool || error "pool_add failed"
725         pool_add_targets $pool 0 1 || error "pool_add_targets failed"
726
727         # setstripe with the same pool name plus 1 letter
728         $SETSTRIPE -c 1 $DIR/$tdir/testfile1 --pool "${pool}X" && \
729                 error "setstripe succedeed"
730
731         # setstripe with the same pool name minus 1 letter
732         $SETSTRIPE -c 1 $DIR/$tdir/testfile1 --pool "${pool%?}" && \
733                 error "setstripe succedeed"
734
735         rm -f $DIR/$tdir/testfile1
736
737         destroy_pool_int $FSNAME.$pool
738 }
739 run_test 7c "create a valid pool name and setstripe with a bad one"
740
741 test_11() {
742     set_cleanup_trap
743     local POOL_ROOT=${POOL_ROOT:-$DIR/$tdir}
744
745     [[ $OSTCOUNT -le 1 ]] && skip_env "Need at least 2 OSTs" && return
746
747     create_pool_nofail $POOL
748     create_pool_nofail $POOL2
749
750     local start=$(printf %04x $((TGT_FIRST + 1)))
751     do_facet $SINGLEMDS lctl pool_add $FSNAME.$POOL2 \
752         $FSNAME-OST[$start-$TGT_MAX/2]
753
754     add_pool $POOL $TGT_HALF "$TGT_UUID2"
755
756     create_dir $POOL_ROOT/dir1  $POOL
757     create_dir $POOL_ROOT/dir2  $POOL2
758     check_dir_in_pool $POOL_ROOT/dir1 $POOL
759     check_dir_in_pool $POOL_ROOT/dir1 $POOL
760
761     local numfiles=100
762     createmany -o $POOL_ROOT/dir1/$tfile $numfiles ||
763         error "createmany $POOL_ROOT/dir1/$tfile failed!"
764
765     for file in $POOL_ROOT/dir1/*; do
766         check_file_in_pool $file $POOL
767     done
768
769     createmany -o $POOL_ROOT/dir2/$tfile $numfiles ||
770         error "createmany $POOL_ROOT/dir2/$tfile failed!"
771     for file in $POOL_ROOT/dir2/*; do
772         check_file_in_pool $file $POOL2
773     done
774
775     rm -rf $POOL_ROOT/dir?
776
777     return 0
778 }
779 run_test 11 "OSTs in overlapping/multiple pools"
780
781 test_12() {
782     set_cleanup_trap
783     local POOL_ROOT=${POOL_ROOT:-$DIR/$tdir}
784
785     [[ $OSTCOUNT -le 2 ]] && skip_env "Need at least 3 OSTs" && return
786
787     create_pool_nofail $POOL
788     create_pool_nofail $POOL2
789
790     local start=$(printf %04x $((TGT_FIRST + 1)))
791     do_facet $SINGLEMDS lctl pool_add $FSNAME.$POOL2 \
792         $FSNAME-OST[$start-$TGT_MAX/2]
793
794     add_pool $POOL $TGT_HALF "$TGT_UUID2"
795
796     echo creating some files in $POOL and $POOL2
797
798     create_dir $POOL_ROOT/dir1  $POOL
799     create_dir $POOL_ROOT/dir2  $POOL2
800     create_file $POOL_ROOT/file1 $POOL
801     create_file $POOL_ROOT/file2 $POOL2
802
803     echo Checking the files created
804     check_dir_in_pool $POOL_ROOT/dir1 $POOL
805     check_dir_in_pool $POOL_ROOT/dir2 $POOL2
806     check_file_in_pool $POOL_ROOT/file1 $POOL
807     check_file_in_pool $POOL_ROOT/file2 $POOL2
808
809     echo Changing the pool membership
810     do_facet $SINGLEMDS lctl pool_remove $FSNAME.$POOL $FSNAME-OST[$TGT_FIRST]
811     do_facet $SINGLEMDS lctl pool_list $FSNAME.$POOL
812     FIRST_UUID=$(echo $TGT_UUID | awk '{print $1}')
813     add_pool $POOL2 $FSNAME-OST[$TGT_FIRST] "$FIRST_UUID "
814     do_facet $SINGLEMDS lctl pool_list $FSNAME.$POOL2
815
816     echo Checking the files again
817     check_dir_in_pool $POOL_ROOT/dir1 $POOL
818     check_dir_in_pool $POOL_ROOT/dir2 $POOL2
819     check_file_in_osts $POOL_ROOT/file1 "$TGT_LIST2"
820     check_file_in_osts $POOL_ROOT/file2 "$(seq 0x$start 2 0x$TGT_MAX)"
821
822     echo Creating some more files
823     create_dir $POOL_ROOT/dir3 $POOL
824     create_dir $POOL_ROOT/dir4 $POOL2
825     create_file $POOL_ROOT/file3 $POOL
826     create_file $POOL_ROOT/file4 $POOL2
827
828     echo Checking the new files
829     check_file_in_pool $POOL_ROOT/file3 $POOL
830     check_file_in_pool $POOL_ROOT/file4 $POOL2
831
832     return 0
833 }
834 run_test 12 "OST Pool Membership"
835
836 test_13() {
837     set_cleanup_trap
838     [[ $OSTCOUNT -le 2 ]] && skip_env "Need at least 3 OSTs" && return
839
840     local POOL_ROOT=${POOL_ROOT:-$DIR/$tdir}
841     local numfiles=10
842     local count=3
843
844     create_pool_nofail $POOL
845     add_pool $POOL $TGT_ALL "$TGT_UUID"
846
847     create_dir $POOL_ROOT/dir1 $POOL -1
848     createmany -o $POOL_ROOT/dir1/$tfile $numfiles ||
849         error "createmany $POOL_ROOT/dir1/$tfile failed!"
850     for file in $POOL_ROOT/dir1/*; do
851         check_file_in_pool $file $POOL $OSTCOUNT
852     done
853
854     create_file $POOL_ROOT/dir1/file1 $POOL 1 $TGT_FIRST
855     create_file $POOL_ROOT/dir1/file2 $POOL 1 $((TGT_FIRST + 1))
856     create_file $POOL_ROOT/dir1/file3 $POOL 1 $((TGT_FIRST + 2))
857     check_file_in_pool $POOL_ROOT/dir1/file1 $POOL 1
858     check_file_in_pool $POOL_ROOT/dir1/file2 $POOL 1
859     create_file $POOL_ROOT/dir1/file3 $POOL 1 $((TGT_FIRST + 2))
860     check_file_in_osts $POOL_ROOT/dir1/file1 $((16#$TGT_FIRST))
861     check_file_in_osts $POOL_ROOT/dir1/file2 "$((TGT_FIRST + 1))"
862     check_file_in_osts $POOL_ROOT/dir1/file3 "$((TGT_FIRST + 2))"
863
864     create_dir $POOL_ROOT/dir2 $POOL $count
865     createmany -o $POOL_ROOT/dir2/$tfile- $numfiles ||
866         error "createmany $POOL_ROOT/dir2/$tfile- failed!"
867     for file in $POOL_ROOT/dir2/*; do
868         check_file_in_pool $file $POOL $count
869     done
870
871     create_dir $POOL_ROOT/dir3 $POOL $count $((TGT_FIRST + 1))
872     createmany -o $POOL_ROOT/dir3/$tfile- $numfiles ||
873         error "createmany $POOL_ROOT/dir3/$tfile- failed!"
874     for file in $POOL_ROOT/dir3/*; do
875         check_file_in_pool $file $POOL $count
876     done
877
878     create_dir $POOL_ROOT/dir4 $POOL 1
879     createmany -o $POOL_ROOT/dir4/$tfile- $numfiles ||
880         error "createmany $POOL_ROOT/dir4/$tfile- failed!"
881     for file in $POOL_ROOT/dir4/*; do
882         check_file_in_pool $file $POOL 1
883     done
884
885     create_dir $POOL_ROOT/dir5 $POOL 1 $((TGT_FIRST + 2))
886     createmany -o $POOL_ROOT/dir5/$tfile- $numfiles ||
887         error "createmany $POOL_ROOT/dir5/$tfile- failed!"
888     for file in $POOL_ROOT/dir5/*; do
889         check_file_in_pool $file $POOL 1
890         check_file_in_osts  $file "$((TGT_FIRST + 2))"
891     done
892
893     rm -rf $POOL_ROOT/dir[1-5]/
894
895     return 0
896 }
897 run_test 13 "Striping characteristics in a pool"
898
899 test_14() {
900     set_cleanup_trap
901     [[ $OSTCOUNT -le 2 ]] && skip_env "Need at least 3 OSTs" && return
902
903     local POOL_ROOT=${POOL_ROOT:-$DIR/$tdir}
904     local numfiles=100
905     local i
906
907     [ $OSTSIZE -gt $((MAXFREE / OSTCOUNT)) ] &&
908         skip_env "OST size $OSTSIZE is larger than $((MAXFREE / OSTCOUNT))" &&
909                         return 0
910
911     create_pool_nofail $POOL
912     create_pool_nofail $POOL2
913
914     add_pool $POOL $TGT_HALF "$TGT_UUID2"
915     add_pool $POOL2 "OST0000" "$FSNAME-OST0000_UUID "
916
917     create_dir $POOL_ROOT/dir1 $POOL 1
918     create_file $POOL_ROOT/dir1/file $POOL 1
919     local OST=$($GETSTRIPE -i $POOL_ROOT/dir1/file)
920     i=0
921     while [[ $i -lt $numfiles ]]; do
922         OST=$((OST + 2))
923         [[ $OST -gt $((16#$TGT_MAX)) ]] && OST=$TGT_FIRST
924
925         # echo "Iteration: $i OST: $OST"
926         create_file $POOL_ROOT/dir1/file${i} $POOL 1
927         check_file_in_pool $POOL_ROOT/dir1/file${i} $POOL
928         i=$((i + 1))
929     done
930
931     # Fill up OST0 until it is nearly full.
932     # Create 9 files of size OST0_SIZE/10 each.
933     create_dir $POOL_ROOT/dir2 $POOL2 1
934     $LFS df $POOL_ROOT/dir2
935     OST0_SIZE=$($LFS df $POOL_ROOT/dir2 | awk '/\[OST:0\]/ { print $4 }')
936     FILE_SIZE=$((OST0_SIZE/1024/10))
937     echo "Filling OST0 with 9 files of ${FILE_SIZE}MB in $POOL_ROOT/dir2"
938     i=1
939     while [[ $i -lt 10 ]]; do
940         dd if=/dev/zero of=$POOL_ROOT/dir2/f${i} bs=1M count=$FILE_SIZE
941         i=$((i + 1))
942     done
943     sleep 1 # get new statfs info
944     $LFS df $POOL_ROOT/dir2
945
946     # OST $TGT_FIRST is no longer favored; but it may still be used.
947     create_dir $POOL_ROOT/dir3 $POOL 1
948     create_file $POOL_ROOT/dir3/file $POOL 1
949     createmany -o $POOL_ROOT/dir3/$tfile- $numfiles ||
950         error "createmany $POOL_ROOT/dir3/$tfile- failed!"
951     for file in $POOL_ROOT/dir3/*; do
952         check_file_in_pool $file $POOL
953     done
954
955     rm -rf $POOL_ROOT
956
957     return 0
958 }
959 run_test 14 "Round robin and QOS striping within a pool"
960
961 test_15() {
962     set_cleanup_trap
963     local POOL_ROOT=${POOL_ROOT:-$DIR/$tdir}
964     local numfiles=100
965     local i=0
966
967     while [[ $i -lt $OSTCOUNT ]]; do
968         create_pool_nofail $POOL${i}
969
970         local tgt=$(printf "$FSNAME-OST%04x_UUID " $i)
971         add_pool $POOL${i} "$FSNAME-OST[$(printf %04x $i)]" "$tgt"
972         create_dir $POOL_ROOT/dir${i} $POOL${i}
973         createmany -o $POOL_ROOT/dir$i/$tfile $numfiles ||
974             error "createmany $POOL_ROOT/dir$i/$tfile failed!"
975
976         for file in $POOL_ROOT/dir$i/*; do
977             check_file_in_osts $file $i
978         done
979
980         i=$((i + 1))
981     done
982
983     return 0
984 }
985 run_test 15 "One directory per OST/pool"
986
987 test_16() {
988     set_cleanup_trap
989     local POOL_ROOT=${POOL_ROOT:-$DIR/$tdir}
990     local numfiles=10
991     local i=0
992
993     create_pool_nofail $POOL
994
995     add_pool $POOL $TGT_HALF "$TGT_UUID2"
996
997     local dir=$POOL_ROOT/$tdir
998     create_dir $dir $POOL
999
1000     for i in $(seq 1 10); do
1001         dir=${dir}/dir${i}
1002     done
1003     mkdir -p $dir
1004
1005     createmany -o $dir/$tfile $numfiles ||
1006         error "createmany $dir/$tfile failed!"
1007
1008     for file in $dir/*; do
1009         check_file_in_pool $file $POOL
1010     done
1011
1012     rm -rf $POOL_ROOT/$tdir
1013
1014     return 0
1015 }
1016 run_test 16 "Inheritance of pool properties"
1017
1018 test_17() {
1019     set_cleanup_trap
1020     local POOL_ROOT=${POOL_ROOT:-$DIR/$tdir}
1021     local numfiles=10
1022     local i=0
1023
1024     create_pool_nofail $POOL
1025
1026     add_pool $POOL $TGT_ALL "$TGT_UUID"
1027
1028     local dir=$POOL_ROOT/dir
1029     create_dir $dir $POOL
1030
1031     createmany -o $dir/${tfile}1_ $numfiles ||
1032         error "createmany $dir/${tfile}1_ failed!"
1033
1034     for file in $dir/*; do
1035         check_file_in_pool $file $POOL
1036     done
1037
1038     destroy_pool $POOL
1039
1040     createmany -o $dir/${tfile}2_ $numfiles ||
1041           error "createmany $dir/${tfile}2_ failed!"
1042
1043     rm -rf $dir
1044     return 0
1045 }
1046 run_test 17 "Referencing an empty pool"
1047
1048 create_perf() {
1049     local cdir=$1/d
1050     local numsec=$2
1051     local time
1052
1053     mkdir -p $cdir
1054     sync
1055     wait_delete_completed >/dev/null # give pending IO a chance to go to disk
1056     stat=$(createmany -o $cdir/${tfile} -$numsec | tail -1)
1057     files=$(echo $stat | cut -f 2 -d ' ')
1058     echo $stat 1>&2
1059     unlinkmany $cdir/${tfile} $files > /dev/null
1060     sync
1061
1062     echo $files
1063 }
1064
1065 test_18() {
1066     set_cleanup_trap
1067     local POOL_ROOT=${POOL_ROOT:-$DIR/$tdir}
1068     local numsec=15
1069     local iter=3
1070     local plaindir=$POOL_ROOT/plaindir
1071     local pooldir=$POOL_ROOT/pooldir
1072     local f1=0
1073     local f2=0
1074     local f3=0
1075     local diff
1076
1077     for i in $(seq 1 $iter); do
1078         echo "Create performance, iteration $i, $numsec seconds x 3"
1079
1080         files1=$(create_perf $plaindir $numsec)
1081         echo "iter $i: $files1 creates without pool"
1082         f1=$(($f1 + $files1))
1083
1084         create_pool_nofail $POOL > /dev/null
1085         add_pool $POOL $TGT_ALL "$TGT_UUID" > /dev/null
1086         create_dir $pooldir $POOL
1087         files2=$(create_perf $pooldir $numsec)
1088         echo "iter $i: $files2 creates with pool"
1089         f2=$(($f2 + $files2))
1090
1091         destroy_pool $POOL > /dev/null
1092         files3=$(create_perf $pooldir $numsec)
1093         echo "iter $i: $files3 creates with missing pool"
1094         f3=$(($f3 + $files3))
1095
1096         echo
1097     done
1098
1099     echo Avg files created in $numsec seconds without pool: $((files1 / iter))
1100     echo Avg files created in $numsec seconds with pool: $((files2 / iter))
1101     echo Avg files created in $numsec seconds missing pool: $((files3 / iter))
1102
1103     # Set this high until we establish a baseline for what the degradation
1104     # is / should be
1105     max=30
1106     diff=$((($files1 - $files2) * 100 / $files1))
1107         echo  "No pool / wide pool: $diff %."
1108         [ $diff -gt $max ] &&
1109                 error_ignore bz23408 "Degradation with wide pool is $diff% > $max%"
1110
1111         max=30
1112         diff=$((($files1 - $files3) * 100 / $files1))
1113         echo  "No pool / missing pool: $diff %."
1114         [ $diff -gt $max ] &&
1115                 error_ignore bz23408 "Degradation with wide pool is $diff% > $max%"
1116
1117         return 0
1118 }
1119 run_test 18 "File create in a directory which references a deleted pool"
1120
1121 test_19() {
1122     set_cleanup_trap
1123     local POOL_ROOT=${POOL_ROOT:-$DIR/$tdir}
1124     local numfiles=12
1125     local dir1=$POOL_ROOT/dir1
1126     local dir2=$POOL_ROOT/dir2
1127     local i=0
1128
1129     create_pool_nofail $POOL
1130
1131     add_pool $POOL $TGT_HALF "$TGT_UUID2"
1132
1133     create_dir $dir1 $POOL
1134     createmany -o $dir1/${tfile} $numfiles ||
1135           error "createmany $dir1/${tfile} failed!"
1136     for file in $dir1/*; do
1137         check_file_in_pool $file $POOL
1138     done
1139
1140     mkdir -p $dir2
1141     createmany -o $dir2/${tfile} $numfiles ||
1142           error "createmany $dir2/${tfile} failed!"
1143     for file in $dir2/*; do
1144         check_file_not_in_pool $file $POOL
1145     done
1146
1147     rm -rf $dir1 $dir2
1148
1149     return 0
1150 }
1151 run_test 19 "Pools should not come into play when not specified"
1152
1153 test_20() {
1154     set_cleanup_trap
1155     local POOL_ROOT=${POOL_ROOT:-$DIR/$tdir}
1156     local numfiles=12
1157     local dir1=$POOL_ROOT/dir1
1158     local dir2=$dir1/dir2
1159     local dir3=$dir1/dir3
1160     local i=0
1161     local TGT
1162
1163     create_pool_nofail $POOL
1164     create_pool_nofail $POOL2
1165
1166     add_pool $POOL $TGT_HALF "$TGT_UUID2"
1167
1168     local start=$(printf %04x $((TGT_FIRST + 1)))
1169     TGT=$(for i in $(seq 0x$start 2 0x$TGT_MAX); do \
1170           printf "$FSNAME-OST%04x_UUID " $i; done)
1171     add_pool $POOL2 "$FSNAME-OST[$start-$TGT_MAX/2]" "$TGT"
1172
1173     create_dir $dir1 $POOL
1174     create_file $dir1/file1 $POOL2
1175     create_dir $dir2 $POOL2
1176     touch $dir2/file2
1177     mkdir $dir3
1178     $SETSTRIPE -c 1 $dir3 # No pool assignment
1179     touch $dir3/file3
1180     $SETSTRIPE -c 1 $dir2/file4 # No pool assignment
1181
1182     check_file_in_pool $dir1/file1 $POOL2
1183     check_file_in_pool $dir2/file2 $POOL2
1184
1185     check_dir_not_in_pool $dir3 $POOL
1186     check_dir_not_in_pool $dir3 $POOL2
1187
1188     check_file_not_in_pool $dir3/file3 $POOL
1189     check_file_not_in_pool $dir3/file3 $POOL2
1190
1191     check_file_not_in_pool $dir2/file4 $POOL
1192     check_file_not_in_pool $dir2/file4 $POOL2
1193
1194     rm -rf $dir1
1195
1196     return 0
1197 }
1198 run_test 20 "Different pools in a directory hierarchy."
1199
1200 test_21() {
1201     set_cleanup_trap
1202     local POOL_ROOT=${POOL_ROOT:-$DIR/$tdir}
1203     [[ $OSTCOUNT -le 1 ]] && skip_env "Need at least 2 OSTs" && return
1204
1205     local numfiles=12
1206     local i=0
1207     local dir=$POOL_ROOT/dir
1208
1209     create_pool_nofail $POOL
1210
1211     add_pool $POOL $TGT_HALF "$TGT_UUID2"
1212
1213     create_dir $dir $POOL $OSTCOUNT
1214     create_file $dir/file1 $POOL $OSTCOUNT
1215     $GETSTRIPE -v $dir/file1
1216     check_file_in_pool $dir/file1 $POOL
1217
1218     rm -rf $dir
1219
1220     return 0
1221 }
1222 run_test 21 "OST pool with fewer OSTs than stripe count"
1223
1224 add_loop() {
1225     local pool=$1
1226     local step=$2
1227
1228     echo loop for $pool
1229
1230     for c in $(seq 1 10); do
1231         echo "Pool $pool, iteration $c"
1232         do_facet $SINGLEMDS lctl pool_add $FSNAME.$pool \
1233             OST[$TGT_FIRST-$TGT_MAX/$step] 2>/dev/null
1234         local TGT_SECOND=$(printf %04x $((TGT_FIRST + $step)))
1235         if [ $((16#$TGT_SECOND)) -le $((16#$TGT_MAX)) ]; then
1236             do_facet $SINGLEMDS lctl pool_remove $FSNAME.$pool \
1237                 OST[$TGT_SECOND-$TGT_MAX/$step]
1238         fi
1239     done
1240     echo loop for $pool complete
1241 }
1242
1243 test_22() {
1244     set_cleanup_trap
1245     local POOL_ROOT=${POOL_ROOT:-$DIR/$tdir}
1246     [[ $OSTCOUNT -le 1 ]] && skip_env "Need at least 2 OSTs" && return
1247
1248     local numfiles=100
1249
1250     create_pool_nofail $POOL
1251     add_pool $POOL "OST0000" "$FSNAME-OST0000_UUID "
1252     create_pool_nofail $POOL2
1253     add_pool $POOL2 "OST0000" "$FSNAME-OST0000_UUID "
1254
1255     add_loop $POOL 1 &
1256     add_loop $POOL2 2 &
1257     sleep 5
1258     create_dir $POOL_ROOT $POOL
1259     createmany -o $POOL_ROOT/${tfile} $numfiles ||
1260         error "createmany $POOL_ROOT/${tfile} failed!"
1261     wait
1262
1263     return 0
1264 }
1265 run_test 22 "Simultaneous manipulation of a pool"
1266
1267 test_23a() {
1268     set_cleanup_trap
1269     local POOL_ROOT=${POOL_ROOT:-$DIR/$tdir}
1270     [[ $OSTCOUNT -le 1 ]] && skip_env "Need at least 2 OSTs" && return
1271
1272     mkdir -p $POOL_ROOT
1273     check_runas_id $RUNAS_ID $RUNAS_GID $RUNAS || {
1274         skip_env "User $RUNAS_ID does not exist - skipping"
1275         return 0
1276     }
1277
1278     local i=0
1279     local TGT
1280     local BUNIT_SZ=1024  # min block quota unit(kB)
1281     local LIMIT=$((BUNIT_SZ * (OSTCOUNT + 1)))
1282     local dir=$POOL_ROOT/dir
1283     local file="$dir/$tfile-quota"
1284
1285     create_pool_nofail $POOL
1286
1287     local TGT=$(for i in $(seq 0x$TGT_FIRST 3 0x$TGT_MAX); do \
1288                 printf "$FSNAME-OST%04x_UUID " $i; done)
1289     add_pool $POOL "$FSNAME-OST[$TGT_FIRST-$TGT_MAX/3]" "$TGT"
1290     create_dir $dir $POOL
1291
1292         # XXX remove the interoperability code once we drop the old server
1293         #     ( < 2.3.50) support.
1294         if [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.50) ]; then
1295                 $LFS quotaoff -ug $MOUNT
1296                 $LFS quotacheck -ug $MOUNT
1297         else
1298                 do_facet mgs $LCTL conf_param $FSNAME.quota.ost=ug
1299                 sleep 5
1300         fi
1301
1302     $LFS setquota -u $RUNAS_ID -b $LIMIT -B $LIMIT $dir
1303     sleep 3
1304     $LFS quota -v -u $RUNAS_ID $dir
1305
1306     $SETSTRIPE -c 1 -p $POOL $file
1307     chown $RUNAS_ID.$RUNAS_GID $file
1308     ls -l $file
1309
1310     # This does two "dd" runs to ensure that the quota failure is returned
1311     # to userspace when we check.  The first "dd" might otherwise complete
1312     # without error if it is only writing into cache.
1313     stat=$(LOCALE=C $RUNAS dd if=/dev/zero of=$file bs=$BUNIT_SZ \
1314            count=$((BUNIT_SZ*2)) 2>&1)
1315     echo $stat | grep "Disk quota exceeded" > /dev/null
1316     if [ $? -eq 0 ]; then
1317         $LFS quota -v -u $RUNAS_ID $dir
1318         cancel_lru_locks osc
1319         stat=$(LOCALE=C $RUNAS dd if=/dev/zero of=$file bs=$BUNIT_SZ \
1320                count=$BUNIT_SZ seek=$((BUNIT_SZ*2)) 2>&1)
1321         RC=$?
1322         echo $stat
1323         [[ $RC -eq 0 ]] && error "second dd did not fail."
1324         echo $stat | grep "Disk quota exceeded" > /dev/null
1325         [[ $? -eq 1 ]] && error "second dd did not fail with EDQUOT."
1326     else
1327         log "first dd failed with EDQUOT."
1328     fi
1329     $LFS quota -v -u $RUNAS_ID $dir
1330 }
1331 run_test 23a "OST pools and quota"
1332
1333 test_23b() {
1334     set_cleanup_trap
1335     local POOL_ROOT=${POOL_ROOT:-$DIR/$tdir}
1336     [[ $OSTCOUNT -le 1 ]] && skip_env "Need at least 2 OSTs" && return 0
1337
1338     mkdir -p $POOL_ROOT
1339     check_runas_id $RUNAS_ID $RUNAS_GID $RUNAS || {
1340         skip_env "User $RUNAS_ID does not exist - skipping"
1341         return 0
1342     }
1343
1344     local i=0
1345     local TGT
1346     local dir=$POOL_ROOT/dir
1347     local file="$dir/$tfile-quota"
1348
1349     create_pool_nofail $POOL
1350
1351     local TGT=$(for i in $(seq 0x$TGT_FIRST 3 0x$TGT_MAX); do \
1352                 printf "$FSNAME-OST%04x_UUID " $i; done)
1353     add_pool $POOL "$FSNAME-OST[$TGT_FIRST-$TGT_MAX/3]" "$TGT"
1354     create_dir $dir $POOL
1355
1356         local maxfree=$((1024 * 1024 * 30)) # 30G
1357         local AVAIL=$(lfs_df -p $POOL $dir | awk '/summary/ { print $4 }')
1358         [ $AVAIL -gt $maxfree ] &&
1359                 skip_env "Filesystem space $AVAIL is larger than " \
1360                         "$maxfree limit" && return 0
1361
1362         echo "OSTCOUNT=$OSTCOUNT, OSTSIZE=$OSTSIZE, AVAIL=$AVAIL"
1363         echo "MAXFREE=$maxfree, SLOW=$SLOW"
1364
1365         # XXX remove the interoperability code once we drop the old server
1366         #     ( < 2.3.50) support.
1367         if [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.50) ]; then
1368                 $LFS quotaoff -ug $MOUNT
1369         else
1370                 do_facet mgs $LCTL conf_param $FSNAME.quota.ost=none
1371                 sleep 5
1372         fi
1373
1374         chown $RUNAS_ID.$RUNAS_ID $dir
1375         i=0
1376         local RC=0
1377         local TOTAL=0 # KB
1378         local stime=$(date +%s)
1379         local stat
1380         local etime
1381         local elapsed
1382         local maxtime=300 # minimum speed: 5GB / 300sec ~= 17MB/s
1383         while [ $RC -eq 0 ]; do
1384                 i=$((i + 1))
1385                 stat=$(LOCALE=C $RUNAS2 dd if=/dev/zero of=${file}$i bs=1M \
1386                         count=$((5 * 1024)) 2>&1)
1387                 RC=$?
1388                 TOTAL=$((TOTAL + 1024 * 1024 * 5))
1389                 echo "[$i iteration] $stat"
1390                 echo "total written: $TOTAL"
1391
1392                 etime=$(date +%s)
1393                 elapsed=$((etime - stime))
1394                 echo "stime=$stime, etime=$etime, elapsed=$elapsed"
1395
1396                 if [ $RC -eq 1 ]; then
1397                         echo $stat | grep -q "Disk quota exceeded"
1398                         [[ $? -eq 0 ]] &&
1399                                 error "dd failed with EDQUOT with quota off"
1400
1401                         echo $stat | grep -q "No space left on device"
1402                         [[ $? -ne 0 ]] &&
1403                                 error "dd did not fail with ENOSPC"
1404                 elif [ $TOTAL -gt $AVAIL ]; then
1405                         error "dd didn't fail with ENOSPC ($TOTAL > $AVAIL)"
1406                 elif [ $i -eq 1 -a $elapsed -gt $maxtime ]; then
1407                         log "The first 5G write used $elapsed (> $maxtime) " \
1408                                 "seconds, terminated"
1409                         RC=1
1410                 fi
1411         done
1412
1413         df -h
1414         rm -rf $POOL_ROOT
1415 }
1416 run_test 23b "OST pools and OOS"
1417
1418 test_24() {
1419     set_cleanup_trap
1420     local POOL_ROOT=${POOL_ROOT:-$DIR/$tdir}
1421     [[ $OSTCOUNT -le 1 ]] && skip_env "Need at least 2 OSTs" && return
1422
1423     local numfiles=10
1424     local i=0
1425     local TGT
1426     local dir
1427     local res
1428
1429     create_pool_nofail $POOL
1430
1431     add_pool $POOL $TGT_ALL "$TGT_UUID"
1432
1433     create_dir $POOL_ROOT/dir1 $POOL $OSTCOUNT
1434
1435     mkdir $POOL_ROOT/dir2
1436     $SETSTRIPE -p $POOL -S 65536 -i 0 -c 1 $POOL_ROOT/dir2 ||
1437         error "$SETSTRIPE $POOL_ROOT/dir2 failed"
1438
1439     mkdir $POOL_ROOT/dir3
1440     $SETSTRIPE -S 65536 -i 0 -c 1 $POOL_ROOT/dir3 ||
1441         error "$SETSTRIPE $POOL_ROOT/dir3 failed"
1442
1443     mkdir $POOL_ROOT/dir4
1444
1445     for i in 1 2 3 4; do
1446         dir=${POOL_ROOT}/dir${i}
1447         local pool
1448         local pool1
1449         local count
1450         local count1
1451         local index
1452         local size
1453         local size1
1454
1455         createmany -o $dir/${tfile} $numfiles ||
1456             error "createmany $dir/${tfile} failed!"
1457         res=$($GETSTRIPE -v $dir | grep "^stripe_count:")
1458         if [ $? -ne 0 ]; then
1459             res=$($GETSTRIPE -v $dir | grep "^(Default) ")
1460             pool=$(cut -f 9 -d ' ' <<< $res)
1461             index=$(cut -f 7 -d ' ' <<< $res)
1462             size=$(cut -f 5 -d ' ' <<< $res)
1463             count=$(cut -f 3 -d ' ' <<< $res)
1464         else
1465             pool=$(cut -f 8 -d ' ' <<< $res)
1466             index=$(cut -f 6 -d ' ' <<< $res)
1467             size=$(cut -f 4 -d ' ' <<< $res)
1468             count=$(cut -f 2 -d ' ' <<< $res)
1469         fi
1470
1471         for file in $dir/*; do
1472             if [ "$pool" != "" ]; then
1473                 check_file_in_pool $file $pool
1474             fi
1475             pool1=$(file_pool $file)
1476             count1=$($GETSTRIPE -v $file | grep "^lmm_stripe_count:" |
1477                      tr -d '[:blank:]' | cut -f 2 -d ':')
1478             size1=$($GETSTRIPE -v $file | grep "^lmm_stripe_size:" |
1479                     tr -d '[:blank:]' | cut -f 2 -d ':')
1480             [[ "$pool" != "$pool1" ]] &&
1481                 error "Pool name ($pool) not inherited in $file($pool1)"
1482             [[ "$count" != "$count1" ]] &&
1483                 error "Stripe count ($count) not inherited in $file ($count1)"
1484             [[ "$size" != "$size1" ]] && [[ "$size" != "0" ]] &&
1485                 error "Stripe size ($size) not inherited in $file ($size1)"
1486         done
1487     done
1488
1489     rm -rf $POOL_ROOT
1490
1491     return 0
1492 }
1493 run_test 24 "Independence of pool from other setstripe parameters"
1494
1495 test_25() {
1496     set_cleanup_trap
1497     local POOL_ROOT=${POOL_ROOT:-$DIR/$tdir}
1498
1499     mkdir -p $POOL_ROOT
1500
1501     for i in $(seq 10); do
1502         create_pool_nofail $POOL$i
1503         do_facet $SINGLEMDS "lctl pool_add $FSNAME.$POOL$i OST0000; sync"
1504         wait_update $HOSTNAME "lctl get_param -n lov.$FSNAME-*.pools.$POOL$i |
1505             sort -u | tr '\n' ' ' " "$FSNAME-OST0000_UUID " >/dev/null ||
1506                 error "pool_add failed: $1; $2"
1507
1508         facet_failover $SINGLEMDS || error "failed to failover $SINGLEMDS"
1509         wait_osc_import_state $SINGLEMDS ost FULL
1510         clients_up
1511
1512         wait_mds_ost_sync
1513         # Veriy that the pool got created and is usable
1514         df $POOL_ROOT > /dev/null
1515         sleep 5
1516         # Make sure OST0 can be striped on
1517         $SETSTRIPE -i 0 -c 1 $POOL_ROOT/$tfile
1518         STR=$($GETSTRIPE $POOL_ROOT/$tfile | grep 0x | cut -f2 | tr -d " ")
1519         rm $POOL_ROOT/$tfile
1520         if [[ "$STR" == "0" ]]; then
1521             echo "Creating a file in pool$i"
1522             create_file $POOL_ROOT/file$i $POOL$i || break
1523             check_file_in_pool $POOL_ROOT/file$i $POOL$i || break
1524         else
1525             echo "OST 0 seems to be unavailable.  Try later."
1526         fi
1527     done
1528
1529     rm -rf $POOL_ROOT
1530 }
1531 run_test 25 "Create new pool and restart MDS"
1532
1533 test_26() {
1534     [[ $OSTCOUNT -le 2 ]] && skip_env "Need at least 3 OSTs" && return
1535     set_cleanup_trap
1536     local dev=$(mdsdevname ${SINGLEMDS//mds/})
1537     local POOL_ROOT=${POOL_ROOT:-$DIR/$tdir}
1538
1539     mkdir -p $POOL_ROOT
1540
1541     create_pool_nofail $POOL2
1542
1543     do_facet $SINGLEMDS "lctl pool_add $FSNAME.$POOL2 OST0000; sync"
1544     wait_update $HOSTNAME "lctl get_param -n lov.$FSNAME-*.pools.$POOL2 |
1545         sort -u | grep $FSNAME-OST0000_UUID " "$FSNAME-OST0000_UUID" ||
1546             error "pool_add failed: $1; $2"
1547
1548     do_facet $SINGLEMDS "lctl pool_add $FSNAME.$POOL2 OST0002; sync"
1549     wait_update $HOSTNAME "lctl get_param -n lov.$FSNAME-*.pools.$POOL2 |
1550         sort -u | grep $FSNAME-OST0002_UUID" "$FSNAME-OST0002_UUID" ||
1551             error "pool_add failed: $1; $2"
1552
1553     # Veriy that the pool got created and is usable
1554     df $POOL_ROOT
1555     echo "Creating files in $POOL2"
1556
1557     for ((i = 0; i < 10; i++)); do
1558         #OBD_FAIL_MDS_OSC_CREATE_FAIL     0x147
1559         #Fail OST0000 to ensure objects create on the other OST in the pool
1560         do_facet $SINGLEMDS lctl set_param fail_loc=0x147
1561         do_facet $SINGLEMDS lctl set_param fail_val=0
1562         create_file $POOL_ROOT/file$i $POOL2 1 -1 || break
1563         do_facet $SINGLEMDS lctl set_param fail_loc=0
1564         check_file_in_pool $POOL_ROOT/file$i $POOL2 || break
1565     done
1566     rm -rf $POOL_ROOT
1567 }
1568 run_test 26 "Choose other OSTs in the pool first in the creation remedy"
1569
1570 cd $ORIG_PWD
1571
1572 complete $SECONDS
1573 cleanup_pools $FSNAME
1574 check_and_cleanup_lustre
1575 exit_status