Whamcloud - gitweb
LU-5975 quota: remove obsolete quota code
[fs/lustre-release.git] / lustre / quota / qmt_handler.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; if not, write to the
18  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19  * Boston, MA 021110-1307, USA
20  *
21  * GPL HEADER END
22  */
23 /*
24  * Copyright (c) 2012, Intel Corporation.
25  * Use is subject to license terms.
26  *
27  * Author: Johann Lombardi <johann.lombardi@intel.com>
28  * Author: Niu    Yawei    <yawei.niu@intel.com>
29  */
30
31 #define DEBUG_SUBSYSTEM S_LQUOTA
32
33 #include <obd_class.h>
34 #include "qmt_internal.h"
35
36 /*
37  * Retrieve quota settings for a given identifier.
38  *
39  * \param env     - is the environment passed by the caller
40  * \param qmt     - is the quota master target
41  * \param pool_id - is the 16-bit pool identifier
42  * \param restype - is the pool type, either block (i.e. LQUOTA_RES_DT) or inode
43  *                  (i.e. LQUOTA_RES_MD)
44  * \param qtype   - is the quota type
45  * \param id      - is the quota indentifier for which we want to acces quota
46  *                  settings.
47  * \param hard    - is the output variable where to copy the hard limit
48  * \param soft    - is the output variable where to copy the soft limit
49  * \param time    - is the output variable where to copy the grace time
50  */
51 static int qmt_get(const struct lu_env *env, struct qmt_device *qmt,
52                    __u16 pool_id, __u8 restype, __u8 qtype, union lquota_id *id,
53                    __u64 *hard, __u64 *soft, __u64 *time)
54 {
55         struct lquota_entry     *lqe;
56         ENTRY;
57
58         /* look-up lqe structure containing quota settings */
59         lqe = qmt_pool_lqe_lookup(env, qmt, pool_id, restype, qtype, id);
60         if (IS_ERR(lqe))
61                 RETURN(PTR_ERR(lqe));
62
63         /* copy quota settings */
64         lqe_read_lock(lqe);
65         LQUOTA_DEBUG(lqe, "fetch settings");
66         if (hard != NULL)
67                 *hard = lqe->lqe_hardlimit;
68         if (soft != NULL)
69                 *soft = lqe->lqe_softlimit;
70         if (time != NULL)
71                 *time = lqe->lqe_gracetime;
72         lqe_read_unlock(lqe);
73
74         lqe_putref(lqe);
75         RETURN(0);
76 }
77
78 /*
79  * Update quota settings for a given identifier.
80  *
81  * \param env     - is the environment passed by the caller
82  * \param qmt     - is the quota master target
83  * \param pool_id - is the 16-bit pool identifier
84  * \param restype - is the pool type, either block (i.e. LQUOTA_RES_DT) or inode
85  *                  (i.e. LQUOTA_RES_MD)
86  * \param qtype   - is the quota type
87  * \param id      - is the quota indentifier for which we want to modify quota
88  *                  settings.
89  * \param hard    - is the new hard limit
90  * \param soft    - is the new soft limit
91  * \param time    - is the new grace time
92  * \param valid   - is the list of settings to change
93  */
94 static int qmt_set(const struct lu_env *env, struct qmt_device *qmt,
95                    __u16 pool_id, __u8 restype, __u8 qtype,
96                    union lquota_id *id, __u64 hard, __u64 soft, __u64 time,
97                    __u32 valid)
98 {
99         struct qmt_thread_info  *qti = qmt_info(env);
100         struct lquota_entry     *lqe;
101         struct thandle          *th = NULL;
102         __u64                    ver, now;
103         bool                     dirtied = false;
104         int                      rc = 0;
105         ENTRY;
106
107         /* look-up quota entry associated with this ID */
108         lqe = qmt_pool_lqe_lookup(env, qmt, pool_id, restype, qtype, id);
109         if (IS_ERR(lqe))
110                 RETURN(PTR_ERR(lqe));
111
112         /* allocate & start transaction with enough credits to update quota
113          * settings in the global index file */
114         th = qmt_trans_start(env, lqe, &qti->qti_restore);
115         if (IS_ERR(th))
116                 GOTO(out_nolock, rc = PTR_ERR(th));
117
118         now = cfs_time_current_sec();
119
120         lqe_write_lock(lqe);
121         LQUOTA_DEBUG(lqe, "changing quota settings valid:%x hard:"LPU64" soft:"
122                      LPU64" time:"LPU64, valid, hard, soft, time);
123
124         if ((valid & QIF_TIMES) != 0 && lqe->lqe_gracetime != time) {
125                 /* change time settings */
126                 lqe->lqe_gracetime = time;
127                 dirtied            = true;
128         }
129
130         if ((valid & QIF_LIMITS) != 0 &&
131             (lqe->lqe_hardlimit != hard || lqe->lqe_softlimit != soft)) {
132                 rc = qmt_validate_limits(lqe, hard, soft);
133                 if (rc)
134                         GOTO(out, rc);
135
136                 /* recompute qunit in case it was never initialized */
137                 qmt_revalidate(env, lqe);
138
139                 /* change quota limits */
140                 lqe->lqe_hardlimit = hard;
141                 lqe->lqe_softlimit = soft;
142
143                 /* clear grace time */
144                 if (lqe->lqe_softlimit == 0 ||
145                     lqe->lqe_granted <= lqe->lqe_softlimit)
146                         /* no soft limit or below soft limit, let's clear grace
147                          * time */
148                         lqe->lqe_gracetime = 0;
149                 else if ((valid & QIF_TIMES) == 0)
150                         /* set grace only if user hasn't provided his own */
151                          lqe->lqe_gracetime = now + qmt_lqe_grace(lqe);
152
153                 /* change enforced status based on new parameters */
154                 if (lqe->lqe_hardlimit == 0 && lqe->lqe_softlimit == 0)
155                         lqe->lqe_enforced = false;
156                 else
157                         lqe->lqe_enforced = true;
158
159                 dirtied = true;
160         }
161
162         if (dirtied) {
163                 /* write new quota settings to disk */
164                 rc = qmt_glb_write(env, th, lqe, LQUOTA_BUMP_VER, &ver);
165                 if (rc) {
166                         /* restore initial quota settings */
167                         qmt_restore(lqe, &qti->qti_restore);
168                         GOTO(out, rc);
169                 }
170
171                 /* compute new qunit value now that we have modified the quota
172                  * settings */
173                 qmt_adjust_qunit(env, lqe);
174
175                 /* clear/set edquot flag as needed */
176                 qmt_adjust_edquot(lqe, now);
177         }
178         EXIT;
179 out:
180         lqe_write_unlock(lqe);
181 out_nolock:
182         lqe_putref(lqe);
183
184         if (th != NULL && !IS_ERR(th))
185                 dt_trans_stop(env, qmt->qmt_child, th);
186
187         if (rc == 0 && dirtied)
188                 qmt_glb_lock_notify(env, lqe, ver);
189
190         return rc;
191 }
192
193 /*
194  * Handle quotactl request.
195  *
196  * \param env   - is the environment passed by the caller
197  * \param ld    - is the lu device associated with the qmt
198  * \param oqctl - is the quotactl request
199  */
200 static int qmt_quotactl(const struct lu_env *env, struct lu_device *ld,
201                         struct obd_quotactl *oqctl)
202 {
203         struct qmt_thread_info  *qti = qmt_info(env);
204         union lquota_id         *id  = &qti->qti_id;
205         struct qmt_device       *qmt = lu2qmt_dev(ld);
206         struct obd_dqblk        *dqb = &oqctl->qc_dqblk;
207         int                      rc = 0;
208         ENTRY;
209
210         LASSERT(qmt != NULL);
211
212         if (oqctl->qc_type >= MAXQUOTAS)
213                 /* invalid quota type */
214                 RETURN(-EINVAL);
215
216         switch (oqctl->qc_cmd) {
217
218         case Q_GETINFO:  /* read grace times */
219                 /* Global grace time is stored in quota settings of ID 0. */
220                 id->qid_uid = 0;
221
222                 /* read inode grace time */
223                 rc = qmt_get(env, qmt, 0, LQUOTA_RES_MD, oqctl->qc_type, id,
224                              NULL, NULL, &oqctl->qc_dqinfo.dqi_igrace);
225                 if (rc)
226                         break;
227
228                 /* read block grace time */
229                 rc = qmt_get(env, qmt, 0, LQUOTA_RES_DT, oqctl->qc_type, id,
230                              NULL, NULL, &oqctl->qc_dqinfo.dqi_bgrace);
231                 break;
232
233         case Q_SETINFO:  /* modify grace times */
234                 /* setinfo should be using dqi->dqi_valid, but lfs incorrectly
235                  * sets the valid flags in dqb->dqb_valid instead, try to live
236                  * with that ... */
237
238                 /* Global grace time is stored in quota settings of ID 0. */
239                 id->qid_uid = 0;
240
241                 if ((dqb->dqb_valid & QIF_ITIME) != 0) {
242                         /* set inode grace time */
243                         rc = qmt_set(env, qmt, 0, LQUOTA_RES_MD, oqctl->qc_type,
244                                      id, 0, 0, oqctl->qc_dqinfo.dqi_igrace,
245                                      QIF_TIMES);
246                         if (rc)
247                                 break;
248                 }
249
250                 if ((dqb->dqb_valid & QIF_BTIME) != 0)
251                         /* set block grace time */
252                         rc = qmt_set(env, qmt, 0, LQUOTA_RES_DT, oqctl->qc_type,
253                                      id, 0, 0, oqctl->qc_dqinfo.dqi_bgrace,
254                                      QIF_TIMES);
255                 break;
256
257         case Q_GETQUOTA: /* consult quota limit */
258                 /* There is no quota limit for root user & group */
259                 if (oqctl->qc_id == 0) {
260                         memset(dqb, 0, sizeof(*dqb));
261                         dqb->dqb_valid = QIF_LIMITS | QIF_TIMES;
262                         break;
263                 }
264                 /* extract quota ID from quotactl request */
265                 id->qid_uid = oqctl->qc_id;
266
267                 /* look-up inode quota settings */
268                 rc = qmt_get(env, qmt, 0, LQUOTA_RES_MD, oqctl->qc_type, id,
269                              &dqb->dqb_ihardlimit, &dqb->dqb_isoftlimit,
270                              &dqb->dqb_itime);
271                 if (rc)
272                         break;
273
274                 dqb->dqb_valid |= QIF_ILIMITS | QIF_ITIME;
275                 /* master isn't aware of actual inode usage */
276                 dqb->dqb_curinodes = 0;
277
278                 /* look-up block quota settings */
279                 rc = qmt_get(env, qmt, 0, LQUOTA_RES_DT, oqctl->qc_type, id,
280                              &dqb->dqb_bhardlimit, &dqb->dqb_bsoftlimit,
281                              &dqb->dqb_btime);
282                 if (rc)
283                         break;
284
285                 dqb->dqb_valid |= QIF_BLIMITS | QIF_BTIME;
286                 /* master doesn't know the actual block usage */
287                 dqb->dqb_curspace = 0;
288                 break;
289
290         case Q_SETQUOTA: /* change quota limits */
291                 if (oqctl->qc_id == 0)
292                         /* can't enforce a quota limit for root user & group */
293                         RETURN(-EPERM);
294                 /* extract quota ID from quotactl request */
295                 id->qid_uid = oqctl->qc_id;
296
297                 if ((dqb->dqb_valid & QIF_IFLAGS) != 0) {
298                         /* update inode quota settings */
299                         rc = qmt_set(env, qmt, 0, LQUOTA_RES_MD, oqctl->qc_type,
300                                      id, dqb->dqb_ihardlimit,
301                                      dqb->dqb_isoftlimit, dqb->dqb_itime,
302                                      dqb->dqb_valid & QIF_IFLAGS);
303                         if (rc)
304                                 break;
305                 }
306
307                 if ((dqb->dqb_valid & QIF_BFLAGS) != 0)
308                         /* update block quota settings */
309                         rc = qmt_set(env, qmt, 0, LQUOTA_RES_DT, oqctl->qc_type,
310                                      id, dqb->dqb_bhardlimit,
311                                      dqb->dqb_bsoftlimit, dqb->dqb_btime,
312                                      dqb->dqb_valid & QIF_BFLAGS);
313                 break;
314
315         default:
316                 CERROR("%s: unsupported quotactl command: %d\n",
317                        qmt->qmt_svname, oqctl->qc_cmd);
318                 RETURN(-ENOTSUPP);
319         }
320
321         RETURN(rc);
322 }
323
324 /*
325  * Helper function to handle quota request from slave.
326  *
327  * \param env     - is the environment passed by the caller
328  * \param lqe     - is the lquota_entry subject to the quota request
329  * \param qmt     - is the master device
330  * \param uuid    - is the uuid associated with the slave
331  * \param qb_flags - are the quota request flags as packed in the quota_body
332  * \param qb_count - is the amount of quota space the slave wants to
333  *                   acquire/release
334  * \param qb_usage - is the current space usage on the slave
335  * \param repbody - is the quota_body of reply
336  *
337  * \retval 0            : success
338  * \retval -EDQUOT      : out of quota
339  *         -EINPROGRESS : inform client to retry write/create
340  *         -ve          : other appropriate errors
341  */
342 int qmt_dqacq0(const struct lu_env *env, struct lquota_entry *lqe,
343                struct qmt_device *qmt, struct obd_uuid *uuid, __u32 qb_flags,
344                __u64 qb_count, __u64 qb_usage, struct quota_body *repbody)
345 {
346         struct qmt_thread_info  *qti = qmt_info(env);
347         __u64                    now, count;
348         struct dt_object        *slv_obj = NULL;
349         __u64                    slv_granted, slv_granted_bck;
350         struct thandle          *th = NULL;
351         int                      rc, ret;
352         ENTRY;
353
354         LASSERT(uuid != NULL);
355
356         /* initialize reply */
357         memset(repbody, 0, sizeof(*repbody));
358         memcpy(&repbody->qb_id, &lqe->lqe_id, sizeof(repbody->qb_id));
359
360         if (OBD_FAIL_CHECK(OBD_FAIL_QUOTA_RECOVERABLE_ERR))
361                 RETURN(-cfs_fail_val);
362
363         /* look-up index file associated with acquiring slave */
364         slv_obj = lquota_disk_slv_find(env, qmt->qmt_child, LQE_ROOT(lqe),
365                                        lu_object_fid(&LQE_GLB_OBJ(lqe)->do_lu),
366                                        uuid);
367         if (IS_ERR(slv_obj))
368                 GOTO(out, rc = PTR_ERR(slv_obj));
369
370         /* pack slave fid in reply just for sanity check */
371         memcpy(&repbody->qb_slv_fid, lu_object_fid(&slv_obj->do_lu),
372                sizeof(struct lu_fid));
373
374         /* allocate & start transaction with enough credits to update
375          * global & slave indexes */
376         th = qmt_trans_start_with_slv(env, lqe, slv_obj, &qti->qti_restore);
377         if (IS_ERR(th))
378                 GOTO(out, rc = PTR_ERR(th));
379
380         lqe_write_lock(lqe);
381         LQUOTA_DEBUG(lqe, "dqacq starts uuid:%s flags:0x%x wanted:"LPU64
382                      " usage:"LPU64, obd_uuid2str(uuid), qb_flags, qb_count,
383                      qb_usage);
384
385         /* Legal race, limits have been removed on master, but slave didn't
386          * receive the change yet. Just return EINPROGRESS until the slave gets
387          * notified. */
388         if (!lqe->lqe_enforced && !req_is_rel(qb_flags))
389                 GOTO(out_locked, rc = -ESRCH);
390
391         /* recompute qunit in case it was never initialized */
392         qmt_revalidate(env, lqe);
393
394         /* slave just wants to acquire per-ID lock */
395         if (req_is_acq(qb_flags) && qb_count == 0)
396                 GOTO(out_locked, rc = 0);
397
398         /* fetch how much quota space is already granted to this slave */
399         rc = qmt_slv_read(env, lqe, slv_obj, &slv_granted);
400         if (rc) {
401                 LQUOTA_ERROR(lqe, "Failed to get granted for slave %s, rc=%d",
402                              obd_uuid2str(uuid), rc);
403                 GOTO(out_locked, rc);
404         }
405         /* recall how much space this slave currently owns in order to restore
406          * it in case of failure */
407         slv_granted_bck = slv_granted;
408
409         /* record current time for soft limit & grace time management */
410         now = (__u64)cfs_time_current_sec();
411
412         if (req_is_rel(qb_flags)) {
413                 /* Slave would like to release quota space */
414                 if (slv_granted < qb_count ||
415                     lqe->lqe_granted < qb_count) {
416                         /* can't release more than granted */
417                         LQUOTA_ERROR(lqe, "Release too much! uuid:%s release:"
418                                      LPU64" granted:"LPU64", total:"LPU64,
419                                      obd_uuid2str(uuid), qb_count,
420                                      slv_granted, lqe->lqe_granted);
421                         GOTO(out_locked, rc = -EINVAL);
422                 }
423
424                 repbody->qb_count = qb_count;
425                 /* put released space back to global pool */
426                 QMT_REL(lqe, slv_granted, qb_count);
427                 GOTO(out_write, rc = 0);
428         }
429
430         if (req_has_rep(qb_flags) && slv_granted < qb_usage) {
431                 /* Slave is reporting space usage in quota request and it turns
432                  * out to be using more quota space than owned, so we adjust
433                  * granted space regardless of the current state of affairs */
434                 repbody->qb_count = qb_usage - slv_granted;
435                 QMT_GRANT(lqe, slv_granted, repbody->qb_count);
436         }
437
438         if (!req_is_acq(qb_flags) && !req_is_preacq(qb_flags))
439                 GOTO(out_write, rc = 0);
440
441         qmt_adjust_edquot(lqe, now);
442         if (lqe->lqe_edquot)
443                 /* no hope to claim further space back */
444                 GOTO(out_write, rc = -EDQUOT);
445
446         if (qmt_space_exhausted(lqe, now)) {
447                 /* might have some free space once rebalancing is completed */
448                 rc = req_is_acq(qb_flags) ? -EINPROGRESS : -EDQUOT;
449                 GOTO(out_write, rc);
450         }
451
452         if (req_is_preacq(qb_flags)) {
453                 /* slave would like to pre-acquire quota space. To do so, it
454                  * reports in qb_count how much spare quota space it owns and we
455                  * can grant back quota space which is consistent with qunit
456                  * value. */
457
458                 if (qb_count >= lqe->lqe_qunit)
459                         /* slave already own the maximum it should */
460                         GOTO(out_write, rc = 0);
461
462                 count = qmt_alloc_expand(lqe, slv_granted, qb_count);
463                 if (count == 0)
464                         GOTO(out_write, rc = -EDQUOT);
465
466                 repbody->qb_count += count;
467                 QMT_GRANT(lqe, slv_granted, count);
468                 GOTO(out_write, rc = 0);
469         }
470
471         /* processing acquire request with clients waiting */
472         if (lqe->lqe_hardlimit != 0 &&
473             lqe->lqe_granted + qb_count > lqe->lqe_hardlimit) {
474                 /* cannot grant as much as asked, but can still afford to grant
475                  * some quota space back */
476                 count = lqe->lqe_hardlimit - lqe->lqe_granted;
477                 repbody->qb_count += count;
478                 QMT_GRANT(lqe, slv_granted, count);
479                 GOTO(out_write, rc = 0);
480         }
481
482         /* Whouhou! we can satisfy the slave request! */
483         repbody->qb_count += qb_count;
484         QMT_GRANT(lqe, slv_granted, qb_count);
485
486         /* Try to expand the acquired count for DQACQ */
487         count = qmt_alloc_expand(lqe, slv_granted, 0);
488         if (count != 0) {
489                 /* can even grant more than asked, it is like xmas ... */
490                 repbody->qb_count += count;
491                 QMT_GRANT(lqe, slv_granted, count);
492                 GOTO(out_write, rc = 0);
493         }
494
495         GOTO(out_write, rc = 0);
496 out_write:
497         if (repbody->qb_count == 0)
498                 GOTO(out_locked, rc);
499
500         /* start/stop grace timer if required */
501         if (lqe->lqe_softlimit != 0) {
502                 if (lqe->lqe_granted > lqe->lqe_softlimit &&
503                     lqe->lqe_gracetime == 0)
504                         /* first time over soft limit, let's start grace
505                          * timer */
506                         lqe->lqe_gracetime = now + qmt_lqe_grace(lqe);
507                 else if (lqe->lqe_granted <= lqe->lqe_softlimit &&
508                          lqe->lqe_gracetime != 0)
509                         /* Clear grace timer */
510                         lqe->lqe_gracetime = 0;
511         }
512
513         /* Update slave index first since it is easier to roll back */
514         ret = qmt_slv_write(env, th, lqe, slv_obj, LQUOTA_BUMP_VER,
515                             &repbody->qb_slv_ver, slv_granted);
516         if (ret) {
517                 /* restore initial quota settings */
518                 qmt_restore(lqe, &qti->qti_restore);
519                 /* reset qb_count */
520                 repbody->qb_count = 0;
521                 GOTO(out_locked, rc = ret);
522         }
523
524         /* Update global index, no version bump needed */
525         ret = qmt_glb_write(env, th, lqe, 0, NULL);
526         if (ret) {
527                 rc = ret;
528                 /* restore initial quota settings */
529                 qmt_restore(lqe, &qti->qti_restore);
530                 /* reset qb_count */
531                 repbody->qb_count = 0;
532
533                 /* restore previous granted value */
534                 ret = qmt_slv_write(env, th, lqe, slv_obj, 0, NULL,
535                                     slv_granted_bck);
536                 if (ret) {
537                         LQUOTA_ERROR(lqe, "failed to restore initial slave "
538                                      "value rc:%d ret%d", rc, ret);
539                         LBUG();
540                 }
541                 qmt_adjust_edquot(lqe, now);
542                 GOTO(out_locked, rc);
543         }
544
545         /* Total granted has been changed, let's try to adjust the qunit
546          * size according to the total granted & limits. */
547         qmt_adjust_qunit(env, lqe);
548
549         /* clear/set edquot flag and notify slaves via glimpse if needed */
550         qmt_adjust_edquot(lqe, now);
551 out_locked:
552         LQUOTA_DEBUG(lqe, "dqacq ends count:"LPU64" ver:"LPU64" rc:%d",
553                      repbody->qb_count, repbody->qb_slv_ver, rc);
554         lqe_write_unlock(lqe);
555 out:
556         if (th != NULL && !IS_ERR(th))
557                 dt_trans_stop(env, qmt->qmt_child, th);
558
559         if (slv_obj != NULL && !IS_ERR(slv_obj))
560                 lu_object_put(env, &slv_obj->do_lu);
561
562         if ((req_is_acq(qb_flags) || req_is_preacq(qb_flags)) &&
563             OBD_FAIL_CHECK(OBD_FAIL_QUOTA_EDQUOT)) {
564                 /* introduce inconsistency between granted value in slave index
565                  * and slave index copy of slave */
566                 repbody->qb_count = 0;
567                 rc = -EDQUOT;
568         }
569
570         RETURN(rc);
571 }
572
573 /*
574  * Handle quota request from slave.
575  *
576  * \param env  - is the environment passed by the caller
577  * \param ld   - is the lu device associated with the qmt
578  * \param req  - is the quota acquire request
579  */
580 static int qmt_dqacq(const struct lu_env *env, struct lu_device *ld,
581                      struct ptlrpc_request *req)
582 {
583         struct qmt_device       *qmt = lu2qmt_dev(ld);
584         struct quota_body       *qbody, *repbody;
585         struct obd_uuid         *uuid;
586         struct ldlm_lock        *lock;
587         struct lquota_entry     *lqe;
588         int                      pool_id, pool_type, qtype;
589         int                      rc;
590         ENTRY;
591
592         qbody = req_capsule_client_get(&req->rq_pill, &RMF_QUOTA_BODY);
593         if (qbody == NULL)
594                 RETURN(err_serious(-EPROTO));
595
596         repbody = req_capsule_server_get(&req->rq_pill, &RMF_QUOTA_BODY);
597         if (repbody == NULL)
598                 RETURN(err_serious(-EFAULT));
599
600         /* verify if global lock is stale */
601         if (!lustre_handle_is_used(&qbody->qb_glb_lockh))
602                 RETURN(-ENOLCK);
603
604         lock = ldlm_handle2lock(&qbody->qb_glb_lockh);
605         if (lock == NULL)
606                 RETURN(-ENOLCK);
607         LDLM_LOCK_PUT(lock);
608
609         uuid = &req->rq_export->exp_client_uuid;
610
611         if (req_is_rel(qbody->qb_flags) + req_is_acq(qbody->qb_flags) +
612             req_is_preacq(qbody->qb_flags) > 1) {
613                 CERROR("%s: malformed quota request with conflicting flags set "
614                        "(%x) from slave %s\n", qmt->qmt_svname,
615                        qbody->qb_flags, obd_uuid2str(uuid));
616                 RETURN(-EPROTO);
617         }
618
619         if (req_is_acq(qbody->qb_flags) || req_is_preacq(qbody->qb_flags)) {
620                 /* acquire and pre-acquire should use a valid ID lock */
621
622                 if (!lustre_handle_is_used(&qbody->qb_lockh))
623                         RETURN(-ENOLCK);
624
625                 lock = ldlm_handle2lock(&qbody->qb_lockh);
626                 if (lock == NULL)
627                         /* no lock associated with this handle */
628                         RETURN(-ENOLCK);
629
630                 LDLM_DEBUG(lock, "%sacquire request",
631                            req_is_preacq(qbody->qb_flags) ? "pre" : "");
632
633                 if (!obd_uuid_equals(&lock->l_export->exp_client_uuid, uuid)) {
634                         /* sorry, no way to cheat ... */
635                         LDLM_LOCK_PUT(lock);
636                         RETURN(-ENOLCK);
637                 }
638
639                 if (ldlm_is_ast_sent(lock)) {
640                         struct ptlrpc_service_part      *svc;
641                         unsigned int                     timeout;
642
643                         svc = req->rq_rqbd->rqbd_svcpt;
644                         timeout = at_est2timeout(at_get(&svc->scp_at_estimate));
645                         timeout += (ldlm_bl_timeout(lock) >> 1);
646
647                         /* lock is being cancelled, prolong timeout */
648                         ldlm_refresh_waiting_lock(lock, timeout);
649                 }
650                 LDLM_LOCK_PUT(lock);
651         }
652
653         /* extract pool & quota information from global index FID packed in the
654          * request */
655         rc = lquota_extract_fid(&qbody->qb_fid, &pool_id, &pool_type, &qtype);
656         if (rc)
657                 RETURN(-EINVAL);
658
659         /* Find the quota entry associated with the quota id */
660         lqe = qmt_pool_lqe_lookup(env, qmt, pool_id, pool_type, qtype,
661                                   &qbody->qb_id);
662         if (IS_ERR(lqe))
663                 RETURN(PTR_ERR(lqe));
664
665         /* process quota request */
666         rc = qmt_dqacq0(env, lqe, qmt, uuid, qbody->qb_flags, qbody->qb_count,
667                         qbody->qb_usage, repbody);
668
669         if (lustre_handle_is_used(&qbody->qb_lockh))
670                 /* return current qunit value only to slaves owning an per-ID
671                  * quota lock. For enqueue, the qunit value will be returned in
672                  * the LVB */
673                  repbody->qb_qunit = lqe->lqe_qunit;
674         lqe_putref(lqe);
675         RETURN(rc);
676 }
677
678 /* Vector of quota request handlers. This vector is used by the MDT to forward
679  * requests to the quota master. */
680 struct qmt_handlers qmt_hdls = {
681         /* quota request handlers */
682         .qmth_quotactl          = qmt_quotactl,
683         .qmth_dqacq             = qmt_dqacq,
684
685         /* ldlm handlers */
686         .qmth_intent_policy     = qmt_intent_policy,
687         .qmth_lvbo_init         = qmt_lvbo_init,
688         .qmth_lvbo_update       = qmt_lvbo_update,
689         .qmth_lvbo_size         = qmt_lvbo_size,
690         .qmth_lvbo_fill         = qmt_lvbo_fill,
691         .qmth_lvbo_free         = qmt_lvbo_free,
692 };
693 EXPORT_SYMBOL(qmt_hdls);