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 #define MLOG_MASK_PREFIX ML_QUOTA
15 #include <cluster/masklog.h>
20 #include "blockcheck.h"
28 #include "buffer_head_io.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 struct workqueue_struct
*ocfs2_quota_wq
= NULL
;
68 static void qsync_work_fn(struct work_struct
*work
);
70 static void ocfs2_global_disk2memdqb(struct dquot
*dquot
, void *dp
)
72 struct ocfs2_global_disk_dqblk
*d
= dp
;
73 struct mem_dqblk
*m
= &dquot
->dq_dqb
;
75 /* Update from disk only entries not set by the admin */
76 if (!test_bit(DQ_LASTSET_B
+ QIF_ILIMITS_B
, &dquot
->dq_flags
)) {
77 m
->dqb_ihardlimit
= le64_to_cpu(d
->dqb_ihardlimit
);
78 m
->dqb_isoftlimit
= le64_to_cpu(d
->dqb_isoftlimit
);
80 if (!test_bit(DQ_LASTSET_B
+ QIF_INODES_B
, &dquot
->dq_flags
))
81 m
->dqb_curinodes
= le64_to_cpu(d
->dqb_curinodes
);
82 if (!test_bit(DQ_LASTSET_B
+ QIF_BLIMITS_B
, &dquot
->dq_flags
)) {
83 m
->dqb_bhardlimit
= le64_to_cpu(d
->dqb_bhardlimit
);
84 m
->dqb_bsoftlimit
= le64_to_cpu(d
->dqb_bsoftlimit
);
86 if (!test_bit(DQ_LASTSET_B
+ QIF_SPACE_B
, &dquot
->dq_flags
))
87 m
->dqb_curspace
= le64_to_cpu(d
->dqb_curspace
);
88 if (!test_bit(DQ_LASTSET_B
+ QIF_BTIME_B
, &dquot
->dq_flags
))
89 m
->dqb_btime
= le64_to_cpu(d
->dqb_btime
);
90 if (!test_bit(DQ_LASTSET_B
+ QIF_ITIME_B
, &dquot
->dq_flags
))
91 m
->dqb_itime
= le64_to_cpu(d
->dqb_itime
);
92 OCFS2_DQUOT(dquot
)->dq_use_count
= le32_to_cpu(d
->dqb_use_count
);
95 static void ocfs2_global_mem2diskdqb(void *dp
, struct dquot
*dquot
)
97 struct ocfs2_global_disk_dqblk
*d
= dp
;
98 struct mem_dqblk
*m
= &dquot
->dq_dqb
;
100 d
->dqb_id
= cpu_to_le32(dquot
->dq_id
);
101 d
->dqb_use_count
= cpu_to_le32(OCFS2_DQUOT(dquot
)->dq_use_count
);
102 d
->dqb_ihardlimit
= cpu_to_le64(m
->dqb_ihardlimit
);
103 d
->dqb_isoftlimit
= cpu_to_le64(m
->dqb_isoftlimit
);
104 d
->dqb_curinodes
= cpu_to_le64(m
->dqb_curinodes
);
105 d
->dqb_bhardlimit
= cpu_to_le64(m
->dqb_bhardlimit
);
106 d
->dqb_bsoftlimit
= cpu_to_le64(m
->dqb_bsoftlimit
);
107 d
->dqb_curspace
= cpu_to_le64(m
->dqb_curspace
);
108 d
->dqb_btime
= cpu_to_le64(m
->dqb_btime
);
109 d
->dqb_itime
= cpu_to_le64(m
->dqb_itime
);
110 d
->dqb_pad1
= d
->dqb_pad2
= 0;
113 static int ocfs2_global_is_id(void *dp
, struct dquot
*dquot
)
115 struct ocfs2_global_disk_dqblk
*d
= dp
;
116 struct ocfs2_mem_dqinfo
*oinfo
=
117 sb_dqinfo(dquot
->dq_sb
, dquot
->dq_type
)->dqi_priv
;
119 if (qtree_entry_unused(&oinfo
->dqi_gi
, dp
))
121 return le32_to_cpu(d
->dqb_id
) == dquot
->dq_id
;
124 struct qtree_fmt_operations ocfs2_global_ops
= {
125 .mem2disk_dqblk
= ocfs2_global_mem2diskdqb
,
126 .disk2mem_dqblk
= ocfs2_global_disk2memdqb
,
127 .is_id
= ocfs2_global_is_id
,
130 int ocfs2_validate_quota_block(struct super_block
*sb
, struct buffer_head
*bh
)
132 struct ocfs2_disk_dqtrailer
*dqt
=
133 ocfs2_block_dqtrailer(sb
->s_blocksize
, bh
->b_data
);
135 mlog(0, "Validating quota block %llu\n",
136 (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
;
348 /* Read global header */
349 gqinode
= ocfs2_get_system_file_inode(OCFS2_SB(sb
), ino
[type
],
352 mlog(ML_ERROR
, "failed to get global quota inode (type=%d)\n",
357 oinfo
->dqi_gi
.dqi_sb
= sb
;
358 oinfo
->dqi_gi
.dqi_type
= type
;
359 ocfs2_qinfo_lock_res_init(&oinfo
->dqi_gqlock
, oinfo
);
360 oinfo
->dqi_gi
.dqi_entry_size
= sizeof(struct ocfs2_global_disk_dqblk
);
361 oinfo
->dqi_gi
.dqi_ops
= &ocfs2_global_ops
;
362 oinfo
->dqi_gqi_bh
= NULL
;
363 oinfo
->dqi_gqi_count
= 0;
364 oinfo
->dqi_gqinode
= gqinode
;
365 status
= ocfs2_lock_global_qf(oinfo
, 0);
371 status
= ocfs2_extent_map_get_blocks(gqinode
, 0, &oinfo
->dqi_giblk
,
376 status
= ocfs2_qinfo_lock(oinfo
, 0);
379 status
= sb
->s_op
->quota_read(sb
, type
, (char *)&dinfo
,
380 sizeof(struct ocfs2_global_disk_dqinfo
),
381 OCFS2_GLOBAL_INFO_OFF
);
382 ocfs2_qinfo_unlock(oinfo
, 0);
383 ocfs2_unlock_global_qf(oinfo
, 0);
384 if (status
!= sizeof(struct ocfs2_global_disk_dqinfo
)) {
385 mlog(ML_ERROR
, "Cannot read global quota info (%d).\n",
392 info
->dqi_bgrace
= le32_to_cpu(dinfo
.dqi_bgrace
);
393 info
->dqi_igrace
= le32_to_cpu(dinfo
.dqi_igrace
);
394 oinfo
->dqi_syncms
= le32_to_cpu(dinfo
.dqi_syncms
);
395 oinfo
->dqi_gi
.dqi_blocks
= le32_to_cpu(dinfo
.dqi_blocks
);
396 oinfo
->dqi_gi
.dqi_free_blk
= le32_to_cpu(dinfo
.dqi_free_blk
);
397 oinfo
->dqi_gi
.dqi_free_entry
= le32_to_cpu(dinfo
.dqi_free_entry
);
398 oinfo
->dqi_gi
.dqi_blocksize_bits
= sb
->s_blocksize_bits
;
399 oinfo
->dqi_gi
.dqi_usable_bs
= sb
->s_blocksize
-
400 OCFS2_QBLK_RESERVED_SPACE
;
401 oinfo
->dqi_gi
.dqi_qtree_depth
= qtree_depth(&oinfo
->dqi_gi
);
402 INIT_DELAYED_WORK(&oinfo
->dqi_sync_work
, qsync_work_fn
);
403 queue_delayed_work(ocfs2_quota_wq
, &oinfo
->dqi_sync_work
,
404 msecs_to_jiffies(oinfo
->dqi_syncms
));
410 ocfs2_unlock_global_qf(oinfo
, 0);
415 /* Write information to global quota file. Expects exlusive lock on quota
416 * file inode and quota info */
417 static int __ocfs2_global_write_info(struct super_block
*sb
, int type
)
419 struct mem_dqinfo
*info
= sb_dqinfo(sb
, type
);
420 struct ocfs2_mem_dqinfo
*oinfo
= info
->dqi_priv
;
421 struct ocfs2_global_disk_dqinfo dinfo
;
424 spin_lock(&dq_data_lock
);
425 info
->dqi_flags
&= ~DQF_INFO_DIRTY
;
426 dinfo
.dqi_bgrace
= cpu_to_le32(info
->dqi_bgrace
);
427 dinfo
.dqi_igrace
= cpu_to_le32(info
->dqi_igrace
);
428 spin_unlock(&dq_data_lock
);
429 dinfo
.dqi_syncms
= cpu_to_le32(oinfo
->dqi_syncms
);
430 dinfo
.dqi_blocks
= cpu_to_le32(oinfo
->dqi_gi
.dqi_blocks
);
431 dinfo
.dqi_free_blk
= cpu_to_le32(oinfo
->dqi_gi
.dqi_free_blk
);
432 dinfo
.dqi_free_entry
= cpu_to_le32(oinfo
->dqi_gi
.dqi_free_entry
);
433 size
= sb
->s_op
->quota_write(sb
, type
, (char *)&dinfo
,
434 sizeof(struct ocfs2_global_disk_dqinfo
),
435 OCFS2_GLOBAL_INFO_OFF
);
436 if (size
!= sizeof(struct ocfs2_global_disk_dqinfo
)) {
437 mlog(ML_ERROR
, "Cannot write global quota info structure\n");
445 int ocfs2_global_write_info(struct super_block
*sb
, int type
)
448 struct ocfs2_mem_dqinfo
*info
= sb_dqinfo(sb
, type
)->dqi_priv
;
450 err
= ocfs2_qinfo_lock(info
, 1);
453 err
= __ocfs2_global_write_info(sb
, type
);
454 ocfs2_qinfo_unlock(info
, 1);
458 static int ocfs2_global_qinit_alloc(struct super_block
*sb
, int type
)
460 struct ocfs2_mem_dqinfo
*oinfo
= sb_dqinfo(sb
, type
)->dqi_priv
;
463 * We may need to allocate tree blocks and a leaf block but not the
466 return oinfo
->dqi_gi
.dqi_qtree_depth
;
469 static int ocfs2_calc_global_qinit_credits(struct super_block
*sb
, int type
)
471 /* We modify all the allocated blocks, tree root, info block and
473 return (ocfs2_global_qinit_alloc(sb
, type
) + 2) *
474 OCFS2_QUOTA_BLOCK_UPDATE_CREDITS
+ 1;
477 /* Sync local information about quota modifications with global quota file.
478 * Caller must have started the transaction and obtained exclusive lock for
479 * global quota file inode */
480 int __ocfs2_sync_dquot(struct dquot
*dquot
, int freeing
)
483 struct super_block
*sb
= dquot
->dq_sb
;
484 int type
= dquot
->dq_type
;
485 struct ocfs2_mem_dqinfo
*info
= sb_dqinfo(sb
, type
)->dqi_priv
;
486 struct ocfs2_global_disk_dqblk dqblk
;
487 s64 spacechange
, inodechange
;
488 time_t olditime
, oldbtime
;
490 err
= sb
->s_op
->quota_read(sb
, type
, (char *)&dqblk
,
491 sizeof(struct ocfs2_global_disk_dqblk
),
493 if (err
!= sizeof(struct ocfs2_global_disk_dqblk
)) {
495 mlog(ML_ERROR
, "Short read from global quota file "
502 /* Update space and inode usage. Get also other information from
503 * global quota file so that we don't overwrite any changes there.
505 spin_lock(&dq_data_lock
);
506 spacechange
= dquot
->dq_dqb
.dqb_curspace
-
507 OCFS2_DQUOT(dquot
)->dq_origspace
;
508 inodechange
= dquot
->dq_dqb
.dqb_curinodes
-
509 OCFS2_DQUOT(dquot
)->dq_originodes
;
510 olditime
= dquot
->dq_dqb
.dqb_itime
;
511 oldbtime
= dquot
->dq_dqb
.dqb_btime
;
512 ocfs2_global_disk2memdqb(dquot
, &dqblk
);
513 mlog(0, "Syncing global dquot %u space %lld+%lld, inodes %lld+%lld\n",
514 dquot
->dq_id
, dquot
->dq_dqb
.dqb_curspace
, (long long)spacechange
,
515 dquot
->dq_dqb
.dqb_curinodes
, (long long)inodechange
);
516 if (!test_bit(DQ_LASTSET_B
+ QIF_SPACE_B
, &dquot
->dq_flags
))
517 dquot
->dq_dqb
.dqb_curspace
+= spacechange
;
518 if (!test_bit(DQ_LASTSET_B
+ QIF_INODES_B
, &dquot
->dq_flags
))
519 dquot
->dq_dqb
.dqb_curinodes
+= inodechange
;
520 /* Set properly space grace time... */
521 if (dquot
->dq_dqb
.dqb_bsoftlimit
&&
522 dquot
->dq_dqb
.dqb_curspace
> dquot
->dq_dqb
.dqb_bsoftlimit
) {
523 if (!test_bit(DQ_LASTSET_B
+ QIF_BTIME_B
, &dquot
->dq_flags
) &&
525 if (dquot
->dq_dqb
.dqb_btime
> 0)
526 dquot
->dq_dqb
.dqb_btime
=
527 min(dquot
->dq_dqb
.dqb_btime
, oldbtime
);
529 dquot
->dq_dqb
.dqb_btime
= oldbtime
;
532 dquot
->dq_dqb
.dqb_btime
= 0;
533 clear_bit(DQ_BLKS_B
, &dquot
->dq_flags
);
535 /* Set properly inode grace time... */
536 if (dquot
->dq_dqb
.dqb_isoftlimit
&&
537 dquot
->dq_dqb
.dqb_curinodes
> dquot
->dq_dqb
.dqb_isoftlimit
) {
538 if (!test_bit(DQ_LASTSET_B
+ QIF_ITIME_B
, &dquot
->dq_flags
) &&
540 if (dquot
->dq_dqb
.dqb_itime
> 0)
541 dquot
->dq_dqb
.dqb_itime
=
542 min(dquot
->dq_dqb
.dqb_itime
, olditime
);
544 dquot
->dq_dqb
.dqb_itime
= olditime
;
547 dquot
->dq_dqb
.dqb_itime
= 0;
548 clear_bit(DQ_INODES_B
, &dquot
->dq_flags
);
550 /* All information is properly updated, clear the flags */
551 __clear_bit(DQ_LASTSET_B
+ QIF_SPACE_B
, &dquot
->dq_flags
);
552 __clear_bit(DQ_LASTSET_B
+ QIF_INODES_B
, &dquot
->dq_flags
);
553 __clear_bit(DQ_LASTSET_B
+ QIF_BLIMITS_B
, &dquot
->dq_flags
);
554 __clear_bit(DQ_LASTSET_B
+ QIF_ILIMITS_B
, &dquot
->dq_flags
);
555 __clear_bit(DQ_LASTSET_B
+ QIF_BTIME_B
, &dquot
->dq_flags
);
556 __clear_bit(DQ_LASTSET_B
+ QIF_ITIME_B
, &dquot
->dq_flags
);
557 OCFS2_DQUOT(dquot
)->dq_origspace
= dquot
->dq_dqb
.dqb_curspace
;
558 OCFS2_DQUOT(dquot
)->dq_originodes
= dquot
->dq_dqb
.dqb_curinodes
;
559 spin_unlock(&dq_data_lock
);
560 err
= ocfs2_qinfo_lock(info
, freeing
);
562 mlog(ML_ERROR
, "Failed to lock quota info, loosing quota write"
563 " (type=%d, id=%u)\n", dquot
->dq_type
,
564 (unsigned)dquot
->dq_id
);
568 OCFS2_DQUOT(dquot
)->dq_use_count
--;
569 err
= qtree_write_dquot(&info
->dqi_gi
, dquot
);
572 if (freeing
&& !OCFS2_DQUOT(dquot
)->dq_use_count
) {
573 err
= qtree_release_dquot(&info
->dqi_gi
, dquot
);
574 if (info_dirty(sb_dqinfo(sb
, type
))) {
575 err2
= __ocfs2_global_write_info(sb
, type
);
581 ocfs2_qinfo_unlock(info
, freeing
);
589 * Functions for periodic syncing of dquots with global file
591 static int ocfs2_sync_dquot_helper(struct dquot
*dquot
, unsigned long type
)
594 struct super_block
*sb
= dquot
->dq_sb
;
595 struct ocfs2_mem_dqinfo
*oinfo
= sb_dqinfo(sb
, type
)->dqi_priv
;
596 struct ocfs2_super
*osb
= OCFS2_SB(sb
);
599 mlog_entry("id=%u qtype=%u type=%lu device=%s\n", dquot
->dq_id
,
600 dquot
->dq_type
, type
, sb
->s_id
);
601 if (type
!= dquot
->dq_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);
630 static void qsync_work_fn(struct work_struct
*work
)
632 struct ocfs2_mem_dqinfo
*oinfo
= container_of(work
,
633 struct ocfs2_mem_dqinfo
,
635 struct super_block
*sb
= oinfo
->dqi_gqinode
->i_sb
;
637 dquot_scan_active(sb
, ocfs2_sync_dquot_helper
, oinfo
->dqi_type
);
638 queue_delayed_work(ocfs2_quota_wq
, &oinfo
->dqi_sync_work
,
639 msecs_to_jiffies(oinfo
->dqi_syncms
));
643 * Wrappers for generic quota functions
646 static int ocfs2_write_dquot(struct dquot
*dquot
)
649 struct ocfs2_super
*osb
= OCFS2_SB(dquot
->dq_sb
);
652 mlog_entry("id=%u, type=%d", dquot
->dq_id
, dquot
->dq_type
);
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
);
669 static int ocfs2_calc_qdel_credits(struct super_block
*sb
, int type
)
671 struct ocfs2_mem_dqinfo
*oinfo
= sb_dqinfo(sb
, type
)->dqi_priv
;
673 * We modify tree, leaf block, global info, local chunk header,
674 * global and local inode; OCFS2_QINFO_WRITE_CREDITS already
675 * accounts for inode update
677 return (oinfo
->dqi_gi
.dqi_qtree_depth
+ 2) *
678 OCFS2_QUOTA_BLOCK_UPDATE_CREDITS
+
679 OCFS2_QINFO_WRITE_CREDITS
+
680 OCFS2_INODE_UPDATE_CREDITS
;
683 static int ocfs2_release_dquot(struct dquot
*dquot
)
686 struct ocfs2_mem_dqinfo
*oinfo
=
687 sb_dqinfo(dquot
->dq_sb
, dquot
->dq_type
)->dqi_priv
;
688 struct ocfs2_super
*osb
= OCFS2_SB(dquot
->dq_sb
);
691 mlog_entry("id=%u, type=%d", dquot
->dq_id
, dquot
->dq_type
);
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_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
);
732 * Read global dquot structure from disk or create it if it does
733 * not exist. Also update use count of the global structure and
734 * create structure in node-local quota file.
736 static int ocfs2_acquire_dquot(struct dquot
*dquot
)
740 struct super_block
*sb
= dquot
->dq_sb
;
741 struct ocfs2_super
*osb
= OCFS2_SB(sb
);
742 int type
= dquot
->dq_type
;
743 struct ocfs2_mem_dqinfo
*info
= sb_dqinfo(sb
, type
)->dqi_priv
;
744 struct inode
*gqinode
= info
->dqi_gqinode
;
745 int need_alloc
= ocfs2_global_qinit_alloc(sb
, type
);
748 mlog_entry("id=%u, type=%d", dquot
->dq_id
, type
);
749 mutex_lock(&dquot
->dq_lock
);
751 * We need an exclusive lock, because we're going to update use count
752 * and instantiate possibly new dquot structure
754 status
= ocfs2_lock_global_qf(info
, 1);
757 if (!test_bit(DQ_READ_B
, &dquot
->dq_flags
)) {
758 status
= ocfs2_qinfo_lock(info
, 0);
761 status
= qtree_read_dquot(&info
->dqi_gi
, dquot
);
762 ocfs2_qinfo_unlock(info
, 0);
766 set_bit(DQ_READ_B
, &dquot
->dq_flags
);
768 OCFS2_DQUOT(dquot
)->dq_use_count
++;
769 OCFS2_DQUOT(dquot
)->dq_origspace
= dquot
->dq_dqb
.dqb_curspace
;
770 OCFS2_DQUOT(dquot
)->dq_originodes
= dquot
->dq_dqb
.dqb_curinodes
;
771 if (!dquot
->dq_off
) { /* No real quota entry? */
774 * Add blocks to quota file before we start a transaction since
775 * locking allocators ranks above a transaction start
777 WARN_ON(journal_current_handle());
778 status
= ocfs2_extend_no_holes(gqinode
, NULL
,
779 gqinode
->i_size
+ (need_alloc
<< sb
->s_blocksize_bits
),
785 handle
= ocfs2_start_trans(osb
,
786 ocfs2_calc_global_qinit_credits(sb
, type
));
787 if (IS_ERR(handle
)) {
788 status
= PTR_ERR(handle
);
791 status
= ocfs2_qinfo_lock(info
, ex
);
794 status
= qtree_write_dquot(&info
->dqi_gi
, dquot
);
795 if (ex
&& info_dirty(sb_dqinfo(sb
, type
))) {
796 err
= __ocfs2_global_write_info(sb
, type
);
800 ocfs2_qinfo_unlock(info
, ex
);
802 ocfs2_commit_trans(osb
, handle
);
804 ocfs2_unlock_global_qf(info
, 1);
808 status
= ocfs2_create_local_dquot(dquot
);
811 set_bit(DQ_ACTIVE_B
, &dquot
->dq_flags
);
813 mutex_unlock(&dquot
->dq_lock
);
818 static int ocfs2_mark_dquot_dirty(struct dquot
*dquot
)
820 unsigned long mask
= (1 << (DQ_LASTSET_B
+ QIF_ILIMITS_B
)) |
821 (1 << (DQ_LASTSET_B
+ QIF_BLIMITS_B
)) |
822 (1 << (DQ_LASTSET_B
+ QIF_INODES_B
)) |
823 (1 << (DQ_LASTSET_B
+ QIF_SPACE_B
)) |
824 (1 << (DQ_LASTSET_B
+ QIF_BTIME_B
)) |
825 (1 << (DQ_LASTSET_B
+ QIF_ITIME_B
));
828 struct super_block
*sb
= dquot
->dq_sb
;
829 int type
= dquot
->dq_type
;
830 struct ocfs2_mem_dqinfo
*oinfo
= sb_dqinfo(sb
, type
)->dqi_priv
;
832 struct ocfs2_super
*osb
= OCFS2_SB(sb
);
834 mlog_entry("id=%u, type=%d", dquot
->dq_id
, type
);
836 /* In case user set some limits, sync dquot immediately to global
837 * quota file so that information propagates quicker */
838 spin_lock(&dq_data_lock
);
839 if (dquot
->dq_flags
& mask
)
841 spin_unlock(&dq_data_lock
);
842 /* This is a slight hack but we can't afford getting global quota
843 * lock if we already have a transaction started. */
844 if (!sync
|| journal_current_handle()) {
845 status
= ocfs2_write_dquot(dquot
);
848 status
= ocfs2_lock_global_qf(oinfo
, 1);
851 handle
= ocfs2_start_trans(osb
, OCFS2_QSYNC_CREDITS
);
852 if (IS_ERR(handle
)) {
853 status
= PTR_ERR(handle
);
857 mutex_lock(&sb_dqopt(sb
)->dqio_mutex
);
858 status
= ocfs2_sync_dquot(dquot
);
863 /* Now write updated local dquot structure */
864 status
= ocfs2_local_write_dquot(dquot
);
866 mutex_unlock(&sb_dqopt(sb
)->dqio_mutex
);
867 ocfs2_commit_trans(osb
, handle
);
869 ocfs2_unlock_global_qf(oinfo
, 1);
875 /* This should happen only after set_dqinfo(). */
876 static int ocfs2_write_info(struct super_block
*sb
, int type
)
880 struct ocfs2_mem_dqinfo
*oinfo
= sb_dqinfo(sb
, type
)->dqi_priv
;
884 status
= ocfs2_lock_global_qf(oinfo
, 1);
887 handle
= ocfs2_start_trans(OCFS2_SB(sb
), OCFS2_QINFO_WRITE_CREDITS
);
888 if (IS_ERR(handle
)) {
889 status
= PTR_ERR(handle
);
893 status
= dquot_commit_info(sb
, type
);
894 ocfs2_commit_trans(OCFS2_SB(sb
), handle
);
896 ocfs2_unlock_global_qf(oinfo
, 1);
902 static struct dquot
*ocfs2_alloc_dquot(struct super_block
*sb
, int type
)
904 struct ocfs2_dquot
*dquot
=
905 kmem_cache_zalloc(ocfs2_dquot_cachep
, GFP_NOFS
);
909 return &dquot
->dq_dquot
;
912 static void ocfs2_destroy_dquot(struct dquot
*dquot
)
914 kmem_cache_free(ocfs2_dquot_cachep
, dquot
);
917 const struct dquot_operations ocfs2_quota_operations
= {
918 /* We never make dquot dirty so .write_dquot is never called */
919 .acquire_dquot
= ocfs2_acquire_dquot
,
920 .release_dquot
= ocfs2_release_dquot
,
921 .mark_dirty
= ocfs2_mark_dquot_dirty
,
922 .write_info
= ocfs2_write_info
,
923 .alloc_dquot
= ocfs2_alloc_dquot
,
924 .destroy_dquot
= ocfs2_destroy_dquot
,
927 int ocfs2_quota_setup(void)
929 ocfs2_quota_wq
= create_workqueue("o2quot");
935 void ocfs2_quota_shutdown(void)
937 if (ocfs2_quota_wq
) {
938 flush_workqueue(ocfs2_quota_wq
);
939 destroy_workqueue(ocfs2_quota_wq
);
940 ocfs2_quota_wq
= NULL
;