1 // SPDX-License-Identifier: GPL-2.0
3 * Implementation of operations over global quota file
5 #include <linux/spinlock.h>
7 #include <linux/slab.h>
8 #include <linux/quota.h>
9 #include <linux/quotaops.h>
10 #include <linux/dqblk_qtree.h>
11 #include <linux/jiffies.h>
12 #include <linux/writeback.h>
13 #include <linux/workqueue.h>
14 #include <linux/llist.h>
15 #include <linux/iversion.h>
17 #include <cluster/masklog.h>
22 #include "blockcheck.h"
30 #include "buffer_head_io.h"
32 #include "ocfs2_trace.h"
35 * Locking of quotas with OCFS2 is rather complex. Here are rules that
36 * should be obeyed by all the functions:
37 * - any write of quota structure (either to local or global file) is protected
38 * by dqio_sem or dquot->dq_lock.
39 * - any modification of global quota file holds inode cluster lock, i_rwsem,
40 * and ip_alloc_sem of the global quota file (achieved by
41 * ocfs2_lock_global_qf). It also has to hold qinfo_lock.
42 * - an allocation of new blocks for local quota file is protected by
45 * A rough sketch of locking dependencies (lf = local file, gf = global file):
46 * Normal filesystem operation:
47 * start_trans -> dqio_sem -> write to lf
48 * Syncing of local and global file:
49 * ocfs2_lock_global_qf -> start_trans -> dqio_sem -> qinfo_lock ->
52 * Acquire dquot for the first time:
53 * dq_lock -> ocfs2_lock_global_qf -> qinfo_lock -> read from gf
54 * -> alloc space for gf
55 * -> start_trans -> qinfo_lock -> write to gf
56 * -> ip_alloc_sem of lf -> alloc space for lf
58 * Release last reference to dquot:
59 * dq_lock -> ocfs2_lock_global_qf -> start_trans -> qinfo_lock -> write to gf
61 * Note that all the above operations also hold the inode cluster lock of lf.
63 * inode cluster lock of recovered lf
64 * -> read bitmaps -> ip_alloc_sem of lf
65 * -> ocfs2_lock_global_qf -> start_trans -> dqio_sem -> qinfo_lock ->
69 static void qsync_work_fn(struct work_struct *work);
71 static void ocfs2_global_disk2memdqb(struct dquot *dquot, void *dp)
73 struct ocfs2_global_disk_dqblk *d = dp;
74 struct mem_dqblk *m = &dquot->dq_dqb;
76 /* Update from disk only entries not set by the admin */
77 if (!test_bit(DQ_LASTSET_B + QIF_ILIMITS_B, &dquot->dq_flags)) {
78 m->dqb_ihardlimit = le64_to_cpu(d->dqb_ihardlimit);
79 m->dqb_isoftlimit = le64_to_cpu(d->dqb_isoftlimit);
81 if (!test_bit(DQ_LASTSET_B + QIF_INODES_B, &dquot->dq_flags))
82 m->dqb_curinodes = le64_to_cpu(d->dqb_curinodes);
83 if (!test_bit(DQ_LASTSET_B + QIF_BLIMITS_B, &dquot->dq_flags)) {
84 m->dqb_bhardlimit = le64_to_cpu(d->dqb_bhardlimit);
85 m->dqb_bsoftlimit = le64_to_cpu(d->dqb_bsoftlimit);
87 if (!test_bit(DQ_LASTSET_B + QIF_SPACE_B, &dquot->dq_flags))
88 m->dqb_curspace = le64_to_cpu(d->dqb_curspace);
89 if (!test_bit(DQ_LASTSET_B + QIF_BTIME_B, &dquot->dq_flags))
90 m->dqb_btime = le64_to_cpu(d->dqb_btime);
91 if (!test_bit(DQ_LASTSET_B + QIF_ITIME_B, &dquot->dq_flags))
92 m->dqb_itime = le64_to_cpu(d->dqb_itime);
93 OCFS2_DQUOT(dquot)->dq_use_count = le32_to_cpu(d->dqb_use_count);
96 static void ocfs2_global_mem2diskdqb(void *dp, struct dquot *dquot)
98 struct ocfs2_global_disk_dqblk *d = dp;
99 struct mem_dqblk *m = &dquot->dq_dqb;
101 d->dqb_id = cpu_to_le32(from_kqid(&init_user_ns, dquot->dq_id));
102 d->dqb_use_count = cpu_to_le32(OCFS2_DQUOT(dquot)->dq_use_count);
103 d->dqb_ihardlimit = cpu_to_le64(m->dqb_ihardlimit);
104 d->dqb_isoftlimit = cpu_to_le64(m->dqb_isoftlimit);
105 d->dqb_curinodes = cpu_to_le64(m->dqb_curinodes);
106 d->dqb_bhardlimit = cpu_to_le64(m->dqb_bhardlimit);
107 d->dqb_bsoftlimit = cpu_to_le64(m->dqb_bsoftlimit);
108 d->dqb_curspace = cpu_to_le64(m->dqb_curspace);
109 d->dqb_btime = cpu_to_le64(m->dqb_btime);
110 d->dqb_itime = cpu_to_le64(m->dqb_itime);
111 d->dqb_pad1 = d->dqb_pad2 = 0;
114 static int ocfs2_global_is_id(void *dp, struct dquot *dquot)
116 struct ocfs2_global_disk_dqblk *d = dp;
117 struct ocfs2_mem_dqinfo *oinfo =
118 sb_dqinfo(dquot->dq_sb, dquot->dq_id.type)->dqi_priv;
120 if (qtree_entry_unused(&oinfo->dqi_gi, dp))
123 return qid_eq(make_kqid(&init_user_ns, dquot->dq_id.type,
124 le32_to_cpu(d->dqb_id)),
128 const struct qtree_fmt_operations ocfs2_global_ops = {
129 .mem2disk_dqblk = ocfs2_global_mem2diskdqb,
130 .disk2mem_dqblk = ocfs2_global_disk2memdqb,
131 .is_id = ocfs2_global_is_id,
134 int ocfs2_validate_quota_block(struct super_block *sb, struct buffer_head *bh)
136 struct ocfs2_disk_dqtrailer *dqt =
137 ocfs2_block_dqtrailer(sb->s_blocksize, bh->b_data);
139 trace_ocfs2_validate_quota_block((unsigned long long)bh->b_blocknr);
141 BUG_ON(!buffer_uptodate(bh));
144 * If the ecc fails, we return the error but otherwise
145 * leave the filesystem running. We know any error is
146 * local to this block.
148 return ocfs2_validate_meta_ecc(sb, bh->b_data, &dqt->dq_check);
151 int ocfs2_read_quota_phys_block(struct inode *inode, u64 p_block,
152 struct buffer_head **bhp)
157 rc = ocfs2_read_blocks(INODE_CACHE(inode), p_block, 1, bhp, 0,
158 ocfs2_validate_quota_block);
164 /* Read data from global quotafile - avoid pagecache and such because we cannot
165 * afford acquiring the locks... We use quota cluster lock to serialize
166 * operations. Caller is responsible for acquiring it. */
167 ssize_t ocfs2_quota_read(struct super_block *sb, int type, char *data,
168 size_t len, loff_t off)
170 struct ocfs2_mem_dqinfo *oinfo = sb_dqinfo(sb, type)->dqi_priv;
171 struct inode *gqinode = oinfo->dqi_gqinode;
172 loff_t i_size = i_size_read(gqinode);
173 int offset = off & (sb->s_blocksize - 1);
174 sector_t blk = off >> sb->s_blocksize_bits;
176 struct buffer_head *bh;
177 size_t toread, tocopy;
178 u64 pblock = 0, pcount = 0;
182 if (off + len > i_size)
186 tocopy = min_t(size_t, (sb->s_blocksize - offset), toread);
188 err = ocfs2_extent_map_get_blocks(gqinode, blk, &pblock,
199 err = ocfs2_read_quota_phys_block(gqinode, pblock, &bh);
204 memcpy(data, bh->b_data + offset, tocopy);
214 /* Write to quotafile (we know the transaction is already started and has
216 ssize_t ocfs2_quota_write(struct super_block *sb, int type,
217 const char *data, size_t len, loff_t off)
219 struct mem_dqinfo *info = sb_dqinfo(sb, type);
220 struct ocfs2_mem_dqinfo *oinfo = info->dqi_priv;
221 struct inode *gqinode = oinfo->dqi_gqinode;
222 int offset = off & (sb->s_blocksize - 1);
223 sector_t blk = off >> sb->s_blocksize_bits;
224 int err = 0, new = 0, ja_type;
225 struct buffer_head *bh = NULL;
226 handle_t *handle = journal_current_handle();
230 mlog(ML_ERROR, "Quota write (off=%llu, len=%llu) cancelled "
231 "because transaction was not started.\n",
232 (unsigned long long)off, (unsigned long long)len);
235 if (len > sb->s_blocksize - OCFS2_QBLK_RESERVED_SPACE - offset) {
237 len = sb->s_blocksize - OCFS2_QBLK_RESERVED_SPACE - offset;
240 if (i_size_read(gqinode) < off + len) {
242 ocfs2_align_bytes_to_blocks(sb, off + len);
244 /* Space is already allocated in ocfs2_acquire_dquot() */
245 err = ocfs2_simple_size_update(gqinode,
252 err = ocfs2_extent_map_get_blocks(gqinode, blk, &pblock, &pcount, NULL);
257 /* Not rewriting whole block? */
258 if ((offset || len < sb->s_blocksize - OCFS2_QBLK_RESERVED_SPACE) &&
260 err = ocfs2_read_quota_phys_block(gqinode, pblock, &bh);
261 ja_type = OCFS2_JOURNAL_ACCESS_WRITE;
263 bh = sb_getblk(sb, pblock);
266 ja_type = OCFS2_JOURNAL_ACCESS_CREATE;
274 memset(bh->b_data, 0, sb->s_blocksize);
275 memcpy(bh->b_data + offset, data, len);
276 flush_dcache_page(bh->b_page);
277 set_buffer_uptodate(bh);
279 ocfs2_set_buffer_uptodate(INODE_CACHE(gqinode), bh);
280 err = ocfs2_journal_access_dq(handle, INODE_CACHE(gqinode), bh,
286 ocfs2_journal_dirty(handle, bh);
293 inode_inc_iversion(gqinode);
294 ocfs2_mark_inode_dirty(handle, gqinode, oinfo->dqi_gqi_bh);
298 int ocfs2_lock_global_qf(struct ocfs2_mem_dqinfo *oinfo, int ex)
301 struct buffer_head *bh = NULL;
303 status = ocfs2_inode_lock(oinfo->dqi_gqinode, &bh, ex);
306 spin_lock(&dq_data_lock);
307 if (!oinfo->dqi_gqi_count++)
308 oinfo->dqi_gqi_bh = bh;
310 WARN_ON(bh != oinfo->dqi_gqi_bh);
311 spin_unlock(&dq_data_lock);
313 inode_lock(oinfo->dqi_gqinode);
314 down_write(&OCFS2_I(oinfo->dqi_gqinode)->ip_alloc_sem);
316 down_read(&OCFS2_I(oinfo->dqi_gqinode)->ip_alloc_sem);
321 void ocfs2_unlock_global_qf(struct ocfs2_mem_dqinfo *oinfo, int ex)
324 up_write(&OCFS2_I(oinfo->dqi_gqinode)->ip_alloc_sem);
325 inode_unlock(oinfo->dqi_gqinode);
327 up_read(&OCFS2_I(oinfo->dqi_gqinode)->ip_alloc_sem);
329 ocfs2_inode_unlock(oinfo->dqi_gqinode, ex);
330 brelse(oinfo->dqi_gqi_bh);
331 spin_lock(&dq_data_lock);
332 if (!--oinfo->dqi_gqi_count)
333 oinfo->dqi_gqi_bh = NULL;
334 spin_unlock(&dq_data_lock);
337 /* Read information header from global quota file */
338 int ocfs2_global_read_info(struct super_block *sb, int type)
340 unsigned int ino[OCFS2_MAXQUOTAS] = { USER_QUOTA_SYSTEM_INODE,
341 GROUP_QUOTA_SYSTEM_INODE };
342 struct ocfs2_global_disk_dqinfo dinfo;
343 struct mem_dqinfo *info = sb_dqinfo(sb, type);
344 struct ocfs2_mem_dqinfo *oinfo = info->dqi_priv;
348 oinfo->dqi_gi.dqi_sb = sb;
349 oinfo->dqi_gi.dqi_type = type;
350 ocfs2_qinfo_lock_res_init(&oinfo->dqi_gqlock, oinfo);
351 oinfo->dqi_gi.dqi_entry_size = sizeof(struct ocfs2_global_disk_dqblk);
352 oinfo->dqi_gi.dqi_ops = &ocfs2_global_ops;
353 oinfo->dqi_gqi_bh = NULL;
354 oinfo->dqi_gqi_count = 0;
356 /* Read global header */
357 oinfo->dqi_gqinode = ocfs2_get_system_file_inode(OCFS2_SB(sb), ino[type],
359 if (!oinfo->dqi_gqinode) {
360 mlog(ML_ERROR, "failed to get global quota inode (type=%d)\n",
366 status = ocfs2_lock_global_qf(oinfo, 0);
372 status = ocfs2_extent_map_get_blocks(oinfo->dqi_gqinode, 0, &oinfo->dqi_giblk,
379 status = ocfs2_qinfo_lock(oinfo, 0);
384 status = sb->s_op->quota_read(sb, type, (char *)&dinfo,
385 sizeof(struct ocfs2_global_disk_dqinfo),
386 OCFS2_GLOBAL_INFO_OFF);
387 ocfs2_qinfo_unlock(oinfo, 0);
388 ocfs2_unlock_global_qf(oinfo, 0);
389 if (status != sizeof(struct ocfs2_global_disk_dqinfo)) {
390 mlog(ML_ERROR, "Cannot read global quota info (%d).\n",
397 info->dqi_bgrace = le32_to_cpu(dinfo.dqi_bgrace);
398 info->dqi_igrace = le32_to_cpu(dinfo.dqi_igrace);
399 oinfo->dqi_syncms = le32_to_cpu(dinfo.dqi_syncms);
400 oinfo->dqi_gi.dqi_blocks = le32_to_cpu(dinfo.dqi_blocks);
401 oinfo->dqi_gi.dqi_free_blk = le32_to_cpu(dinfo.dqi_free_blk);
402 oinfo->dqi_gi.dqi_free_entry = le32_to_cpu(dinfo.dqi_free_entry);
403 oinfo->dqi_gi.dqi_blocksize_bits = sb->s_blocksize_bits;
404 oinfo->dqi_gi.dqi_usable_bs = sb->s_blocksize -
405 OCFS2_QBLK_RESERVED_SPACE;
406 oinfo->dqi_gi.dqi_qtree_depth = qtree_depth(&oinfo->dqi_gi);
407 INIT_DELAYED_WORK(&oinfo->dqi_sync_work, qsync_work_fn);
408 schedule_delayed_work(&oinfo->dqi_sync_work,
409 msecs_to_jiffies(oinfo->dqi_syncms));
413 ocfs2_unlock_global_qf(oinfo, 0);
418 /* Write information to global quota file. Expects exclusive lock on quota
419 * file inode and quota info */
420 static int __ocfs2_global_write_info(struct super_block *sb, int type)
422 struct mem_dqinfo *info = sb_dqinfo(sb, type);
423 struct ocfs2_mem_dqinfo *oinfo = info->dqi_priv;
424 struct ocfs2_global_disk_dqinfo dinfo;
427 spin_lock(&dq_data_lock);
428 info->dqi_flags &= ~DQF_INFO_DIRTY;
429 dinfo.dqi_bgrace = cpu_to_le32(info->dqi_bgrace);
430 dinfo.dqi_igrace = cpu_to_le32(info->dqi_igrace);
431 spin_unlock(&dq_data_lock);
432 dinfo.dqi_syncms = cpu_to_le32(oinfo->dqi_syncms);
433 dinfo.dqi_blocks = cpu_to_le32(oinfo->dqi_gi.dqi_blocks);
434 dinfo.dqi_free_blk = cpu_to_le32(oinfo->dqi_gi.dqi_free_blk);
435 dinfo.dqi_free_entry = cpu_to_le32(oinfo->dqi_gi.dqi_free_entry);
436 size = sb->s_op->quota_write(sb, type, (char *)&dinfo,
437 sizeof(struct ocfs2_global_disk_dqinfo),
438 OCFS2_GLOBAL_INFO_OFF);
439 if (size != sizeof(struct ocfs2_global_disk_dqinfo)) {
440 mlog(ML_ERROR, "Cannot write global quota info structure\n");
448 int ocfs2_global_write_info(struct super_block *sb, int type)
451 struct quota_info *dqopt = sb_dqopt(sb);
452 struct ocfs2_mem_dqinfo *info = dqopt->info[type].dqi_priv;
453 unsigned int memalloc;
455 down_write(&dqopt->dqio_sem);
456 memalloc = memalloc_nofs_save();
457 err = ocfs2_qinfo_lock(info, 1);
460 err = __ocfs2_global_write_info(sb, type);
461 ocfs2_qinfo_unlock(info, 1);
463 memalloc_nofs_restore(memalloc);
464 up_write(&dqopt->dqio_sem);
468 static int ocfs2_global_qinit_alloc(struct super_block *sb, int type)
470 struct ocfs2_mem_dqinfo *oinfo = sb_dqinfo(sb, type)->dqi_priv;
473 * We may need to allocate tree blocks and a leaf block but not the
476 return oinfo->dqi_gi.dqi_qtree_depth;
479 static int ocfs2_calc_global_qinit_credits(struct super_block *sb, int type)
481 /* We modify all the allocated blocks, tree root, info block and
483 return (ocfs2_global_qinit_alloc(sb, type) + 2) *
484 OCFS2_QUOTA_BLOCK_UPDATE_CREDITS + 1;
487 /* Sync local information about quota modifications with global quota file.
488 * Caller must have started the transaction and obtained exclusive lock for
489 * global quota file inode */
490 int __ocfs2_sync_dquot(struct dquot *dquot, int freeing)
493 struct super_block *sb = dquot->dq_sb;
494 int type = dquot->dq_id.type;
495 struct ocfs2_mem_dqinfo *info = sb_dqinfo(sb, type)->dqi_priv;
496 struct ocfs2_global_disk_dqblk dqblk;
497 s64 spacechange, inodechange;
498 time64_t olditime, oldbtime;
500 err = sb->s_op->quota_read(sb, type, (char *)&dqblk,
501 sizeof(struct ocfs2_global_disk_dqblk),
503 if (err != sizeof(struct ocfs2_global_disk_dqblk)) {
505 mlog(ML_ERROR, "Short read from global quota file "
512 /* Update space and inode usage. Get also other information from
513 * global quota file so that we don't overwrite any changes there.
515 spin_lock(&dquot->dq_dqb_lock);
516 spacechange = dquot->dq_dqb.dqb_curspace -
517 OCFS2_DQUOT(dquot)->dq_origspace;
518 inodechange = dquot->dq_dqb.dqb_curinodes -
519 OCFS2_DQUOT(dquot)->dq_originodes;
520 olditime = dquot->dq_dqb.dqb_itime;
521 oldbtime = dquot->dq_dqb.dqb_btime;
522 ocfs2_global_disk2memdqb(dquot, &dqblk);
523 trace_ocfs2_sync_dquot(from_kqid(&init_user_ns, dquot->dq_id),
524 dquot->dq_dqb.dqb_curspace,
525 (long long)spacechange,
526 dquot->dq_dqb.dqb_curinodes,
527 (long long)inodechange);
528 if (!test_bit(DQ_LASTSET_B + QIF_SPACE_B, &dquot->dq_flags))
529 dquot->dq_dqb.dqb_curspace += spacechange;
530 if (!test_bit(DQ_LASTSET_B + QIF_INODES_B, &dquot->dq_flags))
531 dquot->dq_dqb.dqb_curinodes += inodechange;
532 /* Set properly space grace time... */
533 if (dquot->dq_dqb.dqb_bsoftlimit &&
534 dquot->dq_dqb.dqb_curspace > dquot->dq_dqb.dqb_bsoftlimit) {
535 if (!test_bit(DQ_LASTSET_B + QIF_BTIME_B, &dquot->dq_flags) &&
537 if (dquot->dq_dqb.dqb_btime > 0)
538 dquot->dq_dqb.dqb_btime =
539 min(dquot->dq_dqb.dqb_btime, oldbtime);
541 dquot->dq_dqb.dqb_btime = oldbtime;
544 dquot->dq_dqb.dqb_btime = 0;
545 clear_bit(DQ_BLKS_B, &dquot->dq_flags);
547 /* Set properly inode grace time... */
548 if (dquot->dq_dqb.dqb_isoftlimit &&
549 dquot->dq_dqb.dqb_curinodes > dquot->dq_dqb.dqb_isoftlimit) {
550 if (!test_bit(DQ_LASTSET_B + QIF_ITIME_B, &dquot->dq_flags) &&
552 if (dquot->dq_dqb.dqb_itime > 0)
553 dquot->dq_dqb.dqb_itime =
554 min(dquot->dq_dqb.dqb_itime, olditime);
556 dquot->dq_dqb.dqb_itime = olditime;
559 dquot->dq_dqb.dqb_itime = 0;
560 clear_bit(DQ_INODES_B, &dquot->dq_flags);
562 /* All information is properly updated, clear the flags */
563 __clear_bit(DQ_LASTSET_B + QIF_SPACE_B, &dquot->dq_flags);
564 __clear_bit(DQ_LASTSET_B + QIF_INODES_B, &dquot->dq_flags);
565 __clear_bit(DQ_LASTSET_B + QIF_BLIMITS_B, &dquot->dq_flags);
566 __clear_bit(DQ_LASTSET_B + QIF_ILIMITS_B, &dquot->dq_flags);
567 __clear_bit(DQ_LASTSET_B + QIF_BTIME_B, &dquot->dq_flags);
568 __clear_bit(DQ_LASTSET_B + QIF_ITIME_B, &dquot->dq_flags);
569 OCFS2_DQUOT(dquot)->dq_origspace = dquot->dq_dqb.dqb_curspace;
570 OCFS2_DQUOT(dquot)->dq_originodes = dquot->dq_dqb.dqb_curinodes;
571 spin_unlock(&dquot->dq_dqb_lock);
572 err = ocfs2_qinfo_lock(info, freeing);
574 mlog(ML_ERROR, "Failed to lock quota info, losing quota write"
575 " (type=%d, id=%u)\n", dquot->dq_id.type,
576 (unsigned)from_kqid(&init_user_ns, dquot->dq_id));
580 OCFS2_DQUOT(dquot)->dq_use_count--;
581 err = qtree_write_dquot(&info->dqi_gi, dquot);
584 if (freeing && !OCFS2_DQUOT(dquot)->dq_use_count) {
585 err = qtree_release_dquot(&info->dqi_gi, dquot);
586 if (info_dirty(sb_dqinfo(sb, type))) {
587 err2 = __ocfs2_global_write_info(sb, type);
593 ocfs2_qinfo_unlock(info, freeing);
601 * Functions for periodic syncing of dquots with global file
603 static int ocfs2_sync_dquot_helper(struct dquot *dquot, unsigned long type)
606 struct super_block *sb = dquot->dq_sb;
607 struct ocfs2_mem_dqinfo *oinfo = sb_dqinfo(sb, type)->dqi_priv;
608 struct ocfs2_super *osb = OCFS2_SB(sb);
610 unsigned int memalloc;
612 trace_ocfs2_sync_dquot_helper(from_kqid(&init_user_ns, dquot->dq_id),
615 if (type != dquot->dq_id.type)
617 status = ocfs2_lock_global_qf(oinfo, 1);
621 handle = ocfs2_start_trans(osb, OCFS2_QSYNC_CREDITS);
622 if (IS_ERR(handle)) {
623 status = PTR_ERR(handle);
627 down_write(&sb_dqopt(sb)->dqio_sem);
628 memalloc = memalloc_nofs_save();
629 status = ocfs2_sync_dquot(dquot);
632 /* We have to write local structure as well... */
633 status = ocfs2_local_write_dquot(dquot);
636 memalloc_nofs_restore(memalloc);
637 up_write(&sb_dqopt(sb)->dqio_sem);
638 ocfs2_commit_trans(osb, handle);
640 ocfs2_unlock_global_qf(oinfo, 1);
645 static void qsync_work_fn(struct work_struct *work)
647 struct ocfs2_mem_dqinfo *oinfo = container_of(work,
648 struct ocfs2_mem_dqinfo,
650 struct super_block *sb = oinfo->dqi_gqinode->i_sb;
653 * We have to be careful here not to deadlock on s_umount as umount
654 * disabling quotas may be in progress and it waits for this work to
655 * complete. If trylock fails, we'll do the sync next time...
657 if (down_read_trylock(&sb->s_umount)) {
658 dquot_scan_active(sb, ocfs2_sync_dquot_helper, oinfo->dqi_type);
659 up_read(&sb->s_umount);
661 schedule_delayed_work(&oinfo->dqi_sync_work,
662 msecs_to_jiffies(oinfo->dqi_syncms));
666 * Wrappers for generic quota functions
669 static int ocfs2_write_dquot(struct dquot *dquot)
672 struct ocfs2_super *osb = OCFS2_SB(dquot->dq_sb);
674 unsigned int memalloc;
676 trace_ocfs2_write_dquot(from_kqid(&init_user_ns, dquot->dq_id),
679 handle = ocfs2_start_trans(osb, OCFS2_QWRITE_CREDITS);
680 if (IS_ERR(handle)) {
681 status = PTR_ERR(handle);
685 down_write(&sb_dqopt(dquot->dq_sb)->dqio_sem);
686 memalloc = memalloc_nofs_save();
687 status = ocfs2_local_write_dquot(dquot);
688 memalloc_nofs_restore(memalloc);
689 up_write(&sb_dqopt(dquot->dq_sb)->dqio_sem);
690 ocfs2_commit_trans(osb, handle);
695 static int ocfs2_calc_qdel_credits(struct super_block *sb, int type)
697 struct ocfs2_mem_dqinfo *oinfo = sb_dqinfo(sb, type)->dqi_priv;
699 * We modify tree, leaf block, global info, local chunk header,
700 * global and local inode; OCFS2_QINFO_WRITE_CREDITS already
701 * accounts for inode update
703 return (oinfo->dqi_gi.dqi_qtree_depth + 2) *
704 OCFS2_QUOTA_BLOCK_UPDATE_CREDITS +
705 OCFS2_QINFO_WRITE_CREDITS +
706 OCFS2_INODE_UPDATE_CREDITS;
709 void ocfs2_drop_dquot_refs(struct work_struct *work)
711 struct ocfs2_super *osb = container_of(work, struct ocfs2_super,
713 struct llist_node *list;
714 struct ocfs2_dquot *odquot, *next_odquot;
716 list = llist_del_all(&osb->dquot_drop_list);
717 llist_for_each_entry_safe(odquot, next_odquot, list, list) {
718 /* Drop the reference we acquired in ocfs2_dquot_release() */
719 dqput(&odquot->dq_dquot);
724 * Called when the last reference to dquot is dropped. If we are called from
725 * downconvert thread, we cannot do all the handling here because grabbing
726 * quota lock could deadlock (the node holding the quota lock could need some
727 * other cluster lock to proceed but with blocked downconvert thread we cannot
730 static int ocfs2_release_dquot(struct dquot *dquot)
733 struct ocfs2_mem_dqinfo *oinfo =
734 sb_dqinfo(dquot->dq_sb, dquot->dq_id.type)->dqi_priv;
735 struct ocfs2_super *osb = OCFS2_SB(dquot->dq_sb);
738 trace_ocfs2_release_dquot(from_kqid(&init_user_ns, dquot->dq_id),
741 mutex_lock(&dquot->dq_lock);
742 /* Check whether we are not racing with some other dqget() */
743 if (dquot_is_busy(dquot))
745 /* Running from downconvert thread? Postpone quota processing to wq */
746 if (current == osb->dc_task) {
748 * Grab our own reference to dquot and queue it for delayed
749 * dropping. Quota code rechecks after calling
750 * ->release_dquot() and won't free dquot structure.
753 /* First entry on list -> queue work */
754 if (llist_add(&OCFS2_DQUOT(dquot)->list, &osb->dquot_drop_list))
755 queue_work(osb->ocfs2_wq, &osb->dquot_drop_work);
758 status = ocfs2_lock_global_qf(oinfo, 1);
761 handle = ocfs2_start_trans(osb,
762 ocfs2_calc_qdel_credits(dquot->dq_sb, dquot->dq_id.type));
763 if (IS_ERR(handle)) {
764 status = PTR_ERR(handle);
769 status = ocfs2_global_release_dquot(dquot);
774 status = ocfs2_local_release_dquot(handle, dquot);
776 * If we fail here, we cannot do much as global structure is
777 * already released. So just complain...
782 * Clear dq_off so that we search for the structure in quota file next
783 * time we acquire it. The structure might be deleted and reallocated
784 * elsewhere by another node while our dquot structure is on freelist.
787 clear_bit(DQ_ACTIVE_B, &dquot->dq_flags);
789 ocfs2_commit_trans(osb, handle);
791 ocfs2_unlock_global_qf(oinfo, 1);
793 mutex_unlock(&dquot->dq_lock);
800 * Read global dquot structure from disk or create it if it does
801 * not exist. Also update use count of the global structure and
802 * create structure in node-local quota file.
804 static int ocfs2_acquire_dquot(struct dquot *dquot)
808 struct super_block *sb = dquot->dq_sb;
809 struct ocfs2_super *osb = OCFS2_SB(sb);
810 int type = dquot->dq_id.type;
811 struct ocfs2_mem_dqinfo *info = sb_dqinfo(sb, type)->dqi_priv;
812 struct inode *gqinode = info->dqi_gqinode;
813 int need_alloc = ocfs2_global_qinit_alloc(sb, type);
816 trace_ocfs2_acquire_dquot(from_kqid(&init_user_ns, dquot->dq_id),
818 mutex_lock(&dquot->dq_lock);
820 * We need an exclusive lock, because we're going to update use count
821 * and instantiate possibly new dquot structure
823 status = ocfs2_lock_global_qf(info, 1);
826 status = ocfs2_qinfo_lock(info, 0);
830 * We always want to read dquot structure from disk because we don't
831 * know what happened with it while it was on freelist.
833 status = qtree_read_dquot(&info->dqi_gi, dquot);
834 ocfs2_qinfo_unlock(info, 0);
838 OCFS2_DQUOT(dquot)->dq_use_count++;
839 OCFS2_DQUOT(dquot)->dq_origspace = dquot->dq_dqb.dqb_curspace;
840 OCFS2_DQUOT(dquot)->dq_originodes = dquot->dq_dqb.dqb_curinodes;
841 if (!dquot->dq_off) { /* No real quota entry? */
844 * Add blocks to quota file before we start a transaction since
845 * locking allocators ranks above a transaction start
847 WARN_ON(journal_current_handle());
848 status = ocfs2_extend_no_holes(gqinode, NULL,
849 i_size_read(gqinode) + (need_alloc << sb->s_blocksize_bits),
850 i_size_read(gqinode));
855 handle = ocfs2_start_trans(osb,
856 ocfs2_calc_global_qinit_credits(sb, type));
857 if (IS_ERR(handle)) {
858 status = PTR_ERR(handle);
861 status = ocfs2_qinfo_lock(info, ex);
864 status = qtree_write_dquot(&info->dqi_gi, dquot);
865 if (ex && info_dirty(sb_dqinfo(sb, type))) {
866 err = __ocfs2_global_write_info(sb, type);
870 ocfs2_qinfo_unlock(info, ex);
872 ocfs2_commit_trans(osb, handle);
874 ocfs2_unlock_global_qf(info, 1);
878 status = ocfs2_create_local_dquot(dquot);
881 set_bit(DQ_ACTIVE_B, &dquot->dq_flags);
883 mutex_unlock(&dquot->dq_lock);
889 static int ocfs2_get_next_id(struct super_block *sb, struct kqid *qid)
891 int type = qid->type;
892 struct ocfs2_mem_dqinfo *info = sb_dqinfo(sb, type)->dqi_priv;
895 trace_ocfs2_get_next_id(from_kqid(&init_user_ns, *qid), type);
896 if (!sb_has_quota_active(sb, type)) {
900 status = ocfs2_lock_global_qf(info, 0);
903 status = ocfs2_qinfo_lock(info, 0);
906 status = qtree_get_next_id(&info->dqi_gi, qid);
907 ocfs2_qinfo_unlock(info, 0);
909 ocfs2_unlock_global_qf(info, 0);
912 * Avoid logging ENOENT since it just means there isn't next ID and
913 * ESRCH which means quota isn't enabled for the filesystem.
915 if (status && status != -ENOENT && status != -ESRCH)
920 static int ocfs2_mark_dquot_dirty(struct dquot *dquot)
922 unsigned long mask = (1 << (DQ_LASTSET_B + QIF_ILIMITS_B)) |
923 (1 << (DQ_LASTSET_B + QIF_BLIMITS_B)) |
924 (1 << (DQ_LASTSET_B + QIF_INODES_B)) |
925 (1 << (DQ_LASTSET_B + QIF_SPACE_B)) |
926 (1 << (DQ_LASTSET_B + QIF_BTIME_B)) |
927 (1 << (DQ_LASTSET_B + QIF_ITIME_B));
930 struct super_block *sb = dquot->dq_sb;
931 int type = dquot->dq_id.type;
932 struct ocfs2_mem_dqinfo *oinfo = sb_dqinfo(sb, type)->dqi_priv;
934 struct ocfs2_super *osb = OCFS2_SB(sb);
935 unsigned int memalloc;
937 trace_ocfs2_mark_dquot_dirty(from_kqid(&init_user_ns, dquot->dq_id),
940 /* In case user set some limits, sync dquot immediately to global
941 * quota file so that information propagates quicker */
942 spin_lock(&dquot->dq_dqb_lock);
943 if (dquot->dq_flags & mask)
945 spin_unlock(&dquot->dq_dqb_lock);
946 /* This is a slight hack but we can't afford getting global quota
947 * lock if we already have a transaction started. */
948 if (!sync || journal_current_handle()) {
949 status = ocfs2_write_dquot(dquot);
952 status = ocfs2_lock_global_qf(oinfo, 1);
955 handle = ocfs2_start_trans(osb, OCFS2_QSYNC_CREDITS);
956 if (IS_ERR(handle)) {
957 status = PTR_ERR(handle);
961 down_write(&sb_dqopt(sb)->dqio_sem);
962 memalloc = memalloc_nofs_save();
963 status = ocfs2_sync_dquot(dquot);
968 /* Now write updated local dquot structure */
969 status = ocfs2_local_write_dquot(dquot);
971 memalloc_nofs_restore(memalloc);
972 up_write(&sb_dqopt(sb)->dqio_sem);
973 ocfs2_commit_trans(osb, handle);
975 ocfs2_unlock_global_qf(oinfo, 1);
982 /* This should happen only after set_dqinfo(). */
983 static int ocfs2_write_info(struct super_block *sb, int type)
987 struct ocfs2_mem_dqinfo *oinfo = sb_dqinfo(sb, type)->dqi_priv;
989 status = ocfs2_lock_global_qf(oinfo, 1);
992 handle = ocfs2_start_trans(OCFS2_SB(sb), OCFS2_QINFO_WRITE_CREDITS);
993 if (IS_ERR(handle)) {
994 status = PTR_ERR(handle);
998 status = dquot_commit_info(sb, type);
999 ocfs2_commit_trans(OCFS2_SB(sb), handle);
1001 ocfs2_unlock_global_qf(oinfo, 1);
1008 static struct dquot *ocfs2_alloc_dquot(struct super_block *sb, int type)
1010 struct ocfs2_dquot *dquot =
1011 kmem_cache_zalloc(ocfs2_dquot_cachep, GFP_NOFS);
1015 return &dquot->dq_dquot;
1018 static void ocfs2_destroy_dquot(struct dquot *dquot)
1020 kmem_cache_free(ocfs2_dquot_cachep, dquot);
1023 const struct dquot_operations ocfs2_quota_operations = {
1024 /* We never make dquot dirty so .write_dquot is never called */
1025 .acquire_dquot = ocfs2_acquire_dquot,
1026 .release_dquot = ocfs2_release_dquot,
1027 .mark_dirty = ocfs2_mark_dquot_dirty,
1028 .write_info = ocfs2_write_info,
1029 .alloc_dquot = ocfs2_alloc_dquot,
1030 .destroy_dquot = ocfs2_destroy_dquot,
1031 .get_next_id = ocfs2_get_next_id,