Whamcloud - gitweb
LU-4515 tests: set fail_loc only once per node
[fs/lustre-release.git] / lustre / tests / sanity-quota.sh
1 #!/bin/bash
2 #
3 # Run select tests by setting ONLY, or as arguments to the script.
4 # Skip specific tests by setting EXCEPT.
5 #
6 # Run test by setting NOSETUP=true when ltest has setup env for us
7 set -e
8
9 SRCDIR=`dirname $0`
10 export PATH=$PWD/$SRCDIR:$SRCDIR:$PWD/$SRCDIR/../utils:$PATH:/sbin
11
12 ONLY=${ONLY:-"$*"}
13 ALWAYS_EXCEPT="$SANITY_QUOTA_EXCEPT"
14 # UPDATE THE COMMENT ABOVE WITH BUG NUMBERS WHEN CHANGING ALWAYS_EXCEPT!
15
16 [ "$ALWAYS_EXCEPT$EXCEPT" ] &&
17         echo "Skipping tests: `echo $ALWAYS_EXCEPT $EXCEPT`"
18
19 TMP=${TMP:-/tmp}
20
21 ORIG_PWD=${PWD}
22 TSTID=${TSTID:-60000}
23 TSTID2=${TSTID2:-60001}
24 TSTUSR=${TSTUSR:-"quota_usr"}
25 TSTUSR2=${TSTUSR2:-"quota_2usr"}
26 BLK_SZ=1024
27 MAX_DQ_TIME=604800
28 MAX_IQ_TIME=604800
29
30 LUSTRE=${LUSTRE:-$(cd $(dirname $0)/..; echo $PWD)}
31 . $LUSTRE/tests/test-framework.sh
32 init_test_env $@
33 . ${CONFIG:=$LUSTRE/tests/cfg/$NAME.sh}
34 init_logging
35 DIRECTIO=${DIRECTIO:-$LUSTRE/tests/directio}
36
37 require_dsh_mds || exit 0
38 require_dsh_ost || exit 0
39
40 # XXX Once we drop the interoperability with old server (< 2.3.50), the
41 #     sanity-quota-old.sh should be removed.
42 if [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.50) ]; then
43         exec $LUSTRE/tests/sanity-quota-old.sh
44 fi
45
46 # Does e2fsprogs support quota feature?
47 if [ $(facet_fstype $SINGLEMDS) == ldiskfs ] &&
48         do_facet $SINGLEMDS "! $DEBUGFS -c -R supported_features |
49                 grep -q 'quota'"; then
50         skip "e2fsprogs doesn't support quota" && exit 0
51 fi
52
53 # bug number for skipped test: LU-4515
54 ALWAYS_EXCEPT="$ALWAYS_EXCEPT   34"
55
56 if [ $(facet_fstype $SINGLEMDS) = "zfs" ]; then
57 # bug number for skipped test:        LU-2872 LU-2836 LU-2836 LU-2059
58         ALWAYS_EXCEPT="$ALWAYS_EXCEPT 1       3       6       7d"
59 # bug number:     LU-2887
60         ZFS_SLOW="12a"
61 fi
62
63 [ "$SLOW" = "no" ] && EXCEPT_SLOW="$ZFS_SLOW 9 18 21"
64
65 QUOTALOG=${TESTSUITELOG:-$TMP/$(basename $0 .sh).log}
66
67 [ "$QUOTALOG" ] && rm -f $QUOTALOG || true
68
69 DIR=${DIR:-$MOUNT}
70 DIR2=${DIR2:-$MOUNT2}
71
72 QUOTA_AUTO_OLD=$QUOTA_AUTO
73 export QUOTA_AUTO=0
74
75 check_and_setup_lustre
76
77 LOVNAME=`lctl get_param -n llite.*.lov.common_name | tail -n 1`
78 OSTCOUNT=`lctl get_param -n lov.$LOVNAME.numobd`
79
80 SHOW_QUOTA_USER="$LFS quota -v -u $TSTUSR $DIR"
81 SHOW_QUOTA_USERID="$LFS quota -v -u $TSTID $DIR"
82 SHOW_QUOTA_USER2="$LFS quota -v -u $TSTUSR2 $DIR"
83 SHOW_QUOTA_GROUP="$LFS quota -v -g $TSTUSR $DIR"
84 SHOW_QUOTA_GROUPID="$LFS quota -v -g $TSTID $DIR"
85 SHOW_QUOTA_GROUP2="$LFS quota -v -g $TSTUSR2 $DIR"
86 SHOW_QUOTA_INFO_USER="$LFS quota -t -u $DIR"
87 SHOW_QUOTA_INFO_GROUP="$LFS quota -t -g $DIR"
88
89 build_test_filter
90
91 lustre_fail() {
92         local fail_node=$1
93         local fail_loc=$2
94         local fail_val=${3:-0}
95         local NODES=
96
97         case $fail_node in
98         mds_ost|mdt_ost) NODES="$(comma_list $(mdts_nodes) $(osts_nodes))";;
99         mds|mdt) NODES="$(comma_list $(mdts_nodes))";;
100         ost) NODES="$(comma_list $(osts_nodes))";;
101         esac
102
103         do_nodes $NODES "lctl set_param fail_val=$fail_val fail_loc=$fail_loc"
104 }
105
106 RUNAS="runas -u $TSTID -g $TSTID"
107 RUNAS2="runas -u $TSTID2 -g $TSTID2"
108 DD="dd if=/dev/zero bs=1M"
109
110 FAIL_ON_ERROR=false
111
112 check_runas_id_ret $TSTUSR $TSTUSR $RUNAS ||
113         error "Please create user $TSTUSR($TSTID) and group $TSTUSR($TSTID)"
114 check_runas_id_ret $TSTUSR2 $TSTUSR2 $RUNAS2 ||
115         error "Please create user $TSTUSR2($TSTID2) and group $TSTUSR2($TSTID2)"
116
117 # clear quota limits for a user or a group
118 # usage: resetquota -u username
119 #        resetquota -g groupname
120
121 resetquota() {
122         [ "$#" != 2 ] && error "resetquota: wrong number of arguments: $#"
123         [ "$1" != "-u" -a "$1" != "-g" ] &&
124                 error "resetquota: wrong specifier $1 passed"
125
126         $LFS setquota "$1" "$2" -b 0 -B 0 -i 0 -I 0 $MOUNT ||
127                 error "clear quota for [type:$1 name:$2] failed"
128         # give a chance to slave to release space
129         sleep 1
130 }
131
132 quota_scan() {
133         local LOCAL_UG=$1
134         local LOCAL_ID=$2
135
136         if [ "$LOCAL_UG" == "a" -o "$LOCAL_UG" == "u" ]; then
137                 $LFS quota -v -u $LOCAL_ID $DIR
138                 log "Files for user ($LOCAL_ID):"
139                 ($LFS find -user $LOCAL_ID $DIR | head -n 4 |
140                         xargs stat 2>/dev/null)
141         fi
142
143         if [ "$LOCAL_UG" == "a" -o "$LOCAL_UG" == "g" ]; then
144                 $LFS quota -v -u $LOCAL_ID $DIR
145                 log "Files for group ($LOCAL_ID):"
146                 ($LFS find -group $LOCAL_ID $DIR | head -n 4 |
147                         xargs stat 2>/dev/null)
148         fi
149 }
150
151 quota_error() {
152         quota_scan $1 $2
153         shift 2
154         error "$*"
155 }
156
157 quota_log() {
158         quota_scan $1 $2
159         shift 2
160         log "$*"
161 }
162
163 # get quota for a user or a group
164 # usage: getquota -u|-g <username>|<groupname> global|<obd_uuid> \
165 #                 bhardlimit|bsoftlimit|bgrace|ihardlimit|isoftlimit|igrace
166 #
167 getquota() {
168         local spec
169         local uuid
170
171         [ "$#" != 4 ] && error "getquota: wrong number of arguments: $#"
172         [ "$1" != "-u" -a "$1" != "-g" ] &&
173                 error "getquota: wrong u/g specifier $1 passed"
174
175         uuid="$3"
176
177         case "$4" in
178                 curspace)   spec=1;;
179                 bsoftlimit) spec=2;;
180                 bhardlimit) spec=3;;
181                 bgrace)     spec=4;;
182                 curinodes)  spec=5;;
183                 isoftlimit) spec=6;;
184                 ihardlimit) spec=7;;
185                 igrace)     spec=8;;
186                 *)          error "unknown quota parameter $4";;
187         esac
188
189         [ "$uuid" = "global" ] && uuid=$DIR
190
191         $LFS quota -v "$1" "$2" $DIR |
192                 awk 'BEGIN { num='$spec' } { if ($1 == "'$uuid'") \
193                 { if (NF == 1) { getline } else { num++ } ; print $num;} }' \
194                 | tr -d "*"
195 }
196
197 # set mdt quota type
198 # usage: set_mdt_qtype ug|u|g|none
199 set_mdt_qtype() {
200         local qtype=$1
201         local varsvc
202         local mdts=$(get_facets MDS)
203         local cmd
204         do_facet mgs $LCTL conf_param $FSNAME.quota.mdt=$qtype
205         # we have to make sure each MDT received config changes
206         for mdt in ${mdts//,/ }; do
207                 varsvc=${mdt}_svc
208                 cmd="$LCTL get_param -n "
209                 cmd=${cmd}osd-$(facet_fstype $mdt).${!varsvc}
210                 cmd=${cmd}.quota_slave.enabled
211
212                 if $(facet_up $mdt); then
213                         wait_update_facet $mdt "$cmd" "$qtype" || return 1
214                 fi
215         done
216         return 0
217 }
218
219 # set ost quota type
220 # usage: set_ost_qtype ug|u|g|none
221 set_ost_qtype() {
222         local qtype=$1
223         local varsvc
224         local osts=$(get_facets OST)
225         local cmd
226         do_facet mgs $LCTL conf_param $FSNAME.quota.ost=$qtype
227         # we have to make sure each OST received config changes
228         for ost in ${osts//,/ }; do
229                 varsvc=${ost}_svc
230                 cmd="$LCTL get_param -n "
231                 cmd=${cmd}osd-$(facet_fstype $ost).${!varsvc}
232                 cmd=${cmd}.quota_slave.enabled
233
234                 if $(facet_up $ost); then
235                         wait_update_facet $ost "$cmd" "$qtype" || return 1
236                 fi
237         done
238         return 0
239 }
240
241 wait_reintegration() {
242         local ntype=$1
243         local qtype=$2
244         local max=$3
245         local result="glb[1],slv[1],reint[0]"
246         local varsvc
247         local cmd
248         local tgts
249
250         if [ $ntype == "mdt" ]; then
251                 tgts=$(get_facets MDS)
252         else
253                 tgts=$(get_facets OST)
254         fi
255
256         for tgt in ${tgts//,/ }; do
257                 varsvc=${tgt}_svc
258                 cmd="$LCTL get_param -n "
259                 cmd=${cmd}osd-$(facet_fstype $tgt).${!varsvc}
260                 cmd=${cmd}.quota_slave.info
261
262                 if $(facet_up $tgt); then
263                         wait_update_facet $tgt "$cmd |
264                                 grep "$qtype" | awk '{ print \\\$3 }'" \
265                                         "$result" $max || return 1
266                 fi
267         done
268         return 0
269 }
270
271 wait_mdt_reint() {
272         local qtype=$1
273         local max=${2:-90}
274
275         if [ $qtype == "u" ] || [ $qtype == "ug" ]; then
276                 wait_reintegration "mdt" "user" $max || return 1
277         fi
278
279         if [ $qtype == "g" ] || [ $qtype == "ug" ]; then
280                 wait_reintegration "mdt" "group" $max || return 1
281         fi
282         return 0
283 }
284
285 wait_ost_reint() {
286         local qtype=$1
287         local max=${2:-90}
288
289         if [ $qtype == "u" ] || [ $qtype == "ug" ]; then
290                 wait_reintegration "ost" "user" $max || return 1
291         fi
292
293         if [ $qtype == "g" ] || [ $qtype == "ug" ]; then
294                 wait_reintegration "ost" "group" $max || return 1
295         fi
296         return 0
297 }
298
299 setup_quota_test() {
300         rm -rf $DIR/$tdir
301         wait_delete_completed
302         echo "Creating test directory"
303         mkdir -p $DIR/$tdir
304         chmod 0777 $DIR/$tdir
305         # always clear fail_loc in case of fail_loc isn't cleared
306         # properly when previous test failed
307         lustre_fail mds_ost 0
308 }
309
310 cleanup_quota_test() {
311         trap 0
312         echo "Delete files..."
313         rm -rf $DIR/$tdir
314         echo "Wait for unlink objects finished..."
315         wait_delete_completed
316         sync_all_data || true
317 }
318
319 quota_show_check() {
320         local bf=$1
321         local ug=$2
322         local qid=$3
323         local usage
324
325         $LFS quota -v -$ug $qid $DIR
326
327         if [ "$bf" == "a" -o "$bf" == "b" ]; then
328                 usage=$(getquota -$ug $qid global curspace)
329                 if [ -z $usage ]; then
330                         quota_error $ug $qid \
331                                 "Query block quota failed ($ug:$qid)."
332                 else
333                         [ $usage -ne 0 ] && quota_log $ug $qid \
334                                 "Block quota isn't 0 ($ug:$qid:$usage)."
335                 fi
336         fi
337
338         if [ "$bf" == "a" -o "$bf" == "f" ]; then
339                 usage=$(getquota -$ug $qid global curinodes)
340                 if [ -z $usage ]; then
341                         quota_error $ug $qid \
342                                 "Query file quota failed ($ug:$qid)."
343                 else
344                         [ $usage -ne 0 ] && quota_log $ug $qid \
345                                 "File quota isn't 0 ($ug:$qid:$usage)."
346                 fi
347         fi
348 }
349
350 # enable quota debug
351 quota_init() {
352         do_nodes $(comma_list $(nodes_list)) "lctl set_param debug=+quota"
353 }
354 quota_init
355
356 resetquota -u $TSTUSR
357 resetquota -g $TSTUSR
358 resetquota -u $TSTUSR2
359 resetquota -g $TSTUSR2
360
361 test_quota_performance() {
362         local TESTFILE="$DIR/$tdir/$tfile-0"
363         local size=$1 # in MB
364         local stime=$(date +%s)
365         $RUNAS $DD of=$TESTFILE count=$size conv=fsync ||
366                 quota_error u $TSTUSR "write failure"
367         local etime=$(date +%s)
368         delta=$((etime - stime))
369         if [ $delta -gt 0 ]; then
370             rate=$((size * 1024 / delta))
371             if [ $(facet_fstype $SINGLEMDS) = "zfs" ]; then
372                 # LU-2872 - see LU-2887 for fix
373                 [ $rate -gt 64 ] ||
374                         error "SLOW IO for $TSTUSR (user): $rate KB/sec"
375             else
376                 [ $rate -gt 1024 ] ||
377                         error "SLOW IO for $TSTUSR (user): $rate KB/sec"
378             fi
379         fi
380         rm -f $TESTFILE
381 }
382
383 # test basic quota performance b=21696
384 test_0() {
385         local MB=100 # 100M
386         [ "$SLOW" = "no" ] && MB=10
387
388         local free_space=$(lfs_df | grep "summary" | awk '{print $4}')
389         [ $free_space -le $((MB * 1024)) ] &&
390                 skip "not enough space ${free_space} KB, " \
391                         "required $((MB * 1024)) KB" && return
392         setup_quota_test
393         trap cleanup_quota_test EXIT
394
395         set_ost_qtype "none" || error "disable ost quota failed"
396         test_quota_performance $MB
397
398         set_ost_qtype "ug" || error "enable ost quota failed"
399         $LFS setquota -u $TSTUSR -b 0 -B 10G -i 0 -I 0 $DIR ||
400                 error "set quota failed"
401         test_quota_performance $MB
402
403         cleanup_quota_test
404         resetquota -u $TSTUSR
405 }
406 run_test 0 "Test basic quota performance"
407
408 # test block hardlimit
409 test_1() {
410         local LIMIT=10  # 10M
411         local TESTFILE="$DIR/$tdir/$tfile-0"
412
413         setup_quota_test
414         trap cleanup_quota_test EXIT
415
416         # enable ost quota
417         set_ost_qtype "ug" || "enable ost quota failed"
418
419         # test for user
420         log "User quota (block hardlimit:$LIMIT MB)"
421         $LFS setquota -u $TSTUSR -b 0 -B ${LIMIT}M -i 0 -I 0 $DIR ||
422                 error "set user quota failed"
423
424         # make sure the system is clean
425         local USED=$(getquota -u $TSTUSR global curspace)
426         [ $USED -ne 0 ] && error "Used space($USED) for user $TSTUSR isn't 0."
427
428         $LFS setstripe $TESTFILE -c 1
429         chown $TSTUSR.$TSTUSR $TESTFILE
430
431         log "Write..."
432         $RUNAS $DD of=$TESTFILE count=$((LIMIT/2)) ||
433                 quota_error u $TSTUSR "user write failure, but expect success"
434         log "Write out of block quota ..."
435         # this time maybe cache write,  ignore it's failure
436         $RUNAS $DD of=$TESTFILE count=$((LIMIT/2)) seek=$((LIMIT/2)) || true
437         # flush cache, ensure noquota flag is set on client
438         cancel_lru_locks osc
439         $RUNAS $DD of=$TESTFILE count=1 seek=$LIMIT &&
440                 quota_error u $TSTUSR "user write success, but expect EDQUOT"
441
442         rm -f $TESTFILE
443         wait_delete_completed
444         sync_all_data || true
445         USED=$(getquota -u $TSTUSR global curspace)
446         [ $USED -ne 0 ] && quota_error u $TSTUSR \
447                 "user quota isn't released after deletion"
448         resetquota -u $TSTUSR
449
450         # test for group
451         log "--------------------------------------"
452         log "Group quota (block hardlimit:$LIMIT MB)"
453         $LFS setquota -g $TSTUSR -b 0 -B ${LIMIT}M -i 0 -I 0 $DIR ||
454                 error "set group quota failed"
455
456         TESTFILE="$DIR/$tdir/$tfile-1"
457         # make sure the system is clean
458         USED=$(getquota -g $TSTUSR global curspace)
459         [ $USED -ne 0 ] && error "Used space($USED) for group $TSTUSR isn't 0"
460
461         $LFS setstripe $TESTFILE -c 1
462         chown $TSTUSR.$TSTUSR $TESTFILE
463
464         log "Write ..."
465         $RUNAS $DD of=$TESTFILE count=$((LIMIT/2)) ||
466                 quota_error g $TSTUSR "group write failure, but expect success"
467         log "Write out of block quota ..."
468         # this time maybe cache write, ignore it's failure
469         $RUNAS $DD of=$TESTFILE count=$((LIMIT/2)) seek=$((LIMIT/2)) || true
470         cancel_lru_locks osc
471         $RUNAS $DD of=$TESTFILE count=10 seek=$LIMIT &&
472                 quota_error g $TSTUSR "group write success, but expect EDQUOT"
473
474         # cleanup
475         cleanup_quota_test
476
477         USED=$(getquota -g $TSTUSR global curspace)
478         [ $USED -ne 0 ] && quota_error g $TSTUSR \
479                 "group quota isn't released after deletion"
480
481         resetquota -g $TSTUSR
482 }
483 run_test 1 "Block hard limit (normal use and out of quota)"
484
485 # test inode hardlimit
486 test_2() {
487         local LIMIT=$((1024 * 1024)) # 1M inodes
488         local TESTFILE="$DIR/$tdir/$tfile-0"
489
490         [ "$SLOW" = "no" ] && LIMIT=1024 # 1k inodes
491
492         local FREE_INODES=$(mdt_free_inodes 0)
493         echo "$FREE_INODES free inodes on master MDT"
494         [ $FREE_INODES -lt $LIMIT ] &&
495                 skip "not enough free inodes $FREE_INODES required $LIMIT" &&
496                 return
497
498         setup_quota_test
499         trap cleanup_quota_test EXIT
500
501         # enable mdt quota
502         set_mdt_qtype "ug" || "enable mdt quota failed"
503
504         # test for user
505         log "User quota (inode hardlimit:$LIMIT files)"
506         $LFS setquota -u $TSTUSR -b 0 -B 0 -i 0 -I $LIMIT $DIR ||
507                 error "set user quota failed"
508
509         # make sure the system is clean
510         local USED=$(getquota -u $TSTUSR global curinodes)
511         [ $USED -ne 0 ] && error "Used inodes($USED) for user $TSTUSR isn't 0."
512
513         log "Create $LIMIT files ..."
514         $RUNAS createmany -m ${TESTFILE} $LIMIT || \
515                 quota_error u $TSTUSR "user create failure, but expect success"
516         log "Create out of file quota ..."
517         $RUNAS touch ${TESTFILE}_xxx && \
518                 quota_error u $TSTUSR "user create success, but expect EDQUOT"
519
520         # cleanup
521         unlinkmany ${TESTFILE} $LIMIT
522         rm -f ${TESTFILE}_xxx
523         wait_delete_completed
524
525         USED=$(getquota -u $TSTUSR global curinodes)
526         [ $USED -ne 0 ] && quota_error u $TSTUSR \
527                 "user quota isn't released after deletion"
528         resetquota -u $TSTUSR
529
530         # test for group
531         log "--------------------------------------"
532         log "Group quota (inode hardlimit:$LIMIT files)"
533         $LFS setquota -g $TSTUSR -b 0 -B 0 -i 0 -I $LIMIT $DIR ||
534                 error "set group quota failed"
535
536         TESTFILE=$DIR/$tdir/$tfile-1
537         # make sure the system is clean
538         USED=$(getquota -g $TSTUSR global curinodes)
539         [ $USED -ne 0 ] && error "Used inodes($USED) for group $TSTUSR isn't 0."
540
541         log "Create $LIMIT files ..."
542         $RUNAS createmany -m ${TESTFILE} $LIMIT ||
543                 quota_error g $TSTUSR "group create failure, but expect success"
544         log "Create out of file quota ..."
545         $RUNAS touch ${TESTFILE}_xxx && \
546                 quota_error g $TSTUSR "group create success, but expect EDQUOT"
547
548         # cleanup
549         unlinkmany ${TESTFILE} $LIMIT
550         rm -f ${TESTFILE}_xxx
551         wait_delete_completed
552
553         USED=$(getquota -g $TSTUSR global curinodes)
554         [ $USED -ne 0 ] && quota_error g $TSTUSR \
555                 "user quota isn't released after deletion"
556
557         cleanup_quota_test
558         resetquota -g $TSTUSR
559 }
560 run_test 2 "File hard limit (normal use and out of quota)"
561
562 test_block_soft() {
563         local TESTFILE=$1
564         local TIMER=$(($2 * 3 / 2))
565         local LIMIT=$3
566         local OFFSET=0
567
568         setup_quota_test
569         trap cleanup_quota_test EXIT
570
571         $LFS setstripe $TESTFILE -c 1 -i 0
572         chown $TSTUSR.$TSTUSR $TESTFILE
573
574         echo "Write up to soft limit"
575         $RUNAS $DD of=$TESTFILE count=$LIMIT ||
576                 quota_error a $TSTUSR "write failure, but expect success"
577         OFFSET=$((LIMIT * 1024))
578         cancel_lru_locks osc
579
580         echo "Write to exceed soft limit"
581         $RUNAS dd if=/dev/zero of=$TESTFILE bs=1K count=10 seek=$OFFSET ||
582                 quota_error a $TSTUSR "write failure, but expect success"
583         OFFSET=$((OFFSET + 1024)) # make sure we don't write to same block
584         cancel_lru_locks osc
585
586         $SHOW_QUOTA_USER
587         $SHOW_QUOTA_GROUP
588         $SHOW_QUOTA_INFO_USER
589         $SHOW_QUOTA_INFO_GROUP
590
591         echo "Write before timer goes off"
592         $RUNAS dd if=/dev/zero of=$TESTFILE bs=1K count=10 seek=$OFFSET ||
593                 quota_error a $TSTUSR "write failure, but expect success"
594         OFFSET=$((OFFSET + 1024))
595         cancel_lru_locks osc
596
597         echo "Sleep $TIMER seconds ..."
598         sleep $TIMER
599
600         $SHOW_QUOTA_USER
601         $SHOW_QUOTA_GROUP
602         $SHOW_QUOTA_INFO_USER
603         $SHOW_QUOTA_INFO_GROUP
604
605         echo "Write after timer goes off"
606         # maybe cache write, ignore.
607         $RUNAS dd if=/dev/zero of=$TESTFILE bs=1K count=10 seek=$OFFSET || true
608         OFFSET=$((OFFSET + 1024))
609         cancel_lru_locks osc
610         $RUNAS dd if=/dev/zero of=$TESTFILE bs=1K count=10 seek=$OFFSET &&
611                 quota_error a $TSTUSR "write success, but expect EDQUOT"
612
613         $SHOW_QUOTA_USER
614         $SHOW_QUOTA_GROUP
615         $SHOW_QUOTA_INFO_USER
616         $SHOW_QUOTA_INFO_GROUP
617
618         echo "Unlink file to stop timer"
619         rm -f $TESTFILE
620         wait_delete_completed
621         sync_all_data || true
622
623         $SHOW_QUOTA_USER
624         $SHOW_QUOTA_GROUP
625         $SHOW_QUOTA_INFO_USER
626         $SHOW_QUOTA_INFO_GROUP
627
628         $LFS setstripe $TESTFILE -c 1 -i 0
629         chown $TSTUSR.$TSTUSR $TESTFILE
630
631         echo "Write ..."
632         $RUNAS $DD of=$TESTFILE count=$LIMIT ||
633                 quota_error a $TSTUSR "write failure, but expect success"
634         # cleanup
635         cleanup_quota_test
636 }
637
638 # block soft limit
639 test_3() {
640         local LIMIT=1  # 1MB
641         local GRACE=20 # 20s
642         local TESTFILE=$DIR/$tdir/$tfile-0
643
644         set_ost_qtype "ug" || error "enable ost quota failed"
645
646         echo "User quota (soft limit:$LIMIT MB  grace:$GRACE seconds)"
647         # make sure the system is clean
648         local USED=$(getquota -u $TSTUSR global curspace)
649         [ $USED -ne 0 ] && error "Used space($USED) for user $TSTUSR isn't 0."
650
651         $LFS setquota -t -u --block-grace $GRACE --inode-grace \
652                 $MAX_IQ_TIME $DIR || error "set user grace time failed"
653         $LFS setquota -u $TSTUSR -b ${LIMIT}M -B 0 -i 0 -I 0 $DIR ||
654                 error "set user quota failed"
655
656         test_block_soft $TESTFILE $GRACE $LIMIT
657         resetquota -u $TSTUSR
658
659         echo "Group quota (soft limit:$LIMIT MB  grace:$GRACE seconds)"
660         TESTFILE=$DIR/$tdir/$tfile-1
661         # make sure the system is clean
662         USED=$(getquota -g $TSTUSR global curspace)
663         [ $USED -ne 0 ] && error "Used space($USED) for group $TSTUSR isn't 0."
664
665         $LFS setquota -t -g --block-grace $GRACE --inode-grace \
666                 $MAX_IQ_TIME $DIR || error "set group grace time failed"
667         $LFS setquota -g $TSTUSR -b ${LIMIT}M -B 0 -i 0 -I 0 $DIR ||
668                 error "set group quota failed"
669
670         test_block_soft $TESTFILE $GRACE $LIMIT
671         resetquota -g $TSTUSR
672
673         # cleanup
674         $LFS setquota -t -u --block-grace $MAX_DQ_TIME --inode-grace \
675                 $MAX_IQ_TIME $DIR || error "restore user grace time failed"
676         $LFS setquota -t -g --block-grace $MAX_DQ_TIME --inode-grace \
677                 $MAX_IQ_TIME $DIR || error "restore group grace time failed"
678 }
679 run_test 3 "Block soft limit (start timer, timer goes off, stop timer)"
680
681 test_file_soft() {
682         local TESTFILE=$1
683         local LIMIT=$2
684         local TIMER=$(($3 * 3 / 2))
685
686         setup_quota_test
687         trap cleanup_quota_test EXIT
688
689         echo "Create files to exceed soft limit"
690         $RUNAS createmany -m ${TESTFILE}_ $((LIMIT + 1)) ||
691                 quota_error a $TSTUSR "create failure, but expect success"
692         sync; sleep 1; sync
693
694         echo "Create file before timer goes off"
695         $RUNAS touch ${TESTFILE}_before ||
696                 quota_error a $TSTUSR "failed create before timer expired," \
697                         "but expect success"
698         sync; sleep 1; sync
699
700         echo "Sleep $TIMER seconds ..."
701         sleep $TIMER
702
703         $SHOW_QUOTA_USER
704         $SHOW_QUOTA_GROUP
705         $SHOW_QUOTA_INFO_USER
706         $SHOW_QUOTA_INFO_GROUP
707
708         echo "Create file after timer goes off"
709         # There is a window that space is accounted in the quota usage but
710         # hasn't been decreased from the pending write, if we acquire quota
711         # in this window, we'll acquire more than we needed.
712         $RUNAS touch ${TESTFILE}_after_1 ${TESTFILE}_after_2 || true
713         sync; sleep 1; sync
714         $RUNAS touch ${TESTFILE}_after_3 &&
715                 quota_error a $TSTUSR "create after timer expired," \
716                         "but expect EDQUOT"
717         sync; sleep 1; sync
718
719         $SHOW_QUOTA_USER
720         $SHOW_QUOTA_GROUP
721         $SHOW_QUOTA_INFO_USER
722         $SHOW_QUOTA_INFO_GROUP
723
724         echo "Unlink files to stop timer"
725         find $(dirname $TESTFILE) -name "$(basename ${TESTFILE})*" | xargs rm -f
726         wait_delete_completed
727
728         echo "Create file"
729         $RUNAS touch ${TESTFILE}_xxx ||
730                 quota_error a $TSTUSR "touch after timer stop failure," \
731                         "but expect success"
732         sync; sleep 1; sync
733
734         # cleanup
735         cleanup_quota_test
736 }
737
738 # file soft limit
739 test_4a() {
740         local LIMIT=10 # inodes
741         local TESTFILE=$DIR/$tdir/$tfile-0
742         local GRACE=5
743
744         set_mdt_qtype "ug" || error "enable mdt quota failed"
745
746         echo "User quota (soft limit:$LIMIT files  grace:$GRACE seconds)"
747         # make sure the system is clean
748         local USED=$(getquota -u $TSTUSR global curinodes)
749         [ $USED -ne 0 ] && error "Used space($USED) for user $TSTUSR isn't 0."
750
751         $LFS setquota -t -u --block-grace $MAX_DQ_TIME --inode-grace \
752                 $GRACE $DIR || error "set user grace time failed"
753         $LFS setquota -u $TSTUSR -b 0 -B 0 -i $LIMIT -I 0 $DIR ||
754                 error "set user quota failed"
755
756         test_file_soft $TESTFILE $LIMIT $GRACE
757         resetquota -u $TSTUSR
758
759         echo "Group quota (soft limit:$LIMIT files  grace:$GRACE seconds)"
760         # make sure the system is clean
761         USED=$(getquota -g $TSTUSR global curinodes)
762         [ $USED -ne 0 ] && error "Used space($USED) for group $TSTUSR isn't 0."
763
764         $LFS setquota -t -g --block-grace $MAX_DQ_TIME --inode-grace \
765                 $GRACE $DIR || error "set group grace time failed"
766         $LFS setquota -g $TSTUSR -b 0 -B 0 -i $LIMIT -I 0 $DIR ||
767                 error "set group quota failed"
768         TESTFILE=$DIR/$tdir/$tfile-1
769
770         test_file_soft $TESTFILE $LIMIT $GRACE
771         resetquota -g $TSTUSR
772
773         # cleanup
774         $LFS setquota -t -u --block-grace $MAX_DQ_TIME --inode-grace \
775                 $MAX_IQ_TIME $DIR || error "restore user grace time failed"
776         $LFS setquota -t -g --block-grace $MAX_DQ_TIME --inode-grace \
777                 $MAX_IQ_TIME $DIR || error "restore group grace time failed"
778 }
779 run_test 4a "File soft limit (start timer, timer goes off, stop timer)"
780
781 test_4b() {
782         local GR_STR1="1w3d"
783         local GR_STR2="1000s"
784         local GR_STR3="5s"
785         local GR_STR4="1w2d3h4m5s"
786         local GR_STR5="5c"
787         local GR_STR6="1111111111111111"
788
789         wait_delete_completed
790
791         # test of valid grace strings handling
792         echo "Valid grace strings test"
793         $LFS setquota -t -u --block-grace $GR_STR1 --inode-grace \
794                 $GR_STR2 $DIR || error "set user grace time failed"
795         $LFS quota -u -t $DIR | grep "Block grace time: $GR_STR1"
796         $LFS setquota -t -g --block-grace $GR_STR3 --inode-grace \
797                 $GR_STR4 $DIR || error "set group grace time quota failed"
798         $LFS quota -g -t $DIR | grep "Inode grace time: $GR_STR4"
799
800         # test of invalid grace strings handling
801         echo "  Invalid grace strings test"
802         ! $LFS setquota -t -u --block-grace $GR_STR4 --inode-grace $GR_STR5 $DIR
803         ! $LFS setquota -t -g --block-grace $GR_STR4 --inode-grace $GR_STR6 $DIR
804
805         # cleanup
806         $LFS setquota -t -u --block-grace $MAX_DQ_TIME --inode-grace \
807                 $MAX_IQ_TIME $DIR || error "restore user grace time failed"
808         $LFS setquota -t -g --block-grace $MAX_DQ_TIME --inode-grace \
809                 $MAX_IQ_TIME $DIR || error "restore group grace time failed"
810 }
811 run_test 4b "Grace time strings handling"
812
813 # chown & chgrp (chown & chgrp successfully even out of block/file quota)
814 test_5() {
815         local BLIMIT=10 # 10M
816         local ILIMIT=10 # 10 inodes
817
818         setup_quota_test
819         trap cleanup_quota_test EXIT
820
821         set_mdt_qtype "ug" || error "enable mdt quota failed"
822         set_ost_qtype "ug" || error "enable ost quota failed"
823
824         echo "Set quota limit (0 ${BLIMIT}M 0 $ILIMIT) for $TSTUSR.$TSTUSR"
825         $LFS setquota -u $TSTUSR -b 0 -B ${BLIMIT}M -i 0 -I $ILIMIT $DIR ||
826                 error "set user quota failed"
827         $LFS setquota -g $TSTUSR -b 0 -B ${BLIMIT}M -i 0 -I $ILIMIT $DIR ||
828                 error "set group quota failed"
829
830         # make sure the system is clean
831         local USED=$(getquota -u $TSTUSR global curinodes)
832         [ $USED -ne 0 ] && error "Used inode($USED) for user $TSTUSR isn't 0."
833         USED=$(getquota -g $TSTUSR global curinodes)
834         [ $USED -ne 0 ] && error "Used inode($USED) for group $TSTUSR isn't 0."
835         USED=$(getquota -u $TSTUSR global curspace)
836         [ $USED -ne 0 ] && error "Used block($USED) for user $TSTUSR isn't 0."
837         USED=$(getquota -g $TSTUSR global curspace)
838         [ $USED -ne 0 ] && error "Used block($USED) for group $TSTUSR isn't 0."
839
840         echo "Create more than $ILIMIT files and more than $BLIMIT MB ..."
841         createmany -m $DIR/$tdir/$tfile-0_ $((ILIMIT + 1)) ||
842                 error "create failure, expect success"
843         $DD of=$DIR/$tdir/$tfile-0_1 count=$((BLIMIT+1)) ||
844                 error "write failure, expect success"
845
846         echo "Chown files to $TSTUSR.$TSTUSR ..."
847         for i in `seq 0 $ILIMIT`; do
848                 chown $TSTUSR.$TSTUSR $DIR/$tdir/$tfile-0_$i ||
849                         quota_error a $TSTUSR "chown failure, expect success"
850         done
851
852         # cleanup
853         unlinkmany $DIR/$tdir/$tfile-0_ $((ILIMIT + 1))
854         cleanup_quota_test
855
856         resetquota -u $TSTUSR
857         resetquota -g $TSTUSR
858 }
859 run_test 5 "Chown & chgrp successfully even out of block/file quota"
860
861 # test dropping acquire request on master
862 test_6() {
863         # LU-4422
864         [ $MDSCOUNT -ge 2 ] && skip "disable test_6 for DNE temporary" && return
865
866         local LIMIT=3 # 3M
867
868         # Clear dmesg so watchdog is not triggered by previous
869         # test output
870         do_facet ost1 dmesg -c > /dev/null
871
872         setup_quota_test
873         trap cleanup_quota_test EXIT
874
875         # make sure the system is clean
876         local USED=$(getquota -u $TSTUSR global curspace)
877         [ $USED -ne 0 ] && error "Used space($USED) for user $TSTUSR isn't 0."
878
879         # make sure no granted quota on ost
880         set_ost_qtype "ug" || error "enable ost quota failed"
881         resetquota -u $TSTUSR
882
883         # create file for $TSTUSR
884         local TESTFILE=$DIR/$tdir/$tfile-$TSTUSR
885         $LFS setstripe $TESTFILE -c 1 -i 0
886         chown $TSTUSR.$TSTUSR $TESTFILE
887
888         # create file for $TSTUSR2
889         local TESTFILE2=$DIR/$tdir/$tfile-$TSTUSR2
890         $LFS setstripe $TESTFILE2 -c 1 -i 0
891         chown $TSTUSR2.$TSTUSR2 $TESTFILE2
892
893         # cache per-ID lock for $TSTUSR on slave
894         $LFS setquota -u $TSTUSR -b 0 -B ${LIMIT}M -i 0 -I 0 $DIR ||
895                 error "set quota failed"
896         $RUNAS $DD of=$TESTFILE count=1 ||
897                 error "write $TESTFILE failure, expect success"
898         $RUNAS2 $DD of=$TESTFILE2 count=1 ||
899                 error "write $TESTFILE2 failure, expect success"
900         sync; sync
901         sync_all_data || true
902
903         #define QUOTA_DQACQ 601
904         #define OBD_FAIL_PTLRPC_DROP_REQ_OPC 0x513
905         lustre_fail mds 0x513 601
906
907         # write to un-enforced ID ($TSTUSR2) should succeed
908         $RUNAS2 $DD of=$TESTFILE2 count=$LIMIT seek=1 oflag=sync conv=notrunc ||
909                 error "write failure, expect success"
910
911         # write to enforced ID ($TSTUSR) in background, exceeding limit
912         # to make sure DQACQ is sent
913         $RUNAS $DD of=$TESTFILE count=$LIMIT seek=1 oflag=sync conv=notrunc &
914         DDPID=$!
915
916         # watchdog timer uses a factor of 2
917         echo "Sleep for $((TIMEOUT * 2 + 1)) seconds ..."
918         sleep $((TIMEOUT * 2 + 1))
919
920         # write should be blocked and never finished
921         if ! ps -p $DDPID  > /dev/null 2>&1; then
922                 lustre_fail mds 0 0
923                 error "write finished incorrectly!"
924         fi
925
926         lustre_fail mds 0 0
927
928         # no watchdog is triggered
929         do_facet ost1 dmesg > $TMP/lustre-log-${TESTNAME}.log
930         watchdog=$(awk '/Service thread pid/ && /was inactive/ \
931                         { print; }' $TMP/lustre-log-${TESTNAME}.log)
932         [ -z "$watchdog" ] || error "$watchdog"
933
934         rm -f $TMP/lustre-log-${TESTNAME}.log
935
936         # write should continue & succeed
937         local count=0
938         local o_size=$(stat -c %s $TESTFILE)
939         local c_size
940         while [ true ]; do
941                 if ! ps -p ${DDPID} > /dev/null 2>&1; then break; fi
942                 if [ $count -ge 240 ]; then
943                         quota_error u $TSTUSR "dd not finished in $count secs"
944                 fi
945                 count=$((count + 1))
946                 if [ $((count % 30)) -eq 0 ]; then
947                         c_size=$(stat -c %s $TESTFILE)
948                         if [ $c_size -eq $o_size ]; then
949                                 quota_error u $TSTUSR "file not growed" \
950                                 "in 30 seconds $o_size/$c_size"
951                         else
952                                 echo "Waiting $count secs. $o_size/$c_size"
953                                 o_size=$c_size
954                         fi
955                 fi
956                 sleep 1
957         done
958
959         cleanup_quota_test
960         resetquota -u $TSTUSR
961 }
962 run_test 6 "Test dropping acquire request on master"
963
964 # quota reintegration (global index)
965 test_7a() {
966         local TESTFILE=$DIR/$tdir/$tfile
967         local LIMIT=20 # 20M
968
969         [ "$SLOW" = "no" ] && LIMIT=5
970
971         setup_quota_test
972         trap cleanup_quota_test EXIT
973
974         # make sure the system is clean
975         local USED=$(getquota -u $TSTUSR global curspace)
976         [ $USED -ne 0 ] && error "Used space($USED) for user $TSTUSR isn't 0."
977
978         # make sure no granted quota on ost1
979         set_ost_qtype "ug" || error "enable ost quota failed"
980         resetquota -u $TSTUSR
981         set_ost_qtype "none" || error "disable ost quota failed"
982
983         local OSTUUID=$(ostuuid_from_index 0)
984         USED=$(getquota -u $TSTUSR $OSTUUID bhardlimit)
985         [ $USED -ne 0 ] && error "limit($USED) on $OSTUUID for user" \
986                 "$TSTUSR isn't 0."
987
988         # create test file
989         $LFS setstripe $TESTFILE -c 1 -i 0
990         chown $TSTUSR.$TSTUSR $TESTFILE
991
992         echo "Stop ost1..."
993         stop ost1
994
995         echo "Enable quota & set quota limit for $TSTUSR"
996         set_ost_qtype "ug" || error "enable ost quota failed"
997         $LFS setquota -u $TSTUSR -b 0 -B ${LIMIT}M -i 0 -I 0 $DIR ||
998                 error "set quota failed"
999
1000         echo "Start ost1..."
1001         start ost1 $(ostdevname 1) $OST_MOUNT_OPTS
1002         quota_init
1003
1004         wait_ost_reint "ug" || error "reintegration failed"
1005
1006         # hardlimit should have been fetched by slave during global
1007         # reintegration, write will exceed quota
1008         $RUNAS $DD of=$TESTFILE count=$((LIMIT + 1)) oflag=sync &&
1009                 quota_error u $TSTUSR "write success, but expect EDQUOT"
1010
1011         rm -f $TESTFILE
1012         wait_delete_completed
1013         sync_all_data || true
1014         sleep 3
1015
1016         echo "Stop ost1..."
1017         stop ost1
1018
1019         $LFS setquota -u $TSTUSR -b 0 -B 0 -i 0 -I 0 $DIR ||
1020                 error "clear quota failed"
1021
1022         echo "Start ost1..."
1023         start ost1 $(ostdevname 1) $OST_MOUNT_OPTS
1024         quota_init
1025
1026         wait_ost_reint "ug" || error "reintegration failed"
1027
1028         # hardlimit should be cleared on slave during reintegration
1029         $RUNAS $DD of=$TESTFILE count=$((LIMIT + 1)) oflag=sync ||
1030                 quota_error u $TSTUSR "write error, but expect success"
1031
1032         cleanup_quota_test
1033         resetquota -u $TSTUSR
1034 }
1035 run_test 7a "Quota reintegration (global index)"
1036
1037 # quota reintegration (slave index)
1038 test_7b() {
1039         local LIMIT="100G"
1040         local TESTFILE=$DIR/$tdir/$tfile
1041
1042         setup_quota_test
1043         trap cleanup_quota_test EXIT
1044
1045         # make sure the system is clean
1046         local USED=$(getquota -u $TSTUSR global curspace)
1047         [ $USED -ne 0 ] && error "Used space($USED) for user $TSTUSR isn't 0."
1048
1049         # make sure no granted quota on ost1
1050         set_ost_qtype "ug" || error "enable ost quota failed"
1051         resetquota -u $TSTUSR
1052         set_ost_qtype "none" || error "disable ost quota failed"
1053
1054         local OSTUUID=$(ostuuid_from_index 0)
1055         USED=$(getquota -u $TSTUSR $OSTUUID bhardlimit)
1056         [ $USED -ne 0 ] && error "limit($USED) on $OSTUUID for user" \
1057                 "$TSTUSR isn't 0."
1058
1059         # create test file
1060         $LFS setstripe $TESTFILE -c 1 -i 0
1061         chown $TSTUSR.$TSTUSR $TESTFILE
1062
1063         # consume some space to make sure the granted space will not
1064         # be released during reconciliation
1065         $RUNAS $DD of=$TESTFILE count=1 oflag=sync ||
1066                 error "consume space failure, expect success"
1067
1068         # define OBD_FAIL_QUOTA_EDQUOT 0xa02
1069         lustre_fail mds 0xa02
1070
1071         set_ost_qtype "ug" || error "enable ost quota failed"
1072         $LFS setquota -u $TSTUSR -b 0 -B $LIMIT -i 0 -I 0 $DIR ||
1073                 error "set quota failed"
1074
1075         # ignore the write error
1076         $RUNAS $DD of=$TESTFILE count=1 seek=1 oflag=sync conv=notrunc
1077
1078         local old_used=$(getquota -u $TSTUSR $OSTUUID bhardlimit)
1079
1080         lustre_fail mds 0
1081
1082         echo "Restart ost to trigger reintegration..."
1083         stop ost1
1084         start ost1 $(ostdevname 1) $OST_MOUNT_OPTS
1085         quota_init
1086
1087         wait_ost_reint "ug" || error "reintegration failed"
1088
1089         USED=$(getquota -u $TSTUSR $OSTUUID bhardlimit)
1090         [ $USED -gt $old_used ] || error "limit on $OSTUUID $USED <= $old_used"
1091
1092         cleanup_quota_test
1093         resetquota -u $TSTUSR
1094         $SHOW_QUOTA_USER
1095 }
1096 run_test 7b "Quota reintegration (slave index)"
1097
1098 # quota reintegration (restart mds during reintegration)
1099 test_7c() {
1100         local LIMIT=20 # 20M
1101         local TESTFILE=$DIR/$tdir/$tfile
1102
1103         [ "$SLOW" = "no" ] && LIMIT=5
1104
1105         setup_quota_test
1106         trap cleanup_quota_test EXIT
1107
1108         # make sure the system is clean
1109         local USED=$(getquota -u $TSTUSR global curspace)
1110         [ $USED -ne 0 ] && error "Used space($USED) for user $TSTUSR isn't 0."
1111
1112         set_ost_qtype "none" || error "disable ost quota failed"
1113         $LFS setquota -u $TSTUSR -b 0 -B ${LIMIT}M -i 0 -I 0 $DIR ||
1114                 error "set quota failed"
1115
1116         # define OBD_FAIL_QUOTA_DELAY_REINT 0xa03
1117         lustre_fail ost 0xa03
1118
1119         # enable ost quota
1120         set_ost_qtype "ug" || error "enable ost quota failed"
1121         # trigger reintegration
1122         local procf="osd-$(facet_fstype ost1).$FSNAME-OST*."
1123         procf=${procf}quota_slave.force_reint
1124         do_facet ost1 $LCTL set_param $procf=1 ||
1125                 error "force reintegration failed"
1126
1127         echo "Stop mds..."
1128         stop mds1
1129
1130         lustre_fail ost 0
1131
1132         echo "Start mds..."
1133         start mds1 $(mdsdevname 1) $MDS_MOUNT_OPTS
1134         quota_init
1135
1136         # wait longer than usual to make sure the reintegration
1137         # is triggered by quota wb thread.
1138         wait_ost_reint "ug" 200 || error "reintegration failed"
1139
1140         # hardlimit should have been fetched by slave during global
1141         # reintegration, write will exceed quota
1142         $RUNAS $DD of=$TESTFILE count=$((LIMIT + 1)) oflag=sync &&
1143                 quota_error u $TSTUSR "write success, but expect EDQUOT"
1144
1145         cleanup_quota_test
1146         resetquota -u $TSTUSR
1147 }
1148 run_test 7c "Quota reintegration (restart mds during reintegration)"
1149
1150 # Quota reintegration (Transfer index in multiple bulks)
1151 test_7d(){
1152         local TESTFILE=$DIR/$tdir/$tfile
1153         local TESTFILE1="$DIR/$tdir/$tfile"-1
1154         local limit=20 #20M
1155
1156         setup_quota_test
1157         trap cleanup_quota_test EXIT
1158
1159         set_ost_qtype "none" || error "disable ost quota failed"
1160         $LFS setquota -u $TSTUSR -B ${limit}M $DIR ||
1161                 error "set quota for $TSTUSR failed"
1162         $LFS setquota -u $TSTUSR2 -B ${limit}M $DIR ||
1163                 error "set quota for $TSTUSR2 failed"
1164
1165         #define OBD_FAIL_OBD_IDX_READ_BREAK 0x608
1166         lustre_fail mds 0x608 0
1167
1168         # enable quota to tirgger reintegration
1169         set_ost_qtype "u" || error "enable ost quota failed"
1170         wait_ost_reint "u" || error "reintegration failed"
1171
1172         lustre_fail mds 0
1173
1174         # hardlimit should have been fetched by slave during global
1175         # reintegration, write will exceed quota
1176         $RUNAS $DD of=$TESTFILE count=$((limit + 1)) oflag=sync &&
1177                 quota_error u $TSTUSR "$TSTUSR write success, expect EDQUOT"
1178
1179         $RUNAS2 $DD of=$TESTFILE1 count=$((limit + 1)) oflag=sync &&
1180                 quota_error u $TSTUSR2 "$TSTUSR2 write success, expect EDQUOT"
1181
1182         cleanup_quota_test
1183         resetquota -u $TSTUSR
1184         resetquota -u $TSTUSR2
1185 }
1186 run_test 7d "Quota reintegration (Transfer index in multiple bulks)"
1187
1188 # quota reintegration (inode limits)
1189 test_7e() {
1190         [ "$MDSCOUNT" -lt "2" ] && skip "Required more MDTs" && return
1191
1192         local ilimit=$((1024 * 2)) # 2k inodes
1193         local TESTFILE=$DIR/${tdir}-1/$tfile
1194
1195         setup_quota_test
1196         trap cleanup_quota_test EXIT
1197
1198         # make sure the system is clean
1199         local USED=$(getquota -u $TSTUSR global curinodes)
1200         [ $USED -ne 0 ] && error "Used inode($USED) for user $TSTUSR isn't 0."
1201
1202         # make sure no granted quota on mdt1
1203         set_mdt_qtype "ug" || error "enable mdt quota failed"
1204         resetquota -u $TSTUSR
1205         set_mdt_qtype "none" || error "disable mdt quota failed"
1206
1207         local MDTUUID=$(mdtuuid_from_index $((MDSCOUNT - 1)))
1208         USED=$(getquota -u $TSTUSR $MDTUUID ihardlimit)
1209         [ $USED -ne 0 ] && error "limit($USED) on $MDTUUID for user" \
1210                 "$TSTUSR isn't 0."
1211
1212         echo "Stop mds${MDSCOUNT}..."
1213         stop mds${MDSCOUNT}
1214
1215         echo "Enable quota & set quota limit for $TSTUSR"
1216         set_mdt_qtype "ug" || error "enable mdt quota failed"
1217         $LFS setquota -u $TSTUSR -b 0 -B 0 -i 0 -I $ilimit  $DIR ||
1218                 error "set quota failed"
1219
1220         echo "Start mds${MDSCOUNT}..."
1221         start mds${MDSCOUNT} $(mdsdevname $MDSCOUNT) $MDS_MOUNT_OPTS
1222         quota_init
1223
1224         wait_mdt_reint "ug" || error "reintegration failed"
1225
1226         echo "create remote dir"
1227         $LFS mkdir -i $((MDSCOUNT - 1)) $DIR/${tdir}-1 ||
1228                 error "create remote dir failed"
1229         chmod 0777 $DIR/${tdir}-1
1230
1231         # hardlimit should have been fetched by slave during global
1232         # reintegration, create will exceed quota
1233         $RUNAS createmany -m $TESTFILE $((ilimit + 1)) &&
1234                 quota_error u $TSTUSR "create succeeded, expect EDQUOT"
1235
1236         $RUNAS unlinkmany $TESTFILE $ilimit || "unlink files failed"
1237         wait_delete_completed
1238         sync_all_data || true
1239
1240         echo "Stop mds${MDSCOUNT}..."
1241         stop mds${MDSCOUNT}
1242
1243         $LFS setquota -u $TSTUSR -b 0 -B 0 -i 0 -I 0 $DIR ||
1244                 error "clear quota failed"
1245
1246         echo "Start mds${MDSCOUNT}..."
1247         start mds${MDSCOUNT} $(mdsdevname $MDSCOUNT) $MDS_MOUNT_OPTS
1248         quota_init
1249
1250         wait_mdt_reint "ug" || error "reintegration failed"
1251
1252         # hardlimit should be cleared on slave during reintegration
1253         $RUNAS createmany -m $TESTFILE $((ilimit + 1)) ||
1254                 quota_error -u $TSTUSR "create failed, expect success"
1255
1256         $RUNAS unlinkmany $TESTFILE $((ilimit + 1)) || "unlink failed"
1257         rmdir $DIR/${tdir}-1 || "unlink remote dir failed"
1258
1259         cleanup_quota_test
1260         resetquota -u $TSTUSR
1261 }
1262 run_test 7e "Quota reintegration (inode limits)"
1263
1264 # run dbench with quota enabled
1265 test_8() {
1266         local BLK_LIMIT="100g" #100G
1267         local FILE_LIMIT=1000000
1268
1269         setup_quota_test
1270         trap cleanup_quota_test EXIT
1271
1272         set_mdt_qtype "ug" || error "enable mdt quota failed"
1273         set_ost_qtype "ug" || error "enable ost quota failed"
1274
1275         echo "Set enough high limit for user: $TSTUSR"
1276         $LFS setquota -u $TSTUSR -b 0 -B $BLK_LIMIT -i 0 -I $FILE_LIMIT $DIR ||
1277                 error "set user quota failed"
1278         echo "Set enough high limit for group: $TSTUSR"
1279         $LFS setquota -g $TSTUSR -b 0 -B $BLK_LIMIT -i 0 -I $FILE_LIMIT $DIR ||
1280                 error "set group quota failed"
1281
1282         local duration=""
1283         [ "$SLOW" = "no" ] && duration=" -t 120"
1284         $RUNAS bash rundbench -D $DIR/$tdir 3 $duration ||
1285                 quota_error a $TSTUSR "dbench failed!"
1286
1287         cleanup_quota_test
1288         resetquota -u $TSTUSR
1289         resetquota -g $TSTUSR
1290 }
1291 run_test 8 "Run dbench with quota enabled"
1292
1293 # this check is just for test_9
1294 OST0_MIN=4900000 #4.67G
1295
1296 check_whether_skip () {
1297         local OST0_SIZE=$($LFS df $DIR | awk '/\[OST:0\]/ {print $4}')
1298         log "OST0_SIZE: $OST0_SIZE  required: $OST0_MIN"
1299         if [ $OST0_SIZE -lt $OST0_MIN ]; then
1300                 echo "WARN: OST0 has less than $OST0_MIN free, skip this test."
1301                 return 0
1302         else
1303                 return 1
1304         fi
1305 }
1306
1307 # run for fixing bug10707, it needs a big room. test for 64bit
1308 test_9() {
1309         local filesize=$((1024 * 9 / 2)) # 4.5G
1310
1311         check_whether_skip && return 0
1312
1313         setup_quota_test
1314         trap cleanup_quota_test EXIT
1315
1316         set_ost_qtype "ug" || error "enable ost quota failed"
1317
1318         local TESTFILE="$DIR/$tdir/$tfile-0"
1319         local BLK_LIMIT=100G #100G
1320         local FILE_LIMIT=1000000
1321
1322         echo "Set block limit $BLK_LIMIT bytes to $TSTUSR.$TSTUSR"
1323
1324         log "Set enough high limit(block:$BLK_LIMIT; file: $FILE_LIMIT)" \
1325                 "for user: $TSTUSR"
1326         $LFS setquota -u $TSTUSR -b 0 -B $BLK_LIMIT -i 0 -I $FILE_LIMIT $DIR ||
1327                 error "set user quota failed"
1328
1329         log "Set enough high limit(block:$BLK_LIMIT; file: $FILE_LIMIT)" \
1330                 "for group: $TSTUSR"
1331         $LFS setquota -g $TSTUSR -b 0 -B $BLK_LIMIT -i 0 -I $FILE_LIMIT $DIR ||
1332                 error "set group quota failed"
1333
1334         quota_show_check a u $TSTUSR
1335         quota_show_check a g $TSTUSR
1336
1337         echo "Create test file"
1338         $LFS setstripe $TESTFILE -c 1 -i 0
1339         chown $TSTUSR.$TSTUSR $TESTFILE
1340
1341         log "Write the big file of 4.5G ..."
1342         $RUNAS $DD of=$TESTFILE count=$filesize ||
1343                 quota_error a $TSTUSR "write 4.5G file failure, expect success"
1344
1345         $SHOW_QUOTA_USER
1346         $SHOW_QUOTA_GROUP
1347
1348         cleanup_quota_test
1349         resetquota -u $TSTUSR
1350         resetquota -g $TSTUSR
1351
1352         $SHOW_QUOTA_USER
1353         $SHOW_QUOTA_GROUP
1354 }
1355 run_test 9 "Block limit larger than 4GB (b10707)"
1356
1357 test_10() {
1358         local TESTFILE=$DIR/$tdir/$tfile
1359
1360         setup_quota_test
1361         trap cleanup_quota_test EXIT
1362
1363         # set limit to root user should fail
1364         $LFS setquota -u root -b 100G -B 500G -i 1K -I 1M $DIR &&
1365                 error "set limit for root user successfully, expect failure"
1366         $LFS setquota -g root -b 1T -B 10T -i 5K -I 100M $DIR &&
1367                 error "set limit for root group successfully, expect failure"
1368
1369         # root user can overrun quota
1370         set_ost_qtype "ug" || "enable ost quota failed"
1371
1372         $LFS setquota -u $TSTUSR -b 0 -B 2M -i 0 -I 0 $DIR ||
1373                 error "set quota failed"
1374         quota_show_check b u $TSTUSR
1375
1376         $LFS setstripe $TESTFILE -c 1
1377         chown $TSTUSR.$TSTUSR $TESTFILE
1378
1379         runas -u 0 -g 0 $DD of=$TESTFILE count=3 oflag=sync ||
1380                 error "write failure, expect success"
1381
1382         cleanup_quota_test
1383         resetquota -u $TSTUSR
1384 }
1385 run_test 10 "Test quota for root user"
1386
1387 test_11() {
1388         local TESTFILE=$DIR/$tdir/$tfile
1389         setup_quota_test
1390         trap cleanup_quota_test EXIT
1391
1392         set_mdt_qtype "ug" || "enable mdt quota failed"
1393         $LFS setquota -u $TSTUSR -b 0 -B 0 -i 0 -I 1 $DIR ||
1394                 error "set quota failed"
1395
1396         touch "$TESTFILE"-0
1397         touch "$TESTFILE"-1
1398
1399         chown $TSTUSR.$TSTUSR "$TESTFILE"-0
1400         chown $TSTUSR.$TSTUSR "$TESTFILE"-1
1401
1402         $SHOW_QUOTA_USER
1403         local USED=$(getquota -u $TSTUSR global curinodes)
1404         [ $USED -ge 2 ] || error "Used inodes($USED) is less than 2"
1405
1406         cleanup_quota_test
1407         resetquota -u $TSTUSR
1408 }
1409 run_test 11 "Chown/chgrp ignores quota"
1410
1411 test_12a() {
1412         [ "$OSTCOUNT" -lt "2" ] && skip "skipping rebalancing test" && return
1413
1414         local blimit=22 # 22M
1415         local blk_cnt=$((blimit - 5))
1416         local TESTFILE0="$DIR/$tdir/$tfile"-0
1417         local TESTFILE1="$DIR/$tdir/$tfile"-1
1418
1419         setup_quota_test
1420         trap cleanup_quota_test EXIT
1421
1422         set_ost_qtype "u" || "enable ost quota failed"
1423         quota_show_check b u $TSTUSR
1424
1425         $LFS setquota -u $TSTUSR -b 0 -B "$blimit"M -i 0 -I 0 $DIR ||
1426                 error "set quota failed"
1427
1428         $LFS setstripe $TESTFILE0 -c 1 -i 0
1429         $LFS setstripe $TESTFILE1 -c 1 -i 1
1430         chown $TSTUSR.$TSTUSR $TESTFILE0
1431         chown $TSTUSR.$TSTUSR $TESTFILE1
1432
1433         echo "Write to ost0..."
1434         $RUNAS $DD of=$TESTFILE0 count=$blk_cnt oflag=sync ||
1435                 quota_error a $TSTUSR "dd failed"
1436
1437         echo "Write to ost1..."
1438         $RUNAS $DD of=$TESTFILE1 count=$blk_cnt oflag=sync &&
1439                 quota_error a $TSTUSR "dd succeed, expect EDQUOT"
1440
1441         echo "Free space from ost0..."
1442         rm -f $TESTFILE0
1443         wait_delete_completed
1444         sync_all_data || true
1445
1446         echo "Write to ost1 after space freed from ost0..."
1447         $RUNAS $DD of=$TESTFILE1 count=$blk_cnt oflag=sync ||
1448                 quota_error a $TSTUSR "rebalancing failed"
1449
1450         cleanup_quota_test
1451         resetquota -u $TSTUSR
1452 }
1453 run_test 12a "Block quota rebalancing"
1454
1455 test_12b() {
1456         [ "$MDSCOUNT" -lt "2" ] && skip "skipping rebalancing test" && return
1457
1458         local ilimit=$((1024 * 2)) # 2k inodes
1459         local TESTFILE0=$DIR/$tdir/$tfile
1460         local TESTFILE1=$DIR/${tdir}-1/$tfile
1461
1462         setup_quota_test
1463         trap cleanup_quota_test EXIT
1464
1465         $LFS mkdir -i 1 $DIR/${tdir}-1 || error "create remote dir failed"
1466         chmod 0777 $DIR/${tdir}-1
1467
1468         set_mdt_qtype "u" || "enable mdt quota failed"
1469         quota_show_check f u $TSTUSR
1470
1471         $LFS setquota -u $TSTUSR -b 0 -B 0 -i 0 -I $ilimit $DIR ||
1472                 error "set quota failed"
1473
1474         echo "Create $ilimit files on mdt0..."
1475         $RUNAS createmany -m $TESTFILE0 $ilimit ||
1476                 quota_error u $TSTUSR "create failed, but expect success"
1477
1478         echo "Create files on mdt1..."
1479         $RUNAS createmany -m $TESTFILE1 1 &&
1480                 quota_error a $TSTUSR "create succeeded, expect EDQUOT"
1481
1482         echo "Free space from mdt0..."
1483         $RUNAS unlinkmany $TESTFILE0 $ilimit || error "unlink mdt0 files failed"
1484         wait_delete_completed
1485         sync_all_data || true
1486
1487         echo "Create files on mdt1 after space freed from mdt0..."
1488         $RUNAS createmany -m $TESTFILE1 $((ilimit / 2)) ||
1489                 quota_error a $TSTUSR "rebalancing failed"
1490
1491         $RUNAS unlinkmany $TESTFILE1 $((ilimit / 2)) ||
1492                 error "unlink mdt1 files failed"
1493         rmdir $DIR/${tdir}-1 || error "unlink remote dir failed"
1494
1495         cleanup_quota_test
1496         resetquota -u $TSTUSR
1497 }
1498 run_test 12b "Inode quota rebalancing"
1499
1500 test_13(){
1501         local TESTFILE=$DIR/$tdir/$tfile
1502         # the name of lwp on ost1 name is MDT0000-lwp-OST0000
1503         local procf="ldlm.namespaces.*MDT0000-lwp-OST0000.lru_size"
1504
1505         setup_quota_test
1506         trap cleanup_quota_test EXIT
1507
1508         set_ost_qtype "u" || "enable ost quota failed"
1509         quota_show_check b u $TSTUSR
1510
1511         $LFS setquota -u $TSTUSR -b 0 -B 10M -i 0 -I 0 $DIR ||
1512                 error "set quota failed"
1513         $LFS setstripe $TESTFILE -c 1 -i 0
1514         chown $TSTUSR.$TSTUSR $TESTFILE
1515
1516         # clear the locks in cache first
1517         do_facet ost1 $LCTL set_param -n $procf=clear
1518         local nlock=$(do_facet ost1 $LCTL get_param -n $procf)
1519         [ $nlock -eq 0 ] || error "$nlock cached locks"
1520
1521         # write to acquire the per-ID lock
1522         $RUNAS $DD of=$TESTFILE count=1 oflag=sync ||
1523                 quota_error a $TSTUSR "dd failed"
1524
1525         nlock=$(do_facet ost1 $LCTL get_param -n $procf)
1526         [ $nlock -eq 1 ] || error "lock count($nlock) isn't 1"
1527
1528         # clear quota doesn't trigger per-ID lock cancellation
1529         resetquota -u $TSTUSR
1530         nlock=$(do_facet ost1 $LCTL get_param -n $procf)
1531         [ $nlock -eq 1 ] || error "per-ID lock is lost on quota clear"
1532
1533         # clear the per-ID lock
1534         do_facet ost1 $LCTL set_param -n $procf=clear
1535         nlock=$(do_facet ost1 $LCTL get_param -n $procf)
1536         [ $nlock -eq 0 ] || error "per-ID lock isn't cleared"
1537
1538         # spare quota should be released
1539         local OSTUUID=$(ostuuid_from_index 0)
1540         local limit=$(getquota -u $TSTUSR $OSTUUID bhardlimit)
1541         local space=$(getquota -u $TSTUSR $OSTUUID curspace)
1542         [ $limit -le $space ] ||
1543                 error "spare quota isn't released, limit:$limit, space:$space"
1544
1545         cleanup_quota_test
1546 }
1547 run_test 13 "Cancel per-ID lock in the LRU list"
1548
1549 test_15(){
1550         local LIMIT=$((24 * 1024 * 1024 * 1024 * 1024)) # 24 TB
1551
1552         wait_delete_completed
1553         sync_all_data || true
1554
1555         # test for user
1556         $LFS setquota -u $TSTUSR -b 0 -B $LIMIT -i 0 -I 0 $DIR ||
1557                 error "set user quota failed"
1558         local TOTAL_LIMIT=$(getquota -u $TSTUSR global bhardlimit)
1559         [ $TOTAL_LIMIT -eq $LIMIT ] ||
1560                 error "(user) limit:$TOTAL_LIMIT, expect:$LIMIT, failed!"
1561         resetquota -u $TSTUSR
1562
1563         # test for group
1564         $LFS setquota -g $TSTUSR -b 0 -B $LIMIT -i 0 -I 0 $DIR ||
1565                 error "set group quota failed"
1566         TOTAL_LIMIT=$(getquota -g $TSTUSR global bhardlimit)
1567         [ $TOTAL_LIMIT -eq $LIMIT ] ||
1568                 error "(group) limits:$TOTAL_LIMIT, expect:$LIMIT, failed!"
1569         resetquota -g $TSTUSR
1570 }
1571 run_test 15 "Set over 4T block quota"
1572
1573 test_17sub() {
1574         local err_code=$1
1575         local BLKS=1    # 1M less than limit
1576         local TESTFILE=$DIR/$tdir/$tfile
1577
1578         setup_quota_test
1579         trap cleanup_quota_test EXIT
1580
1581         # make sure the system is clean
1582         local USED=$(getquota -u $TSTUSR global curspace)
1583         [ $USED -ne 0 ] && error "Used space($USED) for user $TSTUSR isn't 0."
1584
1585         set_ost_qtype "ug" || error "enable ost quota failed"
1586         # make sure no granted quota on ost
1587         resetquota -u $TSTUSR
1588         $LFS setquota -u $TSTUSR -b 0 -B 10M -i 0 -I 0 $DIR ||
1589                 error "set quota failed"
1590
1591         quota_show_check b u $TSTUSR
1592
1593         #define OBD_FAIL_QUOTA_RECOVERABLE_ERR 0xa04
1594         lustre_fail mds 0xa04 $err_code
1595
1596         # write in background
1597         $RUNAS $DD of=$TESTFILE count=$BLKS oflag=direct &
1598         local DDPID=$!
1599
1600         sleep 2
1601         # write should be blocked and never finished
1602         if ! ps -p $DDPID  > /dev/null 2>&1; then
1603                 lustre_fail mds 0 0
1604                 quota_error u $TSTUSR "write finished incorrectly!"
1605         fi
1606
1607         lustre_fail mds 0 0
1608
1609         local count=0
1610         local timeout=30
1611         while [ true ]; do
1612                 if ! ps -p ${DDPID} > /dev/null 2>&1; then break; fi
1613                 count=$((count+1))
1614                 if [ $count -gt $timeout ]; then
1615                         quota_error u $TSTUSR "dd is not finished!"
1616                 fi
1617                 sleep 1
1618         done
1619
1620         sync; sync_all_data || true
1621
1622         USED=$(getquota -u $TSTUSR global curspace)
1623         [ $USED -ge $(($BLKS * 1024)) ] || quota_error u $TSTUSR \
1624                 "Used space(${USED}K) is less than ${BLKS}M"
1625
1626         cleanup_quota_test
1627         resetquota -u $TSTUSR
1628 }
1629
1630 # DQACQ return recoverable error
1631 test_17() {
1632         echo "DQACQ return -ENOLCK"
1633         #define ENOLCK  37
1634         test_17sub 37 || error "Handle -ENOLCK failed"
1635
1636         echo "DQACQ return -EAGAIN"
1637         #define EAGAIN  11
1638         test_17sub 11 || error "Handle -EAGAIN failed"
1639
1640         echo "DQACQ return -ETIMEDOUT"
1641         #define ETIMEDOUT 110
1642         test_17sub 110 || error "Handle -ETIMEDOUT failed"
1643
1644         echo "DQACQ return -ENOTCONN"
1645         #define ENOTCONN 107
1646         test_17sub 107 || error "Handle -ENOTCONN failed"
1647 }
1648
1649 run_test 17 "DQACQ return recoverable error"
1650
1651 test_18_sub () {
1652         local io_type=$1
1653         local blimit="200m" # 200M
1654         local TESTFILE="$DIR/$tdir/$tfile"
1655
1656         setup_quota_test
1657         trap cleanup_quota_test EXIT
1658
1659         set_ost_qtype "u" || error "enable ost quota failed"
1660         log "User quota (limit: $blimit)"
1661         $LFS setquota -u $TSTUSR -b 0 -B $blimit -i 0 -I 0 $MOUNT ||
1662                 error "set quota failed"
1663         quota_show_check b u $TSTUSR
1664
1665         $LFS setstripe $TESTFILE -i 0 -c 1
1666         chown $TSTUSR.$TSTUSR $TESTFILE
1667
1668         local timeout=$(sysctl -n lustre.timeout)
1669
1670         if [ $io_type = "directio" ]; then
1671                 log "Write 100M (directio) ..."
1672                 $RUNAS $DD of=$TESTFILE count=100 oflag=direct &
1673         else
1674                 log "Write 100M (buffered) ..."
1675                 $RUNAS $DD of=$TESTFILE count=100 &
1676         fi
1677         local DDPID=$!
1678
1679         replay_barrier $SINGLEMDS
1680         log "Fail mds for $((2 * timeout)) seconds"
1681         fail $SINGLEMDS $((2 * timeout))
1682
1683         local count=0
1684         if at_is_enabled; then
1685                 timeout=$(at_max_get mds)
1686         else
1687                 timeout=$(lctl get_param -n timeout)
1688         fi
1689
1690         while [ true ]; do
1691                 if ! ps -p ${DDPID} > /dev/null 2>&1; then break; fi
1692                 if [ $((++count % (2 * timeout) )) -eq 0 ]; then
1693                         log "it took $count second"
1694                 fi
1695                 sleep 1
1696         done
1697
1698         log "(dd_pid=$DDPID, time=$count, timeout=$timeout)"
1699         sync
1700         cancel_lru_locks mdc
1701         cancel_lru_locks osc
1702         $SHOW_QUOTA_USER
1703
1704         local testfile_size=$(stat -c %s $TESTFILE)
1705         if [ $testfile_size -ne $((BLK_SZ * 1024 * 100)) ] ; then
1706                 quota_error u $TSTUSR "expect $((BLK_SZ * 1024 * 100))," \
1707                         "got ${testfile_size}. Verifying file failed!"
1708         fi
1709         cleanup_quota_test
1710         resetquota -u $TSTUSR
1711 }
1712
1713 # test when mds does failover, the ost still could work well
1714 # this test shouldn't trigger watchdog b=14840
1715 test_18() {
1716         # Clear dmesg so watchdog is not triggered by previous
1717         # test output
1718         do_facet ost1 dmesg -c > /dev/null
1719
1720         test_18_sub normal
1721         test_18_sub directio
1722
1723         # check if watchdog is triggered
1724         do_facet ost1 dmesg > $TMP/lustre-log-${TESTNAME}.log
1725         local watchdog=$(awk '/Service thread pid/ && /was inactive/ \
1726                         { print; }' $TMP/lustre-log-${TESTNAME}.log)
1727         [ -z "$watchdog" ] || error "$watchdog"
1728         rm -f $TMP/lustre-log-${TESTNAME}.log
1729 }
1730 run_test 18 "MDS failover while writing, no watchdog triggered (b14840)"
1731
1732 test_19() {
1733         local blimit=5 # 5M
1734         local TESTFILE=$DIR/$tdir/$tfile
1735
1736         setup_quota_test
1737         trap cleanup_quota_test EXIT
1738
1739         set_ost_qtype "ug" || error "enable ost quota failed"
1740
1741         # bind file to a single OST
1742         $LFS setstripe -c 1 $TESTFILE
1743         chown $TSTUSR.$TSTUSR $TESTFILE
1744
1745         echo "Set user quota (limit: "$blimit"M)"
1746         $LFS setquota -u $TSTUSR -b 0 -B "$blimit"M -i 0 -I 0 $MOUNT ||
1747                 error "set user quota failed"
1748         quota_show_check b u $TSTUSR
1749         echo "Update quota limits"
1750         $LFS setquota -u $TSTUSR -b 0 -B "$blimit"M -i 0 -I 0 $MOUNT ||
1751                 error "set group quota failed"
1752         quota_show_check b u $TSTUSR
1753
1754         # first wirte might be cached
1755         $RUNAS $DD of=$TESTFILE count=$((blimit + 1))
1756         cancel_lru_locks osc
1757         $SHOW_QUOTA_USER
1758         $RUNAS $DD of=$TESTFILE count=$((blimit + 1)) seek=$((blimit + 1)) &&
1759                 quota_error u $TSTUSR "Write success, expect failure"
1760         $SHOW_QUOTA_USER
1761
1762         cleanup_quota_test
1763         resetquota -u $TSTUSR
1764 }
1765 run_test 19 "Updating admin limits doesn't zero operational limits(b14790)"
1766
1767 test_20() { # b15754
1768         local LSTR=(2g 1t 4k 3m) # limits strings
1769         # limits values
1770         local LVAL=($[2*1024*1024] $[1*1024*1024*1024] $[4*1024] $[3*1024*1024])
1771
1772         resetquota -u $TSTUSR
1773
1774         $LFS setquota -u $TSTUSR --block-softlimit ${LSTR[0]} \
1775                 $MOUNT || error "could not set quota limits"
1776         $LFS setquota -u $TSTUSR --block-hardlimit ${LSTR[1]} \
1777                                 --inode-softlimit ${LSTR[2]} \
1778                                 --inode-hardlimit ${LSTR[3]} \
1779                                 $MOUNT || error "could not set quota limits"
1780
1781         [ "$(getquota -u $TSTUSR global bsoftlimit)" = "${LVAL[0]}" ] ||
1782                 error "bsoftlimit was not set properly"
1783         [ "$(getquota -u $TSTUSR global bhardlimit)" = "${LVAL[1]}" ] ||
1784                 error "bhardlimit was not set properly"
1785         [ "$(getquota -u $TSTUSR global isoftlimit)" = "${LVAL[2]}" ] ||
1786                 error "isoftlimit was not set properly"
1787         [ "$(getquota -u $TSTUSR global ihardlimit)" = "${LVAL[3]}" ] ||
1788                 error "ihardlimit was not set properly"
1789
1790         resetquota -u $TSTUSR
1791 }
1792 run_test 20 "Test if setquota specifiers work properly (b15754)"
1793
1794 test_21_sub() {
1795         local testfile=$1
1796         local blk_number=$2
1797         local seconds=$3
1798
1799         local time=$(($(date +%s) + seconds))
1800         while [ $(date +%s) -lt $time ]; do
1801                 $RUNAS $DD of=$testfile count=$blk_number > /dev/null 2>&1
1802         done
1803 }
1804
1805 # run for fixing bug16053, setquota shouldn't fail when writing and
1806 # deleting are happening
1807 test_21() {
1808         local TESTFILE="$DIR/$tdir/$tfile"
1809         local BLIMIT=10 # 10G
1810         local ILIMIT=1000000
1811
1812         setup_quota_test
1813         trap cleanup_quota_test EXIT
1814
1815         set_ost_qtype "ug" || error "Enable ost quota failed"
1816
1817         log "Set limit(block:${BLIMIT}G; file:$ILIMIT) for user: $TSTUSR"
1818         $LFS setquota -u $TSTUSR -b 0 -B ${BLIMIT}G -i 0 -I $ILIMIT $MOUNT ||
1819                 error "set user quota failed"
1820         log "Set limit(block:${BLIMIT}G; file:$ILIMIT) for group: $TSTUSR"
1821         $LFS setquota -g $TSTUSR -b 0 -B $BLIMIT -i 0 -I $ILIMIT $MOUNT ||
1822                 error "set group quota failed"
1823
1824         # repeat writing on a 1M file
1825         test_21_sub ${TESTFILE}_1 1 30 &
1826         local DDPID1=$!
1827         # repeat writing on a 128M file
1828         test_21_sub ${TESTFILE}_2 128 30 &
1829         local DDPID2=$!
1830
1831         local time=$(($(date +%s) + 30))
1832         local i=1
1833         while [ $(date +%s) -lt $time ]; do
1834                 log "Set quota for $i times"
1835                 $LFS setquota -u $TSTUSR -b 0 -B "$((BLIMIT + i))G" -i 0 \
1836                         -I $((ILIMIT + i)) $MOUNT ||
1837                                 error "Set user quota failed"
1838                 $LFS setquota -g $TSTUSR -b 0 -B "$((BLIMIT + i))G" -i 0 \
1839                         -I $((ILIMIT + i)) $MOUNT ||
1840                                 error "Set group quota failed"
1841                 i=$((i+1))
1842                 sleep 1
1843         done
1844
1845         local count=0
1846         while [ true ]; do
1847                 if ! ps -p ${DDPID1} > /dev/null 2>&1; then break; fi
1848                 count=$((count+1))
1849                 if [ $count -gt 60 ]; then
1850                         quota_error a $TSTUSR "dd should be finished!"
1851                 fi
1852                 sleep 1
1853         done
1854         echo "(dd_pid=$DDPID1, time=$count)successful"
1855
1856         count=0
1857         while [ true ]; do
1858                 if ! ps -p ${DDPID2} > /dev/null 2>&1; then break; fi
1859                 count=$((count+1))
1860                 if [ $count -gt 60 ]; then
1861                         quota_error a $TSTUSR "dd should be finished!"
1862                 fi
1863                 sleep 1
1864         done
1865         echo "(dd_pid=$DDPID2, time=$count)successful"
1866
1867         cleanup_quota_test
1868         resetquota -u $TSTUSR
1869         resetquota -g $TSTUSR
1870 }
1871 run_test 21 "Setquota while writing & deleting (b16053)"
1872
1873 # enable/disable quota enforcement permanently
1874 test_22() {
1875         echo "Set both mdt & ost quota type as ug"
1876         set_mdt_qtype "ug" || error "enable mdt quota failed"
1877         set_ost_qtype "ug" || error "enable ost quota failed"
1878
1879         echo "Restart..."
1880         stopall
1881         mount
1882         setupall
1883
1884         echo "Verify if quota is enabled"
1885         local qtype=$(mdt_quota_type)
1886         [ $qtype != "ug" ] && error "mdt quota setting is lost"
1887         qtype=$(ost_quota_type)
1888         [ $qtype != "ug" ] && error "ost quota setting is lost"
1889
1890         echo "Set both mdt & ost quota type as none"
1891         set_mdt_qtype "none" || error "disable mdt quota failed"
1892         set_ost_qtype "none" || error "disable ost quota failed"
1893
1894         echo "Restart..."
1895         stopall
1896         mount
1897         setupall
1898         quota_init
1899
1900         echo "Verify if quota is disabled"
1901         qtype=$(mdt_quota_type)
1902         [ $qtype != "none" ] && error "mdt quota setting is lost"
1903         qtype=$(ost_quota_type)
1904         [ $qtype != "none" ] && error "ost quota setting is lost"
1905
1906         return 0
1907 }
1908 run_test 22 "enable/disable quota by 'lctl conf_param'"
1909
1910 test_23_sub() {
1911         local TESTFILE="$DIR/$tdir/$tfile"
1912         local LIMIT=$1
1913
1914         setup_quota_test
1915         trap cleanup_quota_test EXIT
1916
1917         set_ost_qtype "ug" || error "Enable ost quota failed"
1918
1919         # test for user
1920         log "User quota (limit: $LIMIT MB)"
1921         $LFS setquota -u $TSTUSR -b 0 -B "$LIMIT"M -i 0 -I 0 $DIR ||
1922                 error "set quota failed"
1923         quota_show_check b u $TSTUSR
1924
1925         $LFS setstripe $TESTFILE -c 1 -i 0
1926         chown $TSTUSR.$TSTUSR $TESTFILE
1927
1928         log "Step1: trigger EDQUOT with O_DIRECT"
1929         log "Write half of file"
1930         $RUNAS $DD of=$TESTFILE count=$((LIMIT/2)) oflag=direct ||
1931                 quota_error u $TSTUSR "(1) Write failure, expect success." \
1932                         "limit=$LIMIT"
1933         log "Write out of block quota ..."
1934         $RUNAS $DD of=$TESTFILE count=$((LIMIT/2 + 1)) seek=$((LIMIT/2)) \
1935                 oflag=direct conv=notrunc &&
1936                 quota_error u $TSTUSR "(2) Write success, expect EDQUOT." \
1937                         "limit=$LIMIT"
1938         log "Step1: done"
1939
1940         log "Step2: rewrite should succeed"
1941         $RUNAS $DD of=$TESTFILE count=1 oflag=direct conv=notrunc||
1942                 quota_error u $TSTUSR "(3) Write failure, expect success." \
1943                         "limit=$LIMIT"
1944         log "Step2: done"
1945
1946         cleanup_quota_test
1947
1948         local OST0_UUID=$(ostuuid_from_index 0)
1949         local OST0_QUOTA_USED=$(getquota -u $TSTUSR $OST0_UUID curspace)
1950         [ $OST0_QUOTA_USED -ne 0 ] &&
1951                 ($SHOW_QUOTA_USER; \
1952                 quota_error u $TSTUSR "quota isn't released")
1953         $SHOW_QUOTA_USER
1954         resetquota -u $TSTUSR
1955 }
1956
1957 test_23() {
1958         local OST0_MIN=$((6 * 1024)) # 6MB, extra space for meta blocks.
1959         check_whether_skip && return 0
1960         log "run for 4MB test file"
1961         test_23_sub 4
1962
1963         OST0_MIN=$((60 * 1024)) # 60MB, extra space for meta blocks.
1964         check_whether_skip && return 0
1965         log "run for 40MB test file"
1966         test_23_sub 40
1967 }
1968 run_test 23 "Quota should be honored with directIO (b16125)"
1969
1970 test_24() {
1971         local blimit=5 # 5M
1972         local TESTFILE="$DIR/$tdir/$tfile"
1973
1974         setup_quota_test
1975         trap cleanup_quota_test EXIT
1976
1977         set_ost_qtype "ug" || error "enable ost quota failed"
1978
1979         # bind file to a single OST
1980         $LFS setstripe -c 1 $TESTFILE
1981         chown $TSTUSR.$TSTUSR $TESTFILE
1982
1983         echo "Set user quota (limit: "$blimit"M)"
1984         $LFS setquota -u $TSTUSR -b 0 -B "$blimit"M -i 0 -I 0 $MOUNT ||
1985                 error "set quota failed"
1986
1987         # overrun quota by root user
1988         runas -u 0 -g 0 $DD of=$TESTFILE count=$((blimit + 1)) ||
1989                 error "write failure, expect success"
1990         cancel_lru_locks osc
1991         sync_all_data || true
1992
1993         $SHOW_QUOTA_USER | grep '*' || error "no matching *"
1994
1995         cleanup_quota_test
1996         resetquota -u $TSTUSR
1997 }
1998 run_test 24 "lfs draws an asterix when limit is reached (b16646)"
1999
2000 test_27a() { # b19612
2001         $LFS quota $TSTUSR $DIR &&
2002                 error "lfs succeeded with no type, but should have failed"
2003         $LFS setquota $TSTUSR $DIR &&
2004                 error "lfs succeeded with no type, but should have failed"
2005         return 0
2006 }
2007 run_test 27a "lfs quota/setquota should handle wrong arguments (b19612)"
2008
2009 test_27b() { # b20200
2010         $LFS setquota -u $TSTID -b 1000 -B 1000 -i 1000 -I 1000 $DIR ||
2011                 error "lfs setquota failed with uid argument"
2012         $LFS setquota -g $TSTID -b 1000 -B 1000 -i 1000 -I 1000 $DIR ||
2013                 error "lfs stequota failed with gid argument"
2014         $SHOW_QUOTA_USERID || error "lfs quota failed with uid argument"
2015         $SHOW_QUOTA_GROUPID || error "lfs quota failed with gid argument"
2016         resetquota -u $TSTUSR
2017         resetquota -g $TSTUSR
2018         return 0
2019 }
2020 run_test 27b "lfs quota/setquota should handle user/group ID (b20200)"
2021
2022 test_27c() {
2023         local limit
2024
2025         $LFS setquota -u $TSTID -b 30M -B 3T $DIR ||
2026                 error "lfs setquota failed"
2027
2028         limit=$($LFS quota -u $TSTID -v -h $DIR | grep $DIR | awk '{print $3}')
2029         [ $limit != "30M" ] && error "softlimit isn't human-readable"
2030         limit=$($LFS quota -u $TSTID -v -h $DIR | grep $DIR | awk '{print $4}')
2031         [ $limit != "3T" ] && error "hardlimit isn't human-readable"
2032
2033         $LFS quota -u $TSTID -v -h $DIR | grep -q "Total allocated" ||
2034                 error "total allocated inode/block limit not printed"
2035
2036         resetquota -u $TSTUSR
2037 }
2038 run_test 27c "lfs quota should support human-readable output"
2039
2040 test_30() {
2041         local output
2042         local LIMIT=4 # 4MB
2043         local TESTFILE="$DIR/$tdir/$tfile"
2044         local GRACE=10
2045
2046         setup_quota_test
2047         trap cleanup_quota_test EXIT
2048
2049         set_ost_qtype "u" || error "enable ost quota failed"
2050
2051         $LFS setstripe $TESTFILE -i 0 -c 1
2052         chown $TSTUSR.$TSTUSR $TESTFILE
2053
2054         $LFS setquota -t -u --block-grace $GRACE --inode-grace \
2055                 $MAX_IQ_TIME $DIR || error "set grace time failed"
2056         $LFS setquota -u $TSTUSR -b ${LIMIT}M -B 0 -i 0 -I 0 $DIR ||
2057                 error "set quota failed"
2058         $RUNAS $DD of=$TESTFILE count=$((LIMIT * 2)) || true
2059         cancel_lru_locks osc
2060         sleep $GRACE
2061         $LFS setquota -u $TSTUSR -B 0 $DIR || error "clear quota failed"
2062         # over-quota flag has not yet settled since we do not trigger async
2063         # events based on grace time period expiration
2064         $SHOW_QUOTA_USER
2065         $RUNAS $DD of=$TESTFILE conv=notrunc oflag=append count=1 || true
2066         cancel_lru_locks osc
2067         # now over-quota flag should be settled and further writes should fail
2068         $SHOW_QUOTA_USER
2069         $RUNAS $DD of=$TESTFILE conv=notrunc oflag=append count=1 &&
2070                 error "grace times were reset"
2071         # cleanup
2072         cleanup_quota_test
2073         resetquota -u $TSTUSR
2074         $LFS setquota -t -u --block-grace $MAX_DQ_TIME --inode-grace \
2075                 $MAX_IQ_TIME $DIR || error "restore grace time failed"
2076 }
2077 run_test 30 "Hard limit updates should not reset grace times"
2078
2079 # basic usage tracking for user & group
2080 test_33() {
2081         local INODES=10 # 10 files
2082         local BLK_CNT=2 # of 2M each
2083         local TOTAL_BLKS=$((INODES * BLK_CNT * 1024))
2084
2085         setup_quota_test
2086         trap cleanup_quota_test EXIT
2087
2088         # make sure the system is clean
2089         local USED=$(getquota -u $TSTID global curspace)
2090         [ $USED -ne 0 ] &&
2091                 error "Used space ($USED) for user $TSTID isn't 0."
2092         USED=$(getquota -g $TSTID global curspace)
2093         [ $USED -ne 0 ] &&
2094                 error "Used space ($USED) for group $TSTID isn't 0."
2095
2096         echo "Write files..."
2097         for i in `seq 0 $INODES`; do
2098                 $RUNAS $DD of=$DIR/$tdir/$tfile-$i count=$BLK_CNT 2>/dev/null ||
2099                         error "write failed"
2100                 echo "Iteration $i/$INODES completed"
2101         done
2102         cancel_lru_locks osc
2103         sync; sync_all_data || true
2104
2105         echo "Verify disk usage after write"
2106         USED=$(getquota -u $TSTID global curspace)
2107         [ $USED -lt $TOTAL_BLKS ] &&
2108                 error "Used space for user $TSTID:$USED, expected:$TOTAL_BLKS"
2109         USED=$(getquota -g $TSTID global curspace)
2110         [ $USED -lt $TOTAL_BLKS ] &&
2111                 error "Used space for group $TSTID:$USED, expected:$TOTAL_BLKS"
2112
2113         echo "Verify inode usage after write"
2114         USED=$(getquota -u $TSTID global curinodes)
2115         [ $USED -lt $INODES ] &&
2116                 error "Used inode for user $TSTID is $USED, expected $INODES"
2117         USED=$(getquota -g $TSTID global curinodes)
2118         [ $USED -lt $INODES ] &&
2119                 error "Used inode for group $TSTID is $USED, expected $INODES"
2120
2121         cleanup_quota_test
2122
2123         echo "Verify disk usage after delete"
2124         USED=$(getquota -u $TSTID global curspace)
2125         [ $USED -eq 0 ] || error "Used space for user $TSTID isn't 0. $USED"
2126         USED=$(getquota -u $TSTID global curinodes)
2127         [ $USED -eq 0 ] || error "Used inodes for user $TSTID isn't 0. $USED"
2128         USED=$(getquota -g $TSTID global curspace)
2129         [ $USED -eq 0 ] || error "Used space for group $TSTID isn't 0. $USED"
2130         USED=$(getquota -g $TSTID global curinodes)
2131         [ $USED -eq 0 ] || error "Used inodes for group $TSTID isn't 0. $USED"
2132 }
2133 run_test 33 "Basic usage tracking for user & group"
2134
2135 # usage transfer test for user & group
2136 test_34() {
2137         local BLK_CNT=2 # 2MB
2138
2139         setup_quota_test
2140         trap cleanup_quota_test EXIT
2141
2142         # make sure the system is clean
2143         local USED=$(getquota -u $TSTID global curspace)
2144         [ $USED -ne 0 ] && error "Used space ($USED) for user $TSTID isn't 0."
2145         USED=$(getquota -g $TSTID global curspace)
2146         [ $USED -ne 0 ] && error "Used space ($USED) for group $TSTID isn't 0."
2147
2148         echo "Write file..."
2149         $DD of=$DIR/$tdir/$tfile count=$BLK_CNT 2>/dev/null ||
2150                 error "write failed"
2151         cancel_lru_locks osc
2152         sync; sync_all_data || true
2153
2154         echo "chown the file to user $TSTID"
2155         chown $TSTID $DIR/$tdir/$tfile || error "chown failed"
2156
2157         echo "Wait for setattr on objects finished..."
2158         wait_delete_completed
2159
2160         BLK_CNT=$((BLK_CNT * 1024))
2161
2162         echo "Verify disk usage for user $TSTID"
2163         USED=$(getquota -u $TSTID global curspace)
2164         [ $USED -lt $BLK_CNT ] &&
2165                 error "Used space for user $TSTID is ${USED}, expected $BLK_CNT"
2166         USED=$(getquota -u $TSTID global curinodes)
2167         [ $USED -ne 1 ] &&
2168                 error "Used inodes for user $TSTID is $USED, expected 1"
2169
2170         echo "chgrp the file to group $TSTID"
2171         chgrp $TSTID $DIR/$tdir/$tfile || error "chgrp failed"
2172
2173         echo "Wait for setattr on objects finished..."
2174         wait_delete_completed
2175
2176         echo "Verify disk usage for group $TSTID"
2177         USED=$(getquota -g $TSTID global curspace)
2178         [ $USED -ge $BLK_CNT ] ||
2179                 error "Used space for group $TSTID is $USED, expected $BLK_CNT"
2180         USED=$(getquota -g $TSTID global curinodes)
2181         [ $USED -eq 1 ] ||
2182                 error "Used inodes for group $TSTID is $USED, expected 1"
2183
2184         cleanup_quota_test
2185 }
2186 run_test 34 "Usage transfer for user & group"
2187
2188 # usage is still accessible across restart
2189 test_35() {
2190         local BLK_CNT=2 # 2 MB
2191
2192         setup_quota_test
2193         trap cleanup_quota_test EXIT
2194
2195         echo "Write file..."
2196         $RUNAS $DD of=$DIR/$tdir/$tfile count=$BLK_CNT 2>/dev/null ||
2197                 error "write failed"
2198         cancel_lru_locks osc
2199         sync; sync_all_data || true
2200
2201         echo "Save disk usage before restart"
2202         local ORIG_USR_SPACE=$(getquota -u $TSTID global curspace)
2203         [ $ORIG_USR_SPACE -eq 0 ] &&
2204                 error "Used space for user $TSTID is 0, expected ${BLK_CNT}M"
2205         local ORIG_USR_INODES=$(getquota -u $TSTID global curinodes)
2206         [ $ORIG_USR_INODES -eq 0 ] &&
2207                 error "Used inodes for user $TSTID is 0, expected 1"
2208         echo "User $TSTID: ${ORIG_USR_SPACE}KB $ORIG_USR_INODES inodes"
2209         local ORIG_GRP_SPACE=$(getquota -g $TSTID global curspace)
2210         [ $ORIG_GRP_SPACE -eq 0 ] &&
2211                 error "Used space for group $TSTID is 0, expected ${BLK_CNT}M"
2212         local ORIG_GRP_INODES=$(getquota -g $TSTID global curinodes)
2213         [ $ORIG_GRP_INODES -eq 0 ] &&
2214                 error "Used inodes for group $TSTID is 0, expected 1"
2215         echo "Group $TSTID: ${ORIG_GRP_SPACE}KB $ORIG_GRP_INODES inodes"
2216
2217         log "Restart..."
2218         local ORIG_REFORMAT=$REFORMAT
2219         REFORMAT=""
2220         cleanup_and_setup_lustre
2221         REFORMAT=$ORIG_REFORMAT
2222         quota_init
2223
2224         echo "Verify disk usage after restart"
2225         local USED=$(getquota -u $TSTID global curspace)
2226         [ $USED -eq $ORIG_USR_SPACE ] ||
2227                 error "Used space for user $TSTID changed from " \
2228                         "$ORIG_USR_SPACE to $USED"
2229         USED=$(getquota -u $TSTID global curinodes)
2230         [ $USED -eq $ORIG_USR_INODES ] ||
2231                 error "Used inodes for user $TSTID changed from " \
2232                         "$ORIG_USR_INODES to $USED"
2233         USED=$(getquota -g $TSTID global curspace)
2234         [ $USED -eq $ORIG_GRP_SPACE ] ||
2235                 error "Used space for group $TSTID changed from " \
2236                         "$ORIG_GRP_SPACE to $USED"
2237         USED=$(getquota -g $TSTID global curinodes)
2238         [ $USED -eq $ORIG_GRP_INODES ] ||
2239                 error "Used inodes for group $TSTID changed from " \
2240                         "$ORIG_GRP_INODES to $USED"
2241
2242         # check if the vfs_dq_init() is called before writing
2243         echo "Append to the same file..."
2244         $RUNAS $DD of=$DIR/$tdir/$tfile count=$BLK_CNT seek=1 2>/dev/null ||
2245                 error "write failed"
2246         cancel_lru_locks osc
2247         sync; sync_all_data || true
2248
2249         echo "Verify space usage is increased"
2250         USED=$(getquota -u $TSTID global curspace)
2251         [ $USED -gt $ORIG_USR_SPACE ] ||
2252                 error "Used space for user $TSTID isn't increased" \
2253                         "orig:$ORIG_USR_SPACE, now:$USED"
2254         USED=$(getquota -g $TSTID global curspace)
2255         [ $USED -gt $ORIG_GRP_SPACE ] ||
2256                 error "Used space for group $TSTID isn't increased" \
2257                         "orig:$ORIG_GRP_SPACE, now:$USED"
2258
2259         cleanup_quota_test
2260 }
2261 run_test 35 "Usage is still accessible across reboot"
2262
2263 # test migrating old amdin quota files (in Linux quota file format v2) into new
2264 # quota global index (in IAM format)
2265 test_36() {
2266         [ $(facet_fstype $SINGLEMDS) != ldiskfs ] && \
2267                 skip "skipping migration test" && return
2268
2269         # get the mdt0 device name
2270         local mdt0_node=$(facet_active_host $SINGLEMDS)
2271         local mdt0_dev=$(mdsdevname ${SINGLEMDS//mds/})
2272
2273         echo "Reformat..."
2274         formatall
2275
2276         echo "Copy admin quota files into MDT0..."
2277         local mntpt=$(facet_mntpt $SINGLEMDS)
2278         local mdt0_fstype=$(facet_fstype $SINGLEMDS)
2279         local opt
2280         if ! do_node $mdt0_node test -b $mdt0_fstype; then
2281                 opt="-o loop"
2282         fi
2283         echo "$mdt0_node, $mdt0_dev, $mntpt, $opt"
2284         do_node $mdt0_node mount -t $mdt0_fstype $opt $mdt0_dev $mntpt
2285         do_node $mdt0_node mkdir $mntpt/OBJECTS
2286         do_node $mdt0_node cp $LUSTRE/tests/admin_quotafile_v2.usr $mntpt/OBJECTS
2287         do_node $mdt0_node cp $LUSTRE/tests/admin_quotafile_v2.grp $mntpt/OBJECTS
2288         do_node $mdt0_node umount -d -f $mntpt
2289
2290         echo "Setup all..."
2291         setupall
2292
2293         echo "Verify global limits..."
2294         local id_cnt
2295         local limit
2296
2297         local proc="qmt.*.md-0x0.glb-usr"
2298         id_cnt=$(do_node $mdt0_node $LCTL get_param -n $proc | wc -l)
2299         [ $id_cnt -eq 403 ] || error "Migrate inode user limit failed: $id_cnt"
2300         limit=$(getquota -u 1 global isoftlimit)
2301         [ $limit -eq 1024 ] || error "User inode softlimit: $limit"
2302         limit=$(getquota -u 1 global ihardlimit)
2303         [ $limit -eq 2048 ] || error "User inode hardlimit: $limit"
2304
2305         proc="qmt.*.md-0x0.glb-grp"
2306         id_cnt=$(do_node $mdt0_node $LCTL get_param -n $proc | wc -l)
2307         [ $id_cnt -eq 403 ] || error "Migrate inode group limit failed: $id_cnt"
2308         limit=$(getquota -g 1 global isoftlimit)
2309         [ $limit -eq 1024 ] || error "Group inode softlimit: $limit"
2310         limit=$(getquota -g 1 global ihardlimit)
2311         [ $limit -eq 2048 ] || error "Group inode hardlimit: $limit"
2312
2313         proc=" qmt.*.dt-0x0.glb-usr"
2314         id_cnt=$(do_node $mdt0_node $LCTL get_param -n $proc | wc -l)
2315         [ $id_cnt -eq 403 ] || error "Migrate block user limit failed: $id_cnt"
2316         limit=$(getquota -u 60001 global bsoftlimit)
2317         [ $limit -eq 10485760 ] || error "User block softlimit: $limit"
2318         limit=$(getquota -u 60001 global bhardlimit)
2319         [ $limit -eq 20971520 ] || error "User block hardlimit: $limit"
2320
2321         proc="qmt.*.dt-0x0.glb-grp"
2322         id_cnt=$(do_node $mdt0_node $LCTL get_param -n $proc | wc -l)
2323         [ $id_cnt -eq 403 ] || error "Migrate block user limit failed: $id_cnt"
2324         limit=$(getquota -g 60001 global bsoftlimit)
2325         [ $limit -eq 10485760 ] || error "Group block softlimit: $limit"
2326         limit=$(getquota -g 60001 global bhardlimit)
2327         [ $limit -eq 20971520 ] || error "Group block hardlimit: $limit"
2328
2329         echo "Cleanup..."
2330         formatall
2331         setupall
2332 }
2333 run_test 36 "Migrate old admin files into new global indexes"
2334
2335 quota_fini()
2336 {
2337         do_nodes $(comma_list $(nodes_list)) "lctl set_param debug=-quota"
2338 }
2339 quota_fini
2340
2341 cd $ORIG_PWD
2342 complete $SECONDS
2343 check_and_cleanup_lustre
2344 export QUOTA_AUTO=$QUOTA_AUTO_OLD
2345 exit_status