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