2 * Implementation of operations over global quota file
4 #include <linux/spinlock.h>
6 #include <linux/slab.h>
7 #include <linux/quota.h>
8 #include <linux/quotaops.h>
9 #include <linux/dqblk_qtree.h>
10 #include <linux/jiffies.h>
11 #include <linux/writeback.h>
12 #include <linux/workqueue.h>
14 #include <cluster/masklog.h>
19 #include "blockcheck.h"
27 #include "buffer_head_io.h"
29 #include "ocfs2_trace.h"
32 * Locking of quotas with OCFS2 is rather complex. Here are rules that
33 * should be obeyed by all the functions:
34 * - any write of quota structure (either to local or global file) is protected
35 * by dqio_mutex or dquot->dq_lock.
36 * - any modification of global quota file holds inode cluster lock, i_mutex,
37 * and ip_alloc_sem of the global quota file (achieved by
38 * ocfs2_lock_global_qf). It also has to hold qinfo_lock.
39 * - an allocation of new blocks for local quota file is protected by
42 * A rough sketch of locking dependencies (lf = local file, gf = global file):
43 * Normal filesystem operation:
44 * start_trans -> dqio_mutex -> write to lf
45 * Syncing of local and global file:
46 * ocfs2_lock_global_qf -> start_trans -> dqio_mutex -> qinfo_lock ->
49 * Acquire dquot for the first time:
50 * dq_lock -> ocfs2_lock_global_qf -> qinfo_lock -> read from gf
51 * -> alloc space for gf
52 * -> start_trans -> qinfo_lock -> write to gf
53 * -> ip_alloc_sem of lf -> alloc space for lf
55 * Release last reference to dquot:
56 * dq_lock -> ocfs2_lock_global_qf -> start_trans -> qinfo_lock -> write to gf
58 * Note that all the above operations also hold the inode cluster lock of lf.
60 * inode cluster lock of recovered lf
61 * -> read bitmaps -> ip_alloc_sem of lf
62 * -> ocfs2_lock_global_qf -> start_trans -> dqio_mutex -> qinfo_lock ->
66 static void qsync_work_fn(struct work_struct *work);
68 static void ocfs2_global_disk2memdqb(struct dquot *dquot, void *dp)
70 struct ocfs2_global_disk_dqblk *d = dp;
71 struct mem_dqblk *m = &dquot->dq_dqb;
73 /* Update from disk only entries not set by the admin */
74 if (!test_bit(DQ_LASTSET_B + QIF_ILIMITS_B, &dquot->dq_flags)) {
75 m->dqb_ihardlimit = le64_to_cpu(d->dqb_ihardlimit);
76 m->dqb_isoftlimit = le64_to_cpu(d->dqb_isoftlimit);
78 if (!test_bit(DQ_LASTSET_B + QIF_INODES_B, &dquot->dq_flags))
79 m->dqb_curinodes = le64_to_cpu(d->dqb_curinodes);
80 if (!test_bit(DQ_LASTSET_B + QIF_BLIMITS_B, &dquot->dq_flags)) {
81 m->dqb_bhardlimit = le64_to_cpu(d->dqb_bhardlimit);
82 m->dqb_bsoftlimit = le64_to_cpu(d->dqb_bsoftlimit);
84 if (!test_bit(DQ_LASTSET_B + QIF_SPACE_B, &dquot->dq_flags))
85 m->dqb_curspace = le64_to_cpu(d->dqb_curspace);
86 if (!test_bit(DQ_LASTSET_B + QIF_BTIME_B, &dquot->dq_flags))
87 m->dqb_btime = le64_to_cpu(d->dqb_btime);
88 if (!test_bit(DQ_LASTSET_B + QIF_ITIME_B, &dquot->dq_flags))
89 m->dqb_itime = le64_to_cpu(d->dqb_itime);
90 OCFS2_DQUOT(dquot)->dq_use_count = le32_to_cpu(d->dqb_use_count);
93 static void ocfs2_global_mem2diskdqb(void *dp, struct dquot *dquot)
95 struct ocfs2_global_disk_dqblk *d = dp;
96 struct mem_dqblk *m = &dquot->dq_dqb;
98 d->dqb_id = cpu_to_le32(from_kqid(&init_user_ns, dquot->dq_id));
99 d->dqb_use_count = cpu_to_le32(OCFS2_DQUOT(dquot)->dq_use_count);
100 d->dqb_ihardlimit = cpu_to_le64(m->dqb_ihardlimit);
101 d->dqb_isoftlimit = cpu_to_le64(m->dqb_isoftlimit);
102 d->dqb_curinodes = cpu_to_le64(m->dqb_curinodes);
103 d->dqb_bhardlimit = cpu_to_le64(m->dqb_bhardlimit);
104 d->dqb_bsoftlimit = cpu_to_le64(m->dqb_bsoftlimit);
105 d->dqb_curspace = cpu_to_le64(m->dqb_curspace);
106 d->dqb_btime = cpu_to_le64(m->dqb_btime);
107 d->dqb_itime = cpu_to_le64(m->dqb_itime);
108 d->dqb_pad1 = d->dqb_pad2 = 0;
111 static int ocfs2_global_is_id(void *dp, struct dquot *dquot)
113 struct ocfs2_global_disk_dqblk *d = dp;
114 struct ocfs2_mem_dqinfo *oinfo =
115 sb_dqinfo(dquot->dq_sb, dquot->dq_id.type)->dqi_priv;
117 if (qtree_entry_unused(&oinfo->dqi_gi, dp))
120 return qid_eq(make_kqid(&init_user_ns, dquot->dq_id.type,
121 le32_to_cpu(d->dqb_id)),
125 struct qtree_fmt_operations ocfs2_global_ops = {
126 .mem2disk_dqblk = ocfs2_global_mem2diskdqb,
127 .disk2mem_dqblk = ocfs2_global_disk2memdqb,
128 .is_id = ocfs2_global_is_id,
131 int ocfs2_validate_quota_block(struct super_block *sb, struct buffer_head *bh)
133 struct ocfs2_disk_dqtrailer *dqt =
134 ocfs2_block_dqtrailer(sb->s_blocksize, bh->b_data);
136 trace_ocfs2_validate_quota_block((unsigned long long)bh->b_blocknr);
138 BUG_ON(!buffer_uptodate(bh));
141 * If the ecc fails, we return the error but otherwise
142 * leave the filesystem running. We know any error is
143 * local to this block.
145 return ocfs2_validate_meta_ecc(sb, bh->b_data, &dqt->dq_check);
148 int ocfs2_read_quota_phys_block(struct inode *inode, u64 p_block,
149 struct buffer_head **bhp)
154 rc = ocfs2_read_blocks(INODE_CACHE(inode), p_block, 1, bhp, 0,
155 ocfs2_validate_quota_block);
161 /* Read data from global quotafile - avoid pagecache and such because we cannot
162 * afford acquiring the locks... We use quota cluster lock to serialize
163 * operations. Caller is responsible for acquiring it. */
164 ssize_t ocfs2_quota_read(struct super_block *sb, int type, char *data,
165 size_t len, loff_t off)
167 struct ocfs2_mem_dqinfo *oinfo = sb_dqinfo(sb, type)->dqi_priv;
168 struct inode *gqinode = oinfo->dqi_gqinode;
169 loff_t i_size = i_size_read(gqinode);
170 int offset = off & (sb->s_blocksize - 1);
171 sector_t blk = off >> sb->s_blocksize_bits;
173 struct buffer_head *bh;
174 size_t toread, tocopy;
175 u64 pblock = 0, pcount = 0;
179 if (off + len > i_size)
183 tocopy = min_t(size_t, (sb->s_blocksize - offset), toread);
185 err = ocfs2_extent_map_get_blocks(gqinode, blk, &pblock,
196 err = ocfs2_read_quota_phys_block(gqinode, pblock, &bh);
201 memcpy(data, bh->b_data + offset, tocopy);
211 /* Write to quotafile (we know the transaction is already started and has
213 ssize_t ocfs2_quota_write(struct super_block *sb, int type,
214 const char *data, size_t len, loff_t off)
216 struct mem_dqinfo *info = sb_dqinfo(sb, type);
217 struct ocfs2_mem_dqinfo *oinfo = info->dqi_priv;
218 struct inode *gqinode = oinfo->dqi_gqinode;
219 int offset = off & (sb->s_blocksize - 1);
220 sector_t blk = off >> sb->s_blocksize_bits;
221 int err = 0, new = 0, ja_type;
222 struct buffer_head *bh = NULL;
223 handle_t *handle = journal_current_handle();
227 mlog(ML_ERROR, "Quota write (off=%llu, len=%llu) cancelled "
228 "because transaction was not started.\n",
229 (unsigned long long)off, (unsigned long long)len);
232 if (len > sb->s_blocksize - OCFS2_QBLK_RESERVED_SPACE - offset) {
234 len = sb->s_blocksize - OCFS2_QBLK_RESERVED_SPACE - offset;
237 if (gqinode->i_size < off + len) {
239 ocfs2_align_bytes_to_blocks(sb, off + len);
241 /* Space is already allocated in ocfs2_acquire_dquot() */
242 err = ocfs2_simple_size_update(gqinode,
249 err = ocfs2_extent_map_get_blocks(gqinode, blk, &pblock, &pcount, NULL);
254 /* Not rewriting whole block? */
255 if ((offset || len < sb->s_blocksize - OCFS2_QBLK_RESERVED_SPACE) &&
257 err = ocfs2_read_quota_phys_block(gqinode, pblock, &bh);
258 ja_type = OCFS2_JOURNAL_ACCESS_WRITE;
260 bh = sb_getblk(sb, pblock);
263 ja_type = OCFS2_JOURNAL_ACCESS_CREATE;
271 memset(bh->b_data, 0, sb->s_blocksize);
272 memcpy(bh->b_data + offset, data, len);
273 flush_dcache_page(bh->b_page);
274 set_buffer_uptodate(bh);
276 ocfs2_set_buffer_uptodate(INODE_CACHE(gqinode), bh);
277 err = ocfs2_journal_access_dq(handle, INODE_CACHE(gqinode), bh,
283 ocfs2_journal_dirty(handle, bh);
290 gqinode->i_version++;
291 ocfs2_mark_inode_dirty(handle, gqinode, oinfo->dqi_gqi_bh);
295 int ocfs2_lock_global_qf(struct ocfs2_mem_dqinfo *oinfo, int ex)
298 struct buffer_head *bh = NULL;
300 status = ocfs2_inode_lock(oinfo->dqi_gqinode, &bh, ex);
303 spin_lock(&dq_data_lock);
304 if (!oinfo->dqi_gqi_count++)
305 oinfo->dqi_gqi_bh = bh;
307 WARN_ON(bh != oinfo->dqi_gqi_bh);
308 spin_unlock(&dq_data_lock);
310 mutex_lock(&oinfo->dqi_gqinode->i_mutex);
311 down_write(&OCFS2_I(oinfo->dqi_gqinode)->ip_alloc_sem);
313 down_read(&OCFS2_I(oinfo->dqi_gqinode)->ip_alloc_sem);
318 void ocfs2_unlock_global_qf(struct ocfs2_mem_dqinfo *oinfo, int ex)
321 up_write(&OCFS2_I(oinfo->dqi_gqinode)->ip_alloc_sem);
322 mutex_unlock(&oinfo->dqi_gqinode->i_mutex);
324 up_read(&OCFS2_I(oinfo->dqi_gqinode)->ip_alloc_sem);
326 ocfs2_inode_unlock(oinfo->dqi_gqinode, ex);
327 brelse(oinfo->dqi_gqi_bh);
328 spin_lock(&dq_data_lock);
329 if (!--oinfo->dqi_gqi_count)
330 oinfo->dqi_gqi_bh = NULL;
331 spin_unlock(&dq_data_lock);
334 /* Read information header from global quota file */
335 int ocfs2_global_read_info(struct super_block *sb, int type)
337 struct inode *gqinode = NULL;
338 unsigned int ino[MAXQUOTAS] = { USER_QUOTA_SYSTEM_INODE,
339 GROUP_QUOTA_SYSTEM_INODE };
340 struct ocfs2_global_disk_dqinfo dinfo;
341 struct mem_dqinfo *info = sb_dqinfo(sb, type);
342 struct ocfs2_mem_dqinfo *oinfo = info->dqi_priv;
346 /* Read global header */
347 gqinode = ocfs2_get_system_file_inode(OCFS2_SB(sb), ino[type],
350 mlog(ML_ERROR, "failed to get global quota inode (type=%d)\n",
355 oinfo->dqi_gi.dqi_sb = sb;
356 oinfo->dqi_gi.dqi_type = type;
357 ocfs2_qinfo_lock_res_init(&oinfo->dqi_gqlock, oinfo);
358 oinfo->dqi_gi.dqi_entry_size = sizeof(struct ocfs2_global_disk_dqblk);
359 oinfo->dqi_gi.dqi_ops = &ocfs2_global_ops;
360 oinfo->dqi_gqi_bh = NULL;
361 oinfo->dqi_gqi_count = 0;
362 oinfo->dqi_gqinode = gqinode;
363 status = ocfs2_lock_global_qf(oinfo, 0);
369 status = ocfs2_extent_map_get_blocks(gqinode, 0, &oinfo->dqi_giblk,
374 status = ocfs2_qinfo_lock(oinfo, 0);
377 status = sb->s_op->quota_read(sb, type, (char *)&dinfo,
378 sizeof(struct ocfs2_global_disk_dqinfo),
379 OCFS2_GLOBAL_INFO_OFF);
380 ocfs2_qinfo_unlock(oinfo, 0);
381 ocfs2_unlock_global_qf(oinfo, 0);
382 if (status != sizeof(struct ocfs2_global_disk_dqinfo)) {
383 mlog(ML_ERROR, "Cannot read global quota info (%d).\n",
390 info->dqi_bgrace = le32_to_cpu(dinfo.dqi_bgrace);
391 info->dqi_igrace = le32_to_cpu(dinfo.dqi_igrace);
392 oinfo->dqi_syncms = le32_to_cpu(dinfo.dqi_syncms);
393 oinfo->dqi_gi.dqi_blocks = le32_to_cpu(dinfo.dqi_blocks);
394 oinfo->dqi_gi.dqi_free_blk = le32_to_cpu(dinfo.dqi_free_blk);
395 oinfo->dqi_gi.dqi_free_entry = le32_to_cpu(dinfo.dqi_free_entry);
396 oinfo->dqi_gi.dqi_blocksize_bits = sb->s_blocksize_bits;
397 oinfo->dqi_gi.dqi_usable_bs = sb->s_blocksize -
398 OCFS2_QBLK_RESERVED_SPACE;
399 oinfo->dqi_gi.dqi_qtree_depth = qtree_depth(&oinfo->dqi_gi);
400 INIT_DELAYED_WORK(&oinfo->dqi_sync_work, qsync_work_fn);
401 schedule_delayed_work(&oinfo->dqi_sync_work,
402 msecs_to_jiffies(oinfo->dqi_syncms));
407 ocfs2_unlock_global_qf(oinfo, 0);
412 /* Write information to global quota file. Expects exlusive lock on quota
413 * file inode and quota info */
414 static int __ocfs2_global_write_info(struct super_block *sb, int type)
416 struct mem_dqinfo *info = sb_dqinfo(sb, type);
417 struct ocfs2_mem_dqinfo *oinfo = info->dqi_priv;
418 struct ocfs2_global_disk_dqinfo dinfo;
421 spin_lock(&dq_data_lock);
422 info->dqi_flags &= ~DQF_INFO_DIRTY;
423 dinfo.dqi_bgrace = cpu_to_le32(info->dqi_bgrace);
424 dinfo.dqi_igrace = cpu_to_le32(info->dqi_igrace);
425 spin_unlock(&dq_data_lock);
426 dinfo.dqi_syncms = cpu_to_le32(oinfo->dqi_syncms);
427 dinfo.dqi_blocks = cpu_to_le32(oinfo->dqi_gi.dqi_blocks);
428 dinfo.dqi_free_blk = cpu_to_le32(oinfo->dqi_gi.dqi_free_blk);
429 dinfo.dqi_free_entry = cpu_to_le32(oinfo->dqi_gi.dqi_free_entry);
430 size = sb->s_op->quota_write(sb, type, (char *)&dinfo,
431 sizeof(struct ocfs2_global_disk_dqinfo),
432 OCFS2_GLOBAL_INFO_OFF);
433 if (size != sizeof(struct ocfs2_global_disk_dqinfo)) {
434 mlog(ML_ERROR, "Cannot write global quota info structure\n");
442 int ocfs2_global_write_info(struct super_block *sb, int type)
445 struct ocfs2_mem_dqinfo *info = sb_dqinfo(sb, type)->dqi_priv;
447 err = ocfs2_qinfo_lock(info, 1);
450 err = __ocfs2_global_write_info(sb, type);
451 ocfs2_qinfo_unlock(info, 1);
455 static int ocfs2_global_qinit_alloc(struct super_block *sb, int type)
457 struct ocfs2_mem_dqinfo *oinfo = sb_dqinfo(sb, type)->dqi_priv;
460 * We may need to allocate tree blocks and a leaf block but not the
463 return oinfo->dqi_gi.dqi_qtree_depth;
466 static int ocfs2_calc_global_qinit_credits(struct super_block *sb, int type)
468 /* We modify all the allocated blocks, tree root, info block and
470 return (ocfs2_global_qinit_alloc(sb, type) + 2) *
471 OCFS2_QUOTA_BLOCK_UPDATE_CREDITS + 1;
474 /* Sync local information about quota modifications with global quota file.
475 * Caller must have started the transaction and obtained exclusive lock for
476 * global quota file inode */
477 int __ocfs2_sync_dquot(struct dquot *dquot, int freeing)
480 struct super_block *sb = dquot->dq_sb;
481 int type = dquot->dq_id.type;
482 struct ocfs2_mem_dqinfo *info = sb_dqinfo(sb, type)->dqi_priv;
483 struct ocfs2_global_disk_dqblk dqblk;
484 s64 spacechange, inodechange;
485 time_t olditime, oldbtime;
487 err = sb->s_op->quota_read(sb, type, (char *)&dqblk,
488 sizeof(struct ocfs2_global_disk_dqblk),
490 if (err != sizeof(struct ocfs2_global_disk_dqblk)) {
492 mlog(ML_ERROR, "Short read from global quota file "
499 /* Update space and inode usage. Get also other information from
500 * global quota file so that we don't overwrite any changes there.
502 spin_lock(&dq_data_lock);
503 spacechange = dquot->dq_dqb.dqb_curspace -
504 OCFS2_DQUOT(dquot)->dq_origspace;
505 inodechange = dquot->dq_dqb.dqb_curinodes -
506 OCFS2_DQUOT(dquot)->dq_originodes;
507 olditime = dquot->dq_dqb.dqb_itime;
508 oldbtime = dquot->dq_dqb.dqb_btime;
509 ocfs2_global_disk2memdqb(dquot, &dqblk);
510 trace_ocfs2_sync_dquot(from_kqid(&init_user_ns, dquot->dq_id),
511 dquot->dq_dqb.dqb_curspace,
512 (long long)spacechange,
513 dquot->dq_dqb.dqb_curinodes,
514 (long long)inodechange);
515 if (!test_bit(DQ_LASTSET_B + QIF_SPACE_B, &dquot->dq_flags))
516 dquot->dq_dqb.dqb_curspace += spacechange;
517 if (!test_bit(DQ_LASTSET_B + QIF_INODES_B, &dquot->dq_flags))
518 dquot->dq_dqb.dqb_curinodes += inodechange;
519 /* Set properly space grace time... */
520 if (dquot->dq_dqb.dqb_bsoftlimit &&
521 dquot->dq_dqb.dqb_curspace > dquot->dq_dqb.dqb_bsoftlimit) {
522 if (!test_bit(DQ_LASTSET_B + QIF_BTIME_B, &dquot->dq_flags) &&
524 if (dquot->dq_dqb.dqb_btime > 0)
525 dquot->dq_dqb.dqb_btime =
526 min(dquot->dq_dqb.dqb_btime, oldbtime);
528 dquot->dq_dqb.dqb_btime = oldbtime;
531 dquot->dq_dqb.dqb_btime = 0;
532 clear_bit(DQ_BLKS_B, &dquot->dq_flags);
534 /* Set properly inode grace time... */
535 if (dquot->dq_dqb.dqb_isoftlimit &&
536 dquot->dq_dqb.dqb_curinodes > dquot->dq_dqb.dqb_isoftlimit) {
537 if (!test_bit(DQ_LASTSET_B + QIF_ITIME_B, &dquot->dq_flags) &&
539 if (dquot->dq_dqb.dqb_itime > 0)
540 dquot->dq_dqb.dqb_itime =
541 min(dquot->dq_dqb.dqb_itime, olditime);
543 dquot->dq_dqb.dqb_itime = olditime;
546 dquot->dq_dqb.dqb_itime = 0;
547 clear_bit(DQ_INODES_B, &dquot->dq_flags);
549 /* All information is properly updated, clear the flags */
550 __clear_bit(DQ_LASTSET_B + QIF_SPACE_B, &dquot->dq_flags);
551 __clear_bit(DQ_LASTSET_B + QIF_INODES_B, &dquot->dq_flags);
552 __clear_bit(DQ_LASTSET_B + QIF_BLIMITS_B, &dquot->dq_flags);
553 __clear_bit(DQ_LASTSET_B + QIF_ILIMITS_B, &dquot->dq_flags);
554 __clear_bit(DQ_LASTSET_B + QIF_BTIME_B, &dquot->dq_flags);
555 __clear_bit(DQ_LASTSET_B + QIF_ITIME_B, &dquot->dq_flags);
556 OCFS2_DQUOT(dquot)->dq_origspace = dquot->dq_dqb.dqb_curspace;
557 OCFS2_DQUOT(dquot)->dq_originodes = dquot->dq_dqb.dqb_curinodes;
558 spin_unlock(&dq_data_lock);
559 err = ocfs2_qinfo_lock(info, freeing);
561 mlog(ML_ERROR, "Failed to lock quota info, losing quota write"
562 " (type=%d, id=%u)\n", dquot->dq_id.type,
563 (unsigned)from_kqid(&init_user_ns, dquot->dq_id));
567 OCFS2_DQUOT(dquot)->dq_use_count--;
568 err = qtree_write_dquot(&info->dqi_gi, dquot);
571 if (freeing && !OCFS2_DQUOT(dquot)->dq_use_count) {
572 err = qtree_release_dquot(&info->dqi_gi, dquot);
573 if (info_dirty(sb_dqinfo(sb, type))) {
574 err2 = __ocfs2_global_write_info(sb, type);
580 ocfs2_qinfo_unlock(info, freeing);
588 * Functions for periodic syncing of dquots with global file
590 static int ocfs2_sync_dquot_helper(struct dquot *dquot, unsigned long type)
593 struct super_block *sb = dquot->dq_sb;
594 struct ocfs2_mem_dqinfo *oinfo = sb_dqinfo(sb, type)->dqi_priv;
595 struct ocfs2_super *osb = OCFS2_SB(sb);
598 trace_ocfs2_sync_dquot_helper(from_kqid(&init_user_ns, dquot->dq_id),
601 if (type != dquot->dq_id.type)
603 status = ocfs2_lock_global_qf(oinfo, 1);
607 handle = ocfs2_start_trans(osb, OCFS2_QSYNC_CREDITS);
608 if (IS_ERR(handle)) {
609 status = PTR_ERR(handle);
613 mutex_lock(&sb_dqopt(sb)->dqio_mutex);
614 status = ocfs2_sync_dquot(dquot);
617 /* We have to write local structure as well... */
618 status = ocfs2_local_write_dquot(dquot);
621 mutex_unlock(&sb_dqopt(sb)->dqio_mutex);
622 ocfs2_commit_trans(osb, handle);
624 ocfs2_unlock_global_qf(oinfo, 1);
629 static void qsync_work_fn(struct work_struct *work)
631 struct ocfs2_mem_dqinfo *oinfo = container_of(work,
632 struct ocfs2_mem_dqinfo,
634 struct super_block *sb = oinfo->dqi_gqinode->i_sb;
636 dquot_scan_active(sb, ocfs2_sync_dquot_helper, oinfo->dqi_type);
637 schedule_delayed_work(&oinfo->dqi_sync_work,
638 msecs_to_jiffies(oinfo->dqi_syncms));
642 * Wrappers for generic quota functions
645 static int ocfs2_write_dquot(struct dquot *dquot)
648 struct ocfs2_super *osb = OCFS2_SB(dquot->dq_sb);
651 trace_ocfs2_write_dquot(from_kqid(&init_user_ns, dquot->dq_id),
654 handle = ocfs2_start_trans(osb, OCFS2_QWRITE_CREDITS);
655 if (IS_ERR(handle)) {
656 status = PTR_ERR(handle);
660 mutex_lock(&sb_dqopt(dquot->dq_sb)->dqio_mutex);
661 status = ocfs2_local_write_dquot(dquot);
662 mutex_unlock(&sb_dqopt(dquot->dq_sb)->dqio_mutex);
663 ocfs2_commit_trans(osb, handle);
668 static int ocfs2_calc_qdel_credits(struct super_block *sb, int type)
670 struct ocfs2_mem_dqinfo *oinfo = sb_dqinfo(sb, type)->dqi_priv;
672 * We modify tree, leaf block, global info, local chunk header,
673 * global and local inode; OCFS2_QINFO_WRITE_CREDITS already
674 * accounts for inode update
676 return (oinfo->dqi_gi.dqi_qtree_depth + 2) *
677 OCFS2_QUOTA_BLOCK_UPDATE_CREDITS +
678 OCFS2_QINFO_WRITE_CREDITS +
679 OCFS2_INODE_UPDATE_CREDITS;
682 static int ocfs2_release_dquot(struct dquot *dquot)
685 struct ocfs2_mem_dqinfo *oinfo =
686 sb_dqinfo(dquot->dq_sb, dquot->dq_id.type)->dqi_priv;
687 struct ocfs2_super *osb = OCFS2_SB(dquot->dq_sb);
690 trace_ocfs2_release_dquot(from_kqid(&init_user_ns, dquot->dq_id),
693 mutex_lock(&dquot->dq_lock);
694 /* Check whether we are not racing with some other dqget() */
695 if (atomic_read(&dquot->dq_count) > 1)
697 status = ocfs2_lock_global_qf(oinfo, 1);
700 handle = ocfs2_start_trans(osb,
701 ocfs2_calc_qdel_credits(dquot->dq_sb, dquot->dq_id.type));
702 if (IS_ERR(handle)) {
703 status = PTR_ERR(handle);
708 status = ocfs2_global_release_dquot(dquot);
713 status = ocfs2_local_release_dquot(handle, dquot);
715 * If we fail here, we cannot do much as global structure is
716 * already released. So just complain...
720 clear_bit(DQ_ACTIVE_B, &dquot->dq_flags);
722 ocfs2_commit_trans(osb, handle);
724 ocfs2_unlock_global_qf(oinfo, 1);
726 mutex_unlock(&dquot->dq_lock);
733 * Read global dquot structure from disk or create it if it does
734 * not exist. Also update use count of the global structure and
735 * create structure in node-local quota file.
737 static int ocfs2_acquire_dquot(struct dquot *dquot)
741 struct super_block *sb = dquot->dq_sb;
742 struct ocfs2_super *osb = OCFS2_SB(sb);
743 int type = dquot->dq_id.type;
744 struct ocfs2_mem_dqinfo *info = sb_dqinfo(sb, type)->dqi_priv;
745 struct inode *gqinode = info->dqi_gqinode;
746 int need_alloc = ocfs2_global_qinit_alloc(sb, type);
749 trace_ocfs2_acquire_dquot(from_kqid(&init_user_ns, dquot->dq_id),
751 mutex_lock(&dquot->dq_lock);
753 * We need an exclusive lock, because we're going to update use count
754 * and instantiate possibly new dquot structure
756 status = ocfs2_lock_global_qf(info, 1);
759 if (!test_bit(DQ_READ_B, &dquot->dq_flags)) {
760 status = ocfs2_qinfo_lock(info, 0);
763 status = qtree_read_dquot(&info->dqi_gi, dquot);
764 ocfs2_qinfo_unlock(info, 0);
768 set_bit(DQ_READ_B, &dquot->dq_flags);
770 OCFS2_DQUOT(dquot)->dq_use_count++;
771 OCFS2_DQUOT(dquot)->dq_origspace = dquot->dq_dqb.dqb_curspace;
772 OCFS2_DQUOT(dquot)->dq_originodes = dquot->dq_dqb.dqb_curinodes;
773 if (!dquot->dq_off) { /* No real quota entry? */
776 * Add blocks to quota file before we start a transaction since
777 * locking allocators ranks above a transaction start
779 WARN_ON(journal_current_handle());
780 status = ocfs2_extend_no_holes(gqinode, NULL,
781 gqinode->i_size + (need_alloc << sb->s_blocksize_bits),
787 handle = ocfs2_start_trans(osb,
788 ocfs2_calc_global_qinit_credits(sb, type));
789 if (IS_ERR(handle)) {
790 status = PTR_ERR(handle);
793 status = ocfs2_qinfo_lock(info, ex);
796 status = qtree_write_dquot(&info->dqi_gi, dquot);
797 if (ex && info_dirty(sb_dqinfo(sb, type))) {
798 err = __ocfs2_global_write_info(sb, type);
802 ocfs2_qinfo_unlock(info, ex);
804 ocfs2_commit_trans(osb, handle);
806 ocfs2_unlock_global_qf(info, 1);
810 status = ocfs2_create_local_dquot(dquot);
813 set_bit(DQ_ACTIVE_B, &dquot->dq_flags);
815 mutex_unlock(&dquot->dq_lock);
821 static int ocfs2_mark_dquot_dirty(struct dquot *dquot)
823 unsigned long mask = (1 << (DQ_LASTSET_B + QIF_ILIMITS_B)) |
824 (1 << (DQ_LASTSET_B + QIF_BLIMITS_B)) |
825 (1 << (DQ_LASTSET_B + QIF_INODES_B)) |
826 (1 << (DQ_LASTSET_B + QIF_SPACE_B)) |
827 (1 << (DQ_LASTSET_B + QIF_BTIME_B)) |
828 (1 << (DQ_LASTSET_B + QIF_ITIME_B));
831 struct super_block *sb = dquot->dq_sb;
832 int type = dquot->dq_id.type;
833 struct ocfs2_mem_dqinfo *oinfo = sb_dqinfo(sb, type)->dqi_priv;
835 struct ocfs2_super *osb = OCFS2_SB(sb);
837 trace_ocfs2_mark_dquot_dirty(from_kqid(&init_user_ns, dquot->dq_id),
840 /* In case user set some limits, sync dquot immediately to global
841 * quota file so that information propagates quicker */
842 spin_lock(&dq_data_lock);
843 if (dquot->dq_flags & mask)
845 spin_unlock(&dq_data_lock);
846 /* This is a slight hack but we can't afford getting global quota
847 * lock if we already have a transaction started. */
848 if (!sync || journal_current_handle()) {
849 status = ocfs2_write_dquot(dquot);
852 status = ocfs2_lock_global_qf(oinfo, 1);
855 handle = ocfs2_start_trans(osb, OCFS2_QSYNC_CREDITS);
856 if (IS_ERR(handle)) {
857 status = PTR_ERR(handle);
861 mutex_lock(&sb_dqopt(sb)->dqio_mutex);
862 status = ocfs2_sync_dquot(dquot);
867 /* Now write updated local dquot structure */
868 status = ocfs2_local_write_dquot(dquot);
870 mutex_unlock(&sb_dqopt(sb)->dqio_mutex);
871 ocfs2_commit_trans(osb, handle);
873 ocfs2_unlock_global_qf(oinfo, 1);
880 /* This should happen only after set_dqinfo(). */
881 static int ocfs2_write_info(struct super_block *sb, int type)
885 struct ocfs2_mem_dqinfo *oinfo = sb_dqinfo(sb, type)->dqi_priv;
887 status = ocfs2_lock_global_qf(oinfo, 1);
890 handle = ocfs2_start_trans(OCFS2_SB(sb), OCFS2_QINFO_WRITE_CREDITS);
891 if (IS_ERR(handle)) {
892 status = PTR_ERR(handle);
896 status = dquot_commit_info(sb, type);
897 ocfs2_commit_trans(OCFS2_SB(sb), handle);
899 ocfs2_unlock_global_qf(oinfo, 1);
906 static struct dquot *ocfs2_alloc_dquot(struct super_block *sb, int type)
908 struct ocfs2_dquot *dquot =
909 kmem_cache_zalloc(ocfs2_dquot_cachep, GFP_NOFS);
913 return &dquot->dq_dquot;
916 static void ocfs2_destroy_dquot(struct dquot *dquot)
918 kmem_cache_free(ocfs2_dquot_cachep, dquot);
921 const struct dquot_operations ocfs2_quota_operations = {
922 /* We never make dquot dirty so .write_dquot is never called */
923 .acquire_dquot = ocfs2_acquire_dquot,
924 .release_dquot = ocfs2_release_dquot,
925 .mark_dirty = ocfs2_mark_dquot_dirty,
926 .write_info = ocfs2_write_info,
927 .alloc_dquot = ocfs2_alloc_dquot,
928 .destroy_dquot = ocfs2_destroy_dquot,