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