blob: b9db6f781cd69f2476b34816317ea3d139b45f20 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Nathan Scott4ce31212005-11-02 14:59:41 +11002 * Copyright (c) 2000-2002 Silicon Graphics, Inc.
3 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Nathan Scott4ce31212005-11-02 14:59:41 +11005 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * published by the Free Software Foundation.
8 *
Nathan Scott4ce31212005-11-02 14:59:41 +11009 * This program is distributed in the hope that it would be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
Nathan Scott4ce31212005-11-02 14:59:41 +110014 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write the Free Software Foundation,
16 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include "xfs.h"
19#include "xfs_fs.h"
Nathan Scotta844f452005-11-02 14:38:42 +110020#include "xfs_bit.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include "xfs_log.h"
Nathan Scotta844f452005-11-02 14:38:42 +110022#include "xfs_inum.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include "xfs_trans.h"
24#include "xfs_sb.h"
25#include "xfs_ag.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include "xfs_dir2.h"
27#include "xfs_alloc.h"
28#include "xfs_dmapi.h"
29#include "xfs_quota.h"
30#include "xfs_mount.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include "xfs_bmap_btree.h"
Nathan Scotta844f452005-11-02 14:38:42 +110032#include "xfs_alloc_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include "xfs_ialloc_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include "xfs_attr_sf.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include "xfs_dir2_sf.h"
36#include "xfs_dinode.h"
37#include "xfs_inode.h"
Nathan Scotta844f452005-11-02 14:38:42 +110038#include "xfs_ialloc.h"
39#include "xfs_itable.h"
40#include "xfs_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include "xfs_bmap.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include "xfs_rtalloc.h"
43#include "xfs_error.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include "xfs_rw.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include "xfs_attr.h"
46#include "xfs_buf_item.h"
47#include "xfs_trans_priv.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include "xfs_qm.h"
49
50STATIC void xfs_trans_alloc_dqinfo(xfs_trans_t *);
51
52/*
53 * Add the locked dquot to the transaction.
54 * The dquot must be locked, and it cannot be associated with any
55 * transaction.
56 */
57void
58xfs_trans_dqjoin(
59 xfs_trans_t *tp,
60 xfs_dquot_t *dqp)
61{
62 xfs_dq_logitem_t *lp;
63
64 ASSERT(! XFS_DQ_IS_ADDEDTO_TRX(tp, dqp));
65 ASSERT(XFS_DQ_IS_LOCKED(dqp));
66 ASSERT(XFS_DQ_IS_LOGITEM_INITD(dqp));
67 lp = &dqp->q_logitem;
68
69 /*
70 * Get a log_item_desc to point at the new item.
71 */
72 (void) xfs_trans_add_item(tp, (xfs_log_item_t*)(lp));
73
74 /*
75 * Initialize i_transp so we can later determine if this dquot is
76 * associated with this transaction.
77 */
78 dqp->q_transp = tp;
79}
80
81
82/*
83 * This is called to mark the dquot as needing
84 * to be logged when the transaction is committed. The dquot must
85 * already be associated with the given transaction.
86 * Note that it marks the entire transaction as dirty. In the ordinary
87 * case, this gets called via xfs_trans_commit, after the transaction
88 * is already dirty. However, there's nothing stop this from getting
89 * called directly, as done by xfs_qm_scall_setqlim. Hence, the TRANS_DIRTY
90 * flag.
91 */
92void
93xfs_trans_log_dquot(
94 xfs_trans_t *tp,
95 xfs_dquot_t *dqp)
96{
97 xfs_log_item_desc_t *lidp;
98
99 ASSERT(XFS_DQ_IS_ADDEDTO_TRX(tp, dqp));
100 ASSERT(XFS_DQ_IS_LOCKED(dqp));
101
102 lidp = xfs_trans_find_item(tp, (xfs_log_item_t*)(&dqp->q_logitem));
103 ASSERT(lidp != NULL);
104
105 tp->t_flags |= XFS_TRANS_DIRTY;
106 lidp->lid_flags |= XFS_LID_DIRTY;
107}
108
109/*
110 * Carry forward whatever is left of the quota blk reservation to
111 * the spanky new transaction
112 */
Christoph Hellwig7d095252009-06-08 15:33:32 +0200113void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114xfs_trans_dup_dqinfo(
115 xfs_trans_t *otp,
116 xfs_trans_t *ntp)
117{
118 xfs_dqtrx_t *oq, *nq;
119 int i,j;
120 xfs_dqtrx_t *oqa, *nqa;
121
122 if (!otp->t_dqinfo)
123 return;
124
125 xfs_trans_alloc_dqinfo(ntp);
126 oqa = otp->t_dqinfo->dqa_usrdquots;
127 nqa = ntp->t_dqinfo->dqa_usrdquots;
128
129 /*
130 * Because the quota blk reservation is carried forward,
131 * it is also necessary to carry forward the DQ_DIRTY flag.
132 */
133 if(otp->t_flags & XFS_TRANS_DQ_DIRTY)
134 ntp->t_flags |= XFS_TRANS_DQ_DIRTY;
135
136 for (j = 0; j < 2; j++) {
137 for (i = 0; i < XFS_QM_TRANS_MAXDQS; i++) {
138 if (oqa[i].qt_dquot == NULL)
139 break;
140 oq = &oqa[i];
141 nq = &nqa[i];
142
143 nq->qt_dquot = oq->qt_dquot;
144 nq->qt_bcount_delta = nq->qt_icount_delta = 0;
145 nq->qt_rtbcount_delta = 0;
146
147 /*
148 * Transfer whatever is left of the reservations.
149 */
150 nq->qt_blk_res = oq->qt_blk_res - oq->qt_blk_res_used;
151 oq->qt_blk_res = oq->qt_blk_res_used;
152
153 nq->qt_rtblk_res = oq->qt_rtblk_res -
154 oq->qt_rtblk_res_used;
155 oq->qt_rtblk_res = oq->qt_rtblk_res_used;
156
157 nq->qt_ino_res = oq->qt_ino_res - oq->qt_ino_res_used;
158 oq->qt_ino_res = oq->qt_ino_res_used;
159
160 }
161 oqa = otp->t_dqinfo->dqa_grpdquots;
162 nqa = ntp->t_dqinfo->dqa_grpdquots;
163 }
164}
165
166/*
167 * Wrap around mod_dquot to account for both user and group quotas.
168 */
Christoph Hellwig7d095252009-06-08 15:33:32 +0200169void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170xfs_trans_mod_dquot_byino(
171 xfs_trans_t *tp,
172 xfs_inode_t *ip,
173 uint field,
174 long delta)
175{
Christoph Hellwig7d095252009-06-08 15:33:32 +0200176 xfs_mount_t *mp = tp->t_mountp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
Christoph Hellwig7d095252009-06-08 15:33:32 +0200178 if (!XFS_IS_QUOTA_RUNNING(mp) ||
179 !XFS_IS_QUOTA_ON(mp) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 ip->i_ino == mp->m_sb.sb_uquotino ||
181 ip->i_ino == mp->m_sb.sb_gquotino)
182 return;
183
184 if (tp->t_dqinfo == NULL)
185 xfs_trans_alloc_dqinfo(tp);
186
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000187 if (XFS_IS_UQUOTA_ON(mp) && ip->i_udquot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 (void) xfs_trans_mod_dquot(tp, ip->i_udquot, field, delta);
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000189 if (XFS_IS_OQUOTA_ON(mp) && ip->i_gdquot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 (void) xfs_trans_mod_dquot(tp, ip->i_gdquot, field, delta);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191}
192
193STATIC xfs_dqtrx_t *
194xfs_trans_get_dqtrx(
195 xfs_trans_t *tp,
196 xfs_dquot_t *dqp)
197{
198 int i;
199 xfs_dqtrx_t *qa;
200
201 for (i = 0; i < XFS_QM_TRANS_MAXDQS; i++) {
202 qa = XFS_QM_DQP_TO_DQACCT(tp, dqp);
203
204 if (qa[i].qt_dquot == NULL ||
205 qa[i].qt_dquot == dqp) {
206 return (&qa[i]);
207 }
208 }
209
210 return (NULL);
211}
212
213/*
214 * Make the changes in the transaction structure.
215 * The moral equivalent to xfs_trans_mod_sb().
216 * We don't touch any fields in the dquot, so we don't care
217 * if it's locked or not (most of the time it won't be).
218 */
219void
220xfs_trans_mod_dquot(
221 xfs_trans_t *tp,
222 xfs_dquot_t *dqp,
223 uint field,
224 long delta)
225{
226 xfs_dqtrx_t *qtrx;
227
228 ASSERT(tp);
Christoph Hellwig7d095252009-06-08 15:33:32 +0200229 ASSERT(XFS_IS_QUOTA_RUNNING(tp->t_mountp));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 qtrx = NULL;
231
232 if (tp->t_dqinfo == NULL)
233 xfs_trans_alloc_dqinfo(tp);
234 /*
235 * Find either the first free slot or the slot that belongs
236 * to this dquot.
237 */
238 qtrx = xfs_trans_get_dqtrx(tp, dqp);
239 ASSERT(qtrx);
240 if (qtrx->qt_dquot == NULL)
241 qtrx->qt_dquot = dqp;
242
243 switch (field) {
244
245 /*
246 * regular disk blk reservation
247 */
248 case XFS_TRANS_DQ_RES_BLKS:
249 qtrx->qt_blk_res += (ulong)delta;
250 break;
251
252 /*
253 * inode reservation
254 */
255 case XFS_TRANS_DQ_RES_INOS:
256 qtrx->qt_ino_res += (ulong)delta;
257 break;
258
259 /*
260 * disk blocks used.
261 */
262 case XFS_TRANS_DQ_BCOUNT:
263 if (qtrx->qt_blk_res && delta > 0) {
264 qtrx->qt_blk_res_used += (ulong)delta;
265 ASSERT(qtrx->qt_blk_res >= qtrx->qt_blk_res_used);
266 }
267 qtrx->qt_bcount_delta += delta;
268 break;
269
270 case XFS_TRANS_DQ_DELBCOUNT:
271 qtrx->qt_delbcnt_delta += delta;
272 break;
273
274 /*
275 * Inode Count
276 */
277 case XFS_TRANS_DQ_ICOUNT:
278 if (qtrx->qt_ino_res && delta > 0) {
279 qtrx->qt_ino_res_used += (ulong)delta;
280 ASSERT(qtrx->qt_ino_res >= qtrx->qt_ino_res_used);
281 }
282 qtrx->qt_icount_delta += delta;
283 break;
284
285 /*
286 * rtblk reservation
287 */
288 case XFS_TRANS_DQ_RES_RTBLKS:
289 qtrx->qt_rtblk_res += (ulong)delta;
290 break;
291
292 /*
293 * rtblk count
294 */
295 case XFS_TRANS_DQ_RTBCOUNT:
296 if (qtrx->qt_rtblk_res && delta > 0) {
297 qtrx->qt_rtblk_res_used += (ulong)delta;
298 ASSERT(qtrx->qt_rtblk_res >= qtrx->qt_rtblk_res_used);
299 }
300 qtrx->qt_rtbcount_delta += delta;
301 break;
302
303 case XFS_TRANS_DQ_DELRTBCOUNT:
304 qtrx->qt_delrtb_delta += delta;
305 break;
306
307 default:
308 ASSERT(0);
309 }
310 tp->t_flags |= XFS_TRANS_DQ_DIRTY;
311}
312
313
314/*
315 * Given an array of dqtrx structures, lock all the dquots associated
316 * and join them to the transaction, provided they have been modified.
317 * We know that the highest number of dquots (of one type - usr OR grp),
318 * involved in a transaction is 2 and that both usr and grp combined - 3.
319 * So, we don't attempt to make this very generic.
320 */
321STATIC void
322xfs_trans_dqlockedjoin(
323 xfs_trans_t *tp,
324 xfs_dqtrx_t *q)
325{
326 ASSERT(q[0].qt_dquot != NULL);
327 if (q[1].qt_dquot == NULL) {
328 xfs_dqlock(q[0].qt_dquot);
329 xfs_trans_dqjoin(tp, q[0].qt_dquot);
330 } else {
331 ASSERT(XFS_QM_TRANS_MAXDQS == 2);
332 xfs_dqlock2(q[0].qt_dquot, q[1].qt_dquot);
333 xfs_trans_dqjoin(tp, q[0].qt_dquot);
334 xfs_trans_dqjoin(tp, q[1].qt_dquot);
335 }
336}
337
338
339/*
340 * Called by xfs_trans_commit() and similar in spirit to
341 * xfs_trans_apply_sb_deltas().
342 * Go thru all the dquots belonging to this transaction and modify the
343 * INCORE dquot to reflect the actual usages.
344 * Unreserve just the reservations done by this transaction.
345 * dquot is still left locked at exit.
346 */
Christoph Hellwig7d095252009-06-08 15:33:32 +0200347void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348xfs_trans_apply_dquot_deltas(
349 xfs_trans_t *tp)
350{
351 int i, j;
352 xfs_dquot_t *dqp;
353 xfs_dqtrx_t *qtrx, *qa;
354 xfs_disk_dquot_t *d;
355 long totalbdelta;
356 long totalrtbdelta;
357
Christoph Hellwig7d095252009-06-08 15:33:32 +0200358 if (!(tp->t_flags & XFS_TRANS_DQ_DIRTY))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 return;
360
361 ASSERT(tp->t_dqinfo);
362 qa = tp->t_dqinfo->dqa_usrdquots;
363 for (j = 0; j < 2; j++) {
364 if (qa[0].qt_dquot == NULL) {
365 qa = tp->t_dqinfo->dqa_grpdquots;
366 continue;
367 }
368
369 /*
370 * Lock all of the dquots and join them to the transaction.
371 */
372 xfs_trans_dqlockedjoin(tp, qa);
373
374 for (i = 0; i < XFS_QM_TRANS_MAXDQS; i++) {
375 qtrx = &qa[i];
376 /*
377 * The array of dquots is filled
378 * sequentially, not sparsely.
379 */
380 if ((dqp = qtrx->qt_dquot) == NULL)
381 break;
382
383 ASSERT(XFS_DQ_IS_LOCKED(dqp));
384 ASSERT(XFS_DQ_IS_ADDEDTO_TRX(tp, dqp));
385
386 /*
387 * adjust the actual number of blocks used
388 */
389 d = &dqp->q_core;
390
391 /*
392 * The issue here is - sometimes we don't make a blkquota
393 * reservation intentionally to be fair to users
394 * (when the amount is small). On the other hand,
395 * delayed allocs do make reservations, but that's
396 * outside of a transaction, so we have no
397 * idea how much was really reserved.
398 * So, here we've accumulated delayed allocation blks and
399 * non-delay blks. The assumption is that the
400 * delayed ones are always reserved (outside of a
401 * transaction), and the others may or may not have
402 * quota reservations.
403 */
404 totalbdelta = qtrx->qt_bcount_delta +
405 qtrx->qt_delbcnt_delta;
406 totalrtbdelta = qtrx->qt_rtbcount_delta +
407 qtrx->qt_delrtb_delta;
408#ifdef QUOTADEBUG
409 if (totalbdelta < 0)
Christoph Hellwig1149d962005-11-02 15:01:12 +1100410 ASSERT(be64_to_cpu(d->d_bcount) >=
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 (xfs_qcnt_t) -totalbdelta);
412
413 if (totalrtbdelta < 0)
Christoph Hellwig1149d962005-11-02 15:01:12 +1100414 ASSERT(be64_to_cpu(d->d_rtbcount) >=
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 (xfs_qcnt_t) -totalrtbdelta);
416
417 if (qtrx->qt_icount_delta < 0)
Christoph Hellwig1149d962005-11-02 15:01:12 +1100418 ASSERT(be64_to_cpu(d->d_icount) >=
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 (xfs_qcnt_t) -qtrx->qt_icount_delta);
420#endif
421 if (totalbdelta)
Marcin Slusarz413d57c2008-02-13 15:03:29 -0800422 be64_add_cpu(&d->d_bcount, (xfs_qcnt_t)totalbdelta);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
424 if (qtrx->qt_icount_delta)
Marcin Slusarz413d57c2008-02-13 15:03:29 -0800425 be64_add_cpu(&d->d_icount, (xfs_qcnt_t)qtrx->qt_icount_delta);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426
427 if (totalrtbdelta)
Marcin Slusarz413d57c2008-02-13 15:03:29 -0800428 be64_add_cpu(&d->d_rtbcount, (xfs_qcnt_t)totalrtbdelta);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429
430 /*
431 * Get any default limits in use.
432 * Start/reset the timer(s) if needed.
433 */
434 if (d->d_id) {
435 xfs_qm_adjust_dqlimits(tp->t_mountp, d);
436 xfs_qm_adjust_dqtimers(tp->t_mountp, d);
437 }
438
439 dqp->dq_flags |= XFS_DQ_DIRTY;
440 /*
441 * add this to the list of items to get logged
442 */
443 xfs_trans_log_dquot(tp, dqp);
444 /*
445 * Take off what's left of the original reservation.
446 * In case of delayed allocations, there's no
447 * reservation that a transaction structure knows of.
448 */
449 if (qtrx->qt_blk_res != 0) {
450 if (qtrx->qt_blk_res != qtrx->qt_blk_res_used) {
451 if (qtrx->qt_blk_res >
452 qtrx->qt_blk_res_used)
453 dqp->q_res_bcount -= (xfs_qcnt_t)
454 (qtrx->qt_blk_res -
455 qtrx->qt_blk_res_used);
456 else
457 dqp->q_res_bcount -= (xfs_qcnt_t)
458 (qtrx->qt_blk_res_used -
459 qtrx->qt_blk_res);
460 }
461 } else {
462 /*
463 * These blks were never reserved, either inside
464 * a transaction or outside one (in a delayed
465 * allocation). Also, this isn't always a
466 * negative number since we sometimes
467 * deliberately skip quota reservations.
468 */
469 if (qtrx->qt_bcount_delta) {
470 dqp->q_res_bcount +=
471 (xfs_qcnt_t)qtrx->qt_bcount_delta;
472 }
473 }
474 /*
475 * Adjust the RT reservation.
476 */
477 if (qtrx->qt_rtblk_res != 0) {
Nathan Scott06d10dd2005-06-21 15:48:47 +1000478 if (qtrx->qt_rtblk_res != qtrx->qt_rtblk_res_used) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 if (qtrx->qt_rtblk_res >
480 qtrx->qt_rtblk_res_used)
481 dqp->q_res_rtbcount -= (xfs_qcnt_t)
482 (qtrx->qt_rtblk_res -
483 qtrx->qt_rtblk_res_used);
484 else
485 dqp->q_res_rtbcount -= (xfs_qcnt_t)
486 (qtrx->qt_rtblk_res_used -
487 qtrx->qt_rtblk_res);
488 }
489 } else {
490 if (qtrx->qt_rtbcount_delta)
491 dqp->q_res_rtbcount +=
492 (xfs_qcnt_t)qtrx->qt_rtbcount_delta;
493 }
494
495 /*
496 * Adjust the inode reservation.
497 */
498 if (qtrx->qt_ino_res != 0) {
499 ASSERT(qtrx->qt_ino_res >=
500 qtrx->qt_ino_res_used);
501 if (qtrx->qt_ino_res > qtrx->qt_ino_res_used)
502 dqp->q_res_icount -= (xfs_qcnt_t)
503 (qtrx->qt_ino_res -
504 qtrx->qt_ino_res_used);
505 } else {
506 if (qtrx->qt_icount_delta)
507 dqp->q_res_icount +=
508 (xfs_qcnt_t)qtrx->qt_icount_delta;
509 }
510
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 ASSERT(dqp->q_res_bcount >=
Christoph Hellwig1149d962005-11-02 15:01:12 +1100512 be64_to_cpu(dqp->q_core.d_bcount));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 ASSERT(dqp->q_res_icount >=
Christoph Hellwig1149d962005-11-02 15:01:12 +1100514 be64_to_cpu(dqp->q_core.d_icount));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 ASSERT(dqp->q_res_rtbcount >=
Christoph Hellwig1149d962005-11-02 15:01:12 +1100516 be64_to_cpu(dqp->q_core.d_rtbcount));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 }
518 /*
519 * Do the group quotas next
520 */
521 qa = tp->t_dqinfo->dqa_grpdquots;
522 }
523}
524
525/*
526 * Release the reservations, and adjust the dquots accordingly.
527 * This is called only when the transaction is being aborted. If by
528 * any chance we have done dquot modifications incore (ie. deltas) already,
529 * we simply throw those away, since that's the expected behavior
530 * when a transaction is curtailed without a commit.
531 */
Christoph Hellwig7d095252009-06-08 15:33:32 +0200532void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533xfs_trans_unreserve_and_mod_dquots(
534 xfs_trans_t *tp)
535{
536 int i, j;
537 xfs_dquot_t *dqp;
538 xfs_dqtrx_t *qtrx, *qa;
539 boolean_t locked;
540
541 if (!tp->t_dqinfo || !(tp->t_flags & XFS_TRANS_DQ_DIRTY))
542 return;
543
544 qa = tp->t_dqinfo->dqa_usrdquots;
545
546 for (j = 0; j < 2; j++) {
547 for (i = 0; i < XFS_QM_TRANS_MAXDQS; i++) {
548 qtrx = &qa[i];
549 /*
550 * We assume that the array of dquots is filled
551 * sequentially, not sparsely.
552 */
553 if ((dqp = qtrx->qt_dquot) == NULL)
554 break;
555 /*
556 * Unreserve the original reservation. We don't care
557 * about the number of blocks used field, or deltas.
558 * Also we don't bother to zero the fields.
559 */
560 locked = B_FALSE;
561 if (qtrx->qt_blk_res) {
562 xfs_dqlock(dqp);
563 locked = B_TRUE;
564 dqp->q_res_bcount -=
565 (xfs_qcnt_t)qtrx->qt_blk_res;
566 }
567 if (qtrx->qt_ino_res) {
568 if (!locked) {
569 xfs_dqlock(dqp);
570 locked = B_TRUE;
571 }
572 dqp->q_res_icount -=
573 (xfs_qcnt_t)qtrx->qt_ino_res;
574 }
575
576 if (qtrx->qt_rtblk_res) {
577 if (!locked) {
578 xfs_dqlock(dqp);
579 locked = B_TRUE;
580 }
581 dqp->q_res_rtbcount -=
582 (xfs_qcnt_t)qtrx->qt_rtblk_res;
583 }
584 if (locked)
585 xfs_dqunlock(dqp);
586
587 }
588 qa = tp->t_dqinfo->dqa_grpdquots;
589 }
590}
591
592/*
593 * This reserves disk blocks and inodes against a dquot.
594 * Flags indicate if the dquot is to be locked here and also
595 * if the blk reservation is for RT or regular blocks.
596 * Sending in XFS_QMOPT_FORCE_RES flag skips the quota check.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 */
598STATIC int
599xfs_trans_dqresv(
600 xfs_trans_t *tp,
601 xfs_mount_t *mp,
602 xfs_dquot_t *dqp,
603 long nblks,
604 long ninos,
605 uint flags)
606{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 xfs_qcnt_t hardlimit;
608 xfs_qcnt_t softlimit;
Nathan Scott06d10dd2005-06-21 15:48:47 +1000609 time_t timer;
610 xfs_qwarncnt_t warns;
611 xfs_qwarncnt_t warnlimit;
612 xfs_qcnt_t count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 xfs_qcnt_t *resbcountp;
614 xfs_quotainfo_t *q = mp->m_quotainfo;
615
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100616
617 xfs_dqlock(dqp);
618
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 if (flags & XFS_TRANS_DQ_RES_BLKS) {
Christoph Hellwig1149d962005-11-02 15:01:12 +1100620 hardlimit = be64_to_cpu(dqp->q_core.d_blk_hardlimit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 if (!hardlimit)
622 hardlimit = q->qi_bhardlimit;
Christoph Hellwig1149d962005-11-02 15:01:12 +1100623 softlimit = be64_to_cpu(dqp->q_core.d_blk_softlimit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 if (!softlimit)
625 softlimit = q->qi_bsoftlimit;
Christoph Hellwig1149d962005-11-02 15:01:12 +1100626 timer = be32_to_cpu(dqp->q_core.d_btimer);
627 warns = be16_to_cpu(dqp->q_core.d_bwarns);
Nathan Scott06d10dd2005-06-21 15:48:47 +1000628 warnlimit = XFS_QI_BWARNLIMIT(dqp->q_mount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 resbcountp = &dqp->q_res_bcount;
630 } else {
631 ASSERT(flags & XFS_TRANS_DQ_RES_RTBLKS);
Christoph Hellwig1149d962005-11-02 15:01:12 +1100632 hardlimit = be64_to_cpu(dqp->q_core.d_rtb_hardlimit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 if (!hardlimit)
634 hardlimit = q->qi_rtbhardlimit;
Christoph Hellwig1149d962005-11-02 15:01:12 +1100635 softlimit = be64_to_cpu(dqp->q_core.d_rtb_softlimit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 if (!softlimit)
637 softlimit = q->qi_rtbsoftlimit;
Christoph Hellwig1149d962005-11-02 15:01:12 +1100638 timer = be32_to_cpu(dqp->q_core.d_rtbtimer);
639 warns = be16_to_cpu(dqp->q_core.d_rtbwarns);
Nathan Scott06d10dd2005-06-21 15:48:47 +1000640 warnlimit = XFS_QI_RTBWARNLIMIT(dqp->q_mount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 resbcountp = &dqp->q_res_rtbcount;
642 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643
644 if ((flags & XFS_QMOPT_FORCE_RES) == 0 &&
645 dqp->q_core.d_id &&
Kouta Ooizumie6d29422007-05-08 13:49:33 +1000646 ((XFS_IS_UQUOTA_ENFORCED(dqp->q_mount) && XFS_QM_ISUDQ(dqp)) ||
647 (XFS_IS_OQUOTA_ENFORCED(dqp->q_mount) &&
648 (XFS_QM_ISPDQ(dqp) || XFS_QM_ISGDQ(dqp))))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649#ifdef QUOTADEBUG
650 cmn_err(CE_DEBUG, "BLK Res: nblks=%ld + resbcount=%Ld"
651 " > hardlimit=%Ld?", nblks, *resbcountp, hardlimit);
652#endif
653 if (nblks > 0) {
654 /*
655 * dquot is locked already. See if we'd go over the
656 * hardlimit or exceed the timelimit if we allocate
657 * nblks.
658 */
659 if (hardlimit > 0ULL &&
Christoph Hellwig4d1f88d2010-01-13 22:05:49 +0000660 hardlimit <= nblks + *resbcountp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 goto error_return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 if (softlimit > 0ULL &&
Christoph Hellwig4d1f88d2010-01-13 22:05:49 +0000663 softlimit <= nblks + *resbcountp &&
664 ((timer != 0 && get_seconds() > timer) ||
665 (warns != 0 && warns >= warnlimit)))
666 goto error_return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 }
668 if (ninos > 0) {
Christoph Hellwig1149d962005-11-02 15:01:12 +1100669 count = be64_to_cpu(dqp->q_core.d_icount);
670 timer = be32_to_cpu(dqp->q_core.d_itimer);
671 warns = be16_to_cpu(dqp->q_core.d_iwarns);
Nathan Scott06d10dd2005-06-21 15:48:47 +1000672 warnlimit = XFS_QI_IWARNLIMIT(dqp->q_mount);
Christoph Hellwig1149d962005-11-02 15:01:12 +1100673 hardlimit = be64_to_cpu(dqp->q_core.d_ino_hardlimit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 if (!hardlimit)
675 hardlimit = q->qi_ihardlimit;
Christoph Hellwig1149d962005-11-02 15:01:12 +1100676 softlimit = be64_to_cpu(dqp->q_core.d_ino_softlimit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 if (!softlimit)
678 softlimit = q->qi_isoftlimit;
Christoph Hellwig4d1f88d2010-01-13 22:05:49 +0000679
680 if (hardlimit > 0ULL && count >= hardlimit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 goto error_return;
Christoph Hellwig4d1f88d2010-01-13 22:05:49 +0000682 if (softlimit > 0ULL && count >= softlimit &&
683 ((timer != 0 && get_seconds() > timer) ||
684 (warns != 0 && warns >= warnlimit)))
685 goto error_return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 }
687 }
688
689 /*
690 * Change the reservation, but not the actual usage.
691 * Note that q_res_bcount = q_core.d_bcount + resv
692 */
693 (*resbcountp) += (xfs_qcnt_t)nblks;
694 if (ninos != 0)
695 dqp->q_res_icount += (xfs_qcnt_t)ninos;
696
697 /*
698 * note the reservation amt in the trans struct too,
699 * so that the transaction knows how much was reserved by
700 * it against this particular dquot.
701 * We don't do this when we are reserving for a delayed allocation,
702 * because we don't have the luxury of a transaction envelope then.
703 */
704 if (tp) {
705 ASSERT(tp->t_dqinfo);
706 ASSERT(flags & XFS_QMOPT_RESBLK_MASK);
707 if (nblks != 0)
708 xfs_trans_mod_dquot(tp, dqp,
709 flags & XFS_QMOPT_RESBLK_MASK,
710 nblks);
711 if (ninos != 0)
712 xfs_trans_mod_dquot(tp, dqp,
713 XFS_TRANS_DQ_RES_INOS,
714 ninos);
715 }
Christoph Hellwig1149d962005-11-02 15:01:12 +1100716 ASSERT(dqp->q_res_bcount >= be64_to_cpu(dqp->q_core.d_bcount));
717 ASSERT(dqp->q_res_rtbcount >= be64_to_cpu(dqp->q_core.d_rtbcount));
718 ASSERT(dqp->q_res_icount >= be64_to_cpu(dqp->q_core.d_icount));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719
Christoph Hellwig4d1f88d2010-01-13 22:05:49 +0000720 xfs_dqunlock(dqp);
721 return 0;
722
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723error_return:
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100724 xfs_dqunlock(dqp);
Christoph Hellwig4d1f88d2010-01-13 22:05:49 +0000725 if (flags & XFS_QMOPT_ENOSPC)
726 return ENOSPC;
727 return EDQUOT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728}
729
730
731/*
Nathan Scott9a2a7de2006-03-31 13:04:49 +1000732 * Given dquot(s), make disk block and/or inode reservations against them.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 * The fact that this does the reservation against both the usr and
Nathan Scott9a2a7de2006-03-31 13:04:49 +1000734 * grp/prj quotas is important, because this follows a both-or-nothing
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 * approach.
736 *
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100737 * flags = XFS_QMOPT_FORCE_RES evades limit enforcement. Used by chown.
Nathan Scott9a2a7de2006-03-31 13:04:49 +1000738 * XFS_QMOPT_ENOSPC returns ENOSPC not EDQUOT. Used by pquota.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 * XFS_TRANS_DQ_RES_BLKS reserves regular disk blocks
740 * XFS_TRANS_DQ_RES_RTBLKS reserves realtime disk blocks
741 * dquots are unlocked on return, if they were not locked by caller.
742 */
743int
744xfs_trans_reserve_quota_bydquots(
745 xfs_trans_t *tp,
746 xfs_mount_t *mp,
747 xfs_dquot_t *udqp,
748 xfs_dquot_t *gdqp,
749 long nblks,
750 long ninos,
751 uint flags)
752{
Nathan Scott9a2a7de2006-03-31 13:04:49 +1000753 int resvd = 0, error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754
Christoph Hellwig7d095252009-06-08 15:33:32 +0200755 if (!XFS_IS_QUOTA_RUNNING(mp) || !XFS_IS_QUOTA_ON(mp))
Nathan Scott9a2a7de2006-03-31 13:04:49 +1000756 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757
758 if (tp && tp->t_dqinfo == NULL)
759 xfs_trans_alloc_dqinfo(tp);
760
761 ASSERT(flags & XFS_QMOPT_RESBLK_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762
763 if (udqp) {
Nathan Scott9a2a7de2006-03-31 13:04:49 +1000764 error = xfs_trans_dqresv(tp, mp, udqp, nblks, ninos,
765 (flags & ~XFS_QMOPT_ENOSPC));
766 if (error)
767 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 resvd = 1;
769 }
770
771 if (gdqp) {
Nathan Scott9a2a7de2006-03-31 13:04:49 +1000772 error = xfs_trans_dqresv(tp, mp, gdqp, nblks, ninos, flags);
773 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 /*
775 * can't do it, so backout previous reservation
776 */
777 if (resvd) {
778 flags |= XFS_QMOPT_FORCE_RES;
779 xfs_trans_dqresv(tp, mp, udqp,
780 -nblks, -ninos, flags);
781 }
Nathan Scott9a2a7de2006-03-31 13:04:49 +1000782 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 }
784 }
785
786 /*
Nathan Scottc41564b2006-03-29 08:55:14 +1000787 * Didn't change anything critical, so, no need to log
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 */
Nathan Scott9a2a7de2006-03-31 13:04:49 +1000789 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790}
791
792
793/*
794 * Lock the dquot and change the reservation if we can.
795 * This doesn't change the actual usage, just the reservation.
796 * The inode sent in is locked.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 */
Christoph Hellwig7d095252009-06-08 15:33:32 +0200798int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799xfs_trans_reserve_quota_nblks(
Christoph Hellwig7d095252009-06-08 15:33:32 +0200800 struct xfs_trans *tp,
801 struct xfs_inode *ip,
802 long nblks,
803 long ninos,
804 uint flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805{
Christoph Hellwig7d095252009-06-08 15:33:32 +0200806 struct xfs_mount *mp = ip->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807
Christoph Hellwig7d095252009-06-08 15:33:32 +0200808 if (!XFS_IS_QUOTA_RUNNING(mp) || !XFS_IS_QUOTA_ON(mp))
Nathan Scott9a2a7de2006-03-31 13:04:49 +1000809 return 0;
810 if (XFS_IS_PQUOTA_ON(mp))
811 flags |= XFS_QMOPT_ENOSPC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812
813 ASSERT(ip->i_ino != mp->m_sb.sb_uquotino);
814 ASSERT(ip->i_ino != mp->m_sb.sb_gquotino);
815
Christoph Hellwig579aa9c2008-04-22 17:34:00 +1000816 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
Nathan Scott9a2a7de2006-03-31 13:04:49 +1000817 ASSERT((flags & ~(XFS_QMOPT_FORCE_RES | XFS_QMOPT_ENOSPC)) ==
818 XFS_TRANS_DQ_RES_RTBLKS ||
819 (flags & ~(XFS_QMOPT_FORCE_RES | XFS_QMOPT_ENOSPC)) ==
820 XFS_TRANS_DQ_RES_BLKS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821
822 /*
823 * Reserve nblks against these dquots, with trans as the mediator.
824 */
Christoph Hellwig7d095252009-06-08 15:33:32 +0200825 return xfs_trans_reserve_quota_bydquots(tp, mp,
826 ip->i_udquot, ip->i_gdquot,
827 nblks, ninos, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828}
829
830/*
831 * This routine is called to allocate a quotaoff log item.
832 */
833xfs_qoff_logitem_t *
834xfs_trans_get_qoff_item(
835 xfs_trans_t *tp,
836 xfs_qoff_logitem_t *startqoff,
837 uint flags)
838{
839 xfs_qoff_logitem_t *q;
840
841 ASSERT(tp != NULL);
842
843 q = xfs_qm_qoff_logitem_init(tp->t_mountp, startqoff, flags);
844 ASSERT(q != NULL);
845
846 /*
847 * Get a log_item_desc to point at the new item.
848 */
849 (void) xfs_trans_add_item(tp, (xfs_log_item_t*)q);
850
851 return (q);
852}
853
854
855/*
856 * This is called to mark the quotaoff logitem as needing
857 * to be logged when the transaction is committed. The logitem must
858 * already be associated with the given transaction.
859 */
860void
861xfs_trans_log_quotaoff_item(
862 xfs_trans_t *tp,
863 xfs_qoff_logitem_t *qlp)
864{
865 xfs_log_item_desc_t *lidp;
866
867 lidp = xfs_trans_find_item(tp, (xfs_log_item_t *)qlp);
868 ASSERT(lidp != NULL);
869
870 tp->t_flags |= XFS_TRANS_DIRTY;
871 lidp->lid_flags |= XFS_LID_DIRTY;
872}
873
874STATIC void
875xfs_trans_alloc_dqinfo(
876 xfs_trans_t *tp)
877{
Christoph Hellwig7d095252009-06-08 15:33:32 +0200878 tp->t_dqinfo = kmem_zone_zalloc(xfs_Gqm->qm_dqtrxzone, KM_SLEEP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879}
880
Christoph Hellwig7d095252009-06-08 15:33:32 +0200881void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882xfs_trans_free_dqinfo(
883 xfs_trans_t *tp)
884{
885 if (!tp->t_dqinfo)
886 return;
Christoph Hellwig7d095252009-06-08 15:33:32 +0200887 kmem_zone_free(xfs_Gqm->qm_dqtrxzone, tp->t_dqinfo);
888 tp->t_dqinfo = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889}