blob: 96172e89ddc3ca945eb959db272658fef495e479 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/ext3/balloc.c
3 *
4 * Copyright (C) 1992, 1993, 1994, 1995
5 * Remy Card (card@masi.ibp.fr)
6 * Laboratoire MASI - Institut Blaise Pascal
7 * Universite Pierre et Marie Curie (Paris VI)
8 *
9 * Enhanced block allocation by Stephen Tweedie (sct@redhat.com), 1993
10 * Big-endian to little-endian byte-swapping/bitmaps by
11 * David S. Miller (davem@caip.rutgers.edu), 1995
12 */
13
14#include <linux/config.h>
15#include <linux/time.h>
Randy Dunlap16f7e0f2006-01-11 12:17:46 -080016#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/fs.h>
18#include <linux/jbd.h>
19#include <linux/ext3_fs.h>
20#include <linux/ext3_jbd.h>
21#include <linux/quotaops.h>
22#include <linux/buffer_head.h>
23
24/*
25 * balloc.c contains the blocks allocation and deallocation routines
26 */
27
28/*
29 * The free blocks are managed by bitmaps. A file system contains several
30 * blocks groups. Each group contains 1 bitmap block for blocks, 1 bitmap
31 * block for inodes, N blocks for the inode table and data blocks.
32 *
33 * The file system contains group descriptors which are located after the
34 * super block. Each descriptor contains the number of the bitmap block and
35 * the free blocks count in the block. The descriptors are loaded in memory
36 * when a file system is mounted (see ext3_read_super).
37 */
38
39
40#define in_range(b, first, len) ((b) >= (first) && (b) <= (first) + (len) - 1)
41
42struct ext3_group_desc * ext3_get_group_desc(struct super_block * sb,
43 unsigned int block_group,
44 struct buffer_head ** bh)
45{
46 unsigned long group_desc;
47 unsigned long offset;
48 struct ext3_group_desc * desc;
49 struct ext3_sb_info *sbi = EXT3_SB(sb);
50
51 if (block_group >= sbi->s_groups_count) {
52 ext3_error (sb, "ext3_get_group_desc",
53 "block_group >= groups_count - "
54 "block_group = %d, groups_count = %lu",
55 block_group, sbi->s_groups_count);
56
57 return NULL;
58 }
59 smp_rmb();
60
61 group_desc = block_group >> EXT3_DESC_PER_BLOCK_BITS(sb);
62 offset = block_group & (EXT3_DESC_PER_BLOCK(sb) - 1);
63 if (!sbi->s_group_desc[group_desc]) {
64 ext3_error (sb, "ext3_get_group_desc",
65 "Group descriptor not loaded - "
66 "block_group = %d, group_desc = %lu, desc = %lu",
67 block_group, group_desc, offset);
68 return NULL;
69 }
70
71 desc = (struct ext3_group_desc *) sbi->s_group_desc[group_desc]->b_data;
72 if (bh)
73 *bh = sbi->s_group_desc[group_desc];
74 return desc + offset;
75}
76
77/*
78 * Read the bitmap for a given block_group, reading into the specified
79 * slot in the superblock's bitmap cache.
80 *
81 * Return buffer_head on success or NULL in case of failure.
82 */
83static struct buffer_head *
84read_block_bitmap(struct super_block *sb, unsigned int block_group)
85{
86 struct ext3_group_desc * desc;
87 struct buffer_head * bh = NULL;
88
89 desc = ext3_get_group_desc (sb, block_group, NULL);
90 if (!desc)
91 goto error_out;
92 bh = sb_bread(sb, le32_to_cpu(desc->bg_block_bitmap));
93 if (!bh)
94 ext3_error (sb, "read_block_bitmap",
95 "Cannot read block bitmap - "
96 "block_group = %d, block_bitmap = %u",
97 block_group, le32_to_cpu(desc->bg_block_bitmap));
98error_out:
99 return bh;
100}
101/*
102 * The reservation window structure operations
103 * --------------------------------------------
104 * Operations include:
105 * dump, find, add, remove, is_empty, find_next_reservable_window, etc.
106 *
107 * We use sorted double linked list for the per-filesystem reservation
108 * window list. (like in vm_region).
109 *
110 * Initially, we keep those small operations in the abstract functions,
111 * so later if we need a better searching tree than double linked-list,
112 * we could easily switch to that without changing too much
113 * code.
114 */
115#if 0
116static void __rsv_window_dump(struct rb_root *root, int verbose,
117 const char *fn)
118{
119 struct rb_node *n;
120 struct ext3_reserve_window_node *rsv, *prev;
121 int bad;
122
123restart:
124 n = rb_first(root);
125 bad = 0;
126 prev = NULL;
127
128 printk("Block Allocation Reservation Windows Map (%s):\n", fn);
129 while (n) {
130 rsv = list_entry(n, struct ext3_reserve_window_node, rsv_node);
131 if (verbose)
132 printk("reservation window 0x%p "
133 "start: %d, end: %d\n",
134 rsv, rsv->rsv_start, rsv->rsv_end);
135 if (rsv->rsv_start && rsv->rsv_start >= rsv->rsv_end) {
136 printk("Bad reservation %p (start >= end)\n",
137 rsv);
138 bad = 1;
139 }
140 if (prev && prev->rsv_end >= rsv->rsv_start) {
141 printk("Bad reservation %p (prev->end >= start)\n",
142 rsv);
143 bad = 1;
144 }
145 if (bad) {
146 if (!verbose) {
147 printk("Restarting reservation walk in verbose mode\n");
148 verbose = 1;
149 goto restart;
150 }
151 }
152 n = rb_next(n);
153 prev = rsv;
154 }
155 printk("Window map complete.\n");
156 if (bad)
157 BUG();
158}
159#define rsv_window_dump(root, verbose) \
160 __rsv_window_dump((root), (verbose), __FUNCTION__)
161#else
162#define rsv_window_dump(root, verbose) do {} while (0)
163#endif
164
165static int
Mingming Cao1c2bf372006-06-25 05:48:06 -0700166goal_in_my_reservation(struct ext3_reserve_window *rsv, ext3_grpblk_t grp_goal,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 unsigned int group, struct super_block * sb)
168{
Mingming Cao1c2bf372006-06-25 05:48:06 -0700169 ext3_fsblk_t group_first_block, group_last_block;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
Mingming Cao43d23f92006-06-25 05:48:07 -0700171 group_first_block = ext3_group_first_block_no(sb, group);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 group_last_block = group_first_block + EXT3_BLOCKS_PER_GROUP(sb) - 1;
173
174 if ((rsv->_rsv_start > group_last_block) ||
175 (rsv->_rsv_end < group_first_block))
176 return 0;
Mingming Cao1c2bf372006-06-25 05:48:06 -0700177 if ((grp_goal >= 0) && ((grp_goal + group_first_block < rsv->_rsv_start)
178 || (grp_goal + group_first_block > rsv->_rsv_end)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 return 0;
180 return 1;
181}
182
183/*
184 * Find the reserved window which includes the goal, or the previous one
185 * if the goal is not in any window.
186 * Returns NULL if there are no windows or if all windows start after the goal.
187 */
188static struct ext3_reserve_window_node *
Mingming Cao1c2bf372006-06-25 05:48:06 -0700189search_reserve_window(struct rb_root *root, ext3_fsblk_t goal)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190{
191 struct rb_node *n = root->rb_node;
192 struct ext3_reserve_window_node *rsv;
193
194 if (!n)
195 return NULL;
196
197 do {
198 rsv = rb_entry(n, struct ext3_reserve_window_node, rsv_node);
199
200 if (goal < rsv->rsv_start)
201 n = n->rb_left;
202 else if (goal > rsv->rsv_end)
203 n = n->rb_right;
204 else
205 return rsv;
206 } while (n);
207 /*
208 * We've fallen off the end of the tree: the goal wasn't inside
209 * any particular node. OK, the previous node must be to one
210 * side of the interval containing the goal. If it's the RHS,
211 * we need to back up one.
212 */
213 if (rsv->rsv_start > goal) {
214 n = rb_prev(&rsv->rsv_node);
215 rsv = rb_entry(n, struct ext3_reserve_window_node, rsv_node);
216 }
217 return rsv;
218}
219
220void ext3_rsv_window_add(struct super_block *sb,
221 struct ext3_reserve_window_node *rsv)
222{
223 struct rb_root *root = &EXT3_SB(sb)->s_rsv_window_root;
224 struct rb_node *node = &rsv->rsv_node;
Mingming Cao1c2bf372006-06-25 05:48:06 -0700225 ext3_fsblk_t start = rsv->rsv_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
227 struct rb_node ** p = &root->rb_node;
228 struct rb_node * parent = NULL;
229 struct ext3_reserve_window_node *this;
230
231 while (*p)
232 {
233 parent = *p;
234 this = rb_entry(parent, struct ext3_reserve_window_node, rsv_node);
235
236 if (start < this->rsv_start)
237 p = &(*p)->rb_left;
238 else if (start > this->rsv_end)
239 p = &(*p)->rb_right;
240 else
241 BUG();
242 }
243
244 rb_link_node(node, parent, p);
245 rb_insert_color(node, root);
246}
247
248static void rsv_window_remove(struct super_block *sb,
249 struct ext3_reserve_window_node *rsv)
250{
251 rsv->rsv_start = EXT3_RESERVE_WINDOW_NOT_ALLOCATED;
252 rsv->rsv_end = EXT3_RESERVE_WINDOW_NOT_ALLOCATED;
253 rsv->rsv_alloc_hit = 0;
254 rb_erase(&rsv->rsv_node, &EXT3_SB(sb)->s_rsv_window_root);
255}
256
257static inline int rsv_is_empty(struct ext3_reserve_window *rsv)
258{
259 /* a valid reservation end block could not be 0 */
260 return (rsv->_rsv_end == EXT3_RESERVE_WINDOW_NOT_ALLOCATED);
261}
262void ext3_init_block_alloc_info(struct inode *inode)
263{
264 struct ext3_inode_info *ei = EXT3_I(inode);
265 struct ext3_block_alloc_info *block_i = ei->i_block_alloc_info;
266 struct super_block *sb = inode->i_sb;
267
268 block_i = kmalloc(sizeof(*block_i), GFP_NOFS);
269 if (block_i) {
270 struct ext3_reserve_window_node *rsv = &block_i->rsv_window_node;
271
272 rsv->rsv_start = EXT3_RESERVE_WINDOW_NOT_ALLOCATED;
273 rsv->rsv_end = EXT3_RESERVE_WINDOW_NOT_ALLOCATED;
274
275 /*
276 * if filesystem is mounted with NORESERVATION, the goal
277 * reservation window size is set to zero to indicate
278 * block reservation is off
279 */
280 if (!test_opt(sb, RESERVATION))
281 rsv->rsv_goal_size = 0;
282 else
283 rsv->rsv_goal_size = EXT3_DEFAULT_RESERVE_BLOCKS;
284 rsv->rsv_alloc_hit = 0;
285 block_i->last_alloc_logical_block = 0;
286 block_i->last_alloc_physical_block = 0;
287 }
288 ei->i_block_alloc_info = block_i;
289}
290
291void ext3_discard_reservation(struct inode *inode)
292{
293 struct ext3_inode_info *ei = EXT3_I(inode);
294 struct ext3_block_alloc_info *block_i = ei->i_block_alloc_info;
295 struct ext3_reserve_window_node *rsv;
296 spinlock_t *rsv_lock = &EXT3_SB(inode->i_sb)->s_rsv_window_lock;
297
298 if (!block_i)
299 return;
300
301 rsv = &block_i->rsv_window_node;
302 if (!rsv_is_empty(&rsv->rsv_window)) {
303 spin_lock(rsv_lock);
304 if (!rsv_is_empty(&rsv->rsv_window))
305 rsv_window_remove(inode->i_sb, rsv);
306 spin_unlock(rsv_lock);
307 }
308}
309
310/* Free given blocks, update quota and i_blocks field */
311void ext3_free_blocks_sb(handle_t *handle, struct super_block *sb,
Mingming Cao1c2bf372006-06-25 05:48:06 -0700312 ext3_fsblk_t block, unsigned long count,
313 unsigned long *pdquot_freed_blocks)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314{
315 struct buffer_head *bitmap_bh = NULL;
316 struct buffer_head *gd_bh;
317 unsigned long block_group;
Mingming Cao1c2bf372006-06-25 05:48:06 -0700318 ext3_grpblk_t bit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 unsigned long i;
320 unsigned long overflow;
321 struct ext3_group_desc * desc;
322 struct ext3_super_block * es;
323 struct ext3_sb_info *sbi;
324 int err = 0, ret;
Mingming Cao1c2bf372006-06-25 05:48:06 -0700325 ext3_grpblk_t group_freed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
327 *pdquot_freed_blocks = 0;
328 sbi = EXT3_SB(sb);
329 es = sbi->s_es;
330 if (block < le32_to_cpu(es->s_first_data_block) ||
331 block + count < block ||
332 block + count > le32_to_cpu(es->s_blocks_count)) {
333 ext3_error (sb, "ext3_free_blocks",
334 "Freeing blocks not in datazone - "
Mingming Cao1c2bf372006-06-25 05:48:06 -0700335 "block = "E3FSBLK", count = %lu", block, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 goto error_return;
337 }
338
339 ext3_debug ("freeing block(s) %lu-%lu\n", block, block + count - 1);
340
341do_more:
342 overflow = 0;
343 block_group = (block - le32_to_cpu(es->s_first_data_block)) /
344 EXT3_BLOCKS_PER_GROUP(sb);
345 bit = (block - le32_to_cpu(es->s_first_data_block)) %
346 EXT3_BLOCKS_PER_GROUP(sb);
347 /*
348 * Check to see if we are freeing blocks across a group
349 * boundary.
350 */
351 if (bit + count > EXT3_BLOCKS_PER_GROUP(sb)) {
352 overflow = bit + count - EXT3_BLOCKS_PER_GROUP(sb);
353 count -= overflow;
354 }
355 brelse(bitmap_bh);
356 bitmap_bh = read_block_bitmap(sb, block_group);
357 if (!bitmap_bh)
358 goto error_return;
359 desc = ext3_get_group_desc (sb, block_group, &gd_bh);
360 if (!desc)
361 goto error_return;
362
363 if (in_range (le32_to_cpu(desc->bg_block_bitmap), block, count) ||
364 in_range (le32_to_cpu(desc->bg_inode_bitmap), block, count) ||
365 in_range (block, le32_to_cpu(desc->bg_inode_table),
366 sbi->s_itb_per_group) ||
367 in_range (block + count - 1, le32_to_cpu(desc->bg_inode_table),
368 sbi->s_itb_per_group))
369 ext3_error (sb, "ext3_free_blocks",
370 "Freeing blocks in system zones - "
Mingming Cao1c2bf372006-06-25 05:48:06 -0700371 "Block = "E3FSBLK", count = %lu",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 block, count);
373
374 /*
375 * We are about to start releasing blocks in the bitmap,
376 * so we need undo access.
377 */
378 /* @@@ check errors */
379 BUFFER_TRACE(bitmap_bh, "getting undo access");
380 err = ext3_journal_get_undo_access(handle, bitmap_bh);
381 if (err)
382 goto error_return;
383
384 /*
385 * We are about to modify some metadata. Call the journal APIs
386 * to unshare ->b_data if a currently-committing transaction is
387 * using it
388 */
389 BUFFER_TRACE(gd_bh, "get_write_access");
390 err = ext3_journal_get_write_access(handle, gd_bh);
391 if (err)
392 goto error_return;
393
394 jbd_lock_bh_state(bitmap_bh);
395
396 for (i = 0, group_freed = 0; i < count; i++) {
397 /*
398 * An HJ special. This is expensive...
399 */
400#ifdef CONFIG_JBD_DEBUG
401 jbd_unlock_bh_state(bitmap_bh);
402 {
403 struct buffer_head *debug_bh;
404 debug_bh = sb_find_get_block(sb, block + i);
405 if (debug_bh) {
406 BUFFER_TRACE(debug_bh, "Deleted!");
407 if (!bh2jh(bitmap_bh)->b_committed_data)
408 BUFFER_TRACE(debug_bh,
409 "No commited data in bitmap");
410 BUFFER_TRACE2(debug_bh, bitmap_bh, "bitmap");
411 __brelse(debug_bh);
412 }
413 }
414 jbd_lock_bh_state(bitmap_bh);
415#endif
416 if (need_resched()) {
417 jbd_unlock_bh_state(bitmap_bh);
418 cond_resched();
419 jbd_lock_bh_state(bitmap_bh);
420 }
421 /* @@@ This prevents newly-allocated data from being
422 * freed and then reallocated within the same
423 * transaction.
424 *
425 * Ideally we would want to allow that to happen, but to
426 * do so requires making journal_forget() capable of
427 * revoking the queued write of a data block, which
428 * implies blocking on the journal lock. *forget()
429 * cannot block due to truncate races.
430 *
431 * Eventually we can fix this by making journal_forget()
432 * return a status indicating whether or not it was able
433 * to revoke the buffer. On successful revoke, it is
434 * safe not to set the allocation bit in the committed
435 * bitmap, because we know that there is no outstanding
436 * activity on the buffer any more and so it is safe to
437 * reallocate it.
438 */
439 BUFFER_TRACE(bitmap_bh, "set in b_committed_data");
440 J_ASSERT_BH(bitmap_bh,
441 bh2jh(bitmap_bh)->b_committed_data != NULL);
442 ext3_set_bit_atomic(sb_bgl_lock(sbi, block_group), bit + i,
443 bh2jh(bitmap_bh)->b_committed_data);
444
445 /*
446 * We clear the bit in the bitmap after setting the committed
447 * data bit, because this is the reverse order to that which
448 * the allocator uses.
449 */
450 BUFFER_TRACE(bitmap_bh, "clear bit");
451 if (!ext3_clear_bit_atomic(sb_bgl_lock(sbi, block_group),
452 bit + i, bitmap_bh->b_data)) {
453 jbd_unlock_bh_state(bitmap_bh);
454 ext3_error(sb, __FUNCTION__,
Mingming Cao1c2bf372006-06-25 05:48:06 -0700455 "bit already cleared for block "E3FSBLK,
456 block + i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 jbd_lock_bh_state(bitmap_bh);
458 BUFFER_TRACE(bitmap_bh, "bit already cleared");
459 } else {
460 group_freed++;
461 }
462 }
463 jbd_unlock_bh_state(bitmap_bh);
464
465 spin_lock(sb_bgl_lock(sbi, block_group));
466 desc->bg_free_blocks_count =
467 cpu_to_le16(le16_to_cpu(desc->bg_free_blocks_count) +
468 group_freed);
469 spin_unlock(sb_bgl_lock(sbi, block_group));
470 percpu_counter_mod(&sbi->s_freeblocks_counter, count);
471
472 /* We dirtied the bitmap block */
473 BUFFER_TRACE(bitmap_bh, "dirtied bitmap block");
474 err = ext3_journal_dirty_metadata(handle, bitmap_bh);
475
476 /* And the group descriptor block */
477 BUFFER_TRACE(gd_bh, "dirtied group descriptor block");
478 ret = ext3_journal_dirty_metadata(handle, gd_bh);
479 if (!err) err = ret;
480 *pdquot_freed_blocks += group_freed;
481
482 if (overflow && !err) {
483 block += count;
484 count = overflow;
485 goto do_more;
486 }
487 sb->s_dirt = 1;
488error_return:
489 brelse(bitmap_bh);
490 ext3_std_error(sb, err);
491 return;
492}
493
494/* Free given blocks, update quota and i_blocks field */
495void ext3_free_blocks(handle_t *handle, struct inode *inode,
Mingming Cao1c2bf372006-06-25 05:48:06 -0700496 ext3_fsblk_t block, unsigned long count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497{
498 struct super_block * sb;
Mingming Cao1c2bf372006-06-25 05:48:06 -0700499 unsigned long dquot_freed_blocks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500
501 sb = inode->i_sb;
502 if (!sb) {
503 printk ("ext3_free_blocks: nonexistent device");
504 return;
505 }
506 ext3_free_blocks_sb(handle, sb, block, count, &dquot_freed_blocks);
507 if (dquot_freed_blocks)
508 DQUOT_FREE_BLOCK(inode, dquot_freed_blocks);
509 return;
510}
511
512/*
513 * For ext3 allocations, we must not reuse any blocks which are
514 * allocated in the bitmap buffer's "last committed data" copy. This
515 * prevents deletes from freeing up the page for reuse until we have
516 * committed the delete transaction.
517 *
518 * If we didn't do this, then deleting something and reallocating it as
519 * data would allow the old block to be overwritten before the
520 * transaction committed (because we force data to disk before commit).
521 * This would lead to corruption if we crashed between overwriting the
522 * data and committing the delete.
523 *
524 * @@@ We may want to make this allocation behaviour conditional on
525 * data-writes at some point, and disable it for metadata allocations or
526 * sync-data inodes.
527 */
Mingming Cao1c2bf372006-06-25 05:48:06 -0700528static int ext3_test_allocatable(ext3_grpblk_t nr, struct buffer_head *bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529{
530 int ret;
531 struct journal_head *jh = bh2jh(bh);
532
533 if (ext3_test_bit(nr, bh->b_data))
534 return 0;
535
536 jbd_lock_bh_state(bh);
537 if (!jh->b_committed_data)
538 ret = 1;
539 else
540 ret = !ext3_test_bit(nr, jh->b_committed_data);
541 jbd_unlock_bh_state(bh);
542 return ret;
543}
544
Mingming Cao1c2bf372006-06-25 05:48:06 -0700545static ext3_grpblk_t
546bitmap_search_next_usable_block(ext3_grpblk_t start, struct buffer_head *bh,
547 ext3_grpblk_t maxblocks)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548{
Mingming Cao1c2bf372006-06-25 05:48:06 -0700549 ext3_grpblk_t next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 struct journal_head *jh = bh2jh(bh);
551
552 /*
553 * The bitmap search --- search forward alternately through the actual
554 * bitmap and the last-committed copy until we find a bit free in
555 * both
556 */
557 while (start < maxblocks) {
558 next = ext3_find_next_zero_bit(bh->b_data, maxblocks, start);
559 if (next >= maxblocks)
560 return -1;
561 if (ext3_test_allocatable(next, bh))
562 return next;
563 jbd_lock_bh_state(bh);
564 if (jh->b_committed_data)
565 start = ext3_find_next_zero_bit(jh->b_committed_data,
566 maxblocks, next);
567 jbd_unlock_bh_state(bh);
568 }
569 return -1;
570}
571
572/*
573 * Find an allocatable block in a bitmap. We honour both the bitmap and
574 * its last-committed copy (if that exists), and perform the "most
575 * appropriate allocation" algorithm of looking for a free block near
576 * the initial goal; then for a free byte somewhere in the bitmap; then
577 * for any free bit in the bitmap.
578 */
Mingming Cao1c2bf372006-06-25 05:48:06 -0700579static ext3_grpblk_t
580find_next_usable_block(ext3_grpblk_t start, struct buffer_head *bh,
581 ext3_grpblk_t maxblocks)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582{
Mingming Cao1c2bf372006-06-25 05:48:06 -0700583 ext3_grpblk_t here, next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 char *p, *r;
585
586 if (start > 0) {
587 /*
588 * The goal was occupied; search forward for a free
589 * block within the next XX blocks.
590 *
591 * end_goal is more or less random, but it has to be
592 * less than EXT3_BLOCKS_PER_GROUP. Aligning up to the
593 * next 64-bit boundary is simple..
594 */
Mingming Cao1c2bf372006-06-25 05:48:06 -0700595 ext3_grpblk_t end_goal = (start + 63) & ~63;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 if (end_goal > maxblocks)
597 end_goal = maxblocks;
598 here = ext3_find_next_zero_bit(bh->b_data, end_goal, start);
599 if (here < end_goal && ext3_test_allocatable(here, bh))
600 return here;
601 ext3_debug("Bit not found near goal\n");
602 }
603
604 here = start;
605 if (here < 0)
606 here = 0;
607
608 p = ((char *)bh->b_data) + (here >> 3);
609 r = memscan(p, 0, (maxblocks - here + 7) >> 3);
610 next = (r - ((char *)bh->b_data)) << 3;
611
612 if (next < maxblocks && next >= start && ext3_test_allocatable(next, bh))
613 return next;
614
615 /*
616 * The bitmap search --- search forward alternately through the actual
617 * bitmap and the last-committed copy until we find a bit free in
618 * both
619 */
620 here = bitmap_search_next_usable_block(here, bh, maxblocks);
621 return here;
622}
623
624/*
625 * We think we can allocate this block in this bitmap. Try to set the bit.
626 * If that succeeds then check that nobody has allocated and then freed the
627 * block since we saw that is was not marked in b_committed_data. If it _was_
628 * allocated and freed then clear the bit in the bitmap again and return
629 * zero (failure).
630 */
631static inline int
Mingming Cao1c2bf372006-06-25 05:48:06 -0700632claim_block(spinlock_t *lock, ext3_grpblk_t block, struct buffer_head *bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633{
634 struct journal_head *jh = bh2jh(bh);
635 int ret;
636
637 if (ext3_set_bit_atomic(lock, block, bh->b_data))
638 return 0;
639 jbd_lock_bh_state(bh);
640 if (jh->b_committed_data && ext3_test_bit(block,jh->b_committed_data)) {
641 ext3_clear_bit_atomic(lock, block, bh->b_data);
642 ret = 0;
643 } else {
644 ret = 1;
645 }
646 jbd_unlock_bh_state(bh);
647 return ret;
648}
649
650/*
651 * If we failed to allocate the desired block then we may end up crossing to a
652 * new bitmap. In that case we must release write access to the old one via
653 * ext3_journal_release_buffer(), else we'll run out of credits.
654 */
Mingming Cao1c2bf372006-06-25 05:48:06 -0700655static ext3_grpblk_t
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656ext3_try_to_allocate(struct super_block *sb, handle_t *handle, int group,
Mingming Cao1c2bf372006-06-25 05:48:06 -0700657 struct buffer_head *bitmap_bh, ext3_grpblk_t grp_goal,
Mingming Caob54e41e2006-03-26 01:37:57 -0800658 unsigned long *count, struct ext3_reserve_window *my_rsv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659{
Mingming Cao1c2bf372006-06-25 05:48:06 -0700660 ext3_fsblk_t group_first_block;
661 ext3_grpblk_t start, end;
Mingming Caob54e41e2006-03-26 01:37:57 -0800662 unsigned long num = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663
664 /* we do allocation within the reservation window if we have a window */
665 if (my_rsv) {
Mingming Cao43d23f92006-06-25 05:48:07 -0700666 group_first_block = ext3_group_first_block_no(sb, group);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 if (my_rsv->_rsv_start >= group_first_block)
668 start = my_rsv->_rsv_start - group_first_block;
669 else
670 /* reservation window cross group boundary */
671 start = 0;
672 end = my_rsv->_rsv_end - group_first_block + 1;
673 if (end > EXT3_BLOCKS_PER_GROUP(sb))
674 /* reservation window crosses group boundary */
675 end = EXT3_BLOCKS_PER_GROUP(sb);
Mingming Cao1c2bf372006-06-25 05:48:06 -0700676 if ((start <= grp_goal) && (grp_goal < end))
677 start = grp_goal;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 else
Mingming Cao1c2bf372006-06-25 05:48:06 -0700679 grp_goal = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 } else {
Mingming Cao1c2bf372006-06-25 05:48:06 -0700681 if (grp_goal > 0)
682 start = grp_goal;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 else
684 start = 0;
685 end = EXT3_BLOCKS_PER_GROUP(sb);
686 }
687
688 BUG_ON(start > EXT3_BLOCKS_PER_GROUP(sb));
689
690repeat:
Mingming Cao1c2bf372006-06-25 05:48:06 -0700691 if (grp_goal < 0 || !ext3_test_allocatable(grp_goal, bitmap_bh)) {
692 grp_goal = find_next_usable_block(start, bitmap_bh, end);
693 if (grp_goal < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 goto fail_access;
695 if (!my_rsv) {
696 int i;
697
Mingming Cao1c2bf372006-06-25 05:48:06 -0700698 for (i = 0; i < 7 && grp_goal > start &&
699 ext3_test_allocatable(grp_goal - 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 bitmap_bh);
Mingming Cao1c2bf372006-06-25 05:48:06 -0700701 i++, grp_goal--)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 ;
703 }
704 }
Mingming Cao1c2bf372006-06-25 05:48:06 -0700705 start = grp_goal;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706
Mingming Cao1c2bf372006-06-25 05:48:06 -0700707 if (!claim_block(sb_bgl_lock(EXT3_SB(sb), group), grp_goal, bitmap_bh)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 /*
709 * The block was allocated by another thread, or it was
710 * allocated and then freed by another thread
711 */
712 start++;
Mingming Cao1c2bf372006-06-25 05:48:06 -0700713 grp_goal++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 if (start >= end)
715 goto fail_access;
716 goto repeat;
717 }
Mingming Caob54e41e2006-03-26 01:37:57 -0800718 num++;
Mingming Cao1c2bf372006-06-25 05:48:06 -0700719 grp_goal++;
720 while (num < *count && grp_goal < end
721 && ext3_test_allocatable(grp_goal, bitmap_bh)
722 && claim_block(sb_bgl_lock(EXT3_SB(sb), group), grp_goal, bitmap_bh)) {
Mingming Caob54e41e2006-03-26 01:37:57 -0800723 num++;
Mingming Cao1c2bf372006-06-25 05:48:06 -0700724 grp_goal++;
Mingming Caob54e41e2006-03-26 01:37:57 -0800725 }
726 *count = num;
Mingming Cao1c2bf372006-06-25 05:48:06 -0700727 return grp_goal - num;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728fail_access:
Mingming Caob54e41e2006-03-26 01:37:57 -0800729 *count = num;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 return -1;
731}
732
733/**
734 * find_next_reservable_window():
735 * find a reservable space within the given range.
736 * It does not allocate the reservation window for now:
737 * alloc_new_reservation() will do the work later.
738 *
739 * @search_head: the head of the searching list;
740 * This is not necessarily the list head of the whole filesystem
741 *
742 * We have both head and start_block to assist the search
743 * for the reservable space. The list starts from head,
744 * but we will shift to the place where start_block is,
745 * then start from there, when looking for a reservable space.
746 *
747 * @size: the target new reservation window size
748 *
749 * @group_first_block: the first block we consider to start
750 * the real search from
751 *
752 * @last_block:
753 * the maximum block number that our goal reservable space
754 * could start from. This is normally the last block in this
755 * group. The search will end when we found the start of next
756 * possible reservable space is out of this boundary.
757 * This could handle the cross boundary reservation window
758 * request.
759 *
760 * basically we search from the given range, rather than the whole
761 * reservation double linked list, (start_block, last_block)
762 * to find a free region that is of my size and has not
763 * been reserved.
764 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 */
Mingming Cao21fe3472005-06-28 20:45:16 -0700766static int find_next_reservable_window(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 struct ext3_reserve_window_node *search_head,
Mingming Cao21fe3472005-06-28 20:45:16 -0700768 struct ext3_reserve_window_node *my_rsv,
Mingming Cao1c2bf372006-06-25 05:48:06 -0700769 struct super_block * sb,
770 ext3_fsblk_t start_block,
771 ext3_fsblk_t last_block)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772{
773 struct rb_node *next;
774 struct ext3_reserve_window_node *rsv, *prev;
Mingming Cao1c2bf372006-06-25 05:48:06 -0700775 ext3_fsblk_t cur;
Mingming Cao21fe3472005-06-28 20:45:16 -0700776 int size = my_rsv->rsv_goal_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777
778 /* TODO: make the start of the reservation window byte-aligned */
779 /* cur = *start_block & ~7;*/
Mingming Cao21fe3472005-06-28 20:45:16 -0700780 cur = start_block;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 rsv = search_head;
782 if (!rsv)
Mingming Cao21fe3472005-06-28 20:45:16 -0700783 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784
785 while (1) {
786 if (cur <= rsv->rsv_end)
787 cur = rsv->rsv_end + 1;
788
789 /* TODO?
790 * in the case we could not find a reservable space
791 * that is what is expected, during the re-search, we could
792 * remember what's the largest reservable space we could have
793 * and return that one.
794 *
795 * For now it will fail if we could not find the reservable
796 * space with expected-size (or more)...
797 */
798 if (cur > last_block)
Mingming Cao21fe3472005-06-28 20:45:16 -0700799 return -1; /* fail */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800
801 prev = rsv;
802 next = rb_next(&rsv->rsv_node);
Mingming Cao21fe3472005-06-28 20:45:16 -0700803 rsv = list_entry(next,struct ext3_reserve_window_node,rsv_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804
805 /*
806 * Reached the last reservation, we can just append to the
807 * previous one.
808 */
809 if (!next)
810 break;
811
812 if (cur + size <= rsv->rsv_start) {
813 /*
814 * Found a reserveable space big enough. We could
815 * have a reservation across the group boundary here
816 */
817 break;
818 }
819 }
820 /*
821 * we come here either :
822 * when we reach the end of the whole list,
823 * and there is empty reservable space after last entry in the list.
824 * append it to the end of the list.
825 *
826 * or we found one reservable space in the middle of the list,
827 * return the reservation window that we could append to.
828 * succeed.
829 */
Mingming Cao21fe3472005-06-28 20:45:16 -0700830
831 if ((prev != my_rsv) && (!rsv_is_empty(&my_rsv->rsv_window)))
832 rsv_window_remove(sb, my_rsv);
833
834 /*
835 * Let's book the whole avaliable window for now. We will check the
836 * disk bitmap later and then, if there are free blocks then we adjust
837 * the window size if it's larger than requested.
838 * Otherwise, we will remove this node from the tree next time
839 * call find_next_reservable_window.
840 */
841 my_rsv->rsv_start = cur;
842 my_rsv->rsv_end = cur + size - 1;
843 my_rsv->rsv_alloc_hit = 0;
844
845 if (prev != my_rsv)
846 ext3_rsv_window_add(sb, my_rsv);
847
848 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849}
850
851/**
852 * alloc_new_reservation()--allocate a new reservation window
853 *
854 * To make a new reservation, we search part of the filesystem
855 * reservation list (the list that inside the group). We try to
856 * allocate a new reservation window near the allocation goal,
857 * or the beginning of the group, if there is no goal.
858 *
859 * We first find a reservable space after the goal, then from
860 * there, we check the bitmap for the first free block after
861 * it. If there is no free block until the end of group, then the
862 * whole group is full, we failed. Otherwise, check if the free
863 * block is inside the expected reservable space, if so, we
864 * succeed.
865 * If the first free block is outside the reservable space, then
866 * start from the first free block, we search for next available
867 * space, and go on.
868 *
869 * on succeed, a new reservation will be found and inserted into the list
870 * It contains at least one free block, and it does not overlap with other
871 * reservation windows.
872 *
873 * failed: we failed to find a reservation window in this group
874 *
875 * @rsv: the reservation
876 *
Mingming Cao1c2bf372006-06-25 05:48:06 -0700877 * @grp_goal: The goal (group-relative). It is where the search for a
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 * free reservable space should start from.
Mingming Cao1c2bf372006-06-25 05:48:06 -0700879 * if we have a grp_goal(grp_goal >0 ), then start from there,
880 * no grp_goal(grp_goal = -1), we start from the first block
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 * of the group.
882 *
883 * @sb: the super block
884 * @group: the group we are trying to allocate in
885 * @bitmap_bh: the block group block bitmap
Mingming Cao21fe3472005-06-28 20:45:16 -0700886 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 */
888static int alloc_new_reservation(struct ext3_reserve_window_node *my_rsv,
Mingming Cao1c2bf372006-06-25 05:48:06 -0700889 ext3_grpblk_t grp_goal, struct super_block *sb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 unsigned int group, struct buffer_head *bitmap_bh)
891{
892 struct ext3_reserve_window_node *search_head;
Mingming Cao1c2bf372006-06-25 05:48:06 -0700893 ext3_fsblk_t group_first_block, group_end_block, start_block;
894 ext3_grpblk_t first_free_block;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 struct rb_root *fs_rsv_root = &EXT3_SB(sb)->s_rsv_window_root;
896 unsigned long size;
Mingming Cao21fe3472005-06-28 20:45:16 -0700897 int ret;
898 spinlock_t *rsv_lock = &EXT3_SB(sb)->s_rsv_window_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899
Mingming Cao43d23f92006-06-25 05:48:07 -0700900 group_first_block = ext3_group_first_block_no(sb, group);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 group_end_block = group_first_block + EXT3_BLOCKS_PER_GROUP(sb) - 1;
902
Mingming Cao1c2bf372006-06-25 05:48:06 -0700903 if (grp_goal < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 start_block = group_first_block;
905 else
Mingming Cao1c2bf372006-06-25 05:48:06 -0700906 start_block = grp_goal + group_first_block;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907
908 size = my_rsv->rsv_goal_size;
Mingming Cao21fe3472005-06-28 20:45:16 -0700909
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 if (!rsv_is_empty(&my_rsv->rsv_window)) {
911 /*
912 * if the old reservation is cross group boundary
913 * and if the goal is inside the old reservation window,
914 * we will come here when we just failed to allocate from
915 * the first part of the window. We still have another part
916 * that belongs to the next group. In this case, there is no
917 * point to discard our window and try to allocate a new one
918 * in this group(which will fail). we should
919 * keep the reservation window, just simply move on.
920 *
921 * Maybe we could shift the start block of the reservation
922 * window to the first block of next group.
923 */
924
925 if ((my_rsv->rsv_start <= group_end_block) &&
926 (my_rsv->rsv_end > group_end_block) &&
927 (start_block >= my_rsv->rsv_start))
928 return -1;
929
930 if ((my_rsv->rsv_alloc_hit >
931 (my_rsv->rsv_end - my_rsv->rsv_start + 1) / 2)) {
932 /*
933 * if we previously allocation hit ration is greater than half
934 * we double the size of reservation window next time
935 * otherwise keep the same
936 */
937 size = size * 2;
938 if (size > EXT3_MAX_RESERVE_BLOCKS)
939 size = EXT3_MAX_RESERVE_BLOCKS;
940 my_rsv->rsv_goal_size= size;
941 }
942 }
Mingming Cao21fe3472005-06-28 20:45:16 -0700943
944 spin_lock(rsv_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 /*
946 * shift the search start to the window near the goal block
947 */
948 search_head = search_reserve_window(fs_rsv_root, start_block);
949
950 /*
951 * find_next_reservable_window() simply finds a reservable window
952 * inside the given range(start_block, group_end_block).
953 *
954 * To make sure the reservation window has a free bit inside it, we
955 * need to check the bitmap after we found a reservable window.
956 */
957retry:
Mingming Cao21fe3472005-06-28 20:45:16 -0700958 ret = find_next_reservable_window(search_head, my_rsv, sb,
959 start_block, group_end_block);
960
961 if (ret == -1) {
962 if (!rsv_is_empty(&my_rsv->rsv_window))
963 rsv_window_remove(sb, my_rsv);
964 spin_unlock(rsv_lock);
965 return -1;
966 }
967
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 /*
969 * On success, find_next_reservable_window() returns the
970 * reservation window where there is a reservable space after it.
971 * Before we reserve this reservable space, we need
972 * to make sure there is at least a free block inside this region.
973 *
974 * searching the first free bit on the block bitmap and copy of
975 * last committed bitmap alternatively, until we found a allocatable
976 * block. Search start from the start block of the reservable space
977 * we just found.
978 */
Mingming Cao21fe3472005-06-28 20:45:16 -0700979 spin_unlock(rsv_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 first_free_block = bitmap_search_next_usable_block(
Mingming Cao21fe3472005-06-28 20:45:16 -0700981 my_rsv->rsv_start - group_first_block,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 bitmap_bh, group_end_block - group_first_block + 1);
983
984 if (first_free_block < 0) {
985 /*
986 * no free block left on the bitmap, no point
987 * to reserve the space. return failed.
988 */
Mingming Cao21fe3472005-06-28 20:45:16 -0700989 spin_lock(rsv_lock);
990 if (!rsv_is_empty(&my_rsv->rsv_window))
991 rsv_window_remove(sb, my_rsv);
992 spin_unlock(rsv_lock);
993 return -1; /* failed */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 }
Mingming Cao21fe3472005-06-28 20:45:16 -0700995
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 start_block = first_free_block + group_first_block;
997 /*
998 * check if the first free block is within the
Mingming Cao21fe3472005-06-28 20:45:16 -0700999 * free space we just reserved
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 */
Mingming Cao21fe3472005-06-28 20:45:16 -07001001 if (start_block >= my_rsv->rsv_start && start_block < my_rsv->rsv_end)
1002 return 0; /* success */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 /*
1004 * if the first free bit we found is out of the reservable space
Mingming Cao21fe3472005-06-28 20:45:16 -07001005 * continue search for next reservable space,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 * start from where the free block is,
1007 * we also shift the list head to where we stopped last time
1008 */
Mingming Cao21fe3472005-06-28 20:45:16 -07001009 search_head = my_rsv;
1010 spin_lock(rsv_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 goto retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012}
1013
Mingming Caod48589b2006-03-26 01:37:59 -08001014static void try_to_extend_reservation(struct ext3_reserve_window_node *my_rsv,
1015 struct super_block *sb, int size)
1016{
1017 struct ext3_reserve_window_node *next_rsv;
1018 struct rb_node *next;
1019 spinlock_t *rsv_lock = &EXT3_SB(sb)->s_rsv_window_lock;
1020
1021 if (!spin_trylock(rsv_lock))
1022 return;
1023
1024 next = rb_next(&my_rsv->rsv_node);
1025
1026 if (!next)
1027 my_rsv->rsv_end += size;
1028 else {
1029 next_rsv = list_entry(next, struct ext3_reserve_window_node, rsv_node);
1030
1031 if ((next_rsv->rsv_start - my_rsv->rsv_end - 1) >= size)
1032 my_rsv->rsv_end += size;
1033 else
1034 my_rsv->rsv_end = next_rsv->rsv_start - 1;
1035 }
1036 spin_unlock(rsv_lock);
1037}
1038
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039/*
1040 * This is the main function used to allocate a new block and its reservation
1041 * window.
1042 *
1043 * Each time when a new block allocation is need, first try to allocate from
1044 * its own reservation. If it does not have a reservation window, instead of
1045 * looking for a free bit on bitmap first, then look up the reservation list to
1046 * see if it is inside somebody else's reservation window, we try to allocate a
1047 * reservation window for it starting from the goal first. Then do the block
1048 * allocation within the reservation window.
1049 *
1050 * This will avoid keeping on searching the reservation list again and
Glauber de Oliveira Costa5b116872005-10-30 15:02:48 -08001051 * again when somebody is looking for a free block (without
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 * reservation), and there are lots of free blocks, but they are all
1053 * being reserved.
1054 *
1055 * We use a sorted double linked list for the per-filesystem reservation list.
1056 * The insert, remove and find a free space(non-reserved) operations for the
1057 * sorted double linked list should be fast.
1058 *
1059 */
Mingming Cao1c2bf372006-06-25 05:48:06 -07001060static ext3_grpblk_t
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061ext3_try_to_allocate_with_rsv(struct super_block *sb, handle_t *handle,
1062 unsigned int group, struct buffer_head *bitmap_bh,
Mingming Cao1c2bf372006-06-25 05:48:06 -07001063 ext3_grpblk_t grp_goal,
1064 struct ext3_reserve_window_node * my_rsv,
Mingming Caob54e41e2006-03-26 01:37:57 -08001065 unsigned long *count, int *errp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066{
Mingming Cao1c2bf372006-06-25 05:48:06 -07001067 ext3_fsblk_t group_first_block;
1068 ext3_grpblk_t ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 int fatal;
Mingming Caob54e41e2006-03-26 01:37:57 -08001070 unsigned long num = *count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071
1072 *errp = 0;
1073
1074 /*
1075 * Make sure we use undo access for the bitmap, because it is critical
1076 * that we do the frozen_data COW on bitmap buffers in all cases even
1077 * if the buffer is in BJ_Forget state in the committing transaction.
1078 */
1079 BUFFER_TRACE(bitmap_bh, "get undo access for new block");
1080 fatal = ext3_journal_get_undo_access(handle, bitmap_bh);
1081 if (fatal) {
1082 *errp = fatal;
1083 return -1;
1084 }
1085
1086 /*
1087 * we don't deal with reservation when
1088 * filesystem is mounted without reservation
1089 * or the file is not a regular file
1090 * or last attempt to allocate a block with reservation turned on failed
1091 */
1092 if (my_rsv == NULL ) {
Mingming Caob54e41e2006-03-26 01:37:57 -08001093 ret = ext3_try_to_allocate(sb, handle, group, bitmap_bh,
Mingming Cao1c2bf372006-06-25 05:48:06 -07001094 grp_goal, count, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 goto out;
1096 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 /*
Mingming Cao1c2bf372006-06-25 05:48:06 -07001098 * grp_goal is a group relative block number (if there is a goal)
1099 * 0 < grp_goal < EXT3_BLOCKS_PER_GROUP(sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 * first block is a filesystem wide block number
1101 * first block is the block number of the first block in this group
1102 */
Mingming Cao43d23f92006-06-25 05:48:07 -07001103 group_first_block = ext3_group_first_block_no(sb, group);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104
1105 /*
1106 * Basically we will allocate a new block from inode's reservation
1107 * window.
1108 *
1109 * We need to allocate a new reservation window, if:
1110 * a) inode does not have a reservation window; or
1111 * b) last attempt to allocate a block from existing reservation
1112 * failed; or
1113 * c) we come here with a goal and with a reservation window
1114 *
1115 * We do not need to allocate a new reservation window if we come here
1116 * at the beginning with a goal and the goal is inside the window, or
1117 * we don't have a goal but already have a reservation window.
1118 * then we could go to allocate from the reservation window directly.
1119 */
1120 while (1) {
Mingming Cao21fe3472005-06-28 20:45:16 -07001121 if (rsv_is_empty(&my_rsv->rsv_window) || (ret < 0) ||
Mingming Cao1c2bf372006-06-25 05:48:06 -07001122 !goal_in_my_reservation(&my_rsv->rsv_window, grp_goal, group, sb)) {
Mingming Caod48589b2006-03-26 01:37:59 -08001123 if (my_rsv->rsv_goal_size < *count)
1124 my_rsv->rsv_goal_size = *count;
Mingming Cao1c2bf372006-06-25 05:48:06 -07001125 ret = alloc_new_reservation(my_rsv, grp_goal, sb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 group, bitmap_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 if (ret < 0)
1128 break; /* failed */
1129
Mingming Cao1c2bf372006-06-25 05:48:06 -07001130 if (!goal_in_my_reservation(&my_rsv->rsv_window, grp_goal, group, sb))
1131 grp_goal = -1;
1132 } else if (grp_goal > 0 && (my_rsv->rsv_end-grp_goal+1) < *count)
Mingming Caod48589b2006-03-26 01:37:59 -08001133 try_to_extend_reservation(my_rsv, sb,
Mingming Cao1c2bf372006-06-25 05:48:06 -07001134 *count-my_rsv->rsv_end + grp_goal - 1);
Mingming Caod48589b2006-03-26 01:37:59 -08001135
Mingming Cao21fe3472005-06-28 20:45:16 -07001136 if ((my_rsv->rsv_start >= group_first_block + EXT3_BLOCKS_PER_GROUP(sb))
1137 || (my_rsv->rsv_end < group_first_block))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 BUG();
Mingming Cao1c2bf372006-06-25 05:48:06 -07001139 ret = ext3_try_to_allocate(sb, handle, group, bitmap_bh, grp_goal,
Mingming Caob54e41e2006-03-26 01:37:57 -08001140 &num, &my_rsv->rsv_window);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 if (ret >= 0) {
Mingming Caob54e41e2006-03-26 01:37:57 -08001142 my_rsv->rsv_alloc_hit += num;
1143 *count = num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 break; /* succeed */
1145 }
Mingming Caob54e41e2006-03-26 01:37:57 -08001146 num = *count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 }
1148out:
1149 if (ret >= 0) {
1150 BUFFER_TRACE(bitmap_bh, "journal_dirty_metadata for "
1151 "bitmap block");
1152 fatal = ext3_journal_dirty_metadata(handle, bitmap_bh);
1153 if (fatal) {
1154 *errp = fatal;
1155 return -1;
1156 }
1157 return ret;
1158 }
1159
1160 BUFFER_TRACE(bitmap_bh, "journal_release_buffer");
1161 ext3_journal_release_buffer(handle, bitmap_bh);
1162 return ret;
1163}
1164
1165static int ext3_has_free_blocks(struct ext3_sb_info *sbi)
1166{
Mingming Cao1c2bf372006-06-25 05:48:06 -07001167 ext3_fsblk_t free_blocks, root_blocks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168
1169 free_blocks = percpu_counter_read_positive(&sbi->s_freeblocks_counter);
1170 root_blocks = le32_to_cpu(sbi->s_es->s_r_blocks_count);
1171 if (free_blocks < root_blocks + 1 && !capable(CAP_SYS_RESOURCE) &&
1172 sbi->s_resuid != current->fsuid &&
1173 (sbi->s_resgid == 0 || !in_group_p (sbi->s_resgid))) {
1174 return 0;
1175 }
1176 return 1;
1177}
1178
1179/*
1180 * ext3_should_retry_alloc() is called when ENOSPC is returned, and if
1181 * it is profitable to retry the operation, this function will wait
1182 * for the current or commiting transaction to complete, and then
1183 * return TRUE.
1184 */
1185int ext3_should_retry_alloc(struct super_block *sb, int *retries)
1186{
1187 if (!ext3_has_free_blocks(EXT3_SB(sb)) || (*retries)++ > 3)
1188 return 0;
1189
1190 jbd_debug(1, "%s: retrying operation after ENOSPC\n", sb->s_id);
1191
1192 return journal_force_commit_nested(EXT3_SB(sb)->s_journal);
1193}
1194
1195/*
1196 * ext3_new_block uses a goal block to assist allocation. If the goal is
1197 * free, or there is a free block within 32 blocks of the goal, that block
1198 * is allocated. Otherwise a forward search is made for a free block; within
1199 * each block group the search first looks for an entire free byte in the block
1200 * bitmap, and then for any free bit if that fails.
1201 * This function also updates quota and i_blocks field.
1202 */
Mingming Cao1c2bf372006-06-25 05:48:06 -07001203ext3_fsblk_t ext3_new_blocks(handle_t *handle, struct inode *inode,
1204 ext3_fsblk_t goal, unsigned long *count, int *errp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205{
1206 struct buffer_head *bitmap_bh = NULL;
1207 struct buffer_head *gdp_bh;
1208 int group_no;
1209 int goal_group;
Mingming Cao1c2bf372006-06-25 05:48:06 -07001210 ext3_grpblk_t grp_target_blk; /* blockgroup relative goal block */
1211 ext3_grpblk_t grp_alloc_blk; /* blockgroup-relative allocated block*/
1212 ext3_fsblk_t ret_block; /* filesyetem-wide allocated block */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 int bgi; /* blockgroup iteration index */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 int fatal = 0, err;
1215 int performed_allocation = 0;
Mingming Cao1c2bf372006-06-25 05:48:06 -07001216 ext3_grpblk_t free_blocks; /* number of free blocks in a group */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 struct super_block *sb;
1218 struct ext3_group_desc *gdp;
1219 struct ext3_super_block *es;
1220 struct ext3_sb_info *sbi;
1221 struct ext3_reserve_window_node *my_rsv = NULL;
1222 struct ext3_block_alloc_info *block_i;
1223 unsigned short windowsz = 0;
1224#ifdef EXT3FS_DEBUG
1225 static int goal_hits, goal_attempts;
1226#endif
1227 unsigned long ngroups;
Mingming Caob54e41e2006-03-26 01:37:57 -08001228 unsigned long num = *count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229
1230 *errp = -ENOSPC;
1231 sb = inode->i_sb;
1232 if (!sb) {
1233 printk("ext3_new_block: nonexistent device");
1234 return 0;
1235 }
1236
1237 /*
1238 * Check quota for allocation of this block.
1239 */
Mingming Caofaa56972006-03-26 01:37:58 -08001240 if (DQUOT_ALLOC_BLOCK(inode, num)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 *errp = -EDQUOT;
1242 return 0;
1243 }
1244
1245 sbi = EXT3_SB(sb);
1246 es = EXT3_SB(sb)->s_es;
1247 ext3_debug("goal=%lu.\n", goal);
1248 /*
1249 * Allocate a block from reservation only when
1250 * filesystem is mounted with reservation(default,-o reservation), and
1251 * it's a regular file, and
1252 * the desired window size is greater than 0 (One could use ioctl
1253 * command EXT3_IOC_SETRSVSZ to set the window size to 0 to turn off
1254 * reservation on that particular file)
1255 */
1256 block_i = EXT3_I(inode)->i_block_alloc_info;
1257 if (block_i && ((windowsz = block_i->rsv_window_node.rsv_goal_size) > 0))
1258 my_rsv = &block_i->rsv_window_node;
1259
1260 if (!ext3_has_free_blocks(sbi)) {
1261 *errp = -ENOSPC;
1262 goto out;
1263 }
1264
1265 /*
1266 * First, test whether the goal block is free.
1267 */
1268 if (goal < le32_to_cpu(es->s_first_data_block) ||
1269 goal >= le32_to_cpu(es->s_blocks_count))
1270 goal = le32_to_cpu(es->s_first_data_block);
1271 group_no = (goal - le32_to_cpu(es->s_first_data_block)) /
1272 EXT3_BLOCKS_PER_GROUP(sb);
1273 gdp = ext3_get_group_desc(sb, group_no, &gdp_bh);
1274 if (!gdp)
1275 goto io_error;
1276
1277 goal_group = group_no;
1278retry:
1279 free_blocks = le16_to_cpu(gdp->bg_free_blocks_count);
1280 /*
1281 * if there is not enough free blocks to make a new resevation
1282 * turn off reservation for this allocation
1283 */
1284 if (my_rsv && (free_blocks < windowsz)
1285 && (rsv_is_empty(&my_rsv->rsv_window)))
1286 my_rsv = NULL;
1287
1288 if (free_blocks > 0) {
Mingming Cao1c2bf372006-06-25 05:48:06 -07001289 grp_target_blk = ((goal - le32_to_cpu(es->s_first_data_block)) %
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 EXT3_BLOCKS_PER_GROUP(sb));
1291 bitmap_bh = read_block_bitmap(sb, group_no);
1292 if (!bitmap_bh)
1293 goto io_error;
Mingming Cao1c2bf372006-06-25 05:48:06 -07001294 grp_alloc_blk = ext3_try_to_allocate_with_rsv(sb, handle,
1295 group_no, bitmap_bh, grp_target_blk,
1296 my_rsv, &num, &fatal);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 if (fatal)
1298 goto out;
Mingming Cao1c2bf372006-06-25 05:48:06 -07001299 if (grp_alloc_blk >= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 goto allocated;
1301 }
1302
1303 ngroups = EXT3_SB(sb)->s_groups_count;
1304 smp_rmb();
1305
1306 /*
1307 * Now search the rest of the groups. We assume that
1308 * i and gdp correctly point to the last group visited.
1309 */
1310 for (bgi = 0; bgi < ngroups; bgi++) {
1311 group_no++;
1312 if (group_no >= ngroups)
1313 group_no = 0;
1314 gdp = ext3_get_group_desc(sb, group_no, &gdp_bh);
1315 if (!gdp) {
1316 *errp = -EIO;
1317 goto out;
1318 }
1319 free_blocks = le16_to_cpu(gdp->bg_free_blocks_count);
1320 /*
1321 * skip this group if the number of
1322 * free blocks is less than half of the reservation
1323 * window size.
1324 */
1325 if (free_blocks <= (windowsz/2))
1326 continue;
1327
1328 brelse(bitmap_bh);
1329 bitmap_bh = read_block_bitmap(sb, group_no);
1330 if (!bitmap_bh)
1331 goto io_error;
Mingming Cao1c2bf372006-06-25 05:48:06 -07001332 /*
1333 * try to allocate block(s) from this group, without a goal(-1).
1334 */
1335 grp_alloc_blk = ext3_try_to_allocate_with_rsv(sb, handle,
1336 group_no, bitmap_bh, -1, my_rsv,
1337 &num, &fatal);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 if (fatal)
1339 goto out;
Mingming Cao1c2bf372006-06-25 05:48:06 -07001340 if (grp_alloc_blk >= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 goto allocated;
1342 }
1343 /*
1344 * We may end up a bogus ealier ENOSPC error due to
1345 * filesystem is "full" of reservations, but
1346 * there maybe indeed free blocks avaliable on disk
1347 * In this case, we just forget about the reservations
1348 * just do block allocation as without reservations.
1349 */
1350 if (my_rsv) {
1351 my_rsv = NULL;
1352 group_no = goal_group;
1353 goto retry;
1354 }
1355 /* No space left on the device */
1356 *errp = -ENOSPC;
1357 goto out;
1358
1359allocated:
1360
1361 ext3_debug("using block group %d(%d)\n",
1362 group_no, gdp->bg_free_blocks_count);
1363
1364 BUFFER_TRACE(gdp_bh, "get_write_access");
1365 fatal = ext3_journal_get_write_access(handle, gdp_bh);
1366 if (fatal)
1367 goto out;
1368
Mingming Cao43d23f92006-06-25 05:48:07 -07001369 ret_block = grp_alloc_blk + ext3_group_first_block_no(sb, group_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370
Mingming Cao1c2bf372006-06-25 05:48:06 -07001371 if (in_range(le32_to_cpu(gdp->bg_block_bitmap), ret_block, num) ||
1372 in_range(le32_to_cpu(gdp->bg_inode_bitmap), ret_block, num) ||
1373 in_range(ret_block, le32_to_cpu(gdp->bg_inode_table),
Mingming Caofaa56972006-03-26 01:37:58 -08001374 EXT3_SB(sb)->s_itb_per_group) ||
Mingming Cao1c2bf372006-06-25 05:48:06 -07001375 in_range(ret_block + num - 1, le32_to_cpu(gdp->bg_inode_table),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 EXT3_SB(sb)->s_itb_per_group))
1377 ext3_error(sb, "ext3_new_block",
1378 "Allocating block in system zone - "
Mingming Cao1c2bf372006-06-25 05:48:06 -07001379 "blocks from "E3FSBLK", length %lu",
1380 ret_block, num);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381
1382 performed_allocation = 1;
1383
1384#ifdef CONFIG_JBD_DEBUG
1385 {
1386 struct buffer_head *debug_bh;
1387
1388 /* Record bitmap buffer state in the newly allocated block */
Mingming Cao1c2bf372006-06-25 05:48:06 -07001389 debug_bh = sb_find_get_block(sb, ret_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 if (debug_bh) {
1391 BUFFER_TRACE(debug_bh, "state when allocated");
1392 BUFFER_TRACE2(debug_bh, bitmap_bh, "bitmap state");
1393 brelse(debug_bh);
1394 }
1395 }
1396 jbd_lock_bh_state(bitmap_bh);
1397 spin_lock(sb_bgl_lock(sbi, group_no));
1398 if (buffer_jbd(bitmap_bh) && bh2jh(bitmap_bh)->b_committed_data) {
Mingming Caofaa56972006-03-26 01:37:58 -08001399 int i;
1400
1401 for (i = 0; i < num; i++) {
Mingming Cao1c2bf372006-06-25 05:48:06 -07001402 if (ext3_test_bit(grp_alloc_blk+i,
Mingming Caofaa56972006-03-26 01:37:58 -08001403 bh2jh(bitmap_bh)->b_committed_data)) {
1404 printk("%s: block was unexpectedly set in "
1405 "b_committed_data\n", __FUNCTION__);
1406 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 }
1408 }
Mingming Cao1c2bf372006-06-25 05:48:06 -07001409 ext3_debug("found bit %d\n", grp_alloc_blk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 spin_unlock(sb_bgl_lock(sbi, group_no));
1411 jbd_unlock_bh_state(bitmap_bh);
1412#endif
1413
Mingming Caofaa56972006-03-26 01:37:58 -08001414 if (ret_block + num - 1 >= le32_to_cpu(es->s_blocks_count)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 ext3_error(sb, "ext3_new_block",
Mingming Cao1c2bf372006-06-25 05:48:06 -07001416 "block("E3FSBLK") >= blocks count(%d) - "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 "block_group = %d, es == %p ", ret_block,
1418 le32_to_cpu(es->s_blocks_count), group_no, es);
1419 goto out;
1420 }
1421
1422 /*
1423 * It is up to the caller to add the new buffer to a journal
1424 * list of some description. We don't know in advance whether
1425 * the caller wants to use it as metadata or data.
1426 */
Mingming Cao1c2bf372006-06-25 05:48:06 -07001427 ext3_debug("allocating block %lu. Goal hits %d of %d.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 ret_block, goal_hits, goal_attempts);
1429
1430 spin_lock(sb_bgl_lock(sbi, group_no));
1431 gdp->bg_free_blocks_count =
Mingming Caofaa56972006-03-26 01:37:58 -08001432 cpu_to_le16(le16_to_cpu(gdp->bg_free_blocks_count) - num);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 spin_unlock(sb_bgl_lock(sbi, group_no));
Mingming Caofaa56972006-03-26 01:37:58 -08001434 percpu_counter_mod(&sbi->s_freeblocks_counter, -num);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435
1436 BUFFER_TRACE(gdp_bh, "journal_dirty_metadata for group descriptor");
1437 err = ext3_journal_dirty_metadata(handle, gdp_bh);
1438 if (!fatal)
1439 fatal = err;
1440
1441 sb->s_dirt = 1;
1442 if (fatal)
1443 goto out;
1444
1445 *errp = 0;
1446 brelse(bitmap_bh);
Mingming Caofaa56972006-03-26 01:37:58 -08001447 DQUOT_FREE_BLOCK(inode, *count-num);
Mingming Caob54e41e2006-03-26 01:37:57 -08001448 *count = num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 return ret_block;
1450
1451io_error:
1452 *errp = -EIO;
1453out:
1454 if (fatal) {
1455 *errp = fatal;
1456 ext3_std_error(sb, fatal);
1457 }
1458 /*
1459 * Undo the block allocation
1460 */
1461 if (!performed_allocation)
Mingming Caofaa56972006-03-26 01:37:58 -08001462 DQUOT_FREE_BLOCK(inode, *count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 brelse(bitmap_bh);
1464 return 0;
1465}
1466
Mingming Cao1c2bf372006-06-25 05:48:06 -07001467ext3_fsblk_t ext3_new_block(handle_t *handle, struct inode *inode,
1468 ext3_fsblk_t goal, int *errp)
Mingming Caob54e41e2006-03-26 01:37:57 -08001469{
1470 unsigned long count = 1;
1471
1472 return ext3_new_blocks(handle, inode, goal, &count, errp);
1473}
1474
Mingming Cao43d23f92006-06-25 05:48:07 -07001475ext3_fsblk_t ext3_count_free_blocks(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476{
Mingming Cao43d23f92006-06-25 05:48:07 -07001477 ext3_fsblk_t desc_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 struct ext3_group_desc *gdp;
1479 int i;
Glauber de Oliveira Costa8bdac5d2005-09-22 21:44:26 -07001480 unsigned long ngroups = EXT3_SB(sb)->s_groups_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481#ifdef EXT3FS_DEBUG
1482 struct ext3_super_block *es;
Mingming Cao43d23f92006-06-25 05:48:07 -07001483 ext3_fsblk_t bitmap_count;
1484 unsigned long x;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 struct buffer_head *bitmap_bh = NULL;
1486
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 es = EXT3_SB(sb)->s_es;
1488 desc_count = 0;
1489 bitmap_count = 0;
1490 gdp = NULL;
Glauber de Oliveira Costa8bdac5d2005-09-22 21:44:26 -07001491
Glauber de Oliveira Costa5b116872005-10-30 15:02:48 -08001492 smp_rmb();
Glauber de Oliveira Costa8bdac5d2005-09-22 21:44:26 -07001493 for (i = 0; i < ngroups; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494 gdp = ext3_get_group_desc(sb, i, NULL);
1495 if (!gdp)
1496 continue;
1497 desc_count += le16_to_cpu(gdp->bg_free_blocks_count);
1498 brelse(bitmap_bh);
1499 bitmap_bh = read_block_bitmap(sb, i);
1500 if (bitmap_bh == NULL)
1501 continue;
1502
1503 x = ext3_count_free(bitmap_bh, sb->s_blocksize);
1504 printk("group %d: stored = %d, counted = %lu\n",
1505 i, le16_to_cpu(gdp->bg_free_blocks_count), x);
1506 bitmap_count += x;
1507 }
1508 brelse(bitmap_bh);
Mingming Cao43d23f92006-06-25 05:48:07 -07001509 printk("ext3_count_free_blocks: stored = "E3FSBLK
1510 ", computed = "E3FSBLK", "E3FSBLK"\n",
1511 le32_to_cpu(es->s_free_blocks_count),
1512 desc_count, bitmap_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 return bitmap_count;
1514#else
1515 desc_count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 smp_rmb();
1517 for (i = 0; i < ngroups; i++) {
1518 gdp = ext3_get_group_desc(sb, i, NULL);
1519 if (!gdp)
1520 continue;
1521 desc_count += le16_to_cpu(gdp->bg_free_blocks_count);
1522 }
1523
1524 return desc_count;
1525#endif
1526}
1527
1528static inline int
Mingming Cao1c2bf372006-06-25 05:48:06 -07001529block_in_use(ext3_fsblk_t block, struct super_block *sb, unsigned char *map)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530{
1531 return ext3_test_bit ((block -
1532 le32_to_cpu(EXT3_SB(sb)->s_es->s_first_data_block)) %
1533 EXT3_BLOCKS_PER_GROUP(sb), map);
1534}
1535
1536static inline int test_root(int a, int b)
1537{
1538 int num = b;
1539
1540 while (a > num)
1541 num *= b;
1542 return num == a;
1543}
1544
1545static int ext3_group_sparse(int group)
1546{
1547 if (group <= 1)
1548 return 1;
1549 if (!(group & 1))
1550 return 0;
1551 return (test_root(group, 7) || test_root(group, 5) ||
1552 test_root(group, 3));
1553}
1554
1555/**
1556 * ext3_bg_has_super - number of blocks used by the superblock in group
1557 * @sb: superblock for filesystem
1558 * @group: group number to check
1559 *
1560 * Return the number of blocks used by the superblock (primary or backup)
1561 * in this group. Currently this will be only 0 or 1.
1562 */
1563int ext3_bg_has_super(struct super_block *sb, int group)
1564{
Glauber de Oliveira Costab5a7c4f2006-03-24 03:18:37 -08001565 if (EXT3_HAS_RO_COMPAT_FEATURE(sb,
1566 EXT3_FEATURE_RO_COMPAT_SPARSE_SUPER) &&
1567 !ext3_group_sparse(group))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 return 0;
1569 return 1;
1570}
1571
Glauber de Oliveira Costab5a7c4f2006-03-24 03:18:37 -08001572static unsigned long ext3_bg_num_gdb_meta(struct super_block *sb, int group)
1573{
1574 unsigned long metagroup = group / EXT3_DESC_PER_BLOCK(sb);
1575 unsigned long first = metagroup * EXT3_DESC_PER_BLOCK(sb);
1576 unsigned long last = first + EXT3_DESC_PER_BLOCK(sb) - 1;
1577
1578 if (group == first || group == first + 1 || group == last)
1579 return 1;
1580 return 0;
1581}
1582
1583static unsigned long ext3_bg_num_gdb_nometa(struct super_block *sb, int group)
1584{
1585 if (EXT3_HAS_RO_COMPAT_FEATURE(sb,
1586 EXT3_FEATURE_RO_COMPAT_SPARSE_SUPER) &&
1587 !ext3_group_sparse(group))
1588 return 0;
1589 return EXT3_SB(sb)->s_gdb_count;
1590}
1591
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592/**
1593 * ext3_bg_num_gdb - number of blocks used by the group table in group
1594 * @sb: superblock for filesystem
1595 * @group: group number to check
1596 *
1597 * Return the number of blocks used by the group descriptor table
1598 * (primary or backup) in this group. In the future there may be a
1599 * different number of descriptor blocks in each group.
1600 */
1601unsigned long ext3_bg_num_gdb(struct super_block *sb, int group)
1602{
Glauber de Oliveira Costab5a7c4f2006-03-24 03:18:37 -08001603 unsigned long first_meta_bg =
1604 le32_to_cpu(EXT3_SB(sb)->s_es->s_first_meta_bg);
1605 unsigned long metagroup = group / EXT3_DESC_PER_BLOCK(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606
Glauber de Oliveira Costab5a7c4f2006-03-24 03:18:37 -08001607 if (!EXT3_HAS_INCOMPAT_FEATURE(sb,EXT3_FEATURE_INCOMPAT_META_BG) ||
1608 metagroup < first_meta_bg)
1609 return ext3_bg_num_gdb_nometa(sb,group);
1610
1611 return ext3_bg_num_gdb_meta(sb,group);
1612
1613}