Fedora kernel-2.6.17-1.2142_FC4 patched with stable patch-2.6.17.4-vs2.0.2-rc26.diff
[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         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         int freei, avefreei;
268         int freeb, avefreeb;
269         int blocks_per_dir, ndirs;
270         int max_debt, max_dirs, min_blocks, min_inodes;
271         int group = -1, i;
272         struct ext3_group_desc *desc;
273         struct buffer_head *bh;
274
275         freei = percpu_counter_read_positive(&sbi->s_freeinodes_counter);
276         avefreei = freei / ngroups;
277         freeb = percpu_counter_read_positive(&sbi->s_freeblocks_counter);
278         avefreeb = freeb / ngroups;
279         ndirs = percpu_counter_read_positive(&sbi->s_dirs_counter);
280
281         if ((parent == sb->s_root->d_inode) ||
282             (EXT3_I(parent)->i_flags & EXT3_TOPDIR_FL)) {
283                 int best_ndir = inodes_per_group;
284                 int best_group = -1;
285
286                 get_random_bytes(&group, sizeof(group));
287                 parent_group = (unsigned)group % ngroups;
288                 for (i = 0; i < ngroups; i++) {
289                         group = (parent_group + i) % ngroups;
290                         desc = ext3_get_group_desc (sb, group, &bh);
291                         if (!desc || !desc->bg_free_inodes_count)
292                                 continue;
293                         if (le16_to_cpu(desc->bg_used_dirs_count) >= best_ndir)
294                                 continue;
295                         if (le16_to_cpu(desc->bg_free_inodes_count) < avefreei)
296                                 continue;
297                         if (le16_to_cpu(desc->bg_free_blocks_count) < avefreeb)
298                                 continue;
299                         best_group = group;
300                         best_ndir = le16_to_cpu(desc->bg_used_dirs_count);
301                 }
302                 if (best_group >= 0)
303                         return best_group;
304                 goto fallback;
305         }
306
307         blocks_per_dir = (le32_to_cpu(es->s_blocks_count) - freeb) / ndirs;
308
309         max_dirs = ndirs / ngroups + inodes_per_group / 16;
310         min_inodes = avefreei - inodes_per_group / 4;
311         min_blocks = avefreeb - EXT3_BLOCKS_PER_GROUP(sb) / 4;
312
313         max_debt = EXT3_BLOCKS_PER_GROUP(sb) / max(blocks_per_dir, BLOCK_COST);
314         if (max_debt * INODE_COST > inodes_per_group)
315                 max_debt = inodes_per_group / INODE_COST;
316         if (max_debt > 255)
317                 max_debt = 255;
318         if (max_debt == 0)
319                 max_debt = 1;
320
321         for (i = 0; i < ngroups; i++) {
322                 group = (parent_group + i) % ngroups;
323                 desc = ext3_get_group_desc (sb, group, &bh);
324                 if (!desc || !desc->bg_free_inodes_count)
325                         continue;
326                 if (le16_to_cpu(desc->bg_used_dirs_count) >= max_dirs)
327                         continue;
328                 if (le16_to_cpu(desc->bg_free_inodes_count) < min_inodes)
329                         continue;
330                 if (le16_to_cpu(desc->bg_free_blocks_count) < min_blocks)
331                         continue;
332                 return group;
333         }
334
335 fallback:
336         for (i = 0; i < ngroups; i++) {
337                 group = (parent_group + i) % ngroups;
338                 desc = ext3_get_group_desc (sb, group, &bh);
339                 if (!desc || !desc->bg_free_inodes_count)
340                         continue;
341                 if (le16_to_cpu(desc->bg_free_inodes_count) >= avefreei)
342                         return group;
343         }
344
345         if (avefreei) {
346                 /*
347                  * The free-inodes counter is approximate, and for really small
348                  * filesystems the above test can fail to find any blockgroups
349                  */
350                 avefreei = 0;
351                 goto fallback;
352         }
353
354         return -1;
355 }
356
357 static int find_group_other(struct super_block *sb, struct inode *parent)
358 {
359         int parent_group = EXT3_I(parent)->i_block_group;
360         int ngroups = EXT3_SB(sb)->s_groups_count;
361         struct ext3_group_desc *desc;
362         struct buffer_head *bh;
363         int group, i;
364
365         /*
366          * Try to place the inode in its parent directory
367          */
368         group = parent_group;
369         desc = ext3_get_group_desc (sb, group, &bh);
370         if (desc && le16_to_cpu(desc->bg_free_inodes_count) &&
371                         le16_to_cpu(desc->bg_free_blocks_count))
372                 return group;
373
374         /*
375          * We're going to place this inode in a different blockgroup from its
376          * parent.  We want to cause files in a common directory to all land in
377          * the same blockgroup.  But we want files which are in a different
378          * directory which shares a blockgroup with our parent to land in a
379          * different blockgroup.
380          *
381          * So add our directory's i_ino into the starting point for the hash.
382          */
383         group = (group + parent->i_ino) % ngroups;
384
385         /*
386          * Use a quadratic hash to find a group with a free inode and some free
387          * blocks.
388          */
389         for (i = 1; i < ngroups; i <<= 1) {
390                 group += i;
391                 if (group >= ngroups)
392                         group -= ngroups;
393                 desc = ext3_get_group_desc (sb, group, &bh);
394                 if (desc && le16_to_cpu(desc->bg_free_inodes_count) &&
395                                 le16_to_cpu(desc->bg_free_blocks_count))
396                         return group;
397         }
398
399         /*
400          * That failed: try linear search for a free inode, even if that group
401          * has no free blocks.
402          */
403         group = parent_group;
404         for (i = 0; i < ngroups; i++) {
405                 if (++group >= ngroups)
406                         group = 0;
407                 desc = ext3_get_group_desc (sb, group, &bh);
408                 if (desc && le16_to_cpu(desc->bg_free_inodes_count))
409                         return group;
410         }
411
412         return -1;
413 }
414
415 /*
416  * There are two policies for allocating an inode.  If the new inode is
417  * a directory, then a forward search is made for a block group with both
418  * free space and a low directory-to-inode ratio; if that fails, then of
419  * the groups with above-average free space, that group with the fewest
420  * directories already is chosen.
421  *
422  * For other inodes, search forward from the parent directory's block
423  * group to find a free inode.
424  */
425 struct inode *ext3_new_inode(handle_t *handle, struct inode * dir, int mode)
426 {
427         struct super_block *sb;
428         struct buffer_head *bitmap_bh = NULL;
429         struct buffer_head *bh2;
430         int group;
431         unsigned long ino = 0;
432         struct inode * inode;
433         struct ext3_group_desc * gdp = NULL;
434         struct ext3_super_block * es;
435         struct ext3_inode_info *ei;
436         struct ext3_sb_info *sbi;
437         int err = 0;
438         struct inode *ret;
439         int i;
440
441         /* Cannot create files in a deleted directory */
442         if (!dir || !dir->i_nlink)
443                 return ERR_PTR(-EPERM);
444
445         sb = dir->i_sb;
446         inode = new_inode(sb);
447         if (!inode)
448                 return ERR_PTR(-ENOMEM);
449
450         inode->i_xid = vx_current_fsxid(sb);
451         if (DLIMIT_ALLOC_INODE(inode)) {
452                 err = -ENOSPC;
453                 goto out_dlimit;
454         }
455         ei = EXT3_I(inode);
456
457         sbi = EXT3_SB(sb);
458         es = sbi->s_es;
459         if (S_ISDIR(mode)) {
460                 if (test_opt (sb, OLDALLOC))
461                         group = find_group_dir(sb, dir);
462                 else
463                         group = find_group_orlov(sb, dir);
464         } else 
465                 group = find_group_other(sb, dir);
466
467         err = -ENOSPC;
468         if (group == -1)
469                 goto out;
470
471         for (i = 0; i < sbi->s_groups_count; i++) {
472                 err = -EIO;
473
474                 gdp = ext3_get_group_desc(sb, group, &bh2);
475                 if (!gdp)
476                         goto fail;
477
478                 brelse(bitmap_bh);
479                 bitmap_bh = read_inode_bitmap(sb, group);
480                 if (!bitmap_bh)
481                         goto fail;
482
483                 ino = 0;
484
485 repeat_in_this_group:
486                 ino = ext3_find_next_zero_bit((unsigned long *)
487                                 bitmap_bh->b_data, EXT3_INODES_PER_GROUP(sb), ino);
488                 if (ino < EXT3_INODES_PER_GROUP(sb)) {
489
490                         BUFFER_TRACE(bitmap_bh, "get_write_access");
491                         err = ext3_journal_get_write_access(handle, bitmap_bh);
492                         if (err)
493                                 goto fail;
494
495                         if (!ext3_set_bit_atomic(sb_bgl_lock(sbi, group),
496                                                 ino, bitmap_bh->b_data)) {
497                                 /* we won it */
498                                 BUFFER_TRACE(bitmap_bh,
499                                         "call ext3_journal_dirty_metadata");
500                                 err = ext3_journal_dirty_metadata(handle,
501                                                                 bitmap_bh);
502                                 if (err)
503                                         goto fail;
504                                 goto got;
505                         }
506                         /* we lost it */
507                         journal_release_buffer(handle, bitmap_bh);
508
509                         if (++ino < EXT3_INODES_PER_GROUP(sb))
510                                 goto repeat_in_this_group;
511                 }
512
513                 /*
514                  * This case is possible in concurrent environment.  It is very
515                  * rare.  We cannot repeat the find_group_xxx() call because
516                  * that will simply return the same blockgroup, because the
517                  * group descriptor metadata has not yet been updated.
518                  * So we just go onto the next blockgroup.
519                  */
520                 if (++group == sbi->s_groups_count)
521                         group = 0;
522         }
523         err = -ENOSPC;
524         goto out;
525
526 got:
527         ino += group * EXT3_INODES_PER_GROUP(sb) + 1;
528         if (ino < EXT3_FIRST_INO(sb) || ino > le32_to_cpu(es->s_inodes_count)) {
529                 ext3_error (sb, "ext3_new_inode",
530                             "reserved inode or inode > inodes count - "
531                             "block_group = %d, inode=%lu", group, ino);
532                 err = -EIO;
533                 goto fail;
534         }
535
536         BUFFER_TRACE(bh2, "get_write_access");
537         err = ext3_journal_get_write_access(handle, bh2);
538         if (err) goto fail;
539         spin_lock(sb_bgl_lock(sbi, group));
540         gdp->bg_free_inodes_count =
541                 cpu_to_le16(le16_to_cpu(gdp->bg_free_inodes_count) - 1);
542         if (S_ISDIR(mode)) {
543                 gdp->bg_used_dirs_count =
544                         cpu_to_le16(le16_to_cpu(gdp->bg_used_dirs_count) + 1);
545         }
546         spin_unlock(sb_bgl_lock(sbi, group));
547         BUFFER_TRACE(bh2, "call ext3_journal_dirty_metadata");
548         err = ext3_journal_dirty_metadata(handle, bh2);
549         if (err) goto fail;
550
551         percpu_counter_dec(&sbi->s_freeinodes_counter);
552         if (S_ISDIR(mode))
553                 percpu_counter_inc(&sbi->s_dirs_counter);
554         sb->s_dirt = 1;
555
556         inode->i_uid = current->fsuid;
557         if (test_opt (sb, GRPID))
558                 inode->i_gid = dir->i_gid;
559         else if (dir->i_mode & S_ISGID) {
560                 inode->i_gid = dir->i_gid;
561                 if (S_ISDIR(mode))
562                         mode |= S_ISGID;
563         } else
564                 inode->i_gid = current->fsgid;
565         inode->i_mode = mode;
566
567         inode->i_ino = ino;
568         /* This is the optimal IO size (for stat), not the fs block size */
569         inode->i_blksize = PAGE_SIZE;
570         inode->i_blocks = 0;
571         inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME_SEC;
572
573         memset(ei->i_data, 0, sizeof(ei->i_data));
574         ei->i_dir_start_lookup = 0;
575         ei->i_disksize = 0;
576
577         ei->i_flags = EXT3_I(dir)->i_flags &
578                 ~(EXT3_INDEX_FL|EXT3_IUNLINK_FL|EXT3_BARRIER_FL);
579         if (S_ISLNK(mode))
580                 ei->i_flags &= ~(EXT3_IMMUTABLE_FL|EXT3_APPEND_FL);
581         /* dirsync only applies to directories */
582         if (!S_ISDIR(mode))
583                 ei->i_flags &= ~EXT3_DIRSYNC_FL;
584 #ifdef EXT3_FRAGMENTS
585         ei->i_faddr = 0;
586         ei->i_frag_no = 0;
587         ei->i_frag_size = 0;
588 #endif
589         ei->i_file_acl = 0;
590         ei->i_dir_acl = 0;
591         ei->i_dtime = 0;
592         ei->i_block_alloc_info = NULL;
593         ei->i_block_group = group;
594
595         ext3_set_inode_flags(inode);
596         if (IS_DIRSYNC(inode))
597                 handle->h_sync = 1;
598         insert_inode_hash(inode);
599         spin_lock(&sbi->s_next_gen_lock);
600         inode->i_generation = sbi->s_next_generation++;
601         spin_unlock(&sbi->s_next_gen_lock);
602
603         ei->i_state = EXT3_STATE_NEW;
604         ei->i_extra_isize =
605                 (EXT3_INODE_SIZE(inode->i_sb) > EXT3_GOOD_OLD_INODE_SIZE) ?
606                 sizeof(struct ext3_inode) - EXT3_GOOD_OLD_INODE_SIZE : 0;
607
608         ret = inode;
609         if(DQUOT_ALLOC_INODE(inode)) {
610                 err = -EDQUOT;
611                 goto fail_drop;
612         }
613
614         err = ext3_init_acl(handle, inode, dir);
615         if (err)
616                 goto fail_free_drop;
617
618         err = ext3_init_security(handle,inode, dir);
619         if (err)
620                 goto fail_free_drop;
621
622         err = ext3_mark_inode_dirty(handle, inode);
623         if (err) {
624                 ext3_std_error(sb, err);
625                 goto fail_free_drop;
626         }
627
628         ext3_debug("allocating inode %lu\n", inode->i_ino);
629         goto really_out;
630 fail:
631         ext3_std_error(sb, err);
632 out:
633         DLIMIT_FREE_INODE(inode);
634 out_dlimit:
635         iput(inode);
636         ret = ERR_PTR(err);
637 really_out:
638         brelse(bitmap_bh);
639         return ret;
640
641 fail_free_drop:
642         DQUOT_FREE_INODE(inode);
643
644 fail_drop:
645         DQUOT_DROP(inode);
646         DLIMIT_FREE_INODE(inode);
647         inode->i_flags |= S_NOQUOTA;
648         inode->i_nlink = 0;
649         iput(inode);
650         brelse(bitmap_bh);
651         return ERR_PTR(err);
652 }
653
654 /* Verify that we are loading a valid orphan from disk */
655 struct inode *ext3_orphan_get(struct super_block *sb, unsigned long ino)
656 {
657         unsigned long max_ino = le32_to_cpu(EXT3_SB(sb)->s_es->s_inodes_count);
658         unsigned long block_group;
659         int bit;
660         struct buffer_head *bitmap_bh = NULL;
661         struct inode *inode = NULL;
662
663         /* Error cases - e2fsck has already cleaned up for us */
664         if (ino > max_ino) {
665                 ext3_warning(sb, __FUNCTION__,
666                              "bad orphan ino %lu!  e2fsck was run?", ino);
667                 goto out;
668         }
669
670         block_group = (ino - 1) / EXT3_INODES_PER_GROUP(sb);
671         bit = (ino - 1) % EXT3_INODES_PER_GROUP(sb);
672         bitmap_bh = read_inode_bitmap(sb, block_group);
673         if (!bitmap_bh) {
674                 ext3_warning(sb, __FUNCTION__,
675                              "inode bitmap error for orphan %lu", ino);
676                 goto out;
677         }
678
679         /* Having the inode bit set should be a 100% indicator that this
680          * is a valid orphan (no e2fsck run on fs).  Orphans also include
681          * inodes that were being truncated, so we can't check i_nlink==0.
682          */
683         if (!ext3_test_bit(bit, bitmap_bh->b_data) ||
684                         !(inode = iget(sb, ino)) || is_bad_inode(inode) ||
685                         NEXT_ORPHAN(inode) > max_ino) {
686                 ext3_warning(sb, __FUNCTION__,
687                              "bad orphan inode %lu!  e2fsck was run?", ino);
688                 printk(KERN_NOTICE "ext3_test_bit(bit=%d, block=%llu) = %d\n",
689                        bit, (unsigned long long)bitmap_bh->b_blocknr,
690                        ext3_test_bit(bit, bitmap_bh->b_data));
691                 printk(KERN_NOTICE "inode=%p\n", inode);
692                 if (inode) {
693                         printk(KERN_NOTICE "is_bad_inode(inode)=%d\n",
694                                is_bad_inode(inode));
695                         printk(KERN_NOTICE "NEXT_ORPHAN(inode)=%u\n",
696                                NEXT_ORPHAN(inode));
697                         printk(KERN_NOTICE "max_ino=%lu\n", max_ino);
698                 }
699                 /* Avoid freeing blocks if we got a bad deleted inode */
700                 if (inode && inode->i_nlink == 0)
701                         inode->i_blocks = 0;
702                 iput(inode);
703                 inode = NULL;
704         }
705 out:
706         brelse(bitmap_bh);
707         return inode;
708 }
709
710 unsigned long ext3_count_free_inodes (struct super_block * sb)
711 {
712         unsigned long desc_count;
713         struct ext3_group_desc *gdp;
714         int i;
715 #ifdef EXT3FS_DEBUG
716         struct ext3_super_block *es;
717         unsigned long bitmap_count, x;
718         struct buffer_head *bitmap_bh = NULL;
719
720         es = EXT3_SB(sb)->s_es;
721         desc_count = 0;
722         bitmap_count = 0;
723         gdp = NULL;
724         for (i = 0; i < EXT3_SB(sb)->s_groups_count; i++) {
725                 gdp = ext3_get_group_desc (sb, i, NULL);
726                 if (!gdp)
727                         continue;
728                 desc_count += le16_to_cpu(gdp->bg_free_inodes_count);
729                 brelse(bitmap_bh);
730                 bitmap_bh = read_inode_bitmap(sb, i);
731                 if (!bitmap_bh)
732                         continue;
733
734                 x = ext3_count_free(bitmap_bh, EXT3_INODES_PER_GROUP(sb) / 8);
735                 printk("group %d: stored = %d, counted = %lu\n",
736                         i, le16_to_cpu(gdp->bg_free_inodes_count), x);
737                 bitmap_count += x;
738         }
739         brelse(bitmap_bh);
740         printk("ext3_count_free_inodes: stored = %u, computed = %lu, %lu\n",
741                 le32_to_cpu(es->s_free_inodes_count), desc_count, bitmap_count);
742         return desc_count;
743 #else
744         desc_count = 0;
745         for (i = 0; i < EXT3_SB(sb)->s_groups_count; i++) {
746                 gdp = ext3_get_group_desc (sb, i, NULL);
747                 if (!gdp)
748                         continue;
749                 desc_count += le16_to_cpu(gdp->bg_free_inodes_count);
750                 cond_resched();
751         }
752         return desc_count;
753 #endif
754 }
755
756 /* Called at mount-time, super-block is locked */
757 unsigned long ext3_count_dirs (struct super_block * sb)
758 {
759         unsigned long count = 0;
760         int i;
761
762         for (i = 0; i < EXT3_SB(sb)->s_groups_count; i++) {
763                 struct ext3_group_desc *gdp = ext3_get_group_desc (sb, i, NULL);
764                 if (!gdp)
765                         continue;
766                 count += le16_to_cpu(gdp->bg_used_dirs_count);
767         }
768         return count;
769 }
770