Whamcloud - gitweb
01dc6ac6bbbcd84c569e8b307f18b53340430344
[fs/lustre-release.git] / lustre / quota / quota_interface.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * GPL HEADER START
5  *
6  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 only,
10  * as published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License version 2 for more details (a copy is included
16  * in the LICENSE file that accompanied this code).
17  *
18  * You should have received a copy of the GNU General Public License
19  * version 2 along with this program; If not, see
20  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
21  *
22  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
23  * CA 95054 USA or visit www.sun.com if you need additional information or
24  * have any questions.
25  *
26  * GPL HEADER END
27  */
28 /*
29  * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
30  * Use is subject to license terms.
31  *
32  * Copyright (c) 2011 Whamcloud, Inc.
33  *
34  */
35 /*
36  * This file is part of Lustre, http://www.lustre.org/
37  * Lustre is a trademark of Sun Microsystems, Inc.
38  */
39
40 #ifndef EXPORT_SYMTAB
41 # define EXPORT_SYMTAB
42 #endif
43 #define DEBUG_SUBSYSTEM S_LQUOTA
44
45 #ifdef __KERNEL__
46 # include <linux/version.h>
47 # include <linux/module.h>
48 # include <linux/init.h>
49 # include <linux/fs.h>
50 # include <linux/jbd.h>
51 # include <linux/smp_lock.h>
52 # include <linux/buffer_head.h>
53 # include <linux/workqueue.h>
54 # include <linux/mount.h>
55 #else /* __KERNEL__ */
56 # include <liblustre.h>
57 #endif
58
59 #include <obd_class.h>
60 #include <lustre_mds.h>
61 #include <lustre_dlm.h>
62 #include <lustre_cfg.h>
63 #include <obd_ost.h>
64 #include <lustre_fsfilt.h>
65 #include <lustre_quota.h>
66 #include <lprocfs_status.h>
67 #include "quota_internal.h"
68
69 #ifdef __KERNEL__
70
71 #ifdef HAVE_QUOTA_SUPPORT
72
73 static cfs_time_t last_print = 0;
74 static cfs_spinlock_t last_print_lock = CFS_SPIN_LOCK_UNLOCKED;
75
76 static int filter_quota_setup(struct obd_device *obd)
77 {
78         int rc = 0;
79         struct obd_device_target *obt = &obd->u.obt;
80         ENTRY;
81
82         cfs_init_rwsem(&obt->obt_rwsem);
83         obt->obt_qfmt = LUSTRE_QUOTA_V2;
84         cfs_sema_init(&obt->obt_quotachecking, 1);
85         rc = qctxt_init(obd, NULL);
86         if (rc)
87                 CERROR("initialize quota context failed! (rc:%d)\n", rc);
88
89         RETURN(rc);
90 }
91
92 static int filter_quota_cleanup(struct obd_device *obd)
93 {
94         ENTRY;
95         qctxt_cleanup(&obd->u.obt.obt_qctxt, 0);
96         RETURN(0);
97 }
98
99 static int filter_quota_setinfo(struct obd_device *obd, void *data)
100 {
101         struct obd_export *exp = data;
102         struct lustre_quota_ctxt *qctxt = &obd->u.obt.obt_qctxt;
103         struct obd_import *imp = exp->exp_imp_reverse;
104         ENTRY;
105
106         LASSERT(imp != NULL);
107
108         /* setup the quota context import */
109         cfs_spin_lock(&qctxt->lqc_lock);
110         if (qctxt->lqc_import != NULL) {
111                 cfs_spin_unlock(&qctxt->lqc_lock);
112                 if (qctxt->lqc_import == imp)
113                         CDEBUG(D_WARNING, "%s: lqc_import(%p) of obd(%p) was "
114                                "activated already.\n", obd->obd_name, imp, obd);
115                 else
116                         CERROR("%s: lqc_import(%p:%p) of obd(%p) was "
117                                "activated by others.\n", obd->obd_name,
118                                qctxt->lqc_import, imp, obd);
119         } else {
120                 qctxt->lqc_import = imp;
121                 /* make imp's connect flags equal relative exp's connect flags
122                  * adding it to avoid the scan export list */
123                 imp->imp_connect_data.ocd_connect_flags |=
124                                 (exp->exp_connect_flags &
125                                  (OBD_CONNECT_QUOTA64 | OBD_CONNECT_CHANGE_QS));
126                 cfs_spin_unlock(&qctxt->lqc_lock);
127                 CDEBUG(D_QUOTA, "%s: lqc_import(%p) of obd(%p) is reactivated "
128                        "now.\n", obd->obd_name, imp, obd);
129
130                 cfs_waitq_signal(&qctxt->lqc_wait_for_qmaster);
131                 /* start quota slave recovery thread. (release high limits) */
132                 qslave_start_recovery(obd, qctxt);
133         }
134         RETURN(0);
135 }
136
137 static int filter_quota_clearinfo(struct obd_export *exp, struct obd_device *obd)
138 {
139         struct lustre_quota_ctxt *qctxt = &obd->u.obt.obt_qctxt;
140         struct obd_import *imp = exp->exp_imp_reverse;
141         ENTRY;
142
143         /* lquota may be not set up before destroying export, b=14896 */
144         if (!obd->obd_set_up)
145                 RETURN(0);
146
147         if (unlikely(imp == NULL))
148                 RETURN(0);
149
150         /* when exp->exp_imp_reverse is destroyed, the corresponding lqc_import
151          * should be invalid b=12374 */
152         cfs_spin_lock(&qctxt->lqc_lock);
153         if (qctxt->lqc_import == imp) {
154                 qctxt->lqc_import = NULL;
155                 cfs_spin_unlock(&qctxt->lqc_lock);
156                 CDEBUG(D_QUOTA, "%s: lqc_import(%p) of obd(%p) is invalid now.\n",
157                        obd->obd_name, imp, obd);
158                 ptlrpc_cleanup_imp(imp);
159                 dqacq_interrupt(qctxt);
160         } else {
161                 cfs_spin_unlock(&qctxt->lqc_lock);
162         }
163         RETURN(0);
164 }
165
166 static int filter_quota_enforce(struct obd_device *obd, unsigned int ignore)
167 {
168         ENTRY;
169
170         if (!ll_sb_any_quota_active(obd->u.obt.obt_sb))
171                 RETURN(0);
172
173         if (ignore) {
174                 CDEBUG(D_QUOTA, "blocks will be written with ignoring quota.\n");
175                 cfs_cap_raise(CFS_CAP_SYS_RESOURCE);
176         } else {
177                 cfs_cap_lower(CFS_CAP_SYS_RESOURCE);
178         }
179
180         RETURN(0);
181 }
182
183 #define GET_OA_ID(flag, oa) (flag == USRQUOTA ? oa->o_uid : oa->o_gid)
184 static int filter_quota_getflag(struct obd_device *obd, struct obdo *oa)
185 {
186         struct obd_device_target *obt = &obd->u.obt;
187         struct lustre_quota_ctxt *qctxt = &obt->obt_qctxt;
188         int err, cnt, rc = 0;
189         struct obd_quotactl *oqctl;
190         ENTRY;
191
192         if (!ll_sb_any_quota_active(obt->obt_sb))
193                 RETURN(0);
194
195         OBD_ALLOC_PTR(oqctl);
196         if (!oqctl)
197                 RETURN(-ENOMEM);
198
199         /* set over quota flags for a uid/gid */
200         oa->o_valid |= OBD_MD_FLUSRQUOTA | OBD_MD_FLGRPQUOTA;
201         oa->o_flags &= ~(OBD_FL_NO_USRQUOTA | OBD_FL_NO_GRPQUOTA);
202
203         for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
204                 struct lustre_qunit_size *lqs = NULL;
205
206                 lqs = quota_search_lqs(LQS_KEY(cnt, GET_OA_ID(cnt, oa)),
207                                        qctxt, 0);
208                 if (IS_ERR(lqs)) {
209                         rc = PTR_ERR(lqs);
210                         CDEBUG(D_QUOTA, "search lqs for %s %d failed, "
211                                "(rc = %d)\n",
212                                cnt == USRQUOTA ? "user" : "group",
213                                GET_OA_ID(cnt, oa), rc);
214                         break;
215                 } else if (lqs == NULL) {
216                         /* continue to check group quota if the file's owner
217                          * doesn't have quota limit. LU-530 */
218                         continue;
219                 } else {
220                         cfs_spin_lock(&lqs->lqs_lock);
221                         if (lqs->lqs_bunit_sz <= qctxt->lqc_sync_blk) {
222                                 oa->o_flags |= (cnt == USRQUOTA) ?
223                                         OBD_FL_NO_USRQUOTA : OBD_FL_NO_GRPQUOTA;
224                                 cfs_spin_unlock(&lqs->lqs_lock);
225                                 CDEBUG(D_QUOTA, "set sync flag: bunit(%lu), "
226                                        "sync_blk(%d)\n", lqs->lqs_bunit_sz,
227                                        qctxt->lqc_sync_blk);
228                                 /* this is for quota_search_lqs */
229                                 lqs_putref(lqs);
230                                 continue;
231                         }
232                         cfs_spin_unlock(&lqs->lqs_lock);
233                         /* this is for quota_search_lqs */
234                         lqs_putref(lqs);
235                 }
236
237                 memset(oqctl, 0, sizeof(*oqctl));
238
239                 oqctl->qc_cmd = Q_GETQUOTA;
240                 oqctl->qc_type = cnt;
241                 oqctl->qc_id = (cnt == USRQUOTA) ? oa->o_uid : oa->o_gid;
242                 err = fsfilt_quotactl(obd, obt->obt_sb, oqctl);
243                 if (err) {
244                         if (!rc)
245                                 rc = err;
246                         oa->o_valid &= ~((cnt == USRQUOTA) ? OBD_MD_FLUSRQUOTA :
247                                                              OBD_MD_FLGRPQUOTA);
248                         CDEBUG(D_QUOTA, "fsfilt getquota for %s %d failed, "
249                                "(rc = %d)\n",
250                                cnt == USRQUOTA ? "user" : "group",
251                                cnt == USRQUOTA ? oa->o_uid : oa->o_gid, err);
252                         continue;
253                 }
254
255                 if (oqctl->qc_dqblk.dqb_bhardlimit &&
256                    (toqb(oqctl->qc_dqblk.dqb_curspace) >=
257                     oqctl->qc_dqblk.dqb_bhardlimit)) {
258                         oa->o_flags |= (cnt == USRQUOTA) ?
259                                 OBD_FL_NO_USRQUOTA : OBD_FL_NO_GRPQUOTA;
260                         CDEBUG(D_QUOTA, "out of quota for %s %d\n",
261                                cnt == USRQUOTA ? "user" : "group",
262                                cnt == USRQUOTA ? oa->o_uid : oa->o_gid);
263                 }
264         }
265         OBD_FREE_PTR(oqctl);
266         RETURN(rc);
267 }
268
269 /**
270  * check whether the left quota of certain uid and gid can satisfy a block_write
271  * or inode_create rpc. When need to acquire quota, return QUOTA_RET_ACQUOTA
272  */
273 static int quota_check_common(struct obd_device *obd, const unsigned int id[],
274                               int pending[], int count, int cycle, int isblk,
275                               struct inode *inode, int frags)
276 {
277         struct lustre_quota_ctxt *qctxt = &obd->u.obt.obt_qctxt;
278         int i;
279         struct qunit_data qdata[MAXQUOTAS];
280         int mb = 0;
281         int rc = 0, rc2[2] = { 0, 0 };
282         ENTRY;
283
284         cfs_spin_lock(&qctxt->lqc_lock);
285         if (!qctxt->lqc_valid){
286                 cfs_spin_unlock(&qctxt->lqc_lock);
287                 RETURN(rc);
288         }
289         cfs_spin_unlock(&qctxt->lqc_lock);
290
291         for (i = 0; i < MAXQUOTAS; i++) {
292                 struct lustre_qunit_size *lqs = NULL;
293
294                 qdata[i].qd_id = id[i];
295                 qdata[i].qd_flags = i;
296                 if (isblk)
297                         QDATA_SET_BLK(&qdata[i]);
298                 qdata[i].qd_count = 0;
299
300                 /* ignore root user */
301                 if (qdata[i].qd_id == 0 && !QDATA_IS_GRP(&qdata[i]))
302                         continue;
303
304                 lqs = quota_search_lqs(LQS_KEY(i, id[i]), qctxt, 0);
305                 if (lqs == NULL || IS_ERR(lqs))
306                         continue;
307
308                 if (IS_ERR(lqs)) {
309                         CERROR("can not find lqs for check_common: "
310                                "[id %u] [%c] [isblk %d] [count %d] [rc %ld]\n",
311                                id[i], i % 2 ? 'g': 'u', isblk, count,
312                                PTR_ERR(lqs));
313                         RETURN(PTR_ERR(lqs));
314                 }
315
316                 rc2[i] = compute_remquota(obd, qctxt, &qdata[i], isblk);
317                 cfs_spin_lock(&lqs->lqs_lock);
318                 if (!cycle) {
319                         if (isblk) {
320                                 pending[i] = count * CFS_PAGE_SIZE;
321                                 /* in order to complete this write, we need extra
322                                  * meta blocks. This function can get it through
323                                  * data needed to be written b=16542 */
324                                 if (inode) {
325                                         mb = pending[i];
326                                         rc = fsfilt_get_mblk(obd, qctxt->lqc_sb,
327                                                              &mb, inode,
328                                                              frags);
329                                         if (rc)
330                                                 CERROR("%s: can't get extra "
331                                                        "meta blocks\n",
332                                                        obd->obd_name);
333                                         else
334                                                 pending[i] += mb;
335                                 }
336                                 LASSERTF(pending[i] >= 0, "pending is not valid"
337                                          ", count=%d, mb=%d\n", count, mb);
338                                 lqs->lqs_bwrite_pending += pending[i];
339                         } else {
340                                 pending[i] = count;
341                                 lqs->lqs_iwrite_pending += pending[i];
342                         }
343                 }
344
345                 /* if xx_rec < 0, that means quota are releasing,
346                  * and it may return before we use quota. So if
347                  * we find this situation, we assuming it has
348                  * returned b=18491 */
349                 if (isblk && lqs->lqs_blk_rec < 0) {
350                         if (qdata[i].qd_count < -lqs->lqs_blk_rec)
351                                 qdata[i].qd_count = 0;
352                         else
353                                 qdata[i].qd_count += lqs->lqs_blk_rec;
354                 }
355                 if (!isblk && lqs->lqs_ino_rec < 0) {
356                         if (qdata[i].qd_count < -lqs->lqs_ino_rec)
357                                 qdata[i].qd_count = 0;
358                         else
359                                 qdata[i].qd_count += lqs->lqs_ino_rec;
360                 }
361
362                 CDEBUG(D_QUOTA, "[id %u] [%c] [isblk %d] [count %d]"
363                        " [lqs pending: %lu] [qd_count: "LPU64"] [metablocks: %d]"
364                        " [pending: %d]\n", id[i], i % 2 ? 'g': 'u', isblk, count,
365                        isblk ? lqs->lqs_bwrite_pending : lqs->lqs_iwrite_pending,
366                        qdata[i].qd_count, mb, pending[i]);
367                 if (rc2[i] == QUOTA_RET_OK) {
368                         if (isblk && qdata[i].qd_count < lqs->lqs_bwrite_pending)
369                                 rc2[i] = QUOTA_RET_ACQUOTA;
370                         if (!isblk && qdata[i].qd_count <
371                             lqs->lqs_iwrite_pending)
372                                 rc2[i] = QUOTA_RET_ACQUOTA;
373                 }
374
375                 cfs_spin_unlock(&lqs->lqs_lock);
376
377                 if (lqs->lqs_blk_rec  < 0 &&
378                     qdata[i].qd_count <
379                     lqs->lqs_bwrite_pending - lqs->lqs_blk_rec - mb)
380                         OBD_FAIL_TIMEOUT(OBD_FAIL_QUOTA_DELAY_REL, 5);
381
382                 /* When cycle is zero, lqs_*_pending will be changed. We will
383                  * get reference of the lqs here and put reference of lqs in
384                  * quota_pending_commit b=14784 */
385                 if (!cycle)
386                         lqs_getref(lqs);
387
388                 /* this is for quota_search_lqs */
389                 lqs_putref(lqs);
390         }
391
392         if (rc2[0] == QUOTA_RET_ACQUOTA || rc2[1] == QUOTA_RET_ACQUOTA)
393                 RETURN(QUOTA_RET_ACQUOTA);
394         else
395                 RETURN(rc);
396 }
397
398 int quota_is_set(struct obd_device *obd, const unsigned int id[], int flag)
399 {
400         struct lustre_qunit_size *lqs;
401         int i, q_set = 0;
402
403         if (!ll_sb_any_quota_active(obd->u.obt.obt_qctxt.lqc_sb))
404                 RETURN(0);
405
406         for (i = 0; i < MAXQUOTAS; i++) {
407                 lqs = quota_search_lqs(LQS_KEY(i, id[i]),
408                                        &obd->u.obt.obt_qctxt, 0);
409                 if (lqs && !IS_ERR(lqs)) {
410                         if (lqs->lqs_flags & flag)
411                                 q_set = 1;
412                         lqs_putref(lqs);
413                 }
414         }
415
416         return q_set;
417 }
418
419 static int quota_chk_acq_common(struct obd_device *obd, struct obd_export *exp,
420                                 const unsigned int id[], int pending[],
421                                 int count, quota_acquire acquire,
422                                 struct obd_trans_info *oti, int isblk,
423                                 struct inode *inode, int frags)
424 {
425         struct lustre_quota_ctxt *qctxt = &obd->u.obt.obt_qctxt;
426         struct timeval work_start;
427         struct timeval work_end;
428         long timediff;
429         struct l_wait_info lwi = { 0 };
430         int rc = 0, cycle = 0, count_err = 1;
431         ENTRY;
432
433         if (!quota_is_set(obd, id, isblk ? QB_SET : QI_SET))
434                 RETURN(0);
435
436         if (isblk && (exp->exp_failed || exp->exp_abort_active_req))
437                 /* If the client has been evicted or if it
438                  * timed out and tried to reconnect already,
439                  * abort the request immediately */
440                 RETURN(-ENOTCONN);
441
442         CDEBUG(D_QUOTA, "check quota for %s\n", obd->obd_name);
443         pending[USRQUOTA] = pending[GRPQUOTA] = 0;
444         /* Unfortunately, if quota master is too busy to handle the
445          * pre-dqacq in time and quota hash on ost is used up, we
446          * have to wait for the completion of in flight dqacq/dqrel,
447          * in order to get enough quota for write b=12588 */
448         cfs_gettimeofday(&work_start);
449         while ((rc = quota_check_common(obd, id, pending, count, cycle, isblk,
450                                         inode, frags)) &
451                QUOTA_RET_ACQUOTA) {
452
453                 cfs_spin_lock(&qctxt->lqc_lock);
454                 if (!qctxt->lqc_import && oti) {
455                         cfs_spin_unlock(&qctxt->lqc_lock);
456                         LASSERT(oti->oti_thread);
457                         /* The recovery thread doesn't have watchdog
458                          * attached. LU-369 */
459                         if (oti->oti_thread->t_watchdog)
460                                 lc_watchdog_disable(oti->oti_thread->\
461                                                 t_watchdog);
462                         CDEBUG(D_QUOTA, "sleep for quota master\n");
463                         l_wait_event(qctxt->lqc_wait_for_qmaster, check_qm(qctxt),
464                                      &lwi);
465                         CDEBUG(D_QUOTA, "wake up when quota master is back\n");
466                         if (oti->oti_thread->t_watchdog)
467                                 lc_watchdog_touch(oti->oti_thread->t_watchdog,
468                                        CFS_GET_TIMEOUT(oti->oti_thread->t_svc));
469                 } else {
470                         cfs_spin_unlock(&qctxt->lqc_lock);
471                 }
472
473                 cycle++;
474                 if (isblk)
475                         OBD_FAIL_TIMEOUT(OBD_FAIL_OST_HOLD_WRITE_RPC, 90);
476                 /* after acquire(), we should run quota_check_common again
477                  * so that we confirm there are enough quota to finish write */
478                 rc = acquire(obd, id, oti, isblk);
479
480                 /* please reference to dqacq_completion for the below */
481                 /* a new request is finished, try again */
482                 if (rc == QUOTA_REQ_RETURNED) {
483                         CDEBUG(D_QUOTA, "finish a quota req, try again\n");
484                         continue;
485                 }
486
487                 /* it is out of quota already */
488                 if (rc == -EDQUOT) {
489                         CDEBUG(D_QUOTA, "out of quota,  return -EDQUOT\n");
490                         break;
491                 }
492
493                 /* Related quota has been disabled by master, but enabled by
494                  * slave, do not try again. */
495                 if (unlikely(rc == -ESRCH)) {
496                         CERROR("mismatched quota configuration, stop try.\n");
497                         break;
498                 }
499
500                 if (isblk && (exp->exp_failed || exp->exp_abort_active_req))
501                         /* The client has been evicted or tried to
502                          * to reconnect already, abort the request */
503                         RETURN(-ENOTCONN);
504
505                 /* -EBUSY and others, wait a second and try again */
506                 if (rc < 0) {
507                         cfs_waitq_t        waitq;
508                         struct l_wait_info lwi;
509
510                         if (oti && oti->oti_thread && oti->oti_thread->t_watchdog)
511                                 lc_watchdog_touch(oti->oti_thread->t_watchdog,
512                                        CFS_GET_TIMEOUT(oti->oti_thread->t_svc));
513                         CDEBUG(D_QUOTA, "rc: %d, count_err: %d\n", rc,
514                                count_err++);
515
516                         cfs_waitq_init(&waitq);
517                         lwi = LWI_TIMEOUT(cfs_time_seconds(min(cycle, 10)), NULL,
518                                           NULL);
519                         l_wait_event(waitq, 0, &lwi);
520                 }
521
522                 if (rc < 0 || cycle % 10 == 0) {
523                         cfs_spin_lock(&last_print_lock);
524                         if (last_print == 0 ||
525                             cfs_time_before((last_print + cfs_time_seconds(30)),
526                                             cfs_time_current())) {
527                                 last_print = cfs_time_current();
528                                 cfs_spin_unlock(&last_print_lock);
529                                 CWARN("still haven't managed to acquire quota "
530                                       "space from the quota master after %d "
531                                       "retries (err=%d, rc=%d)\n",
532                                       cycle, count_err - 1, rc);
533                         } else {
534                                 cfs_spin_unlock(&last_print_lock);
535                         }
536                 }
537
538                 CDEBUG(D_QUOTA, "recheck quota with rc: %d, cycle: %d\n", rc,
539                        cycle);
540         }
541         cfs_gettimeofday(&work_end);
542         timediff = cfs_timeval_sub(&work_end, &work_start, NULL);
543         lprocfs_counter_add(qctxt->lqc_stats,
544                             isblk ? LQUOTA_WAIT_FOR_CHK_BLK :
545                                     LQUOTA_WAIT_FOR_CHK_INO,
546                             timediff);
547
548         if (rc > 0)
549                 rc = 0;
550         RETURN(rc);
551 }
552
553 /**
554  * when a block_write or inode_create rpc is finished, adjust the record for
555  * pending blocks and inodes
556  */
557 static int quota_pending_commit(struct obd_device *obd, const unsigned int id[],
558                                 int pending[], int isblk)
559 {
560         struct lustre_quota_ctxt *qctxt = &obd->u.obt.obt_qctxt;
561         struct timeval work_start;
562         struct timeval work_end;
563         long timediff;
564         int i;
565         struct qunit_data qdata[MAXQUOTAS];
566         ENTRY;
567
568         CDEBUG(D_QUOTA, "commit pending quota for  %s\n", obd->obd_name);
569         CLASSERT(MAXQUOTAS < 4);
570         if (!ll_sb_any_quota_active(qctxt->lqc_sb))
571                 RETURN(0);
572
573         cfs_gettimeofday(&work_start);
574         for (i = 0; i < MAXQUOTAS; i++) {
575                 struct lustre_qunit_size *lqs = NULL;
576
577                 LASSERT(pending[i] >= 0);
578                 if (pending[i] == 0)
579                         continue;
580
581                 qdata[i].qd_id = id[i];
582                 qdata[i].qd_flags = i;
583                 if (isblk)
584                         QDATA_SET_BLK(&qdata[i]);
585                 qdata[i].qd_count = 0;
586
587                 if (qdata[i].qd_id == 0 && !QDATA_IS_GRP(&qdata[i]))
588                         continue;
589
590                 lqs = quota_search_lqs(LQS_KEY(i, qdata[i].qd_id), qctxt, 0);
591                 if (lqs == NULL || IS_ERR(lqs)) {
592                         CERROR("can not find lqs for pending_commit: "
593                                "[id %u] [%c] [pending %u] [isblk %d] (rc %ld), "
594                                "maybe cause unexpected lqs refcount error!\n",
595                                id[i], i ? 'g': 'u', pending[i], isblk,
596                                lqs ? PTR_ERR(lqs) : -1);
597                         continue;
598                 }
599
600                 cfs_spin_lock(&lqs->lqs_lock);
601                 if (isblk) {
602                         LASSERTF(lqs->lqs_bwrite_pending >= pending[i],
603                                  "there are too many blocks! [id %u] [%c] "
604                                  "[bwrite_pending %lu] [pending %u]\n",
605                                  id[i], i % 2 ? 'g' : 'u',
606                                  lqs->lqs_bwrite_pending, pending[i]);
607
608                         lqs->lqs_bwrite_pending -= pending[i];
609                 } else {
610                         LASSERTF(lqs->lqs_iwrite_pending >= pending[i],
611                                 "there are too many files! [id %u] [%c] "
612                                 "[iwrite_pending %lu] [pending %u]\n",
613                                 id[i], i % 2 ? 'g' : 'u',
614                                 lqs->lqs_iwrite_pending, pending[i]);
615
616                         lqs->lqs_iwrite_pending -= pending[i];
617                 }
618                 CDEBUG(D_QUOTA, "%s: lqs_pending=%lu pending[%d]=%d isblk=%d\n",
619                        obd->obd_name,
620                        isblk ? lqs->lqs_bwrite_pending : lqs->lqs_iwrite_pending,
621                        i, pending[i], isblk);
622                 cfs_spin_unlock(&lqs->lqs_lock);
623
624                 /* for quota_search_lqs in pending_commit */
625                 lqs_putref(lqs);
626                 /* for quota_search_lqs in quota_check */
627                 lqs_putref(lqs);
628         }
629         cfs_gettimeofday(&work_end);
630         timediff = cfs_timeval_sub(&work_end, &work_start, NULL);
631         lprocfs_counter_add(qctxt->lqc_stats,
632                             isblk ? LQUOTA_WAIT_FOR_COMMIT_BLK :
633                                     LQUOTA_WAIT_FOR_COMMIT_INO,
634                             timediff);
635
636         RETURN(0);
637 }
638
639 static int mds_quota_init(void)
640 {
641         return lustre_dquot_init();
642 }
643
644 static int mds_quota_exit(void)
645 {
646         lustre_dquot_exit();
647         return 0;
648 }
649
650 static int mds_quota_setup(struct obd_device *obd)
651 {
652         struct obd_device_target *obt = &obd->u.obt;
653         struct mds_obd *mds = &obd->u.mds;
654         int rc;
655         ENTRY;
656
657         if (unlikely(mds->mds_quota)) {
658                 CWARN("try to reinitialize quota context!\n");
659                 RETURN(0);
660         }
661
662         cfs_init_rwsem(&obt->obt_rwsem);
663         obt->obt_qfmt = LUSTRE_QUOTA_V2;
664         mds->mds_quota_info.qi_version = LUSTRE_QUOTA_V2;
665         cfs_sema_init(&obt->obt_quotachecking, 1);
666         /* initialize quota master and quota context */
667         cfs_init_rwsem(&mds->mds_qonoff_sem);
668         rc = qctxt_init(obd, dqacq_handler);
669         if (rc) {
670                 CERROR("%s: initialize quota context failed! (rc:%d)\n",
671                        obd->obd_name, rc);
672                 RETURN(rc);
673         }
674         mds->mds_quota = 1;
675         RETURN(rc);
676 }
677
678 static int mds_quota_cleanup(struct obd_device *obd)
679 {
680         ENTRY;
681         if (unlikely(!obd->u.mds.mds_quota))
682                 RETURN(0);
683
684         qctxt_cleanup(&obd->u.obt.obt_qctxt, 0);
685         RETURN(0);
686 }
687
688 static int mds_quota_setinfo(struct obd_device *obd, void *data)
689 {
690         struct lustre_quota_ctxt *qctxt = &obd->u.obt.obt_qctxt;
691         ENTRY;
692
693         if (unlikely(!obd->u.mds.mds_quota))
694                 RETURN(0);
695
696         if (data != NULL)
697                 QUOTA_MASTER_READY(qctxt);
698         else
699                 QUOTA_MASTER_UNREADY(qctxt);
700         RETURN(0);
701 }
702
703 static int mds_quota_fs_cleanup(struct obd_device *obd)
704 {
705         struct mds_obd *mds = &obd->u.mds;
706         struct obd_quotactl oqctl;
707         ENTRY;
708
709         if (unlikely(!mds->mds_quota))
710                 RETURN(0);
711
712         mds->mds_quota = 0;
713         memset(&oqctl, 0, sizeof(oqctl));
714         oqctl.qc_type = UGQUOTA;
715
716         cfs_down_write(&mds->mds_qonoff_sem);
717         mds_admin_quota_off(obd, &oqctl);
718         cfs_up_write(&mds->mds_qonoff_sem);
719         RETURN(0);
720 }
721
722 static int quota_acquire_common(struct obd_device *obd, const unsigned int id[],
723                                 struct obd_trans_info *oti, int isblk)
724 {
725         struct lustre_quota_ctxt *qctxt = &obd->u.obt.obt_qctxt;
726         int rc;
727         ENTRY;
728
729         rc = qctxt_adjust_qunit(obd, qctxt, id, isblk, 1, oti);
730         RETURN(rc);
731 }
732
733 #endif /* HAVE_QUOTA_SUPPORT */
734 #endif /* __KERNEL__ */
735
736 struct osc_quota_info {
737         cfs_list_t              oqi_hash;       /* hash list */
738         struct client_obd      *oqi_cli;        /* osc obd */
739         unsigned int            oqi_id;         /* uid/gid of a file */
740         short                   oqi_type;       /* quota type */
741 };
742
743 cfs_spinlock_t qinfo_list_lock = CFS_SPIN_LOCK_UNLOCKED;
744
745 static cfs_list_t qinfo_hash[NR_DQHASH];
746 /* SLAB cache for client quota context */
747 cfs_mem_cache_t *qinfo_cachep = NULL;
748
749 static inline int hashfn(struct client_obd *cli, unsigned long id, int type)
750                          __attribute__((__const__));
751
752 static inline int hashfn(struct client_obd *cli, unsigned long id, int type)
753 {
754         unsigned long tmp = ((unsigned long)cli>>6) ^ id;
755         tmp = (tmp * (MAXQUOTAS - type)) % NR_DQHASH;
756         return tmp;
757 }
758
759 /* caller must hold qinfo_list_lock */
760 static inline void insert_qinfo_hash(struct osc_quota_info *oqi)
761 {
762         cfs_list_t *head = qinfo_hash +
763                 hashfn(oqi->oqi_cli, oqi->oqi_id, oqi->oqi_type);
764
765         LASSERT_SPIN_LOCKED(&qinfo_list_lock);
766         cfs_list_add(&oqi->oqi_hash, head);
767 }
768
769 /* caller must hold qinfo_list_lock */
770 static inline void remove_qinfo_hash(struct osc_quota_info *oqi)
771 {
772         LASSERT_SPIN_LOCKED(&qinfo_list_lock);
773         cfs_list_del_init(&oqi->oqi_hash);
774 }
775
776 /* caller must hold qinfo_list_lock */
777 static inline struct osc_quota_info *find_qinfo(struct client_obd *cli,
778                                                 unsigned int id, int type)
779 {
780         unsigned int hashent = hashfn(cli, id, type);
781         struct osc_quota_info *oqi;
782         ENTRY;
783
784         LASSERT_SPIN_LOCKED(&qinfo_list_lock);
785         cfs_list_for_each_entry(oqi, &qinfo_hash[hashent], oqi_hash) {
786                 if (oqi->oqi_cli == cli &&
787                     oqi->oqi_id == id && oqi->oqi_type == type)
788                         return oqi;
789         }
790         RETURN(NULL);
791 }
792
793 static struct osc_quota_info *alloc_qinfo(struct client_obd *cli,
794                                           unsigned int id, int type)
795 {
796         struct osc_quota_info *oqi;
797         ENTRY;
798
799         OBD_SLAB_ALLOC(oqi, qinfo_cachep, CFS_ALLOC_IO, sizeof(*oqi));
800         if(!oqi)
801                 RETURN(NULL);
802
803         CFS_INIT_LIST_HEAD(&oqi->oqi_hash);
804         oqi->oqi_cli = cli;
805         oqi->oqi_id = id;
806         oqi->oqi_type = type;
807
808         RETURN(oqi);
809 }
810
811 static void free_qinfo(struct osc_quota_info *oqi)
812 {
813         OBD_SLAB_FREE(oqi, qinfo_cachep, sizeof(*oqi));
814 }
815
816 int osc_quota_chkdq(struct client_obd *cli, const unsigned int qid[])
817 {
818         unsigned int id;
819         int cnt, rc = QUOTA_OK;
820         ENTRY;
821
822         cfs_spin_lock(&qinfo_list_lock);
823         for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
824                 struct osc_quota_info *oqi = NULL;
825
826                 id = (cnt == USRQUOTA) ? qid[USRQUOTA] : qid[GRPQUOTA];
827                 oqi = find_qinfo(cli, id, cnt);
828                 if (oqi) {
829                         rc = NO_QUOTA;
830                         break;
831                 }
832         }
833         cfs_spin_unlock(&qinfo_list_lock);
834
835         if (rc == NO_QUOTA)
836                 CDEBUG(D_QUOTA, "chkdq found noquota for %s %d\n",
837                        cnt == USRQUOTA ? "user" : "group", id);
838         RETURN(rc);
839 }
840
841 int osc_quota_setdq(struct client_obd *cli, const unsigned int qid[],
842                     obd_flag valid, obd_flag flags)
843 {
844         unsigned int id;
845         obd_flag noquota;
846         int cnt, rc = 0;
847         ENTRY;
848
849
850         for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
851                 struct osc_quota_info *oqi = NULL, *old;
852
853                 if (!(valid & ((cnt == USRQUOTA) ?
854                     OBD_MD_FLUSRQUOTA : OBD_MD_FLGRPQUOTA)))
855                         continue;
856
857                 id = (cnt == USRQUOTA) ? qid[USRQUOTA] : qid[GRPQUOTA];
858                 noquota = (cnt == USRQUOTA) ?
859                     (flags & OBD_FL_NO_USRQUOTA) : (flags & OBD_FL_NO_GRPQUOTA);
860
861                 if (noquota) {
862                         oqi = alloc_qinfo(cli, id, cnt);
863                         if (!oqi) {
864                                 rc = -ENOMEM;
865                                 CDEBUG(D_QUOTA, "setdq for %s %d failed, "
866                                        "(rc = %d)\n",
867                                        cnt == USRQUOTA ? "user" : "group",
868                                        id, rc);
869                                 break;
870                         }
871                 }
872
873                 cfs_spin_lock(&qinfo_list_lock);
874                 old = find_qinfo(cli, id, cnt);
875                 if (old && !noquota)
876                         remove_qinfo_hash(old);
877                 else if (!old && noquota)
878                         insert_qinfo_hash(oqi);
879                 cfs_spin_unlock(&qinfo_list_lock);
880
881                 if (old && !noquota)
882                         CDEBUG(D_QUOTA, "setdq to remove for %s %d\n",
883                                cnt == USRQUOTA ? "user" : "group", id);
884                 else if (!old && noquota)
885                         CDEBUG(D_QUOTA, "setdq to insert for %s %d\n",
886                                cnt == USRQUOTA ? "user" : "group", id);
887
888                 if (old) {
889                         if (noquota)
890                                 free_qinfo(oqi);
891                         else
892                                 free_qinfo(old);
893                 }
894         }
895
896         RETURN(rc);
897 }
898
899 int osc_quota_cleanup(struct obd_device *obd)
900 {
901         struct client_obd *cli = &obd->u.cli;
902         struct osc_quota_info *oqi, *n;
903         int i;
904         ENTRY;
905
906         cfs_spin_lock(&qinfo_list_lock);
907         for (i = 0; i < NR_DQHASH; i++) {
908                 cfs_list_for_each_entry_safe(oqi, n, &qinfo_hash[i], oqi_hash) {
909                         if (oqi->oqi_cli != cli)
910                                 continue;
911                         remove_qinfo_hash(oqi);
912                         free_qinfo(oqi);
913                 }
914         }
915         cfs_spin_unlock(&qinfo_list_lock);
916
917         RETURN(0);
918 }
919
920 int osc_quota_init(void)
921 {
922         int i;
923         ENTRY;
924
925         LASSERT(qinfo_cachep == NULL);
926         qinfo_cachep = cfs_mem_cache_create("osc_quota_info",
927                                             sizeof(struct osc_quota_info),
928                                             0, 0);
929         if (!qinfo_cachep)
930                 RETURN(-ENOMEM);
931
932         for (i = 0; i < NR_DQHASH; i++)
933                 CFS_INIT_LIST_HEAD(qinfo_hash + i);
934
935         RETURN(0);
936 }
937
938 int osc_quota_exit(void)
939 {
940         struct osc_quota_info *oqi, *n;
941         int i, rc;
942         ENTRY;
943
944         cfs_spin_lock(&qinfo_list_lock);
945         for (i = 0; i < NR_DQHASH; i++) {
946                 cfs_list_for_each_entry_safe(oqi, n, &qinfo_hash[i], oqi_hash) {
947                         remove_qinfo_hash(oqi);
948                         free_qinfo(oqi);
949                 }
950         }
951         cfs_spin_unlock(&qinfo_list_lock);
952
953         rc = cfs_mem_cache_destroy(qinfo_cachep);
954         LASSERTF(rc == 0, "couldn't destory qinfo_cachep slab\n");
955         qinfo_cachep = NULL;
956
957         RETURN(0);
958 }
959
960 #ifdef __KERNEL__
961 #ifdef HAVE_QUOTA_SUPPORT
962 quota_interface_t mds_quota_interface = {
963         .quota_init     = mds_quota_init,
964         .quota_exit     = mds_quota_exit,
965         .quota_setup    = mds_quota_setup,
966         .quota_cleanup  = mds_quota_cleanup,
967         .quota_check    = target_quota_check,
968         .quota_ctl      = mds_quota_ctl,
969         .quota_setinfo  = mds_quota_setinfo,
970         .quota_fs_cleanup = mds_quota_fs_cleanup,
971         .quota_recovery = mds_quota_recovery,
972         .quota_adjust   = mds_quota_adjust,
973         .quota_chkquota = quota_chk_acq_common,
974         .quota_acquire  = quota_acquire_common,
975         .quota_pending_commit = quota_pending_commit,
976 };
977
978 quota_interface_t filter_quota_interface = {
979         .quota_setup    = filter_quota_setup,
980         .quota_cleanup  = filter_quota_cleanup,
981         .quota_check    = target_quota_check,
982         .quota_ctl      = filter_quota_ctl,
983         .quota_setinfo  = filter_quota_setinfo,
984         .quota_clearinfo = filter_quota_clearinfo,
985         .quota_enforce  = filter_quota_enforce,
986         .quota_getflag  = filter_quota_getflag,
987         .quota_acquire  = quota_acquire_common,
988         .quota_adjust   = filter_quota_adjust,
989         .quota_chkquota = quota_chk_acq_common,
990         .quota_adjust_qunit   = filter_quota_adjust_qunit,
991         .quota_pending_commit = quota_pending_commit,
992 };
993 #endif
994 #endif /* __KERNEL__ */
995
996 quota_interface_t mdc_quota_interface = {
997         .quota_ctl      = client_quota_ctl,
998         .quota_check    = client_quota_check,
999         .quota_poll_check = client_quota_poll_check,
1000 };
1001
1002 quota_interface_t lmv_quota_interface = {
1003         .quota_ctl      = lmv_quota_ctl,
1004         .quota_check    = lmv_quota_check,
1005 };
1006
1007 quota_interface_t osc_quota_interface = {
1008         .quota_ctl      = client_quota_ctl,
1009         .quota_check    = client_quota_check,
1010         .quota_poll_check = client_quota_poll_check,
1011         .quota_init     = osc_quota_init,
1012         .quota_exit     = osc_quota_exit,
1013         .quota_chkdq    = osc_quota_chkdq,
1014         .quota_setdq    = osc_quota_setdq,
1015         .quota_cleanup  = osc_quota_cleanup,
1016         .quota_adjust_qunit = client_quota_adjust_qunit,
1017 };
1018
1019 quota_interface_t lov_quota_interface = {
1020         .quota_ctl      = lov_quota_ctl,
1021         .quota_check    = lov_quota_check,
1022         .quota_adjust_qunit = lov_quota_adjust_qunit,
1023 };
1024
1025 #ifdef __KERNEL__
1026
1027 cfs_proc_dir_entry_t *lquota_type_proc_dir = NULL;
1028
1029 static int __init init_lustre_quota(void)
1030 {
1031 #ifdef HAVE_QUOTA_SUPPORT
1032         int rc = 0;
1033
1034         lquota_type_proc_dir = lprocfs_register(OBD_LQUOTA_DEVICENAME,
1035                                                 proc_lustre_root,
1036                                                 NULL, NULL);
1037         if (IS_ERR(lquota_type_proc_dir)) {
1038                 CERROR("LProcFS failed in lquota-init\n");
1039                 rc = PTR_ERR(lquota_type_proc_dir);
1040                 return rc;
1041         }
1042
1043         rc = qunit_cache_init();
1044         if (rc)
1045                 return rc;
1046
1047         PORTAL_SYMBOL_REGISTER(filter_quota_interface);
1048         PORTAL_SYMBOL_REGISTER(mds_quota_interface);
1049 #endif
1050         PORTAL_SYMBOL_REGISTER(mdc_quota_interface);
1051         PORTAL_SYMBOL_REGISTER(lmv_quota_interface);
1052         PORTAL_SYMBOL_REGISTER(osc_quota_interface);
1053         PORTAL_SYMBOL_REGISTER(lov_quota_interface);
1054         return 0;
1055 }
1056
1057 static void /*__exit*/ exit_lustre_quota(void)
1058 {
1059         PORTAL_SYMBOL_UNREGISTER(mdc_quota_interface);
1060         PORTAL_SYMBOL_UNREGISTER(lmv_quota_interface);
1061         PORTAL_SYMBOL_UNREGISTER(osc_quota_interface);
1062         PORTAL_SYMBOL_UNREGISTER(lov_quota_interface);
1063 #ifdef HAVE_QUOTA_SUPPORT
1064         PORTAL_SYMBOL_UNREGISTER(filter_quota_interface);
1065         PORTAL_SYMBOL_UNREGISTER(mds_quota_interface);
1066
1067         qunit_cache_cleanup();
1068
1069         if (lquota_type_proc_dir)
1070                 lprocfs_remove(&lquota_type_proc_dir);
1071 #endif
1072 }
1073
1074 MODULE_AUTHOR("Sun Microsystems, Inc. <http://www.lustre.org/>");
1075 MODULE_DESCRIPTION("Lustre Quota");
1076 MODULE_LICENSE("GPL");
1077
1078 cfs_module(lquota, "1.0.0", init_lustre_quota, exit_lustre_quota);
1079
1080 #ifdef HAVE_QUOTA_SUPPORT
1081 EXPORT_SYMBOL(mds_quota_interface);
1082 EXPORT_SYMBOL(filter_quota_interface);
1083 #endif
1084 EXPORT_SYMBOL(mdc_quota_interface);
1085 EXPORT_SYMBOL(lmv_quota_interface);
1086 EXPORT_SYMBOL(osc_quota_interface);
1087 EXPORT_SYMBOL(lov_quota_interface);
1088 #endif /* __KERNEL */