]>
Commit | Line | Data |
---|---|---|
0b61f8a4 | 1 | // SPDX-License-Identifier: GPL-2.0 |
1da177e4 | 2 | /* |
4ce3121f NS |
3 | * Copyright (c) 2000-2002 Silicon Graphics, Inc. |
4 | * All Rights Reserved. | |
1da177e4 | 5 | */ |
1da177e4 LT |
6 | #include "xfs.h" |
7 | #include "xfs_fs.h" | |
70a9883c | 8 | #include "xfs_shared.h" |
239880ef DC |
9 | #include "xfs_format.h" |
10 | #include "xfs_log_format.h" | |
11 | #include "xfs_trans_resv.h" | |
1da177e4 | 12 | #include "xfs_mount.h" |
1da177e4 | 13 | #include "xfs_inode.h" |
239880ef | 14 | #include "xfs_trans.h" |
1da177e4 | 15 | #include "xfs_trans_priv.h" |
a4fbe6ab | 16 | #include "xfs_quota.h" |
1da177e4 | 17 | #include "xfs_qm.h" |
2cb91bab | 18 | #include "xfs_trace.h" |
2a4bdfa8 | 19 | #include "xfs_error.h" |
1da177e4 LT |
20 | |
21 | STATIC void xfs_trans_alloc_dqinfo(xfs_trans_t *); | |
22 | ||
23 | /* | |
24 | * Add the locked dquot to the transaction. | |
25 | * The dquot must be locked, and it cannot be associated with any | |
26 | * transaction. | |
27 | */ | |
28 | void | |
29 | xfs_trans_dqjoin( | |
aefe69a4 PR |
30 | struct xfs_trans *tp, |
31 | struct xfs_dquot *dqp) | |
1da177e4 | 32 | { |
1da177e4 | 33 | ASSERT(XFS_DQ_IS_LOCKED(dqp)); |
e98c414f | 34 | ASSERT(dqp->q_logitem.qli_dquot == dqp); |
1da177e4 LT |
35 | |
36 | /* | |
37 | * Get a log_item_desc to point at the new item. | |
38 | */ | |
e98c414f | 39 | xfs_trans_add_item(tp, &dqp->q_logitem.qli_item); |
1da177e4 LT |
40 | } |
41 | ||
1da177e4 LT |
42 | /* |
43 | * This is called to mark the dquot as needing | |
44 | * to be logged when the transaction is committed. The dquot must | |
45 | * already be associated with the given transaction. | |
46 | * Note that it marks the entire transaction as dirty. In the ordinary | |
47 | * case, this gets called via xfs_trans_commit, after the transaction | |
48 | * is already dirty. However, there's nothing stop this from getting | |
49 | * called directly, as done by xfs_qm_scall_setqlim. Hence, the TRANS_DIRTY | |
50 | * flag. | |
51 | */ | |
52 | void | |
53 | xfs_trans_log_dquot( | |
aefe69a4 PR |
54 | struct xfs_trans *tp, |
55 | struct xfs_dquot *dqp) | |
1da177e4 | 56 | { |
1da177e4 LT |
57 | ASSERT(XFS_DQ_IS_LOCKED(dqp)); |
58 | ||
4ea1ff3b DW |
59 | /* Upgrade the dquot to bigtime format if possible. */ |
60 | if (dqp->q_id != 0 && | |
61 | xfs_sb_version_hasbigtime(&tp->t_mountp->m_sb) && | |
62 | !(dqp->q_type & XFS_DQTYPE_BIGTIME)) | |
63 | dqp->q_type |= XFS_DQTYPE_BIGTIME; | |
64 | ||
1da177e4 | 65 | tp->t_flags |= XFS_TRANS_DIRTY; |
e6631f85 | 66 | set_bit(XFS_LI_DIRTY, &dqp->q_logitem.qli_item.li_flags); |
1da177e4 LT |
67 | } |
68 | ||
69 | /* | |
70 | * Carry forward whatever is left of the quota blk reservation to | |
71 | * the spanky new transaction | |
72 | */ | |
7d095257 | 73 | void |
1da177e4 | 74 | xfs_trans_dup_dqinfo( |
078f4a7d DW |
75 | struct xfs_trans *otp, |
76 | struct xfs_trans *ntp) | |
1da177e4 | 77 | { |
078f4a7d DW |
78 | struct xfs_dqtrx *oq, *nq; |
79 | int i, j; | |
80 | struct xfs_dqtrx *oqa, *nqa; | |
81 | uint64_t blk_res_used; | |
1da177e4 LT |
82 | |
83 | if (!otp->t_dqinfo) | |
84 | return; | |
85 | ||
86 | xfs_trans_alloc_dqinfo(ntp); | |
1da177e4 | 87 | |
0e6436d9 CS |
88 | for (j = 0; j < XFS_QM_TRANS_DQTYPES; j++) { |
89 | oqa = otp->t_dqinfo->dqs[j]; | |
90 | nqa = ntp->t_dqinfo->dqs[j]; | |
1da177e4 | 91 | for (i = 0; i < XFS_QM_TRANS_MAXDQS; i++) { |
7f884dc1 BF |
92 | blk_res_used = 0; |
93 | ||
1da177e4 LT |
94 | if (oqa[i].qt_dquot == NULL) |
95 | break; | |
96 | oq = &oqa[i]; | |
97 | nq = &nqa[i]; | |
98 | ||
7f884dc1 BF |
99 | if (oq->qt_blk_res && oq->qt_bcount_delta > 0) |
100 | blk_res_used = oq->qt_bcount_delta; | |
101 | ||
1da177e4 LT |
102 | nq->qt_dquot = oq->qt_dquot; |
103 | nq->qt_bcount_delta = nq->qt_icount_delta = 0; | |
104 | nq->qt_rtbcount_delta = 0; | |
105 | ||
106 | /* | |
107 | * Transfer whatever is left of the reservations. | |
108 | */ | |
7f884dc1 BF |
109 | nq->qt_blk_res = oq->qt_blk_res - blk_res_used; |
110 | oq->qt_blk_res = blk_res_used; | |
1da177e4 LT |
111 | |
112 | nq->qt_rtblk_res = oq->qt_rtblk_res - | |
113 | oq->qt_rtblk_res_used; | |
114 | oq->qt_rtblk_res = oq->qt_rtblk_res_used; | |
115 | ||
116 | nq->qt_ino_res = oq->qt_ino_res - oq->qt_ino_res_used; | |
117 | oq->qt_ino_res = oq->qt_ino_res_used; | |
118 | ||
119 | } | |
1da177e4 LT |
120 | } |
121 | } | |
122 | ||
123 | /* | |
124 | * Wrap around mod_dquot to account for both user and group quotas. | |
125 | */ | |
7d095257 | 126 | void |
1da177e4 LT |
127 | xfs_trans_mod_dquot_byino( |
128 | xfs_trans_t *tp, | |
129 | xfs_inode_t *ip, | |
130 | uint field, | |
903b1fc2 | 131 | int64_t delta) |
1da177e4 | 132 | { |
7d095257 | 133 | xfs_mount_t *mp = tp->t_mountp; |
1da177e4 | 134 | |
7d095257 CH |
135 | if (!XFS_IS_QUOTA_RUNNING(mp) || |
136 | !XFS_IS_QUOTA_ON(mp) || | |
9cad19d2 | 137 | xfs_is_quota_inode(&mp->m_sb, ip->i_ino)) |
1da177e4 LT |
138 | return; |
139 | ||
c8ad20ff | 140 | if (XFS_IS_UQUOTA_ON(mp) && ip->i_udquot) |
1da177e4 | 141 | (void) xfs_trans_mod_dquot(tp, ip->i_udquot, field, delta); |
92f8ff73 | 142 | if (XFS_IS_GQUOTA_ON(mp) && ip->i_gdquot) |
1da177e4 | 143 | (void) xfs_trans_mod_dquot(tp, ip->i_gdquot, field, delta); |
92f8ff73 CS |
144 | if (XFS_IS_PQUOTA_ON(mp) && ip->i_pdquot) |
145 | (void) xfs_trans_mod_dquot(tp, ip->i_pdquot, field, delta); | |
1da177e4 LT |
146 | } |
147 | ||
113a5683 | 148 | STATIC struct xfs_dqtrx * |
1da177e4 | 149 | xfs_trans_get_dqtrx( |
113a5683 CS |
150 | struct xfs_trans *tp, |
151 | struct xfs_dquot *dqp) | |
1da177e4 | 152 | { |
113a5683 CS |
153 | int i; |
154 | struct xfs_dqtrx *qa; | |
1da177e4 | 155 | |
00a342e4 DW |
156 | switch (xfs_dquot_type(dqp)) { |
157 | case XFS_DQTYPE_USER: | |
0e6436d9 | 158 | qa = tp->t_dqinfo->dqs[XFS_QM_TRANS_USR]; |
00a342e4 DW |
159 | break; |
160 | case XFS_DQTYPE_GROUP: | |
0e6436d9 | 161 | qa = tp->t_dqinfo->dqs[XFS_QM_TRANS_GRP]; |
00a342e4 DW |
162 | break; |
163 | case XFS_DQTYPE_PROJ: | |
92f8ff73 | 164 | qa = tp->t_dqinfo->dqs[XFS_QM_TRANS_PRJ]; |
00a342e4 DW |
165 | break; |
166 | default: | |
92f8ff73 | 167 | return NULL; |
00a342e4 | 168 | } |
1da177e4 | 169 | |
191f8488 | 170 | for (i = 0; i < XFS_QM_TRANS_MAXDQS; i++) { |
1da177e4 | 171 | if (qa[i].qt_dquot == NULL || |
191f8488 CH |
172 | qa[i].qt_dquot == dqp) |
173 | return &qa[i]; | |
1da177e4 LT |
174 | } |
175 | ||
191f8488 | 176 | return NULL; |
1da177e4 LT |
177 | } |
178 | ||
179 | /* | |
180 | * Make the changes in the transaction structure. | |
181 | * The moral equivalent to xfs_trans_mod_sb(). | |
182 | * We don't touch any fields in the dquot, so we don't care | |
183 | * if it's locked or not (most of the time it won't be). | |
184 | */ | |
185 | void | |
186 | xfs_trans_mod_dquot( | |
078f4a7d DW |
187 | struct xfs_trans *tp, |
188 | struct xfs_dquot *dqp, | |
189 | uint field, | |
190 | int64_t delta) | |
1da177e4 | 191 | { |
078f4a7d | 192 | struct xfs_dqtrx *qtrx; |
1da177e4 LT |
193 | |
194 | ASSERT(tp); | |
7d095257 | 195 | ASSERT(XFS_IS_QUOTA_RUNNING(tp->t_mountp)); |
1da177e4 LT |
196 | qtrx = NULL; |
197 | ||
b3b29cd1 KX |
198 | if (!delta) |
199 | return; | |
200 | ||
1da177e4 LT |
201 | if (tp->t_dqinfo == NULL) |
202 | xfs_trans_alloc_dqinfo(tp); | |
203 | /* | |
204 | * Find either the first free slot or the slot that belongs | |
205 | * to this dquot. | |
206 | */ | |
207 | qtrx = xfs_trans_get_dqtrx(tp, dqp); | |
208 | ASSERT(qtrx); | |
209 | if (qtrx->qt_dquot == NULL) | |
210 | qtrx->qt_dquot = dqp; | |
211 | ||
b3b29cd1 KX |
212 | trace_xfs_trans_mod_dquot_before(qtrx); |
213 | trace_xfs_trans_mod_dquot(tp, dqp, field, delta); | |
2cb91bab | 214 | |
1da177e4 | 215 | switch (field) { |
e5b23740 KX |
216 | /* regular disk blk reservation */ |
217 | case XFS_TRANS_DQ_RES_BLKS: | |
903b1fc2 | 218 | qtrx->qt_blk_res += delta; |
1da177e4 LT |
219 | break; |
220 | ||
e5b23740 KX |
221 | /* inode reservation */ |
222 | case XFS_TRANS_DQ_RES_INOS: | |
903b1fc2 | 223 | qtrx->qt_ino_res += delta; |
1da177e4 LT |
224 | break; |
225 | ||
e5b23740 KX |
226 | /* disk blocks used. */ |
227 | case XFS_TRANS_DQ_BCOUNT: | |
1da177e4 LT |
228 | qtrx->qt_bcount_delta += delta; |
229 | break; | |
230 | ||
e5b23740 | 231 | case XFS_TRANS_DQ_DELBCOUNT: |
1da177e4 LT |
232 | qtrx->qt_delbcnt_delta += delta; |
233 | break; | |
234 | ||
e5b23740 KX |
235 | /* Inode Count */ |
236 | case XFS_TRANS_DQ_ICOUNT: | |
1da177e4 | 237 | if (qtrx->qt_ino_res && delta > 0) { |
903b1fc2 | 238 | qtrx->qt_ino_res_used += delta; |
1da177e4 LT |
239 | ASSERT(qtrx->qt_ino_res >= qtrx->qt_ino_res_used); |
240 | } | |
241 | qtrx->qt_icount_delta += delta; | |
242 | break; | |
243 | ||
e5b23740 KX |
244 | /* rtblk reservation */ |
245 | case XFS_TRANS_DQ_RES_RTBLKS: | |
903b1fc2 | 246 | qtrx->qt_rtblk_res += delta; |
1da177e4 LT |
247 | break; |
248 | ||
e5b23740 KX |
249 | /* rtblk count */ |
250 | case XFS_TRANS_DQ_RTBCOUNT: | |
1da177e4 | 251 | if (qtrx->qt_rtblk_res && delta > 0) { |
903b1fc2 | 252 | qtrx->qt_rtblk_res_used += delta; |
1da177e4 LT |
253 | ASSERT(qtrx->qt_rtblk_res >= qtrx->qt_rtblk_res_used); |
254 | } | |
255 | qtrx->qt_rtbcount_delta += delta; | |
256 | break; | |
257 | ||
e5b23740 | 258 | case XFS_TRANS_DQ_DELRTBCOUNT: |
1da177e4 LT |
259 | qtrx->qt_delrtb_delta += delta; |
260 | break; | |
261 | ||
e5b23740 | 262 | default: |
1da177e4 LT |
263 | ASSERT(0); |
264 | } | |
2cb91bab | 265 | |
b3b29cd1 | 266 | trace_xfs_trans_mod_dquot_after(qtrx); |
1da177e4 LT |
267 | } |
268 | ||
269 | ||
270 | /* | |
b0a9dab7 DC |
271 | * Given an array of dqtrx structures, lock all the dquots associated and join |
272 | * them to the transaction, provided they have been modified. We know that the | |
10f73d27 CH |
273 | * highest number of dquots of one type - usr, grp and prj - involved in a |
274 | * transaction is 3 so we don't need to make this very generic. | |
1da177e4 LT |
275 | */ |
276 | STATIC void | |
277 | xfs_trans_dqlockedjoin( | |
078f4a7d DW |
278 | struct xfs_trans *tp, |
279 | struct xfs_dqtrx *q) | |
1da177e4 LT |
280 | { |
281 | ASSERT(q[0].qt_dquot != NULL); | |
282 | if (q[1].qt_dquot == NULL) { | |
283 | xfs_dqlock(q[0].qt_dquot); | |
284 | xfs_trans_dqjoin(tp, q[0].qt_dquot); | |
285 | } else { | |
286 | ASSERT(XFS_QM_TRANS_MAXDQS == 2); | |
287 | xfs_dqlock2(q[0].qt_dquot, q[1].qt_dquot); | |
288 | xfs_trans_dqjoin(tp, q[0].qt_dquot); | |
289 | xfs_trans_dqjoin(tp, q[1].qt_dquot); | |
290 | } | |
291 | } | |
292 | ||
d92c8815 DW |
293 | /* Apply dqtrx changes to the quota reservation counters. */ |
294 | static inline void | |
295 | xfs_apply_quota_reservation_deltas( | |
296 | struct xfs_dquot_res *res, | |
297 | uint64_t reserved, | |
298 | int64_t res_used, | |
299 | int64_t count_delta) | |
300 | { | |
301 | if (reserved != 0) { | |
302 | /* | |
303 | * Subtle math here: If reserved > res_used (the normal case), | |
304 | * we're simply subtracting the unused transaction quota | |
305 | * reservation from the dquot reservation. | |
306 | * | |
307 | * If, however, res_used > reserved, then we have allocated | |
308 | * more quota blocks than were reserved for the transaction. | |
309 | * We must add that excess to the dquot reservation since it | |
310 | * tracks (usage + resv) and by definition we didn't reserve | |
311 | * that excess. | |
312 | */ | |
313 | res->reserved -= abs(reserved - res_used); | |
314 | } else if (count_delta != 0) { | |
315 | /* | |
316 | * These blks were never reserved, either inside a transaction | |
317 | * or outside one (in a delayed allocation). Also, this isn't | |
318 | * always a negative number since we sometimes deliberately | |
319 | * skip quota reservations. | |
320 | */ | |
321 | res->reserved += count_delta; | |
322 | } | |
323 | } | |
1da177e4 LT |
324 | |
325 | /* | |
326 | * Called by xfs_trans_commit() and similar in spirit to | |
327 | * xfs_trans_apply_sb_deltas(). | |
328 | * Go thru all the dquots belonging to this transaction and modify the | |
329 | * INCORE dquot to reflect the actual usages. | |
330 | * Unreserve just the reservations done by this transaction. | |
331 | * dquot is still left locked at exit. | |
332 | */ | |
7d095257 | 333 | void |
1da177e4 | 334 | xfs_trans_apply_dquot_deltas( |
4b6eae2e | 335 | struct xfs_trans *tp) |
1da177e4 LT |
336 | { |
337 | int i, j; | |
4b6eae2e BF |
338 | struct xfs_dquot *dqp; |
339 | struct xfs_dqtrx *qtrx, *qa; | |
903b1fc2 DW |
340 | int64_t totalbdelta; |
341 | int64_t totalrtbdelta; | |
1da177e4 | 342 | |
04a58620 | 343 | if (!tp->t_dqinfo) |
1da177e4 LT |
344 | return; |
345 | ||
346 | ASSERT(tp->t_dqinfo); | |
0e6436d9 CS |
347 | for (j = 0; j < XFS_QM_TRANS_DQTYPES; j++) { |
348 | qa = tp->t_dqinfo->dqs[j]; | |
349 | if (qa[0].qt_dquot == NULL) | |
1da177e4 | 350 | continue; |
1da177e4 LT |
351 | |
352 | /* | |
353 | * Lock all of the dquots and join them to the transaction. | |
354 | */ | |
355 | xfs_trans_dqlockedjoin(tp, qa); | |
356 | ||
357 | for (i = 0; i < XFS_QM_TRANS_MAXDQS; i++) { | |
d92c8815 DW |
358 | uint64_t blk_res_used; |
359 | ||
1da177e4 LT |
360 | qtrx = &qa[i]; |
361 | /* | |
362 | * The array of dquots is filled | |
363 | * sequentially, not sparsely. | |
364 | */ | |
365 | if ((dqp = qtrx->qt_dquot) == NULL) | |
366 | break; | |
367 | ||
368 | ASSERT(XFS_DQ_IS_LOCKED(dqp)); | |
1da177e4 LT |
369 | |
370 | /* | |
371 | * adjust the actual number of blocks used | |
372 | */ | |
1da177e4 LT |
373 | |
374 | /* | |
375 | * The issue here is - sometimes we don't make a blkquota | |
376 | * reservation intentionally to be fair to users | |
377 | * (when the amount is small). On the other hand, | |
378 | * delayed allocs do make reservations, but that's | |
379 | * outside of a transaction, so we have no | |
380 | * idea how much was really reserved. | |
381 | * So, here we've accumulated delayed allocation blks and | |
382 | * non-delay blks. The assumption is that the | |
383 | * delayed ones are always reserved (outside of a | |
384 | * transaction), and the others may or may not have | |
385 | * quota reservations. | |
386 | */ | |
387 | totalbdelta = qtrx->qt_bcount_delta + | |
388 | qtrx->qt_delbcnt_delta; | |
389 | totalrtbdelta = qtrx->qt_rtbcount_delta + | |
390 | qtrx->qt_delrtb_delta; | |
2cb91bab DW |
391 | |
392 | if (totalbdelta != 0 || totalrtbdelta != 0 || | |
393 | qtrx->qt_icount_delta != 0) { | |
394 | trace_xfs_trans_apply_dquot_deltas_before(dqp); | |
395 | trace_xfs_trans_apply_dquot_deltas(qtrx); | |
396 | } | |
397 | ||
ea15ab3c | 398 | #ifdef DEBUG |
1da177e4 | 399 | if (totalbdelta < 0) |
be37d40c | 400 | ASSERT(dqp->q_blk.count >= -totalbdelta); |
1da177e4 LT |
401 | |
402 | if (totalrtbdelta < 0) | |
be37d40c | 403 | ASSERT(dqp->q_rtb.count >= -totalrtbdelta); |
1da177e4 LT |
404 | |
405 | if (qtrx->qt_icount_delta < 0) | |
be37d40c | 406 | ASSERT(dqp->q_ino.count >= -qtrx->qt_icount_delta); |
1da177e4 LT |
407 | #endif |
408 | if (totalbdelta) | |
be37d40c | 409 | dqp->q_blk.count += totalbdelta; |
1da177e4 LT |
410 | |
411 | if (qtrx->qt_icount_delta) | |
be37d40c | 412 | dqp->q_ino.count += qtrx->qt_icount_delta; |
1da177e4 LT |
413 | |
414 | if (totalrtbdelta) | |
be37d40c | 415 | dqp->q_rtb.count += totalrtbdelta; |
1da177e4 | 416 | |
2cb91bab DW |
417 | if (totalbdelta != 0 || totalrtbdelta != 0 || |
418 | qtrx->qt_icount_delta != 0) | |
419 | trace_xfs_trans_apply_dquot_deltas_after(dqp); | |
420 | ||
1da177e4 LT |
421 | /* |
422 | * Get any default limits in use. | |
423 | * Start/reset the timer(s) if needed. | |
424 | */ | |
c51df733 | 425 | if (dqp->q_id) { |
c8c753e1 DW |
426 | xfs_qm_adjust_dqlimits(dqp); |
427 | xfs_qm_adjust_dqtimers(dqp); | |
1da177e4 LT |
428 | } |
429 | ||
985a78fd | 430 | dqp->q_flags |= XFS_DQFLAG_DIRTY; |
1da177e4 LT |
431 | /* |
432 | * add this to the list of items to get logged | |
433 | */ | |
434 | xfs_trans_log_dquot(tp, dqp); | |
435 | /* | |
436 | * Take off what's left of the original reservation. | |
437 | * In case of delayed allocations, there's no | |
438 | * reservation that a transaction structure knows of. | |
439 | */ | |
d92c8815 DW |
440 | blk_res_used = max_t(int64_t, 0, qtrx->qt_bcount_delta); |
441 | xfs_apply_quota_reservation_deltas(&dqp->q_blk, | |
442 | qtrx->qt_blk_res, blk_res_used, | |
443 | qtrx->qt_bcount_delta); | |
444 | ||
1da177e4 LT |
445 | /* |
446 | * Adjust the RT reservation. | |
447 | */ | |
d92c8815 DW |
448 | xfs_apply_quota_reservation_deltas(&dqp->q_rtb, |
449 | qtrx->qt_rtblk_res, | |
450 | qtrx->qt_rtblk_res_used, | |
451 | qtrx->qt_rtbcount_delta); | |
1da177e4 LT |
452 | |
453 | /* | |
454 | * Adjust the inode reservation. | |
455 | */ | |
d92c8815 DW |
456 | ASSERT(qtrx->qt_ino_res >= qtrx->qt_ino_res_used); |
457 | xfs_apply_quota_reservation_deltas(&dqp->q_ino, | |
458 | qtrx->qt_ino_res, | |
459 | qtrx->qt_ino_res_used, | |
460 | qtrx->qt_icount_delta); | |
1da177e4 | 461 | |
be37d40c DW |
462 | ASSERT(dqp->q_blk.reserved >= dqp->q_blk.count); |
463 | ASSERT(dqp->q_ino.reserved >= dqp->q_ino.count); | |
464 | ASSERT(dqp->q_rtb.reserved >= dqp->q_rtb.count); | |
1da177e4 | 465 | } |
1da177e4 LT |
466 | } |
467 | } | |
468 | ||
469 | /* | |
470 | * Release the reservations, and adjust the dquots accordingly. | |
471 | * This is called only when the transaction is being aborted. If by | |
472 | * any chance we have done dquot modifications incore (ie. deltas) already, | |
473 | * we simply throw those away, since that's the expected behavior | |
474 | * when a transaction is curtailed without a commit. | |
475 | */ | |
7d095257 | 476 | void |
1da177e4 | 477 | xfs_trans_unreserve_and_mod_dquots( |
aefe69a4 | 478 | struct xfs_trans *tp) |
1da177e4 LT |
479 | { |
480 | int i, j; | |
aefe69a4 | 481 | struct xfs_dquot *dqp; |
078f4a7d | 482 | struct xfs_dqtrx *qtrx, *qa; |
aefe69a4 | 483 | bool locked; |
1da177e4 | 484 | |
04a58620 | 485 | if (!tp->t_dqinfo) |
1da177e4 LT |
486 | return; |
487 | ||
0e6436d9 CS |
488 | for (j = 0; j < XFS_QM_TRANS_DQTYPES; j++) { |
489 | qa = tp->t_dqinfo->dqs[j]; | |
1da177e4 | 490 | |
1da177e4 LT |
491 | for (i = 0; i < XFS_QM_TRANS_MAXDQS; i++) { |
492 | qtrx = &qa[i]; | |
493 | /* | |
494 | * We assume that the array of dquots is filled | |
495 | * sequentially, not sparsely. | |
496 | */ | |
497 | if ((dqp = qtrx->qt_dquot) == NULL) | |
498 | break; | |
499 | /* | |
500 | * Unreserve the original reservation. We don't care | |
501 | * about the number of blocks used field, or deltas. | |
502 | * Also we don't bother to zero the fields. | |
503 | */ | |
667a9291 | 504 | locked = false; |
1da177e4 LT |
505 | if (qtrx->qt_blk_res) { |
506 | xfs_dqlock(dqp); | |
667a9291 | 507 | locked = true; |
784e80f5 | 508 | dqp->q_blk.reserved -= |
1da177e4 LT |
509 | (xfs_qcnt_t)qtrx->qt_blk_res; |
510 | } | |
511 | if (qtrx->qt_ino_res) { | |
512 | if (!locked) { | |
513 | xfs_dqlock(dqp); | |
667a9291 | 514 | locked = true; |
1da177e4 | 515 | } |
784e80f5 | 516 | dqp->q_ino.reserved -= |
1da177e4 LT |
517 | (xfs_qcnt_t)qtrx->qt_ino_res; |
518 | } | |
519 | ||
520 | if (qtrx->qt_rtblk_res) { | |
521 | if (!locked) { | |
522 | xfs_dqlock(dqp); | |
667a9291 | 523 | locked = true; |
1da177e4 | 524 | } |
784e80f5 | 525 | dqp->q_rtb.reserved -= |
1da177e4 LT |
526 | (xfs_qcnt_t)qtrx->qt_rtblk_res; |
527 | } | |
528 | if (locked) | |
529 | xfs_dqunlock(dqp); | |
530 | ||
531 | } | |
1da177e4 LT |
532 | } |
533 | } | |
534 | ||
a210c1aa CH |
535 | STATIC void |
536 | xfs_quota_warn( | |
537 | struct xfs_mount *mp, | |
538 | struct xfs_dquot *dqp, | |
539 | int type) | |
540 | { | |
e6eb603c | 541 | enum quota_type qtype; |
ffc671f1 | 542 | |
e6eb603c DW |
543 | switch (xfs_dquot_type(dqp)) { |
544 | case XFS_DQTYPE_PROJ: | |
ffc671f1 | 545 | qtype = PRJQUOTA; |
e6eb603c DW |
546 | break; |
547 | case XFS_DQTYPE_USER: | |
ffc671f1 | 548 | qtype = USRQUOTA; |
e6eb603c DW |
549 | break; |
550 | case XFS_DQTYPE_GROUP: | |
ffc671f1 | 551 | qtype = GRPQUOTA; |
e6eb603c DW |
552 | break; |
553 | default: | |
554 | return; | |
555 | } | |
ffc671f1 | 556 | |
c51df733 | 557 | quota_send_warning(make_kqid(&init_user_ns, qtype, dqp->q_id), |
431f1974 | 558 | mp->m_super->s_dev, type); |
a210c1aa CH |
559 | } |
560 | ||
292b47b4 DW |
561 | /* |
562 | * Decide if we can make an additional reservation against a quota resource. | |
563 | * Returns an inode QUOTA_NL_ warning code and whether or not it's fatal. | |
564 | * | |
565 | * Note that we assume that the numeric difference between the inode and block | |
566 | * warning codes will always be 3 since it's userspace ABI now, and will never | |
567 | * decrease the quota reservation, so the *BELOW messages are irrelevant. | |
568 | */ | |
569 | static inline int | |
570 | xfs_dqresv_check( | |
571 | struct xfs_dquot_res *res, | |
572 | struct xfs_quota_limits *qlim, | |
573 | int64_t delta, | |
574 | bool *fatal) | |
575 | { | |
576 | xfs_qcnt_t hardlimit = res->hardlimit; | |
577 | xfs_qcnt_t softlimit = res->softlimit; | |
578 | xfs_qcnt_t total_count = res->reserved + delta; | |
579 | ||
580 | BUILD_BUG_ON(QUOTA_NL_BHARDWARN != QUOTA_NL_IHARDWARN + 3); | |
581 | BUILD_BUG_ON(QUOTA_NL_BSOFTLONGWARN != QUOTA_NL_ISOFTLONGWARN + 3); | |
582 | BUILD_BUG_ON(QUOTA_NL_BSOFTWARN != QUOTA_NL_ISOFTWARN + 3); | |
583 | ||
584 | *fatal = false; | |
585 | if (delta <= 0) | |
586 | return QUOTA_NL_NOWARN; | |
587 | ||
588 | if (!hardlimit) | |
589 | hardlimit = qlim->hard; | |
590 | if (!softlimit) | |
591 | softlimit = qlim->soft; | |
592 | ||
593 | if (hardlimit && total_count > hardlimit) { | |
594 | *fatal = true; | |
595 | return QUOTA_NL_IHARDWARN; | |
596 | } | |
597 | ||
598 | if (softlimit && total_count > softlimit) { | |
599 | time64_t now = ktime_get_real_seconds(); | |
600 | ||
601 | if ((res->timer != 0 && now > res->timer) || | |
602 | (res->warnings != 0 && res->warnings >= qlim->warn)) { | |
603 | *fatal = true; | |
604 | return QUOTA_NL_ISOFTLONGWARN; | |
605 | } | |
606 | ||
4b8628d5 | 607 | res->warnings++; |
292b47b4 DW |
608 | return QUOTA_NL_ISOFTWARN; |
609 | } | |
610 | ||
611 | return QUOTA_NL_NOWARN; | |
612 | } | |
613 | ||
1da177e4 LT |
614 | /* |
615 | * This reserves disk blocks and inodes against a dquot. | |
616 | * Flags indicate if the dquot is to be locked here and also | |
617 | * if the blk reservation is for RT or regular blocks. | |
618 | * Sending in XFS_QMOPT_FORCE_RES flag skips the quota check. | |
1da177e4 LT |
619 | */ |
620 | STATIC int | |
621 | xfs_trans_dqresv( | |
aefe69a4 PR |
622 | struct xfs_trans *tp, |
623 | struct xfs_mount *mp, | |
624 | struct xfs_dquot *dqp, | |
625 | int64_t nblks, | |
626 | long ninos, | |
627 | uint flags) | |
1da177e4 | 628 | { |
c072fbef | 629 | struct xfs_quotainfo *q = mp->m_quotainfo; |
be607946 | 630 | struct xfs_def_quota *defq; |
292b47b4 DW |
631 | struct xfs_dquot_res *blkres; |
632 | struct xfs_quota_limits *qlim; | |
8e9b6e7f CH |
633 | |
634 | xfs_dqlock(dqp); | |
635 | ||
ce6e7e79 | 636 | defq = xfs_get_defquota(q, xfs_dquot_type(dqp)); |
be607946 | 637 | |
1da177e4 | 638 | if (flags & XFS_TRANS_DQ_RES_BLKS) { |
292b47b4 DW |
639 | blkres = &dqp->q_blk; |
640 | qlim = &defq->blk; | |
1da177e4 | 641 | } else { |
292b47b4 DW |
642 | blkres = &dqp->q_rtb; |
643 | qlim = &defq->rtb; | |
1da177e4 | 644 | } |
1da177e4 | 645 | |
c51df733 | 646 | if ((flags & XFS_QMOPT_FORCE_RES) == 0 && dqp->q_id && |
dbcbc7b9 | 647 | xfs_dquot_is_enforced(dqp)) { |
292b47b4 DW |
648 | int quota_nl; |
649 | bool fatal; | |
650 | ||
651 | /* | |
652 | * dquot is locked already. See if we'd go over the hardlimit | |
653 | * or exceed the timelimit if we'd reserve resources. | |
654 | */ | |
655 | quota_nl = xfs_dqresv_check(blkres, qlim, nblks, &fatal); | |
656 | if (quota_nl != QUOTA_NL_NOWARN) { | |
1da177e4 | 657 | /* |
292b47b4 DW |
658 | * Quota block warning codes are 3 more than the inode |
659 | * codes, which we check above. | |
1da177e4 | 660 | */ |
292b47b4 DW |
661 | xfs_quota_warn(mp, dqp, quota_nl + 3); |
662 | if (fatal) | |
1da177e4 | 663 | goto error_return; |
1da177e4 | 664 | } |
292b47b4 DW |
665 | |
666 | quota_nl = xfs_dqresv_check(&dqp->q_ino, &defq->ino, ninos, | |
667 | &fatal); | |
668 | if (quota_nl != QUOTA_NL_NOWARN) { | |
669 | xfs_quota_warn(mp, dqp, quota_nl); | |
670 | if (fatal) | |
1da177e4 | 671 | goto error_return; |
1da177e4 LT |
672 | } |
673 | } | |
674 | ||
675 | /* | |
676 | * Change the reservation, but not the actual usage. | |
be37d40c | 677 | * Note that q_blk.reserved = q_blk.count + resv |
1da177e4 | 678 | */ |
292b47b4 DW |
679 | blkres->reserved += (xfs_qcnt_t)nblks; |
680 | dqp->q_ino.reserved += (xfs_qcnt_t)ninos; | |
1da177e4 LT |
681 | |
682 | /* | |
683 | * note the reservation amt in the trans struct too, | |
684 | * so that the transaction knows how much was reserved by | |
685 | * it against this particular dquot. | |
686 | * We don't do this when we are reserving for a delayed allocation, | |
687 | * because we don't have the luxury of a transaction envelope then. | |
688 | */ | |
689 | if (tp) { | |
1da177e4 | 690 | ASSERT(flags & XFS_QMOPT_RESBLK_MASK); |
b3b29cd1 KX |
691 | xfs_trans_mod_dquot(tp, dqp, flags & XFS_QMOPT_RESBLK_MASK, |
692 | nblks); | |
693 | xfs_trans_mod_dquot(tp, dqp, XFS_TRANS_DQ_RES_INOS, ninos); | |
1da177e4 | 694 | } |
2a4bdfa8 DW |
695 | |
696 | if (XFS_IS_CORRUPT(mp, dqp->q_blk.reserved < dqp->q_blk.count) || | |
697 | XFS_IS_CORRUPT(mp, dqp->q_rtb.reserved < dqp->q_rtb.count) || | |
698 | XFS_IS_CORRUPT(mp, dqp->q_ino.reserved < dqp->q_ino.count)) | |
699 | goto error_corrupt; | |
1da177e4 | 700 | |
4d1f88d7 CH |
701 | xfs_dqunlock(dqp); |
702 | return 0; | |
703 | ||
1da177e4 | 704 | error_return: |
8e9b6e7f | 705 | xfs_dqunlock(dqp); |
00a342e4 | 706 | if (xfs_dquot_type(dqp) == XFS_DQTYPE_PROJ) |
2451337d DC |
707 | return -ENOSPC; |
708 | return -EDQUOT; | |
2a4bdfa8 DW |
709 | error_corrupt: |
710 | xfs_dqunlock(dqp); | |
711 | xfs_force_shutdown(mp, SHUTDOWN_CORRUPT_INCORE); | |
712 | return -EFSCORRUPTED; | |
1da177e4 LT |
713 | } |
714 | ||
715 | ||
716 | /* | |
9a2a7de2 | 717 | * Given dquot(s), make disk block and/or inode reservations against them. |
92f8ff73 CS |
718 | * The fact that this does the reservation against user, group and |
719 | * project quotas is important, because this follows a all-or-nothing | |
1da177e4 LT |
720 | * approach. |
721 | * | |
8e9b6e7f | 722 | * flags = XFS_QMOPT_FORCE_RES evades limit enforcement. Used by chown. |
9a2a7de2 | 723 | * XFS_QMOPT_ENOSPC returns ENOSPC not EDQUOT. Used by pquota. |
1da177e4 LT |
724 | * XFS_TRANS_DQ_RES_BLKS reserves regular disk blocks |
725 | * XFS_TRANS_DQ_RES_RTBLKS reserves realtime disk blocks | |
726 | * dquots are unlocked on return, if they were not locked by caller. | |
727 | */ | |
728 | int | |
729 | xfs_trans_reserve_quota_bydquots( | |
113a5683 CS |
730 | struct xfs_trans *tp, |
731 | struct xfs_mount *mp, | |
732 | struct xfs_dquot *udqp, | |
733 | struct xfs_dquot *gdqp, | |
92f8ff73 | 734 | struct xfs_dquot *pdqp, |
903b1fc2 | 735 | int64_t nblks, |
113a5683 CS |
736 | long ninos, |
737 | uint flags) | |
1da177e4 | 738 | { |
113a5683 | 739 | int error; |
1da177e4 | 740 | |
7d095257 | 741 | if (!XFS_IS_QUOTA_RUNNING(mp) || !XFS_IS_QUOTA_ON(mp)) |
9a2a7de2 | 742 | return 0; |
1da177e4 | 743 | |
1da177e4 | 744 | ASSERT(flags & XFS_QMOPT_RESBLK_MASK); |
1da177e4 LT |
745 | |
746 | if (udqp) { | |
dcf1ccc9 | 747 | error = xfs_trans_dqresv(tp, mp, udqp, nblks, ninos, flags); |
9a2a7de2 NS |
748 | if (error) |
749 | return error; | |
1da177e4 LT |
750 | } |
751 | ||
752 | if (gdqp) { | |
dcf1ccc9 | 753 | error = xfs_trans_dqresv(tp, mp, gdqp, nblks, ninos, flags); |
113a5683 CS |
754 | if (error) |
755 | goto unwind_usr; | |
1da177e4 LT |
756 | } |
757 | ||
92f8ff73 CS |
758 | if (pdqp) { |
759 | error = xfs_trans_dqresv(tp, mp, pdqp, nblks, ninos, flags); | |
760 | if (error) | |
761 | goto unwind_grp; | |
762 | } | |
763 | ||
1da177e4 | 764 | /* |
c41564b5 | 765 | * Didn't change anything critical, so, no need to log |
1da177e4 | 766 | */ |
9a2a7de2 | 767 | return 0; |
113a5683 | 768 | |
92f8ff73 CS |
769 | unwind_grp: |
770 | flags |= XFS_QMOPT_FORCE_RES; | |
771 | if (gdqp) | |
772 | xfs_trans_dqresv(tp, mp, gdqp, -nblks, -ninos, flags); | |
113a5683 CS |
773 | unwind_usr: |
774 | flags |= XFS_QMOPT_FORCE_RES; | |
775 | if (udqp) | |
776 | xfs_trans_dqresv(tp, mp, udqp, -nblks, -ninos, flags); | |
777 | return error; | |
1da177e4 LT |
778 | } |
779 | ||
780 | ||
781 | /* | |
782 | * Lock the dquot and change the reservation if we can. | |
783 | * This doesn't change the actual usage, just the reservation. | |
784 | * The inode sent in is locked. | |
1da177e4 | 785 | */ |
7d095257 | 786 | int |
1da177e4 | 787 | xfs_trans_reserve_quota_nblks( |
7d095257 CH |
788 | struct xfs_trans *tp, |
789 | struct xfs_inode *ip, | |
02b7ee4e DW |
790 | int64_t dblocks, |
791 | int64_t rblocks, | |
792 | bool force) | |
1da177e4 | 793 | { |
7d095257 | 794 | struct xfs_mount *mp = ip->i_mount; |
02b7ee4e DW |
795 | unsigned int qflags = 0; |
796 | int error; | |
1da177e4 | 797 | |
7d095257 | 798 | if (!XFS_IS_QUOTA_RUNNING(mp) || !XFS_IS_QUOTA_ON(mp)) |
9a2a7de2 | 799 | return 0; |
1da177e4 | 800 | |
9cad19d2 | 801 | ASSERT(!xfs_is_quota_inode(&mp->m_sb, ip->i_ino)); |
579aa9ca | 802 | ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL)); |
1da177e4 | 803 | |
02b7ee4e DW |
804 | if (force) |
805 | qflags |= XFS_QMOPT_FORCE_RES; | |
806 | ||
807 | /* Reserve data device quota against the inode's dquots. */ | |
808 | error = xfs_trans_reserve_quota_bydquots(tp, mp, ip->i_udquot, | |
809 | ip->i_gdquot, ip->i_pdquot, dblocks, 0, | |
810 | XFS_QMOPT_RES_REGBLKS | qflags); | |
811 | if (error) | |
812 | return error; | |
813 | ||
814 | /* Do the same but for realtime blocks. */ | |
815 | error = xfs_trans_reserve_quota_bydquots(tp, mp, ip->i_udquot, | |
816 | ip->i_gdquot, ip->i_pdquot, rblocks, 0, | |
817 | XFS_QMOPT_RES_RTBLKS | qflags); | |
818 | if (error) { | |
819 | xfs_trans_reserve_quota_bydquots(tp, mp, ip->i_udquot, | |
820 | ip->i_gdquot, ip->i_pdquot, -dblocks, 0, | |
821 | XFS_QMOPT_RES_REGBLKS); | |
822 | return error; | |
823 | } | |
824 | ||
825 | return 0; | |
1da177e4 LT |
826 | } |
827 | ||
ad4a7473 DW |
828 | /* Change the quota reservations for an inode creation activity. */ |
829 | int | |
830 | xfs_trans_reserve_quota_icreate( | |
831 | struct xfs_trans *tp, | |
832 | struct xfs_dquot *udqp, | |
833 | struct xfs_dquot *gdqp, | |
834 | struct xfs_dquot *pdqp, | |
835 | int64_t dblocks) | |
836 | { | |
837 | struct xfs_mount *mp = tp->t_mountp; | |
838 | ||
839 | if (!XFS_IS_QUOTA_RUNNING(mp) || !XFS_IS_QUOTA_ON(mp)) | |
840 | return 0; | |
841 | ||
842 | return xfs_trans_reserve_quota_bydquots(tp, mp, udqp, gdqp, pdqp, | |
843 | dblocks, 1, XFS_QMOPT_RES_REGBLKS); | |
844 | } | |
845 | ||
1da177e4 LT |
846 | /* |
847 | * This routine is called to allocate a quotaoff log item. | |
848 | */ | |
d0bdfb10 | 849 | struct xfs_qoff_logitem * |
1da177e4 | 850 | xfs_trans_get_qoff_item( |
d0bdfb10 PR |
851 | struct xfs_trans *tp, |
852 | struct xfs_qoff_logitem *startqoff, | |
1da177e4 LT |
853 | uint flags) |
854 | { | |
d0bdfb10 | 855 | struct xfs_qoff_logitem *q; |
1da177e4 LT |
856 | |
857 | ASSERT(tp != NULL); | |
858 | ||
859 | q = xfs_qm_qoff_logitem_init(tp->t_mountp, startqoff, flags); | |
860 | ASSERT(q != NULL); | |
861 | ||
862 | /* | |
863 | * Get a log_item_desc to point at the new item. | |
864 | */ | |
e98c414f CH |
865 | xfs_trans_add_item(tp, &q->qql_item); |
866 | return q; | |
1da177e4 LT |
867 | } |
868 | ||
869 | ||
870 | /* | |
871 | * This is called to mark the quotaoff logitem as needing | |
872 | * to be logged when the transaction is committed. The logitem must | |
873 | * already be associated with the given transaction. | |
874 | */ | |
875 | void | |
876 | xfs_trans_log_quotaoff_item( | |
d0bdfb10 PR |
877 | struct xfs_trans *tp, |
878 | struct xfs_qoff_logitem *qlp) | |
1da177e4 | 879 | { |
1da177e4 | 880 | tp->t_flags |= XFS_TRANS_DIRTY; |
e6631f85 | 881 | set_bit(XFS_LI_DIRTY, &qlp->qql_item.li_flags); |
1da177e4 LT |
882 | } |
883 | ||
884 | STATIC void | |
885 | xfs_trans_alloc_dqinfo( | |
886 | xfs_trans_t *tp) | |
887 | { | |
32a2b11f CM |
888 | tp->t_dqinfo = kmem_cache_zalloc(xfs_qm_dqtrxzone, |
889 | GFP_KERNEL | __GFP_NOFAIL); | |
1da177e4 LT |
890 | } |
891 | ||
7d095257 | 892 | void |
1da177e4 LT |
893 | xfs_trans_free_dqinfo( |
894 | xfs_trans_t *tp) | |
895 | { | |
896 | if (!tp->t_dqinfo) | |
897 | return; | |
377bcd5f | 898 | kmem_cache_free(xfs_qm_dqtrxzone, tp->t_dqinfo); |
7d095257 | 899 | tp->t_dqinfo = NULL; |
1da177e4 | 900 | } |