ac238b2fa56aa93a232d383b88bd39924217cb28
[linux-2.6.git] / fs / ext3 / ialloc.c
1 /*
2  *  linux/fs/ext3/ialloc.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  *  BSD ufs-inspired inode and directory allocation by
10  *  Stephen Tweedie (sct@redhat.com), 1993
11  *  Big-endian to little-endian byte-swapping/bitmaps by
12  *        David S. Miller (davem@caip.rutgers.edu), 1995
13  */
14
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/stat.h>
21 #include <linux/string.h>
22 #include <linux/quotaops.h>
23 #include <linux/buffer_head.h>
24 #include <linux/random.h>
25
26 #include <asm/bitops.h>
27 #include <asm/byteorder.h>
28
29 #include "xattr.h"
30 #include "acl.h"
31
32 /*
33  * ialloc.c contains the inodes allocation and deallocation routines
34  */
35
36 /*
37  * The free inodes are managed by bitmaps.  A file system contains several
38  * blocks groups.  Each group contains 1 bitmap block for blocks, 1 bitmap
39  * block for inodes, N blocks for the inode table and data blocks.
40  *
41  * The file system contains group descriptors which are located after the
42  * super block.  Each descriptor contains the number of the bitmap block and
43  * the free blocks count in the block.
44  */
45
46
47 /*
48  * Read the inode allocation bitmap for a given block_group, reading
49  * into the specified slot in the superblock's bitmap cache.
50  *
51  * Return buffer_head of bitmap on success or NULL.
52  */
53 static struct buffer_head *
54 read_inode_bitmap(struct super_block * sb, unsigned long block_group)
55 {
56         struct ext3_group_desc *desc;
57         struct buffer_head *bh = NULL;
58
59         desc = ext3_get_group_desc(sb, block_group, NULL);
60         if (!desc)
61                 goto error_out;
62
63         bh = sb_bread(sb, le32_to_cpu(desc->bg_inode_bitmap));
64         if (!bh)
65                 ext3_error(sb, "read_inode_bitmap",
66                             "Cannot read inode bitmap - "
67                             "block_group = %lu, inode_bitmap = %lu",
68                             block_group, (unsigned long) desc->bg_inode_bitmap);
69 error_out:
70         return bh;
71 }
72
73 /*
74  * NOTE! When we get the inode, we're the only people
75  * that have access to it, and as such there are no
76  * race conditions we have to worry about. The inode
77  * is not on the hash-lists, and it cannot be reached
78  * through the filesystem because the directory entry
79  * has been deleted earlier.
80  *
81  * HOWEVER: we must make sure that we get no aliases,
82  * which means that we have to call "clear_inode()"
83  * _before_ we mark the inode not in use in the inode
84  * bitmaps. Otherwise a newly created file might use
85  * the same inode number (not actually the same pointer
86  * though), and then we'd have two inodes sharing the
87  * same inode number and space on the harddisk.
88  */
89 void ext3_free_inode (handle_t *handle, struct inode * inode)
90 {
91         struct super_block * sb = inode->i_sb;
92         int is_directory;
93         unsigned long ino;
94         struct buffer_head *bitmap_bh = NULL;
95         struct buffer_head *bh2;
96         unsigned long block_group;
97         unsigned long bit;
98         struct ext3_group_desc * gdp;
99         struct ext3_super_block * es;
100         struct ext3_sb_info *sbi = EXT3_SB(sb);
101         int fatal = 0, err;
102
103         if (atomic_read(&inode->i_count) > 1) {
104                 printk ("ext3_free_inode: inode has count=%d\n",
105                                         atomic_read(&inode->i_count));
106                 return;
107         }
108         if (inode->i_nlink) {
109                 printk ("ext3_free_inode: inode has nlink=%d\n",
110                         inode->i_nlink);
111                 return;
112         }
113         if (!sb) {
114                 printk("ext3_free_inode: inode on nonexistent device\n");
115                 return;
116         }
117
118         ino = inode->i_ino;
119         ext3_debug ("freeing inode %lu\n", ino);
120
121         /*
122          * Note: we must free any quota before locking the superblock,
123          * as writing the quota to disk may need the lock as well.
124          */
125         DQUOT_INIT(inode);
126         ext3_xattr_delete_inode(handle, inode);
127         DQUOT_FREE_INODE(inode);
128         DQUOT_DROP(inode);
129
130         is_directory = S_ISDIR(inode->i_mode);
131
132         /* Do this BEFORE marking the inode not in use or returning an error */
133         clear_inode (inode);
134
135         es = EXT3_SB(sb)->s_es;
136         if (ino < EXT3_FIRST_INO(sb) || ino > le32_to_cpu(es->s_inodes_count)) {
137                 ext3_error (sb, "ext3_free_inode",
138                             "reserved or nonexistent inode %lu", ino);
139                 goto error_return;
140         }
141         block_group = (ino - 1) / EXT3_INODES_PER_GROUP(sb);
142         bit = (ino - 1) % EXT3_INODES_PER_GROUP(sb);
143         bitmap_bh = read_inode_bitmap(sb, block_group);
144         if (!bitmap_bh)
145                 goto error_return;
146
147         BUFFER_TRACE(bitmap_bh, "get_write_access");
148         fatal = ext3_journal_get_write_access(handle, bitmap_bh);
149         if (fatal)
150                 goto error_return;
151
152         /* Ok, now we can actually update the inode bitmaps.. */
153         if (!ext3_clear_bit_atomic(sb_bgl_lock(sbi, block_group),
154                                         bit, bitmap_bh->b_data))
155                 ext3_error (sb, "ext3_free_inode",
156                               "bit already cleared for inode %lu", ino);
157         else {
158                 gdp = ext3_get_group_desc (sb, block_group, &bh2);
159
160                 BUFFER_TRACE(bh2, "get_write_access");
161                 fatal = ext3_journal_get_write_access(handle, bh2);
162                 if (fatal) goto error_return;
163
164                 if (gdp) {
165                         spin_lock(sb_bgl_lock(sbi, block_group));
166                         gdp->bg_free_inodes_count = cpu_to_le16(
167                                 le16_to_cpu(gdp->bg_free_inodes_count) + 1);
168                         if (is_directory)
169                                 gdp->bg_used_dirs_count = cpu_to_le16(
170                                   le16_to_cpu(gdp->bg_used_dirs_count) - 1);
171                         spin_unlock(sb_bgl_lock(sbi, block_group));
172                         percpu_counter_inc(&sbi->s_freeinodes_counter);
173                         if (is_directory)
174                                 percpu_counter_dec(&sbi->s_dirs_counter);
175
176                 }
177                 BUFFER_TRACE(bh2, "call ext3_journal_dirty_metadata");
178                 err = ext3_journal_dirty_metadata(handle, bh2);
179                 if (!fatal) fatal = err;
180         }
181         BUFFER_TRACE(bitmap_bh, "call ext3_journal_dirty_metadata");
182         err = ext3_journal_dirty_metadata(handle, bitmap_bh);
183         if (!fatal)
184                 fatal = err;
185         sb->s_dirt = 1;
186 error_return:
187         brelse(bitmap_bh);
188         ext3_std_error(sb, fatal);
189 }
190
191 /*
192  * There are two policies for allocating an inode.  If the new inode is
193  * a directory, then a forward search is made for a block group with both
194  * free space and a low directory-to-inode ratio; if that fails, then of
195  * the groups with above-average free space, that group with the fewest
196  * directories already is chosen.
197  *
198  * For other inodes, search forward from the parent directory\'s block
199  * group to find a free inode.
200  */
201 static int find_group_dir(struct super_block *sb, struct inode *parent)
202 {
203         int ngroups = EXT3_SB(sb)->s_groups_count;
204         int freei, avefreei;
205         struct ext3_group_desc *desc, *best_desc = NULL;
206         struct buffer_head *bh;
207         int group, best_group = -1;
208
209         freei = percpu_counter_read_positive(&EXT3_SB(sb)->s_freeinodes_counter);
210         avefreei = freei / ngroups;
211
212         for (group = 0; group < ngroups; group++) {
213                 desc = ext3_get_group_desc (sb, group, &bh);
214                 if (!desc || !desc->bg_free_inodes_count)
215                         continue;
216                 if (le16_to_cpu(desc->bg_free_inodes_count) < avefreei)
217                         continue;
218                 if (!best_desc || 
219                     (le16_to_cpu(desc->bg_free_blocks_count) >
220                      le16_to_cpu(best_desc->bg_free_blocks_count))) {
221                         best_group = group;
222                         best_desc = desc;
223                 }
224         }
225         return best_group;
226 }
227
228 /* 
229  * Orlov's allocator for directories. 
230  * 
231  * We always try to spread first-level directories.
232  *
233  * If there are blockgroups with both free inodes and free blocks counts 
234  * not worse than average we return one with smallest directory count. 
235  * Otherwise we simply return a random group. 
236  * 
237  * For the rest rules look so: 
238  * 
239  * It's OK to put directory into a group unless 
240  * it has too many directories already (max_dirs) or 
241  * it has too few free inodes left (min_inodes) or 
242  * it has too few free blocks left (min_blocks) or 
243  * it's already running too large debt (max_debt). 
244  * Parent's group is prefered, if it doesn't satisfy these 
245  * conditions we search cyclically through the rest. If none 
246  * of the groups look good we just look for a group with more 
247  * free inodes than average (starting at parent's group). 
248  * 
249  * Debt is incremented each time we allocate a directory and decremented 
250  * when we allocate an inode, within 0--255. 
251  */ 
252
253 #define INODE_COST 64
254 #define BLOCK_COST 256
255
256 static int find_group_orlov(struct super_block *sb, struct inode *parent)
257 {
258         int parent_group = EXT3_I(parent)->i_block_group;
259         struct ext3_sb_info *sbi = EXT3_SB(sb);
260         struct ext3_super_block *es = sbi->s_es;
261         int ngroups = sbi->s_groups_count;
262         int inodes_per_group = EXT3_INODES_PER_GROUP(sb);
263         int freei, avefreei;
264         int freeb, avefreeb;
265         int blocks_per_dir, ndirs;
266         int max_debt, max_dirs, min_blocks, min_inodes;
267         int group = -1, i;
268         struct ext3_group_desc *desc;
269         struct buffer_head *bh;
270
271         freei = percpu_counter_read_positive(&sbi->s_freeinodes_counter);
272         avefreei = freei / ngroups;
273         freeb = percpu_counter_read_positive(&sbi->s_freeblocks_counter);
274         avefreeb = freeb / ngroups;
275         ndirs = percpu_counter_read_positive(&sbi->s_dirs_counter);
276
277         if ((parent == sb->s_root->d_inode) ||
278             (EXT3_I(parent)->i_flags & EXT3_TOPDIR_FL)) {
279                 int best_ndir = inodes_per_group;
280                 int best_group = -1;
281
282                 get_random_bytes(&group, sizeof(group));
283                 parent_group = (unsigned)group % ngroups;
284                 for (i = 0; i < ngroups; i++) {
285                         group = (parent_group + i) % ngroups;
286                         desc = ext3_get_group_desc (sb, group, &bh);
287                         if (!desc || !desc->bg_free_inodes_count)
288                                 continue;
289                         if (le16_to_cpu(desc->bg_used_dirs_count) >= best_ndir)
290                                 continue;
291                         if (le16_to_cpu(desc->bg_free_inodes_count) < avefreei)
292                                 continue;
293                         if (le16_to_cpu(desc->bg_free_blocks_count) < avefreeb)
294                                 continue;
295                         best_group = group;
296                         best_ndir = le16_to_cpu(desc->bg_used_dirs_count);
297                 }
298                 if (best_group >= 0)
299                         return best_group;
300                 goto fallback;
301         }
302
303         blocks_per_dir = (le32_to_cpu(es->s_blocks_count) - freeb) / ndirs;
304
305         max_dirs = ndirs / ngroups + inodes_per_group / 16;
306         min_inodes = avefreei - inodes_per_group / 4;
307         min_blocks = avefreeb - EXT3_BLOCKS_PER_GROUP(sb) / 4;
308
309         max_debt = EXT3_BLOCKS_PER_GROUP(sb) / max(blocks_per_dir, BLOCK_COST);
310         if (max_debt * INODE_COST > inodes_per_group)
311                 max_debt = inodes_per_group / INODE_COST;
312         if (max_debt > 255)
313                 max_debt = 255;
314         if (max_debt == 0)
315                 max_debt = 1;
316
317         for (i = 0; i < ngroups; i++) {
318                 group = (parent_group + i) % ngroups;
319                 desc = ext3_get_group_desc (sb, group, &bh);
320                 if (!desc || !desc->bg_free_inodes_count)
321                         continue;
322                 if (sbi->s_debts[group] >= max_debt)
323                         continue;
324                 if (le16_to_cpu(desc->bg_used_dirs_count) >= max_dirs)
325                         continue;
326                 if (le16_to_cpu(desc->bg_free_inodes_count) < min_inodes)
327                         continue;
328                 if (le16_to_cpu(desc->bg_free_blocks_count) < min_blocks)
329                         continue;
330                 return group;
331         }
332
333 fallback:
334         for (i = 0; i < ngroups; i++) {
335                 group = (parent_group + i) % ngroups;
336                 desc = ext3_get_group_desc (sb, group, &bh);
337                 if (!desc || !desc->bg_free_inodes_count)
338                         continue;
339                 if (le16_to_cpu(desc->bg_free_inodes_count) >= avefreei)
340                         return group;
341         }
342
343         if (avefreei) {
344                 /*
345                  * The free-inodes counter is approximate, and for really small
346                  * filesystems the above test can fail to find any blockgroups
347                  */
348                 avefreei = 0;
349                 goto fallback;
350         }
351
352         return -1;
353 }
354
355 static int find_group_other(struct super_block *sb, struct inode *parent)
356 {
357         int parent_group = EXT3_I(parent)->i_block_group;
358         int ngroups = EXT3_SB(sb)->s_groups_count;
359         struct ext3_group_desc *desc;
360         struct buffer_head *bh;
361         int group, i;
362
363         /*
364          * Try to place the inode in its parent directory
365          */
366         group = parent_group;
367         desc = ext3_get_group_desc (sb, group, &bh);
368         if (desc && le16_to_cpu(desc->bg_free_inodes_count) &&
369                         le16_to_cpu(desc->bg_free_blocks_count))
370                 return group;
371
372         /*
373          * We're going to place this inode in a different blockgroup from its
374          * parent.  We want to cause files in a common directory to all land in
375          * the same blockgroup.  But we want files which are in a different
376          * directory which shares a blockgroup with our parent to land in a
377          * different blockgroup.
378          *
379          * So add our directory's i_ino into the starting point for the hash.
380          */
381         group = (group + parent->i_ino) % ngroups;
382
383         /*
384          * Use a quadratic hash to find a group with a free inode and some free
385          * blocks.
386          */
387         for (i = 1; i < ngroups; i <<= 1) {
388                 group += i;
389                 if (group >= ngroups)
390                         group -= ngroups;
391                 desc = ext3_get_group_desc (sb, group, &bh);
392                 if (desc && le16_to_cpu(desc->bg_free_inodes_count) &&
393                                 le16_to_cpu(desc->bg_free_blocks_count))
394                         return group;
395         }
396
397         /*
398          * That failed: try linear search for a free inode, even if that group
399          * has no free blocks.
400          */
401         group = parent_group;
402         for (i = 0; i < ngroups; i++) {
403                 if (++group >= ngroups)
404                         group = 0;
405                 desc = ext3_get_group_desc (sb, group, &bh);
406                 if (desc && le16_to_cpu(desc->bg_free_inodes_count))
407                         return group;
408         }
409
410         return -1;
411 }
412
413 /*
414  * There are two policies for allocating an inode.  If the new inode is
415  * a directory, then a forward search is made for a block group with both
416  * free space and a low directory-to-inode ratio; if that fails, then of
417  * the groups with above-average free space, that group with the fewest
418  * directories already is chosen.
419  *
420  * For other inodes, search forward from the parent directory's block
421  * group to find a free inode.
422  */
423 struct inode *ext3_new_inode(handle_t *handle, struct inode * dir, int mode)
424 {
425         struct super_block *sb;
426         struct buffer_head *bitmap_bh = NULL;
427         struct buffer_head *bh2;
428         int group;
429         unsigned long ino = 0;
430         struct inode * inode;
431         struct ext3_group_desc * gdp = NULL;
432         struct ext3_super_block * es;
433         struct ext3_inode_info *ei;
434         struct ext3_sb_info *sbi;
435         int err = 0;
436         struct inode *ret;
437         int i;
438
439         /* Cannot create files in a deleted directory */
440         if (!dir || !dir->i_nlink)
441                 return ERR_PTR(-EPERM);
442
443         sb = dir->i_sb;
444         inode = new_inode(sb);
445         if (!inode)
446                 return ERR_PTR(-ENOMEM);
447         ei = EXT3_I(inode);
448
449         sbi = EXT3_SB(sb);
450         es = sbi->s_es;
451         if (S_ISDIR(mode)) {
452                 if (test_opt (sb, OLDALLOC))
453                         group = find_group_dir(sb, dir);
454                 else
455                         group = find_group_orlov(sb, dir);
456         } else 
457                 group = find_group_other(sb, dir);
458
459         err = -ENOSPC;
460         if (group == -1)
461                 goto out;
462
463         for (i = 0; i < sbi->s_groups_count; i++) {
464                 gdp = ext3_get_group_desc(sb, group, &bh2);
465
466                 err = -EIO;
467                 brelse(bitmap_bh);
468                 bitmap_bh = read_inode_bitmap(sb, group);
469                 if (!bitmap_bh)
470                         goto fail;
471
472                 ino = 0;
473
474 repeat_in_this_group:
475                 ino = ext3_find_next_zero_bit((unsigned long *)
476                                 bitmap_bh->b_data, EXT3_INODES_PER_GROUP(sb), ino);
477                 if (ino < EXT3_INODES_PER_GROUP(sb)) {
478                         int credits = 0;
479
480                         BUFFER_TRACE(bitmap_bh, "get_write_access");
481                         err = ext3_journal_get_write_access_credits(handle,
482                                                         bitmap_bh, &credits);
483                         if (err)
484                                 goto fail;
485
486                         if (!ext3_set_bit_atomic(sb_bgl_lock(sbi, group),
487                                                 ino, bitmap_bh->b_data)) {
488                                 /* we won it */
489                                 BUFFER_TRACE(bitmap_bh,
490                                         "call ext3_journal_dirty_metadata");
491                                 err = ext3_journal_dirty_metadata(handle,
492                                                                 bitmap_bh);
493                                 if (err)
494                                         goto fail;
495                                 goto got;
496                         }
497                         /* we lost it */
498                         journal_release_buffer(handle, bitmap_bh, credits);
499
500                         if (++ino < EXT3_INODES_PER_GROUP(sb))
501                                 goto repeat_in_this_group;
502                 }
503
504                 /*
505                  * This case is possible in concurrent environment.  It is very
506                  * rare.  We cannot repeat the find_group_xxx() call because
507                  * that will simply return the same blockgroup, because the
508                  * group descriptor metadata has not yet been updated.
509                  * So we just go onto the next blockgroup.
510                  */
511                 if (++group == sbi->s_groups_count)
512                         group = 0;
513         }
514         err = -ENOSPC;
515         goto out;
516
517 got:
518         ino += group * EXT3_INODES_PER_GROUP(sb) + 1;
519         if (ino < EXT3_FIRST_INO(sb) || ino > le32_to_cpu(es->s_inodes_count)) {
520                 ext3_error (sb, "ext3_new_inode",
521                             "reserved inode or inode > inodes count - "
522                             "block_group = %d, inode=%lu", group, ino);
523                 err = -EIO;
524                 goto fail;
525         }
526
527         BUFFER_TRACE(bh2, "get_write_access");
528         err = ext3_journal_get_write_access(handle, bh2);
529         if (err) goto fail;
530         spin_lock(sb_bgl_lock(sbi, group));
531         gdp->bg_free_inodes_count =
532                 cpu_to_le16(le16_to_cpu(gdp->bg_free_inodes_count) - 1);
533         if (S_ISDIR(mode)) {
534                 gdp->bg_used_dirs_count =
535                         cpu_to_le16(le16_to_cpu(gdp->bg_used_dirs_count) + 1);
536         }
537         spin_unlock(sb_bgl_lock(sbi, group));
538         BUFFER_TRACE(bh2, "call ext3_journal_dirty_metadata");
539         err = ext3_journal_dirty_metadata(handle, bh2);
540         if (err) goto fail;
541
542         percpu_counter_dec(&sbi->s_freeinodes_counter);
543         if (S_ISDIR(mode))
544                 percpu_counter_inc(&sbi->s_dirs_counter);
545         sb->s_dirt = 1;
546
547         inode->i_uid = current->fsuid;
548         if (test_opt (sb, GRPID))
549                 inode->i_gid = dir->i_gid;
550         else if (dir->i_mode & S_ISGID) {
551                 inode->i_gid = dir->i_gid;
552                 if (S_ISDIR(mode))
553                         mode |= S_ISGID;
554         } else
555                 inode->i_gid = current->fsgid;
556         inode->i_mode = mode;
557
558         inode->i_ino = ino;
559         /* This is the optimal IO size (for stat), not the fs block size */
560         inode->i_blksize = PAGE_SIZE;
561         inode->i_blocks = 0;
562         inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
563
564         memset(ei->i_data, 0, sizeof(ei->i_data));
565         ei->i_next_alloc_block = 0;
566         ei->i_next_alloc_goal = 0;
567         ei->i_dir_start_lookup = 0;
568         ei->i_disksize = 0;
569
570         ei->i_flags = EXT3_I(dir)->i_flags & ~EXT3_INDEX_FL;
571         if (S_ISLNK(mode))
572                 ei->i_flags &= ~(EXT3_IMMUTABLE_FL|EXT3_APPEND_FL);
573         /* dirsync only applies to directories */
574         if (!S_ISDIR(mode))
575                 ei->i_flags &= ~EXT3_DIRSYNC_FL;
576 #ifdef EXT3_FRAGMENTS
577         ei->i_faddr = 0;
578         ei->i_frag_no = 0;
579         ei->i_frag_size = 0;
580 #endif
581         ei->i_file_acl = 0;
582         ei->i_dir_acl = 0;
583         ei->i_dtime = 0;
584 #ifdef EXT3_PREALLOCATE
585         ei->i_prealloc_block = 0;
586         ei->i_prealloc_count = 0;
587 #endif
588         ei->i_block_group = group;
589
590         ext3_set_inode_flags(inode);
591         if (IS_DIRSYNC(inode))
592                 handle->h_sync = 1;
593         insert_inode_hash(inode);
594         spin_lock(&sbi->s_next_gen_lock);
595         inode->i_generation = sbi->s_next_generation++;
596         spin_unlock(&sbi->s_next_gen_lock);
597
598         ei->i_state = EXT3_STATE_NEW;
599
600         ret = inode;
601         if(DQUOT_ALLOC_INODE(inode)) {
602                 DQUOT_DROP(inode);
603                 err = -EDQUOT;
604                 goto fail2;
605         }
606         err = ext3_init_acl(handle, inode, dir);
607         if (err) {
608                 DQUOT_FREE_INODE(inode);
609                 goto fail2;
610         }
611         err = ext3_mark_inode_dirty(handle, inode);
612         if (err) {
613                 ext3_std_error(sb, err);
614                 DQUOT_FREE_INODE(inode);
615                 goto fail2;
616         }
617
618         ext3_debug("allocating inode %lu\n", inode->i_ino);
619         goto really_out;
620 fail:
621         ext3_std_error(sb, err);
622 out:
623         iput(inode);
624         ret = ERR_PTR(err);
625 really_out:
626         brelse(bitmap_bh);
627         return ret;
628
629 fail2:
630         inode->i_flags |= S_NOQUOTA;
631         inode->i_nlink = 0;
632         iput(inode);
633         brelse(bitmap_bh);
634         return ERR_PTR(err);
635 }
636
637 /* Verify that we are loading a valid orphan from disk */
638 struct inode *ext3_orphan_get(struct super_block *sb, unsigned long ino)
639 {
640         unsigned long max_ino = le32_to_cpu(EXT3_SB(sb)->s_es->s_inodes_count);
641         unsigned long block_group;
642         int bit;
643         struct buffer_head *bitmap_bh = NULL;
644         struct inode *inode = NULL;
645
646         /* Error cases - e2fsck has already cleaned up for us */
647         if (ino > max_ino) {
648                 ext3_warning(sb, __FUNCTION__,
649                              "bad orphan ino %lu!  e2fsck was run?\n", ino);
650                 goto out;
651         }
652
653         block_group = (ino - 1) / EXT3_INODES_PER_GROUP(sb);
654         bit = (ino - 1) % EXT3_INODES_PER_GROUP(sb);
655         bitmap_bh = read_inode_bitmap(sb, block_group);
656         if (!bitmap_bh) {
657                 ext3_warning(sb, __FUNCTION__,
658                              "inode bitmap error for orphan %lu\n", ino);
659                 goto out;
660         }
661
662         /* Having the inode bit set should be a 100% indicator that this
663          * is a valid orphan (no e2fsck run on fs).  Orphans also include
664          * inodes that were being truncated, so we can't check i_nlink==0.
665          */
666         if (!ext3_test_bit(bit, bitmap_bh->b_data) ||
667                         !(inode = iget(sb, ino)) || is_bad_inode(inode) ||
668                         NEXT_ORPHAN(inode) > max_ino) {
669                 ext3_warning(sb, __FUNCTION__,
670                              "bad orphan inode %lu!  e2fsck was run?\n", ino);
671                 printk(KERN_NOTICE "ext3_test_bit(bit=%d, block=%llu) = %d\n",
672                        bit, (unsigned long long)bitmap_bh->b_blocknr,
673                        ext3_test_bit(bit, bitmap_bh->b_data));
674                 printk(KERN_NOTICE "inode=%p\n", inode);
675                 if (inode) {
676                         printk(KERN_NOTICE "is_bad_inode(inode)=%d\n",
677                                is_bad_inode(inode));
678                         printk(KERN_NOTICE "NEXT_ORPHAN(inode)=%u\n",
679                                NEXT_ORPHAN(inode));
680                         printk(KERN_NOTICE "max_ino=%lu\n", max_ino);
681                 }
682                 /* Avoid freeing blocks if we got a bad deleted inode */
683                 if (inode && inode->i_nlink == 0)
684                         inode->i_blocks = 0;
685                 iput(inode);
686                 inode = NULL;
687         }
688 out:
689         brelse(bitmap_bh);
690         return inode;
691 }
692
693 unsigned long ext3_count_free_inodes (struct super_block * sb)
694 {
695         unsigned long desc_count;
696         struct ext3_group_desc *gdp;
697         int i;
698 #ifdef EXT3FS_DEBUG
699         struct ext3_super_block *es;
700         unsigned long bitmap_count, x;
701         struct buffer_head *bitmap_bh = NULL;
702
703         lock_super (sb);
704         es = EXT3_SB(sb)->s_es;
705         desc_count = 0;
706         bitmap_count = 0;
707         gdp = NULL;
708         for (i = 0; i < EXT3_SB(sb)->s_groups_count; i++) {
709                 gdp = ext3_get_group_desc (sb, i, NULL);
710                 if (!gdp)
711                         continue;
712                 desc_count += le16_to_cpu(gdp->bg_free_inodes_count);
713                 brelse(bitmap_bh);
714                 bitmap_bh = read_inode_bitmap(sb, i);
715                 if (!bitmap_bh)
716                         continue;
717
718                 x = ext3_count_free(bitmap_bh, EXT3_INODES_PER_GROUP(sb) / 8);
719                 printk("group %d: stored = %d, counted = %lu\n",
720                         i, le16_to_cpu(gdp->bg_free_inodes_count), x);
721                 bitmap_count += x;
722         }
723         brelse(bitmap_bh);
724         printk("ext3_count_free_inodes: stored = %u, computed = %lu, %lu\n",
725                 le32_to_cpu(es->s_free_inodes_count), desc_count, bitmap_count);
726         unlock_super(sb);
727         return desc_count;
728 #else
729         desc_count = 0;
730         for (i = 0; i < EXT3_SB(sb)->s_groups_count; i++) {
731                 gdp = ext3_get_group_desc (sb, i, NULL);
732                 if (!gdp)
733                         continue;
734                 desc_count += le16_to_cpu(gdp->bg_free_inodes_count);
735         }
736         return desc_count;
737 #endif
738 }
739
740 /* Called at mount-time, super-block is locked */
741 unsigned long ext3_count_dirs (struct super_block * sb)
742 {
743         unsigned long count = 0;
744         int i;
745
746         for (i = 0; i < EXT3_SB(sb)->s_groups_count; i++) {
747                 struct ext3_group_desc *gdp = ext3_get_group_desc (sb, i, NULL);
748                 if (!gdp)
749                         continue;
750                 count += le16_to_cpu(gdp->bg_used_dirs_count);
751         }
752         return count;
753 }
754
755 #ifdef CONFIG_EXT3_CHECK
756 /* Called at mount-time, super-block is locked */
757 void ext3_check_inodes_bitmap (struct super_block * sb)
758 {
759         struct ext3_super_block * es;
760         unsigned long desc_count, bitmap_count, x;
761         struct buffer_head *bitmap_bh = NULL;
762         struct ext3_group_desc * gdp;
763         int i;
764
765         es = EXT3_SB(sb)->s_es;
766         desc_count = 0;
767         bitmap_count = 0;
768         gdp = NULL;
769         for (i = 0; i < EXT3_SB(sb)->s_groups_count; i++) {
770                 gdp = ext3_get_group_desc (sb, i, NULL);
771                 if (!gdp)
772                         continue;
773                 desc_count += le16_to_cpu(gdp->bg_free_inodes_count);
774                 brelse(bitmap_bh);
775                 bitmap_bh = read_inode_bitmap(sb, i);
776                 if (!bitmap_bh)
777                         continue;
778
779                 x = ext3_count_free(bitmap_bh, EXT3_INODES_PER_GROUP(sb) / 8);
780                 if (le16_to_cpu(gdp->bg_free_inodes_count) != x)
781                         ext3_error (sb, "ext3_check_inodes_bitmap",
782                                     "Wrong free inodes count in group %d, "
783                                     "stored = %d, counted = %lu", i,
784                                     le16_to_cpu(gdp->bg_free_inodes_count), x);
785                 bitmap_count += x;
786         }
787         brelse(bitmap_bh);
788         if (le32_to_cpu(es->s_free_inodes_count) != bitmap_count)
789                 ext3_error (sb, "ext3_check_inodes_bitmap",
790                             "Wrong free inodes count in super block, "
791                             "stored = %lu, counted = %lu",
792                             (unsigned long)le32_to_cpu(es->s_free_inodes_count),
793                             bitmap_count);
794 }
795 #endif