diff options
| author | From: Thiemo Nagel <thiemo.nagel@ph.tum.de> | 2009-04-07 14:07:47 -0400 |
|---|---|---|
| committer | Theodore Ts'o <tytso@mit.edu> | 2009-04-07 14:07:47 -0400 |
| commit | 0f2ddca66d70c8ccba7486cf2d79c6b60e777abd (patch) | |
| tree | 7d58c31ab30ba2b9e94780008a2083ac87f80db5 | |
| parent | e44543b83bf4ab84dc6bd5b88158c78b1ed1c208 (diff) | |
ext4: check block device size on mount
Signed-off-by: Thiemo Nagel <thiemo.nagel@ph.tum.de>
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
| -rw-r--r-- | fs/ext4/super.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/fs/ext4/super.c b/fs/ext4/super.c index 9987bba99db3..2958f4e6f222 100644 --- a/fs/ext4/super.c +++ b/fs/ext4/super.c | |||
| @@ -2508,6 +2508,15 @@ static int ext4_fill_super(struct super_block *sb, void *data, int silent) | |||
| 2508 | if (EXT4_BLOCKS_PER_GROUP(sb) == 0) | 2508 | if (EXT4_BLOCKS_PER_GROUP(sb) == 0) |
| 2509 | goto cantfind_ext4; | 2509 | goto cantfind_ext4; |
| 2510 | 2510 | ||
| 2511 | /* check blocks count against device size */ | ||
| 2512 | blocks_count = sb->s_bdev->bd_inode->i_size >> sb->s_blocksize_bits; | ||
| 2513 | if (blocks_count && ext4_blocks_count(es) > blocks_count) { | ||
| 2514 | printk(KERN_WARNING "EXT4-fs: bad geometry: block count %llu " | ||
| 2515 | "exceeds size of device (%llu blocks)\n", | ||
| 2516 | ext4_blocks_count(es), blocks_count); | ||
| 2517 | goto failed_mount; | ||
| 2518 | } | ||
| 2519 | |||
| 2511 | /* | 2520 | /* |
| 2512 | * It makes no sense for the first data block to be beyond the end | 2521 | * It makes no sense for the first data block to be beyond the end |
| 2513 | * of the filesystem. | 2522 | * of the filesystem. |
