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