87715e1f87ac68a22cc7d3383e2bc42f82498e4c
[linux-2.6.git] / fs / ext3 / balloc.c
1 /*
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>
16 #include <linux/capability.h>
17 #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 #include <linux/vs_base.h>
24 #include <linux/vs_dlimit.h>
25
26 /*
27  * balloc.c contains the blocks allocation and deallocation routines
28  */
29
30 /*
31  * The free blocks are managed by bitmaps.  A file system contains several
32  * blocks groups.  Each group contains 1 bitmap block for blocks, 1 bitmap
33  * block for inodes, N blocks for the inode table and data blocks.
34  *
35  * The file system contains group descriptors which are located after the
36  * super block.  Each descriptor contains the number of the bitmap block and
37  * the free blocks count in the block.  The descriptors are loaded in memory
38  * when a file system is mounted (see ext3_read_super).
39  */
40
41
42 #define in_range(b, first, len) ((b) >= (first) && (b) <= (first) + (len) - 1)
43
44 struct ext3_group_desc * ext3_get_group_desc(struct super_block * sb,
45                                              unsigned int block_group,
46                                              struct buffer_head ** bh)
47 {
48         unsigned long group_desc;
49         unsigned long offset;
50         struct ext3_group_desc * desc;
51         struct ext3_sb_info *sbi = EXT3_SB(sb);
52
53         if (block_group >= sbi->s_groups_count) {
54                 ext3_error (sb, "ext3_get_group_desc",
55                             "block_group >= groups_count - "
56                             "block_group = %d, groups_count = %lu",
57                             block_group, sbi->s_groups_count);
58
59                 return NULL;
60         }
61         smp_rmb();
62
63         group_desc = block_group >> EXT3_DESC_PER_BLOCK_BITS(sb);
64         offset = block_group & (EXT3_DESC_PER_BLOCK(sb) - 1);
65         if (!sbi->s_group_desc[group_desc]) {
66                 ext3_error (sb, "ext3_get_group_desc",
67                             "Group descriptor not loaded - "
68                             "block_group = %d, group_desc = %lu, desc = %lu",
69                              block_group, group_desc, offset);
70                 return NULL;
71         }
72
73         desc = (struct ext3_group_desc *) sbi->s_group_desc[group_desc]->b_data;
74         if (bh)
75                 *bh = sbi->s_group_desc[group_desc];
76         return desc + offset;
77 }
78
79 /*
80  * Read the bitmap for a given block_group, reading into the specified 
81  * slot in the superblock's bitmap cache.
82  *
83  * Return buffer_head on success or NULL in case of failure.
84  */
85 static struct buffer_head *
86 read_block_bitmap(struct super_block *sb, unsigned int block_group)
87 {
88         struct ext3_group_desc * desc;
89         struct buffer_head * bh = NULL;
90
91         desc = ext3_get_group_desc (sb, block_group, NULL);
92         if (!desc)
93                 goto error_out;
94         bh = sb_bread(sb, le32_to_cpu(desc->bg_block_bitmap));
95         if (!bh)
96                 ext3_error (sb, "read_block_bitmap",
97                             "Cannot read block bitmap - "
98                             "block_group = %d, block_bitmap = %u",
99                             block_group, le32_to_cpu(desc->bg_block_bitmap));
100 error_out:
101         return bh;
102 }
103 /*
104  * The reservation window structure operations
105  * --------------------------------------------
106  * Operations include:
107  * dump, find, add, remove, is_empty, find_next_reservable_window, etc.
108  *
109  * We use sorted double linked list for the per-filesystem reservation
110  * window list. (like in vm_region).
111  *
112  * Initially, we keep those small operations in the abstract functions,
113  * so later if we need a better searching tree than double linked-list,
114  * we could easily switch to that without changing too much
115  * code.
116  */
117 #if 0
118 static void __rsv_window_dump(struct rb_root *root, int verbose,
119                               const char *fn)
120 {
121         struct rb_node *n;
122         struct ext3_reserve_window_node *rsv, *prev;
123         int bad;
124
125 restart:
126         n = rb_first(root);
127         bad = 0;
128         prev = NULL;
129
130         printk("Block Allocation Reservation Windows Map (%s):\n", fn);
131         while (n) {
132                 rsv = list_entry(n, struct ext3_reserve_window_node, rsv_node);
133                 if (verbose)
134                         printk("reservation window 0x%p "
135                                "start:  %d, end:  %d\n",
136                                rsv, rsv->rsv_start, rsv->rsv_end);
137                 if (rsv->rsv_start && rsv->rsv_start >= rsv->rsv_end) {
138                         printk("Bad reservation %p (start >= end)\n",
139                                rsv);
140                         bad = 1;
141                 }
142                 if (prev && prev->rsv_end >= rsv->rsv_start) {
143                         printk("Bad reservation %p (prev->end >= start)\n",
144                                rsv);
145                         bad = 1;
146                 }
147                 if (bad) {
148                         if (!verbose) {
149                                 printk("Restarting reservation walk in verbose mode\n");
150                                 verbose = 1;
151                                 goto restart;
152                         }
153                 }
154                 n = rb_next(n);
155                 prev = rsv;
156         }
157         printk("Window map complete.\n");
158         if (bad)
159                 BUG();
160 }
161 #define rsv_window_dump(root, verbose) \
162         __rsv_window_dump((root), (verbose), __FUNCTION__)
163 #else
164 #define rsv_window_dump(root, verbose) do {} while (0)
165 #endif
166
167 static int
168 goal_in_my_reservation(struct ext3_reserve_window *rsv, int goal,
169                         unsigned int group, struct super_block * sb)
170 {
171         unsigned long group_first_block, group_last_block;
172
173         group_first_block = le32_to_cpu(EXT3_SB(sb)->s_es->s_first_data_block) +
174                                 group * EXT3_BLOCKS_PER_GROUP(sb);
175         group_last_block = group_first_block + EXT3_BLOCKS_PER_GROUP(sb) - 1;
176
177         if ((rsv->_rsv_start > group_last_block) ||
178             (rsv->_rsv_end < group_first_block))
179                 return 0;
180         if ((goal >= 0) && ((goal + group_first_block < rsv->_rsv_start)
181                 || (goal + group_first_block > rsv->_rsv_end)))
182                 return 0;
183         return 1;
184 }
185
186 /*
187  * Find the reserved window which includes the goal, or the previous one
188  * if the goal is not in any window.
189  * Returns NULL if there are no windows or if all windows start after the goal.
190  */
191 static struct ext3_reserve_window_node *
192 search_reserve_window(struct rb_root *root, unsigned long goal)
193 {
194         struct rb_node *n = root->rb_node;
195         struct ext3_reserve_window_node *rsv;
196
197         if (!n)
198                 return NULL;
199
200         do {
201                 rsv = rb_entry(n, struct ext3_reserve_window_node, rsv_node);
202
203                 if (goal < rsv->rsv_start)
204                         n = n->rb_left;
205                 else if (goal > rsv->rsv_end)
206                         n = n->rb_right;
207                 else
208                         return rsv;
209         } while (n);
210         /*
211          * We've fallen off the end of the tree: the goal wasn't inside
212          * any particular node.  OK, the previous node must be to one
213          * side of the interval containing the goal.  If it's the RHS,
214          * we need to back up one.
215          */
216         if (rsv->rsv_start > goal) {
217                 n = rb_prev(&rsv->rsv_node);
218                 rsv = rb_entry(n, struct ext3_reserve_window_node, rsv_node);
219         }
220         return rsv;
221 }
222
223 void ext3_rsv_window_add(struct super_block *sb,
224                     struct ext3_reserve_window_node *rsv)
225 {
226         struct rb_root *root = &EXT3_SB(sb)->s_rsv_window_root;
227         struct rb_node *node = &rsv->rsv_node;
228         unsigned int start = rsv->rsv_start;
229
230         struct rb_node ** p = &root->rb_node;
231         struct rb_node * parent = NULL;
232         struct ext3_reserve_window_node *this;
233
234         while (*p)
235         {
236                 parent = *p;
237                 this = rb_entry(parent, struct ext3_reserve_window_node, rsv_node);
238
239                 if (start < this->rsv_start)
240                         p = &(*p)->rb_left;
241                 else if (start > this->rsv_end)
242                         p = &(*p)->rb_right;
243                 else
244                         BUG();
245         }
246
247         rb_link_node(node, parent, p);
248         rb_insert_color(node, root);
249 }
250
251 static void rsv_window_remove(struct super_block *sb,
252                               struct ext3_reserve_window_node *rsv)
253 {
254         rsv->rsv_start = EXT3_RESERVE_WINDOW_NOT_ALLOCATED;
255         rsv->rsv_end = EXT3_RESERVE_WINDOW_NOT_ALLOCATED;
256         rsv->rsv_alloc_hit = 0;
257         rb_erase(&rsv->rsv_node, &EXT3_SB(sb)->s_rsv_window_root);
258 }
259
260 static inline int rsv_is_empty(struct ext3_reserve_window *rsv)
261 {
262         /* a valid reservation end block could not be 0 */
263         return (rsv->_rsv_end == EXT3_RESERVE_WINDOW_NOT_ALLOCATED);
264 }
265 void ext3_init_block_alloc_info(struct inode *inode)
266 {
267         struct ext3_inode_info *ei = EXT3_I(inode);
268         struct ext3_block_alloc_info *block_i = ei->i_block_alloc_info;
269         struct super_block *sb = inode->i_sb;
270
271         block_i = kmalloc(sizeof(*block_i), GFP_NOFS);
272         if (block_i) {
273                 struct ext3_reserve_window_node *rsv = &block_i->rsv_window_node;
274
275                 rsv->rsv_start = EXT3_RESERVE_WINDOW_NOT_ALLOCATED;
276                 rsv->rsv_end = EXT3_RESERVE_WINDOW_NOT_ALLOCATED;
277
278                 /*
279                  * if filesystem is mounted with NORESERVATION, the goal
280                  * reservation window size is set to zero to indicate
281                  * block reservation is off
282                  */
283                 if (!test_opt(sb, RESERVATION))
284                         rsv->rsv_goal_size = 0;
285                 else
286                         rsv->rsv_goal_size = EXT3_DEFAULT_RESERVE_BLOCKS;
287                 rsv->rsv_alloc_hit = 0;
288                 block_i->last_alloc_logical_block = 0;
289                 block_i->last_alloc_physical_block = 0;
290         }
291         ei->i_block_alloc_info = block_i;
292 }
293
294 void ext3_discard_reservation(struct inode *inode)
295 {
296         struct ext3_inode_info *ei = EXT3_I(inode);
297         struct ext3_block_alloc_info *block_i = ei->i_block_alloc_info;
298         struct ext3_reserve_window_node *rsv;
299         spinlock_t *rsv_lock = &EXT3_SB(inode->i_sb)->s_rsv_window_lock;
300
301         if (!block_i)
302                 return;
303
304         rsv = &block_i->rsv_window_node;
305         if (!rsv_is_empty(&rsv->rsv_window)) {
306                 spin_lock(rsv_lock);
307                 if (!rsv_is_empty(&rsv->rsv_window))
308                         rsv_window_remove(inode->i_sb, rsv);
309                 spin_unlock(rsv_lock);
310         }
311 }
312
313 /* Free given blocks, update quota and i_blocks field */
314 void ext3_free_blocks_sb(handle_t *handle, struct super_block *sb,
315                          unsigned long block, unsigned long count,
316                          int *pdquot_freed_blocks)
317 {
318         struct buffer_head *bitmap_bh = NULL;
319         struct buffer_head *gd_bh;
320         unsigned long block_group;
321         unsigned long bit;
322         unsigned long i;
323         unsigned long overflow;
324         struct ext3_group_desc * desc;
325         struct ext3_super_block * es;
326         struct ext3_sb_info *sbi;
327         int err = 0, ret;
328         unsigned group_freed;
329
330         *pdquot_freed_blocks = 0;
331         sbi = EXT3_SB(sb);
332         es = sbi->s_es;
333         if (block < le32_to_cpu(es->s_first_data_block) ||
334             block + count < block ||
335             block + count > le32_to_cpu(es->s_blocks_count)) {
336                 ext3_error (sb, "ext3_free_blocks",
337                             "Freeing blocks not in datazone - "
338                             "block = %lu, count = %lu", block, count);
339                 goto error_return;
340         }
341
342         ext3_debug ("freeing block(s) %lu-%lu\n", block, block + count - 1);
343
344 do_more:
345         overflow = 0;
346         block_group = (block - le32_to_cpu(es->s_first_data_block)) /
347                       EXT3_BLOCKS_PER_GROUP(sb);
348         bit = (block - le32_to_cpu(es->s_first_data_block)) %
349                       EXT3_BLOCKS_PER_GROUP(sb);
350         /*
351          * Check to see if we are freeing blocks across a group
352          * boundary.
353          */
354         if (bit + count > EXT3_BLOCKS_PER_GROUP(sb)) {
355                 overflow = bit + count - EXT3_BLOCKS_PER_GROUP(sb);
356                 count -= overflow;
357         }
358         brelse(bitmap_bh);
359         bitmap_bh = read_block_bitmap(sb, block_group);
360         if (!bitmap_bh)
361                 goto error_return;
362         desc = ext3_get_group_desc (sb, block_group, &gd_bh);
363         if (!desc)
364                 goto error_return;
365
366         if (in_range (le32_to_cpu(desc->bg_block_bitmap), block, count) ||
367             in_range (le32_to_cpu(desc->bg_inode_bitmap), block, count) ||
368             in_range (block, le32_to_cpu(desc->bg_inode_table),
369                       sbi->s_itb_per_group) ||
370             in_range (block + count - 1, le32_to_cpu(desc->bg_inode_table),
371                       sbi->s_itb_per_group))
372                 ext3_error (sb, "ext3_free_blocks",
373                             "Freeing blocks in system zones - "
374                             "Block = %lu, count = %lu",
375                             block, count);
376
377         /*
378          * We are about to start releasing blocks in the bitmap,
379          * so we need undo access.
380          */
381         /* @@@ check errors */
382         BUFFER_TRACE(bitmap_bh, "getting undo access");
383         err = ext3_journal_get_undo_access(handle, bitmap_bh);
384         if (err)
385                 goto error_return;
386
387         /*
388          * We are about to modify some metadata.  Call the journal APIs
389          * to unshare ->b_data if a currently-committing transaction is
390          * using it
391          */
392         BUFFER_TRACE(gd_bh, "get_write_access");
393         err = ext3_journal_get_write_access(handle, gd_bh);
394         if (err)
395                 goto error_return;
396
397         jbd_lock_bh_state(bitmap_bh);
398
399         for (i = 0, group_freed = 0; i < count; i++) {
400                 /*
401                  * An HJ special.  This is expensive...
402                  */
403 #ifdef CONFIG_JBD_DEBUG
404                 jbd_unlock_bh_state(bitmap_bh);
405                 {
406                         struct buffer_head *debug_bh;
407                         debug_bh = sb_find_get_block(sb, block + i);
408                         if (debug_bh) {
409                                 BUFFER_TRACE(debug_bh, "Deleted!");
410                                 if (!bh2jh(bitmap_bh)->b_committed_data)
411                                         BUFFER_TRACE(debug_bh,
412                                                 "No commited data in bitmap");
413                                 BUFFER_TRACE2(debug_bh, bitmap_bh, "bitmap");
414                                 __brelse(debug_bh);
415                         }
416                 }
417                 jbd_lock_bh_state(bitmap_bh);
418 #endif
419                 if (need_resched()) {
420                         jbd_unlock_bh_state(bitmap_bh);
421                         cond_resched();
422                         jbd_lock_bh_state(bitmap_bh);
423                 }
424                 /* @@@ This prevents newly-allocated data from being
425                  * freed and then reallocated within the same
426                  * transaction. 
427                  * 
428                  * Ideally we would want to allow that to happen, but to
429                  * do so requires making journal_forget() capable of
430                  * revoking the queued write of a data block, which
431                  * implies blocking on the journal lock.  *forget()
432                  * cannot block due to truncate races.
433                  *
434                  * Eventually we can fix this by making journal_forget()
435                  * return a status indicating whether or not it was able
436                  * to revoke the buffer.  On successful revoke, it is
437                  * safe not to set the allocation bit in the committed
438                  * bitmap, because we know that there is no outstanding
439                  * activity on the buffer any more and so it is safe to
440                  * reallocate it.  
441                  */
442                 BUFFER_TRACE(bitmap_bh, "set in b_committed_data");
443                 J_ASSERT_BH(bitmap_bh,
444                                 bh2jh(bitmap_bh)->b_committed_data != NULL);
445                 ext3_set_bit_atomic(sb_bgl_lock(sbi, block_group), bit + i,
446                                 bh2jh(bitmap_bh)->b_committed_data);
447
448                 /*
449                  * We clear the bit in the bitmap after setting the committed
450                  * data bit, because this is the reverse order to that which
451                  * the allocator uses.
452                  */
453                 BUFFER_TRACE(bitmap_bh, "clear bit");
454                 if (!ext3_clear_bit_atomic(sb_bgl_lock(sbi, block_group),
455                                                 bit + i, bitmap_bh->b_data)) {
456                         jbd_unlock_bh_state(bitmap_bh);
457                         ext3_error(sb, __FUNCTION__,
458                                 "bit already cleared for block %lu", block + i);
459                         jbd_lock_bh_state(bitmap_bh);
460                         BUFFER_TRACE(bitmap_bh, "bit already cleared");
461                 } else {
462                         group_freed++;
463                 }
464         }
465         jbd_unlock_bh_state(bitmap_bh);
466
467         spin_lock(sb_bgl_lock(sbi, block_group));
468         desc->bg_free_blocks_count =
469                 cpu_to_le16(le16_to_cpu(desc->bg_free_blocks_count) +
470                         group_freed);
471         spin_unlock(sb_bgl_lock(sbi, block_group));
472         percpu_counter_mod(&sbi->s_freeblocks_counter, count);
473
474         /* We dirtied the bitmap block */
475         BUFFER_TRACE(bitmap_bh, "dirtied bitmap block");
476         err = ext3_journal_dirty_metadata(handle, bitmap_bh);
477
478         /* And the group descriptor block */
479         BUFFER_TRACE(gd_bh, "dirtied group descriptor block");
480         ret = ext3_journal_dirty_metadata(handle, gd_bh);
481         if (!err) err = ret;
482         *pdquot_freed_blocks += group_freed;
483
484         if (overflow && !err) {
485                 block += count;
486                 count = overflow;
487                 goto do_more;
488         }
489         sb->s_dirt = 1;
490 error_return:
491         brelse(bitmap_bh);
492         ext3_std_error(sb, err);
493         return;
494 }
495
496 /* Free given blocks, update quota and i_blocks field */
497 void ext3_free_blocks(handle_t *handle, struct inode *inode,
498                         unsigned long block, unsigned long count)
499 {
500         struct super_block * sb;
501         int dquot_freed_blocks;
502
503         sb = inode->i_sb;
504         if (!sb) {
505                 printk ("ext3_free_blocks: nonexistent device");
506                 return;
507         }
508         ext3_free_blocks_sb(handle, sb, block, count, &dquot_freed_blocks);
509         if (dquot_freed_blocks) {
510                 DLIMIT_FREE_BLOCK(inode, dquot_freed_blocks);
511                 DQUOT_FREE_BLOCK(inode, dquot_freed_blocks);
512         }
513         return;
514 }
515
516 /*
517  * For ext3 allocations, we must not reuse any blocks which are
518  * allocated in the bitmap buffer's "last committed data" copy.  This
519  * prevents deletes from freeing up the page for reuse until we have
520  * committed the delete transaction.
521  *
522  * If we didn't do this, then deleting something and reallocating it as
523  * data would allow the old block to be overwritten before the
524  * transaction committed (because we force data to disk before commit).
525  * This would lead to corruption if we crashed between overwriting the
526  * data and committing the delete. 
527  *
528  * @@@ We may want to make this allocation behaviour conditional on
529  * data-writes at some point, and disable it for metadata allocations or
530  * sync-data inodes.
531  */
532 static int ext3_test_allocatable(int nr, struct buffer_head *bh)
533 {
534         int ret;
535         struct journal_head *jh = bh2jh(bh);
536
537         if (ext3_test_bit(nr, bh->b_data))
538                 return 0;
539
540         jbd_lock_bh_state(bh);
541         if (!jh->b_committed_data)
542                 ret = 1;
543         else
544                 ret = !ext3_test_bit(nr, jh->b_committed_data);
545         jbd_unlock_bh_state(bh);
546         return ret;
547 }
548
549 static int
550 bitmap_search_next_usable_block(int start, struct buffer_head *bh,
551                                         int maxblocks)
552 {
553         int next;
554         struct journal_head *jh = bh2jh(bh);
555
556         /*
557          * The bitmap search --- search forward alternately through the actual
558          * bitmap and the last-committed copy until we find a bit free in
559          * both
560          */
561         while (start < maxblocks) {
562                 next = ext3_find_next_zero_bit(bh->b_data, maxblocks, start);
563                 if (next >= maxblocks)
564                         return -1;
565                 if (ext3_test_allocatable(next, bh))
566                         return next;
567                 jbd_lock_bh_state(bh);
568                 if (jh->b_committed_data)
569                         start = ext3_find_next_zero_bit(jh->b_committed_data,
570                                                         maxblocks, next);
571                 jbd_unlock_bh_state(bh);
572         }
573         return -1;
574 }
575
576 /*
577  * Find an allocatable block in a bitmap.  We honour both the bitmap and
578  * its last-committed copy (if that exists), and perform the "most
579  * appropriate allocation" algorithm of looking for a free block near
580  * the initial goal; then for a free byte somewhere in the bitmap; then
581  * for any free bit in the bitmap.
582  */
583 static int
584 find_next_usable_block(int start, struct buffer_head *bh, int maxblocks)
585 {
586         int here, next;
587         char *p, *r;
588
589         if (start > 0) {
590                 /*
591                  * The goal was occupied; search forward for a free 
592                  * block within the next XX blocks.
593                  *
594                  * end_goal is more or less random, but it has to be
595                  * less than EXT3_BLOCKS_PER_GROUP. Aligning up to the
596                  * next 64-bit boundary is simple..
597                  */
598                 int end_goal = (start + 63) & ~63;
599                 if (end_goal > maxblocks)
600                         end_goal = maxblocks;
601                 here = ext3_find_next_zero_bit(bh->b_data, end_goal, start);
602                 if (here < end_goal && ext3_test_allocatable(here, bh))
603                         return here;
604                 ext3_debug("Bit not found near goal\n");
605         }
606
607         here = start;
608         if (here < 0)
609                 here = 0;
610
611         p = ((char *)bh->b_data) + (here >> 3);
612         r = memscan(p, 0, (maxblocks - here + 7) >> 3);
613         next = (r - ((char *)bh->b_data)) << 3;
614
615         if (next < maxblocks && next >= start && ext3_test_allocatable(next, bh))
616                 return next;
617
618         /*
619          * The bitmap search --- search forward alternately through the actual
620          * bitmap and the last-committed copy until we find a bit free in
621          * both
622          */
623         here = bitmap_search_next_usable_block(here, bh, maxblocks);
624         return here;
625 }
626
627 /*
628  * We think we can allocate this block in this bitmap.  Try to set the bit.
629  * If that succeeds then check that nobody has allocated and then freed the
630  * block since we saw that is was not marked in b_committed_data.  If it _was_
631  * allocated and freed then clear the bit in the bitmap again and return
632  * zero (failure).
633  */
634 static inline int
635 claim_block(spinlock_t *lock, int block, struct buffer_head *bh)
636 {
637         struct journal_head *jh = bh2jh(bh);
638         int ret;
639
640         if (ext3_set_bit_atomic(lock, block, bh->b_data))
641                 return 0;
642         jbd_lock_bh_state(bh);
643         if (jh->b_committed_data && ext3_test_bit(block,jh->b_committed_data)) {
644                 ext3_clear_bit_atomic(lock, block, bh->b_data);
645                 ret = 0;
646         } else {
647                 ret = 1;
648         }
649         jbd_unlock_bh_state(bh);
650         return ret;
651 }
652
653 /*
654  * If we failed to allocate the desired block then we may end up crossing to a
655  * new bitmap.  In that case we must release write access to the old one via
656  * ext3_journal_release_buffer(), else we'll run out of credits.
657  */
658 static int
659 ext3_try_to_allocate(struct super_block *sb, handle_t *handle, int group,
660                         struct buffer_head *bitmap_bh, int goal,
661                         unsigned long *count, struct ext3_reserve_window *my_rsv)
662 {
663         int group_first_block, start, end;
664         unsigned long num = 0;
665
666         /* we do allocation within the reservation window if we have a window */
667         if (my_rsv) {
668                 group_first_block =
669                         le32_to_cpu(EXT3_SB(sb)->s_es->s_first_data_block) +
670                         group * EXT3_BLOCKS_PER_GROUP(sb);
671                 if (my_rsv->_rsv_start >= group_first_block)
672                         start = my_rsv->_rsv_start - group_first_block;
673                 else
674                         /* reservation window cross group boundary */
675                         start = 0;
676                 end = my_rsv->_rsv_end - group_first_block + 1;
677                 if (end > EXT3_BLOCKS_PER_GROUP(sb))
678                         /* reservation window crosses group boundary */
679                         end = EXT3_BLOCKS_PER_GROUP(sb);
680                 if ((start <= goal) && (goal < end))
681                         start = goal;
682                 else
683                         goal = -1;
684         } else {
685                 if (goal > 0)
686                         start = goal;
687                 else
688                         start = 0;
689                 end = EXT3_BLOCKS_PER_GROUP(sb);
690         }
691
692         BUG_ON(start > EXT3_BLOCKS_PER_GROUP(sb));
693
694 repeat:
695         if (goal < 0 || !ext3_test_allocatable(goal, bitmap_bh)) {
696                 goal = find_next_usable_block(start, bitmap_bh, end);
697                 if (goal < 0)
698                         goto fail_access;
699                 if (!my_rsv) {
700                         int i;
701
702                         for (i = 0; i < 7 && goal > start &&
703                                         ext3_test_allocatable(goal - 1,
704                                                                 bitmap_bh);
705                                         i++, goal--)
706                                 ;
707                 }
708         }
709         start = goal;
710
711         if (!claim_block(sb_bgl_lock(EXT3_SB(sb), group), goal, bitmap_bh)) {
712                 /*
713                  * The block was allocated by another thread, or it was
714                  * allocated and then freed by another thread
715                  */
716                 start++;
717                 goal++;
718                 if (start >= end)
719                         goto fail_access;
720                 goto repeat;
721         }
722         num++;
723         goal++;
724         while (num < *count && goal < end
725                 && ext3_test_allocatable(goal, bitmap_bh)
726                 && claim_block(sb_bgl_lock(EXT3_SB(sb), group), goal, bitmap_bh)) {
727                 num++;
728                 goal++;
729         }
730         *count = num;
731         return goal - num;
732 fail_access:
733         *count = num;
734         return -1;
735 }
736
737 /**
738  *      find_next_reservable_window():
739  *              find a reservable space within the given range.
740  *              It does not allocate the reservation window for now:
741  *              alloc_new_reservation() will do the work later.
742  *
743  *      @search_head: the head of the searching list;
744  *              This is not necessarily the list head of the whole filesystem
745  *
746  *              We have both head and start_block to assist the search
747  *              for the reservable space. The list starts from head,
748  *              but we will shift to the place where start_block is,
749  *              then start from there, when looking for a reservable space.
750  *
751  *      @size: the target new reservation window size
752  *
753  *      @group_first_block: the first block we consider to start
754  *                      the real search from
755  *
756  *      @last_block:
757  *              the maximum block number that our goal reservable space
758  *              could start from. This is normally the last block in this
759  *              group. The search will end when we found the start of next
760  *              possible reservable space is out of this boundary.
761  *              This could handle the cross boundary reservation window
762  *              request.
763  *
764  *      basically we search from the given range, rather than the whole
765  *      reservation double linked list, (start_block, last_block)
766  *      to find a free region that is of my size and has not
767  *      been reserved.
768  *
769  */
770 static int find_next_reservable_window(
771                                 struct ext3_reserve_window_node *search_head,
772                                 struct ext3_reserve_window_node *my_rsv,
773                                 struct super_block * sb, int start_block,
774                                 int last_block)
775 {
776         struct rb_node *next;
777         struct ext3_reserve_window_node *rsv, *prev;
778         int cur;
779         int size = my_rsv->rsv_goal_size;
780
781         /* TODO: make the start of the reservation window byte-aligned */
782         /* cur = *start_block & ~7;*/
783         cur = start_block;
784         rsv = search_head;
785         if (!rsv)
786                 return -1;
787
788         while (1) {
789                 if (cur <= rsv->rsv_end)
790                         cur = rsv->rsv_end + 1;
791
792                 /* TODO?
793                  * in the case we could not find a reservable space
794                  * that is what is expected, during the re-search, we could
795                  * remember what's the largest reservable space we could have
796                  * and return that one.
797                  *
798                  * For now it will fail if we could not find the reservable
799                  * space with expected-size (or more)...
800                  */
801                 if (cur > last_block)
802                         return -1;              /* fail */
803
804                 prev = rsv;
805                 next = rb_next(&rsv->rsv_node);
806                 rsv = list_entry(next,struct ext3_reserve_window_node,rsv_node);
807
808                 /*
809                  * Reached the last reservation, we can just append to the
810                  * previous one.
811                  */
812                 if (!next)
813                         break;
814
815                 if (cur + size <= rsv->rsv_start) {
816                         /*
817                          * Found a reserveable space big enough.  We could
818                          * have a reservation across the group boundary here
819                          */
820                         break;
821                 }
822         }
823         /*
824          * we come here either :
825          * when we reach the end of the whole list,
826          * and there is empty reservable space after last entry in the list.
827          * append it to the end of the list.
828          *
829          * or we found one reservable space in the middle of the list,
830          * return the reservation window that we could append to.
831          * succeed.
832          */
833
834         if ((prev != my_rsv) && (!rsv_is_empty(&my_rsv->rsv_window)))
835                 rsv_window_remove(sb, my_rsv);
836
837         /*
838          * Let's book the whole avaliable window for now.  We will check the
839          * disk bitmap later and then, if there are free blocks then we adjust
840          * the window size if it's larger than requested.
841          * Otherwise, we will remove this node from the tree next time
842          * call find_next_reservable_window.
843          */
844         my_rsv->rsv_start = cur;
845         my_rsv->rsv_end = cur + size - 1;
846         my_rsv->rsv_alloc_hit = 0;
847
848         if (prev != my_rsv)
849                 ext3_rsv_window_add(sb, my_rsv);
850
851         return 0;
852 }
853
854 /**
855  *      alloc_new_reservation()--allocate a new reservation window
856  *
857  *              To make a new reservation, we search part of the filesystem
858  *              reservation list (the list that inside the group). We try to
859  *              allocate a new reservation window near the allocation goal,
860  *              or the beginning of the group, if there is no goal.
861  *
862  *              We first find a reservable space after the goal, then from
863  *              there, we check the bitmap for the first free block after
864  *              it. If there is no free block until the end of group, then the
865  *              whole group is full, we failed. Otherwise, check if the free
866  *              block is inside the expected reservable space, if so, we
867  *              succeed.
868  *              If the first free block is outside the reservable space, then
869  *              start from the first free block, we search for next available
870  *              space, and go on.
871  *
872  *      on succeed, a new reservation will be found and inserted into the list
873  *      It contains at least one free block, and it does not overlap with other
874  *      reservation windows.
875  *
876  *      failed: we failed to find a reservation window in this group
877  *
878  *      @rsv: the reservation
879  *
880  *      @goal: The goal (group-relative).  It is where the search for a
881  *              free reservable space should start from.
882  *              if we have a goal(goal >0 ), then start from there,
883  *              no goal(goal = -1), we start from the first block
884  *              of the group.
885  *
886  *      @sb: the super block
887  *      @group: the group we are trying to allocate in
888  *      @bitmap_bh: the block group block bitmap
889  *
890  */
891 static int alloc_new_reservation(struct ext3_reserve_window_node *my_rsv,
892                 int goal, struct super_block *sb,
893                 unsigned int group, struct buffer_head *bitmap_bh)
894 {
895         struct ext3_reserve_window_node *search_head;
896         int group_first_block, group_end_block, start_block;
897         int first_free_block;
898         struct rb_root *fs_rsv_root = &EXT3_SB(sb)->s_rsv_window_root;
899         unsigned long size;
900         int ret;
901         spinlock_t *rsv_lock = &EXT3_SB(sb)->s_rsv_window_lock;
902
903         group_first_block = le32_to_cpu(EXT3_SB(sb)->s_es->s_first_data_block) +
904                                 group * EXT3_BLOCKS_PER_GROUP(sb);
905         group_end_block = group_first_block + EXT3_BLOCKS_PER_GROUP(sb) - 1;
906
907         if (goal < 0)
908                 start_block = group_first_block;
909         else
910                 start_block = goal + group_first_block;
911
912         size = my_rsv->rsv_goal_size;
913
914         if (!rsv_is_empty(&my_rsv->rsv_window)) {
915                 /*
916                  * if the old reservation is cross group boundary
917                  * and if the goal is inside the old reservation window,
918                  * we will come here when we just failed to allocate from
919                  * the first part of the window. We still have another part
920                  * that belongs to the next group. In this case, there is no
921                  * point to discard our window and try to allocate a new one
922                  * in this group(which will fail). we should
923                  * keep the reservation window, just simply move on.
924                  *
925                  * Maybe we could shift the start block of the reservation
926                  * window to the first block of next group.
927                  */
928
929                 if ((my_rsv->rsv_start <= group_end_block) &&
930                                 (my_rsv->rsv_end > group_end_block) &&
931                                 (start_block >= my_rsv->rsv_start))
932                         return -1;
933
934                 if ((my_rsv->rsv_alloc_hit >
935                      (my_rsv->rsv_end - my_rsv->rsv_start + 1) / 2)) {
936                         /*
937                          * if we previously allocation hit ration is greater than half
938                          * we double the size of reservation window next time
939                          * otherwise keep the same
940                          */
941                         size = size * 2;
942                         if (size > EXT3_MAX_RESERVE_BLOCKS)
943                                 size = EXT3_MAX_RESERVE_BLOCKS;
944                         my_rsv->rsv_goal_size= size;
945                 }
946         }
947
948         spin_lock(rsv_lock);
949         /*
950          * shift the search start to the window near the goal block
951          */
952         search_head = search_reserve_window(fs_rsv_root, start_block);
953
954         /*
955          * find_next_reservable_window() simply finds a reservable window
956          * inside the given range(start_block, group_end_block).
957          *
958          * To make sure the reservation window has a free bit inside it, we
959          * need to check the bitmap after we found a reservable window.
960          */
961 retry:
962         ret = find_next_reservable_window(search_head, my_rsv, sb,
963                                                 start_block, group_end_block);
964
965         if (ret == -1) {
966                 if (!rsv_is_empty(&my_rsv->rsv_window))
967                         rsv_window_remove(sb, my_rsv);
968                 spin_unlock(rsv_lock);
969                 return -1;
970         }
971
972         /*
973          * On success, find_next_reservable_window() returns the
974          * reservation window where there is a reservable space after it.
975          * Before we reserve this reservable space, we need
976          * to make sure there is at least a free block inside this region.
977          *
978          * searching the first free bit on the block bitmap and copy of
979          * last committed bitmap alternatively, until we found a allocatable
980          * block. Search start from the start block of the reservable space
981          * we just found.
982          */
983         spin_unlock(rsv_lock);
984         first_free_block = bitmap_search_next_usable_block(
985                         my_rsv->rsv_start - group_first_block,
986                         bitmap_bh, group_end_block - group_first_block + 1);
987
988         if (first_free_block < 0) {
989                 /*
990                  * no free block left on the bitmap, no point
991                  * to reserve the space. return failed.
992                  */
993                 spin_lock(rsv_lock);
994                 if (!rsv_is_empty(&my_rsv->rsv_window))
995                         rsv_window_remove(sb, my_rsv);
996                 spin_unlock(rsv_lock);
997                 return -1;              /* failed */
998         }
999
1000         start_block = first_free_block + group_first_block;
1001         /*
1002          * check if the first free block is within the
1003          * free space we just reserved
1004          */
1005         if (start_block >= my_rsv->rsv_start && start_block < my_rsv->rsv_end)
1006                 return 0;               /* success */
1007         /*
1008          * if the first free bit we found is out of the reservable space
1009          * continue search for next reservable space,
1010          * start from where the free block is,
1011          * we also shift the list head to where we stopped last time
1012          */
1013         search_head = my_rsv;
1014         spin_lock(rsv_lock);
1015         goto retry;
1016 }
1017
1018 static void try_to_extend_reservation(struct ext3_reserve_window_node *my_rsv,
1019                         struct super_block *sb, int size)
1020 {
1021         struct ext3_reserve_window_node *next_rsv;
1022         struct rb_node *next;
1023         spinlock_t *rsv_lock = &EXT3_SB(sb)->s_rsv_window_lock;
1024
1025         if (!spin_trylock(rsv_lock))
1026                 return;
1027
1028         next = rb_next(&my_rsv->rsv_node);
1029
1030         if (!next)
1031                 my_rsv->rsv_end += size;
1032         else {
1033                 next_rsv = list_entry(next, struct ext3_reserve_window_node, rsv_node);
1034
1035                 if ((next_rsv->rsv_start - my_rsv->rsv_end - 1) >= size)
1036                         my_rsv->rsv_end += size;
1037                 else
1038                         my_rsv->rsv_end = next_rsv->rsv_start - 1;
1039         }
1040         spin_unlock(rsv_lock);
1041 }
1042
1043 /*
1044  * This is the main function used to allocate a new block and its reservation
1045  * window.
1046  *
1047  * Each time when a new block allocation is need, first try to allocate from
1048  * its own reservation.  If it does not have a reservation window, instead of
1049  * looking for a free bit on bitmap first, then look up the reservation list to
1050  * see if it is inside somebody else's reservation window, we try to allocate a
1051  * reservation window for it starting from the goal first. Then do the block
1052  * allocation within the reservation window.
1053  *
1054  * This will avoid keeping on searching the reservation list again and
1055  * again when somebody is looking for a free block (without
1056  * reservation), and there are lots of free blocks, but they are all
1057  * being reserved.
1058  *
1059  * We use a sorted double linked list for the per-filesystem reservation list.
1060  * The insert, remove and find a free space(non-reserved) operations for the
1061  * sorted double linked list should be fast.
1062  *
1063  */
1064 static int
1065 ext3_try_to_allocate_with_rsv(struct super_block *sb, handle_t *handle,
1066                         unsigned int group, struct buffer_head *bitmap_bh,
1067                         int goal, struct ext3_reserve_window_node * my_rsv,
1068                         unsigned long *count, int *errp)
1069 {
1070         unsigned long group_first_block;
1071         int ret = 0;
1072         int fatal;
1073         unsigned long num = *count;
1074
1075         *errp = 0;
1076
1077         /*
1078          * Make sure we use undo access for the bitmap, because it is critical
1079          * that we do the frozen_data COW on bitmap buffers in all cases even
1080          * if the buffer is in BJ_Forget state in the committing transaction.
1081          */
1082         BUFFER_TRACE(bitmap_bh, "get undo access for new block");
1083         fatal = ext3_journal_get_undo_access(handle, bitmap_bh);
1084         if (fatal) {
1085                 *errp = fatal;
1086                 return -1;
1087         }
1088
1089         /*
1090          * we don't deal with reservation when
1091          * filesystem is mounted without reservation
1092          * or the file is not a regular file
1093          * or last attempt to allocate a block with reservation turned on failed
1094          */
1095         if (my_rsv == NULL ) {
1096                 ret = ext3_try_to_allocate(sb, handle, group, bitmap_bh,
1097                                                 goal, count, NULL);
1098                 goto out;
1099         }
1100         /*
1101          * goal is a group relative block number (if there is a goal)
1102          * 0 < goal < EXT3_BLOCKS_PER_GROUP(sb)
1103          * first block is a filesystem wide block number
1104          * first block is the block number of the first block in this group
1105          */
1106         group_first_block = le32_to_cpu(EXT3_SB(sb)->s_es->s_first_data_block) +
1107                         group * EXT3_BLOCKS_PER_GROUP(sb);
1108
1109         /*
1110          * Basically we will allocate a new block from inode's reservation
1111          * window.
1112          *
1113          * We need to allocate a new reservation window, if:
1114          * a) inode does not have a reservation window; or
1115          * b) last attempt to allocate a block from existing reservation
1116          *    failed; or
1117          * c) we come here with a goal and with a reservation window
1118          *
1119          * We do not need to allocate a new reservation window if we come here
1120          * at the beginning with a goal and the goal is inside the window, or
1121          * we don't have a goal but already have a reservation window.
1122          * then we could go to allocate from the reservation window directly.
1123          */
1124         while (1) {
1125                 if (rsv_is_empty(&my_rsv->rsv_window) || (ret < 0) ||
1126                         !goal_in_my_reservation(&my_rsv->rsv_window, goal, group, sb)) {
1127                         if (my_rsv->rsv_goal_size < *count)
1128                                 my_rsv->rsv_goal_size = *count;
1129                         ret = alloc_new_reservation(my_rsv, goal, sb,
1130                                                         group, bitmap_bh);
1131                         if (ret < 0)
1132                                 break;                  /* failed */
1133
1134                         if (!goal_in_my_reservation(&my_rsv->rsv_window, goal, group, sb))
1135                                 goal = -1;
1136                 } else if (goal > 0 && (my_rsv->rsv_end-goal+1) < *count)
1137                         try_to_extend_reservation(my_rsv, sb,
1138                                         *count-my_rsv->rsv_end + goal - 1);
1139
1140                 if ((my_rsv->rsv_start >= group_first_block + EXT3_BLOCKS_PER_GROUP(sb))
1141                     || (my_rsv->rsv_end < group_first_block))
1142                         BUG();
1143                 ret = ext3_try_to_allocate(sb, handle, group, bitmap_bh, goal,
1144                                            &num, &my_rsv->rsv_window);
1145                 if (ret >= 0) {
1146                         my_rsv->rsv_alloc_hit += num;
1147                         *count = num;
1148                         break;                          /* succeed */
1149                 }
1150                 num = *count;
1151         }
1152 out:
1153         if (ret >= 0) {
1154                 BUFFER_TRACE(bitmap_bh, "journal_dirty_metadata for "
1155                                         "bitmap block");
1156                 fatal = ext3_journal_dirty_metadata(handle, bitmap_bh);
1157                 if (fatal) {
1158                         *errp = fatal;
1159                         return -1;
1160                 }
1161                 return ret;
1162         }
1163
1164         BUFFER_TRACE(bitmap_bh, "journal_release_buffer");
1165         ext3_journal_release_buffer(handle, bitmap_bh);
1166         return ret;
1167 }
1168
1169 static int ext3_has_free_blocks(struct super_block *sb)
1170 {
1171         struct ext3_sb_info *sbi = EXT3_SB(sb);
1172         int free_blocks, root_blocks, cond;
1173
1174         free_blocks = percpu_counter_read_positive(&sbi->s_freeblocks_counter);
1175         root_blocks = le32_to_cpu(sbi->s_es->s_r_blocks_count);
1176
1177         vxdprintk(VXD_CBIT(dlim, 3),
1178                 "ext3_has_free_blocks(%p): free=%u, root=%u",
1179                 sb, free_blocks, root_blocks);
1180
1181         DLIMIT_ADJUST_BLOCK(sb, vx_current_xid(), &free_blocks, &root_blocks);
1182
1183         cond = (free_blocks < root_blocks + 1 &&
1184                 !capable(CAP_SYS_RESOURCE) &&
1185                 sbi->s_resuid != current->fsuid &&
1186                 (sbi->s_resgid == 0 || !in_group_p (sbi->s_resgid)));
1187
1188         vxdprintk(VXD_CBIT(dlim, 3),
1189                 "ext3_has_free_blocks(%p): %u<%u+1, %c, %u!=%u r=%d",
1190                 sb, free_blocks, root_blocks,
1191                 !capable(CAP_SYS_RESOURCE)?'1':'0',
1192                 sbi->s_resuid, current->fsuid, cond?0:1);
1193
1194         return (cond ? 0 : 1);
1195 }
1196
1197 /*
1198  * ext3_should_retry_alloc() is called when ENOSPC is returned, and if
1199  * it is profitable to retry the operation, this function will wait
1200  * for the current or commiting transaction to complete, and then
1201  * return TRUE.
1202  */
1203 int ext3_should_retry_alloc(struct super_block *sb, int *retries)
1204 {
1205         if (!ext3_has_free_blocks(sb) || (*retries)++ > 3)
1206                 return 0;
1207
1208         jbd_debug(1, "%s: retrying operation after ENOSPC\n", sb->s_id);
1209
1210         return journal_force_commit_nested(EXT3_SB(sb)->s_journal);
1211 }
1212
1213 /*
1214  * ext3_new_block uses a goal block to assist allocation.  If the goal is
1215  * free, or there is a free block within 32 blocks of the goal, that block
1216  * is allocated.  Otherwise a forward search is made for a free block; within 
1217  * each block group the search first looks for an entire free byte in the block
1218  * bitmap, and then for any free bit if that fails.
1219  * This function also updates quota and i_blocks field.
1220  */
1221 int ext3_new_blocks(handle_t *handle, struct inode *inode,
1222                         unsigned long goal, unsigned long *count, int *errp)
1223 {
1224         struct buffer_head *bitmap_bh = NULL;
1225         struct buffer_head *gdp_bh;
1226         int group_no;
1227         int goal_group;
1228         int ret_block;
1229         int bgi;                        /* blockgroup iteration index */
1230         int target_block;
1231         int fatal = 0, err;
1232         int performed_allocation = 0;
1233         int free_blocks;
1234         struct super_block *sb;
1235         struct ext3_group_desc *gdp;
1236         struct ext3_super_block *es;
1237         struct ext3_sb_info *sbi;
1238         struct ext3_reserve_window_node *my_rsv = NULL;
1239         struct ext3_block_alloc_info *block_i;
1240         unsigned short windowsz = 0;
1241 #ifdef EXT3FS_DEBUG
1242         static int goal_hits, goal_attempts;
1243 #endif
1244         unsigned long ngroups;
1245         unsigned long num = *count;
1246
1247         *errp = -ENOSPC;
1248         sb = inode->i_sb;
1249         if (!sb) {
1250                 printk("ext3_new_block: nonexistent device");
1251                 return 0;
1252         }
1253
1254         /*
1255          * Check quota for allocation of this block.
1256          */
1257         if (DQUOT_ALLOC_BLOCK(inode, num)) {
1258                 *errp = -EDQUOT;
1259                 return 0;
1260         }
1261         if (DLIMIT_ALLOC_BLOCK(inode, 1))
1262             goto out_dlimit;
1263
1264         sbi = EXT3_SB(sb);
1265         es = EXT3_SB(sb)->s_es;
1266         ext3_debug("goal=%lu.\n", goal);
1267         /*
1268          * Allocate a block from reservation only when
1269          * filesystem is mounted with reservation(default,-o reservation), and
1270          * it's a regular file, and
1271          * the desired window size is greater than 0 (One could use ioctl
1272          * command EXT3_IOC_SETRSVSZ to set the window size to 0 to turn off
1273          * reservation on that particular file)
1274          */
1275         block_i = EXT3_I(inode)->i_block_alloc_info;
1276         if (block_i && ((windowsz = block_i->rsv_window_node.rsv_goal_size) > 0))
1277                 my_rsv = &block_i->rsv_window_node;
1278
1279         if (!ext3_has_free_blocks(sb)) {
1280                 *errp = -ENOSPC;
1281                 goto out;
1282         }
1283
1284         /*
1285          * First, test whether the goal block is free.
1286          */
1287         if (goal < le32_to_cpu(es->s_first_data_block) ||
1288             goal >= le32_to_cpu(es->s_blocks_count))
1289                 goal = le32_to_cpu(es->s_first_data_block);
1290         group_no = (goal - le32_to_cpu(es->s_first_data_block)) /
1291                         EXT3_BLOCKS_PER_GROUP(sb);
1292         gdp = ext3_get_group_desc(sb, group_no, &gdp_bh);
1293         if (!gdp)
1294                 goto io_error;
1295
1296         goal_group = group_no;
1297 retry:
1298         free_blocks = le16_to_cpu(gdp->bg_free_blocks_count);
1299         /*
1300          * if there is not enough free blocks to make a new resevation
1301          * turn off reservation for this allocation
1302          */
1303         if (my_rsv && (free_blocks < windowsz)
1304                 && (rsv_is_empty(&my_rsv->rsv_window)))
1305                 my_rsv = NULL;
1306
1307         if (free_blocks > 0) {
1308                 ret_block = ((goal - le32_to_cpu(es->s_first_data_block)) %
1309                                 EXT3_BLOCKS_PER_GROUP(sb));
1310                 bitmap_bh = read_block_bitmap(sb, group_no);
1311                 if (!bitmap_bh)
1312                         goto io_error;
1313                 ret_block = ext3_try_to_allocate_with_rsv(sb, handle, group_no,
1314                                         bitmap_bh, ret_block, my_rsv, &num, &fatal);
1315                 if (fatal)
1316                         goto out;
1317                 if (ret_block >= 0)
1318                         goto allocated;
1319         }
1320
1321         ngroups = EXT3_SB(sb)->s_groups_count;
1322         smp_rmb();
1323
1324         /*
1325          * Now search the rest of the groups.  We assume that 
1326          * i and gdp correctly point to the last group visited.
1327          */
1328         for (bgi = 0; bgi < ngroups; bgi++) {
1329                 group_no++;
1330                 if (group_no >= ngroups)
1331                         group_no = 0;
1332                 gdp = ext3_get_group_desc(sb, group_no, &gdp_bh);
1333                 if (!gdp) {
1334                         *errp = -EIO;
1335                         goto out;
1336                 }
1337                 free_blocks = le16_to_cpu(gdp->bg_free_blocks_count);
1338                 /*
1339                  * skip this group if the number of
1340                  * free blocks is less than half of the reservation
1341                  * window size.
1342                  */
1343                 if (free_blocks <= (windowsz/2))
1344                         continue;
1345
1346                 brelse(bitmap_bh);
1347                 bitmap_bh = read_block_bitmap(sb, group_no);
1348                 if (!bitmap_bh)
1349                         goto io_error;
1350                 ret_block = ext3_try_to_allocate_with_rsv(sb, handle, group_no,
1351                                         bitmap_bh, -1, my_rsv, &num, &fatal);
1352                 if (fatal)
1353                         goto out;
1354                 if (ret_block >= 0) 
1355                         goto allocated;
1356         }
1357         /*
1358          * We may end up a bogus ealier ENOSPC error due to
1359          * filesystem is "full" of reservations, but
1360          * there maybe indeed free blocks avaliable on disk
1361          * In this case, we just forget about the reservations
1362          * just do block allocation as without reservations.
1363          */
1364         if (my_rsv) {
1365                 my_rsv = NULL;
1366                 group_no = goal_group;
1367                 goto retry;
1368         }
1369         /* No space left on the device */
1370         *errp = -ENOSPC;
1371         goto out;
1372
1373 allocated:
1374
1375         ext3_debug("using block group %d(%d)\n",
1376                         group_no, gdp->bg_free_blocks_count);
1377
1378         BUFFER_TRACE(gdp_bh, "get_write_access");
1379         fatal = ext3_journal_get_write_access(handle, gdp_bh);
1380         if (fatal)
1381                 goto out;
1382
1383         target_block = ret_block + group_no * EXT3_BLOCKS_PER_GROUP(sb)
1384                                 + le32_to_cpu(es->s_first_data_block);
1385
1386         if (in_range(le32_to_cpu(gdp->bg_block_bitmap), target_block, num) ||
1387             in_range(le32_to_cpu(gdp->bg_inode_bitmap), target_block, num) ||
1388             in_range(target_block, le32_to_cpu(gdp->bg_inode_table),
1389                       EXT3_SB(sb)->s_itb_per_group) ||
1390             in_range(target_block + num - 1, le32_to_cpu(gdp->bg_inode_table),
1391                       EXT3_SB(sb)->s_itb_per_group))
1392                 ext3_error(sb, "ext3_new_block",
1393                             "Allocating block in system zone - "
1394                             "blocks from %u, length %lu", target_block, num);
1395
1396         performed_allocation = 1;
1397
1398 #ifdef CONFIG_JBD_DEBUG
1399         {
1400                 struct buffer_head *debug_bh;
1401
1402                 /* Record bitmap buffer state in the newly allocated block */
1403                 debug_bh = sb_find_get_block(sb, target_block);
1404                 if (debug_bh) {
1405                         BUFFER_TRACE(debug_bh, "state when allocated");
1406                         BUFFER_TRACE2(debug_bh, bitmap_bh, "bitmap state");
1407                         brelse(debug_bh);
1408                 }
1409         }
1410         jbd_lock_bh_state(bitmap_bh);
1411         spin_lock(sb_bgl_lock(sbi, group_no));
1412         if (buffer_jbd(bitmap_bh) && bh2jh(bitmap_bh)->b_committed_data) {
1413                 int i;
1414
1415                 for (i = 0; i < num; i++) {
1416                         if (ext3_test_bit(ret_block,
1417                                         bh2jh(bitmap_bh)->b_committed_data)) {
1418                                 printk("%s: block was unexpectedly set in "
1419                                         "b_committed_data\n", __FUNCTION__);
1420                         }
1421                 }
1422         }
1423         ext3_debug("found bit %d\n", ret_block);
1424         spin_unlock(sb_bgl_lock(sbi, group_no));
1425         jbd_unlock_bh_state(bitmap_bh);
1426 #endif
1427
1428         /* ret_block was blockgroup-relative.  Now it becomes fs-relative */
1429         ret_block = target_block;
1430
1431         if (ret_block + num - 1 >= le32_to_cpu(es->s_blocks_count)) {
1432                 ext3_error(sb, "ext3_new_block",
1433                             "block(%d) >= blocks count(%d) - "
1434                             "block_group = %d, es == %p ", ret_block,
1435                         le32_to_cpu(es->s_blocks_count), group_no, es);
1436                 goto out;
1437         }
1438
1439         /*
1440          * It is up to the caller to add the new buffer to a journal
1441          * list of some description.  We don't know in advance whether
1442          * the caller wants to use it as metadata or data.
1443          */
1444         ext3_debug("allocating block %d. Goal hits %d of %d.\n",
1445                         ret_block, goal_hits, goal_attempts);
1446
1447         spin_lock(sb_bgl_lock(sbi, group_no));
1448         gdp->bg_free_blocks_count =
1449                         cpu_to_le16(le16_to_cpu(gdp->bg_free_blocks_count) - num);
1450         spin_unlock(sb_bgl_lock(sbi, group_no));
1451         percpu_counter_mod(&sbi->s_freeblocks_counter, -num);
1452
1453         BUFFER_TRACE(gdp_bh, "journal_dirty_metadata for group descriptor");
1454         err = ext3_journal_dirty_metadata(handle, gdp_bh);
1455         if (!fatal)
1456                 fatal = err;
1457
1458         sb->s_dirt = 1;
1459         if (fatal)
1460                 goto out;
1461
1462         *errp = 0;
1463         brelse(bitmap_bh);
1464         DQUOT_FREE_BLOCK(inode, *count-num);
1465         *count = num;
1466         return ret_block;
1467
1468 io_error:
1469         *errp = -EIO;
1470 out:
1471         if (!performed_allocation)
1472                 DLIMIT_FREE_BLOCK(inode, 1);
1473 out_dlimit:
1474         if (fatal) {
1475                 *errp = fatal;
1476                 ext3_std_error(sb, fatal);
1477         }
1478         /*
1479          * Undo the block allocation
1480          */
1481         if (!performed_allocation)
1482                 DQUOT_FREE_BLOCK(inode, *count);
1483         brelse(bitmap_bh);
1484         return 0;
1485 }
1486
1487 int ext3_new_block(handle_t *handle, struct inode *inode,
1488                         unsigned long goal, int *errp)
1489 {
1490         unsigned long count = 1;
1491
1492         return ext3_new_blocks(handle, inode, goal, &count, errp);
1493 }
1494
1495 unsigned long ext3_count_free_blocks(struct super_block *sb)
1496 {
1497         unsigned long desc_count;
1498         struct ext3_group_desc *gdp;
1499         int i;
1500         unsigned long ngroups = EXT3_SB(sb)->s_groups_count;
1501 #ifdef EXT3FS_DEBUG
1502         struct ext3_super_block *es;
1503         unsigned long bitmap_count, x;
1504         struct buffer_head *bitmap_bh = NULL;
1505
1506         es = EXT3_SB(sb)->s_es;
1507         desc_count = 0;
1508         bitmap_count = 0;
1509         gdp = NULL;
1510
1511         smp_rmb();
1512         for (i = 0; i < ngroups; i++) {
1513                 gdp = ext3_get_group_desc(sb, i, NULL);
1514                 if (!gdp)
1515                         continue;
1516                 desc_count += le16_to_cpu(gdp->bg_free_blocks_count);
1517                 brelse(bitmap_bh);
1518                 bitmap_bh = read_block_bitmap(sb, i);
1519                 if (bitmap_bh == NULL)
1520                         continue;
1521
1522                 x = ext3_count_free(bitmap_bh, sb->s_blocksize);
1523                 printk("group %d: stored = %d, counted = %lu\n",
1524                         i, le16_to_cpu(gdp->bg_free_blocks_count), x);
1525                 bitmap_count += x;
1526         }
1527         brelse(bitmap_bh);
1528         printk("ext3_count_free_blocks: stored = %u, computed = %lu, %lu\n",
1529                le32_to_cpu(es->s_free_blocks_count), desc_count, bitmap_count);
1530         return bitmap_count;
1531 #else
1532         desc_count = 0;
1533         smp_rmb();
1534         for (i = 0; i < ngroups; i++) {
1535                 gdp = ext3_get_group_desc(sb, i, NULL);
1536                 if (!gdp)
1537                         continue;
1538                 desc_count += le16_to_cpu(gdp->bg_free_blocks_count);
1539         }
1540
1541         return desc_count;
1542 #endif
1543 }
1544
1545 static inline int
1546 block_in_use(unsigned long block, struct super_block *sb, unsigned char *map)
1547 {
1548         return ext3_test_bit ((block -
1549                 le32_to_cpu(EXT3_SB(sb)->s_es->s_first_data_block)) %
1550                          EXT3_BLOCKS_PER_GROUP(sb), map);
1551 }
1552
1553 static inline int test_root(int a, int b)
1554 {
1555         int num = b;
1556
1557         while (a > num)
1558                 num *= b;
1559         return num == a;
1560 }
1561
1562 static int ext3_group_sparse(int group)
1563 {
1564         if (group <= 1)
1565                 return 1;
1566         if (!(group & 1))
1567                 return 0;
1568         return (test_root(group, 7) || test_root(group, 5) ||
1569                 test_root(group, 3));
1570 }
1571
1572 /**
1573  *      ext3_bg_has_super - number of blocks used by the superblock in group
1574  *      @sb: superblock for filesystem
1575  *      @group: group number to check
1576  *
1577  *      Return the number of blocks used by the superblock (primary or backup)
1578  *      in this group.  Currently this will be only 0 or 1.
1579  */
1580 int ext3_bg_has_super(struct super_block *sb, int group)
1581 {
1582         if (EXT3_HAS_RO_COMPAT_FEATURE(sb,
1583                                 EXT3_FEATURE_RO_COMPAT_SPARSE_SUPER) &&
1584                         !ext3_group_sparse(group))
1585                 return 0;
1586         return 1;
1587 }
1588
1589 static unsigned long ext3_bg_num_gdb_meta(struct super_block *sb, int group)
1590 {
1591         unsigned long metagroup = group / EXT3_DESC_PER_BLOCK(sb);
1592         unsigned long first = metagroup * EXT3_DESC_PER_BLOCK(sb);
1593         unsigned long last = first + EXT3_DESC_PER_BLOCK(sb) - 1;
1594
1595         if (group == first || group == first + 1 || group == last)
1596                 return 1;
1597         return 0;
1598 }
1599
1600 static unsigned long ext3_bg_num_gdb_nometa(struct super_block *sb, int group)
1601 {
1602         if (EXT3_HAS_RO_COMPAT_FEATURE(sb,
1603                                 EXT3_FEATURE_RO_COMPAT_SPARSE_SUPER) &&
1604                         !ext3_group_sparse(group))
1605                 return 0;
1606         return EXT3_SB(sb)->s_gdb_count;
1607 }
1608
1609 /**
1610  *      ext3_bg_num_gdb - number of blocks used by the group table in group
1611  *      @sb: superblock for filesystem
1612  *      @group: group number to check
1613  *
1614  *      Return the number of blocks used by the group descriptor table
1615  *      (primary or backup) in this group.  In the future there may be a
1616  *      different number of descriptor blocks in each group.
1617  */
1618 unsigned long ext3_bg_num_gdb(struct super_block *sb, int group)
1619 {
1620         unsigned long first_meta_bg =
1621                         le32_to_cpu(EXT3_SB(sb)->s_es->s_first_meta_bg);
1622         unsigned long metagroup = group / EXT3_DESC_PER_BLOCK(sb);
1623
1624         if (!EXT3_HAS_INCOMPAT_FEATURE(sb,EXT3_FEATURE_INCOMPAT_META_BG) ||
1625                         metagroup < first_meta_bg)
1626                 return ext3_bg_num_gdb_nometa(sb,group);
1627
1628         return ext3_bg_num_gdb_meta(sb,group);
1629
1630 }