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