public inbox for linux-ext4@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] libext2fs : Fix the return values for ino=0 in ext2fs_read_inode_full() if inode cache has been flushed.
@ 2008-07-12 13:57 Manish Katiyar
  2008-07-15  5:10 ` Manish Katiyar
  0 siblings, 1 reply; 3+ messages in thread
From: Manish Katiyar @ 2008-07-12 13:57 UTC (permalink / raw)
  To: linux-ext4, Theodore Tso; +Cc: mkatiyar

Hi Ted,

It looks like the right place to check for ino=0 in
ext2fs_read_inode_full() is before creating the inode cache, otherwise
since we set icache[i].ino = 0 in create_icache(), it will match the
loop below and thus we return a wrong value. Below patch fixes it.

==========================================================================

Signed-off-by: "Manish Katiyar" <mkatiyar@gmail.com>

---
 lib/ext2fs/inode.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/ext2fs/inode.c b/lib/ext2fs/inode.c
index 8908423..a08cb40 100644
--- a/lib/ext2fs/inode.c
+++ b/lib/ext2fs/inode.c
@@ -536,6 +536,8 @@ errcode_t ext2fs_read_inode_full(ext2_filsys fs,
ext2_ino_t ino,
 		if (retval != EXT2_ET_CALLBACK_NOTHANDLED)
 			return retval;
 	}
+	if ((ino == 0) || (ino > fs->super->s_inodes_count))
+		return EXT2_ET_BAD_INODE_NUM;
 	/* Create inode cache if not present */
 	if (!fs->icache) {
 		retval = create_icache(fs);
@@ -552,8 +554,6 @@ errcode_t ext2fs_read_inode_full(ext2_filsys fs,
ext2_ino_t ino,
 			}
 		}
 	}
-	if ((ino == 0) || (ino > fs->super->s_inodes_count))
-		return EXT2_ET_BAD_INODE_NUM;
 	if (fs->flags & EXT2_FLAG_IMAGE_FILE) {
 		inodes_per_block = fs->blocksize / EXT2_INODE_SIZE(fs->super);
 		block_nr = fs->image_header->offset_inode / fs->blocksize;
-- 
1.5.4.3


=====================================================================

Thanks -
Manish

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] libext2fs : Fix the return values for ino=0 in ext2fs_read_inode_full() if inode cache has been flushed.
  2008-07-12 13:57 [PATCH] libext2fs : Fix the return values for ino=0 in ext2fs_read_inode_full() if inode cache has been flushed Manish Katiyar
@ 2008-07-15  5:10 ` Manish Katiyar
  2008-07-19 14:49   ` Theodore Tso
  0 siblings, 1 reply; 3+ messages in thread
From: Manish Katiyar @ 2008-07-15  5:10 UTC (permalink / raw)
  To: linux-ext4, Theodore Tso

On Sat, Jul 12, 2008 at 7:27 PM, Manish Katiyar <mkatiyar@gmail.com> wrote:
> Hi Ted,
>
> It looks like the right place to check for ino=0 in
> ext2fs_read_inode_full() is before creating the inode cache, otherwise
> since we set icache[i].ino = 0 in create_icache(), it will match the
> loop below and thus we return a wrong value. Below patch fixes it.
>
> ==========================================================================
>
> Signed-off-by: "Manish Katiyar" <mkatiyar@gmail.com>
>
> ---
>  lib/ext2fs/inode.c |    4 ++--
>  1 files changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/lib/ext2fs/inode.c b/lib/ext2fs/inode.c
> index 8908423..a08cb40 100644
> --- a/lib/ext2fs/inode.c
> +++ b/lib/ext2fs/inode.c
> @@ -536,6 +536,8 @@ errcode_t ext2fs_read_inode_full(ext2_filsys fs,
> ext2_ino_t ino,
>                if (retval != EXT2_ET_CALLBACK_NOTHANDLED)
>                        return retval;
>        }
> +       if ((ino == 0) || (ino > fs->super->s_inodes_count))
> +               return EXT2_ET_BAD_INODE_NUM;
>        /* Create inode cache if not present */
>        if (!fs->icache) {
>                retval = create_icache(fs);
> @@ -552,8 +554,6 @@ errcode_t ext2fs_read_inode_full(ext2_filsys fs,
> ext2_ino_t ino,
>                        }
>                }
>        }
> -       if ((ino == 0) || (ino > fs->super->s_inodes_count))
> -               return EXT2_ET_BAD_INODE_NUM;
>        if (fs->flags & EXT2_FLAG_IMAGE_FILE) {
>                inodes_per_block = fs->blocksize / EXT2_INODE_SIZE(fs->super);
>                block_nr = fs->image_header->offset_inode / fs->blocksize;
> --
> 1.5.4.3
>
>
> =====================================================================
>

Any ack/nack on this ?


> Thanks -
> Manish
>

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] libext2fs : Fix the return values for ino=0 in ext2fs_read_inode_full() if inode cache has been flushed.
  2008-07-15  5:10 ` Manish Katiyar
@ 2008-07-19 14:49   ` Theodore Tso
  0 siblings, 0 replies; 3+ messages in thread
From: Theodore Tso @ 2008-07-19 14:49 UTC (permalink / raw)
  To: Manish Katiyar; +Cc: linux-ext4

On Tue, Jul 15, 2008 at 10:40:22AM +0530, Manish Katiyar wrote:
> Any ack/nack on this ?

Applied, sorry for forgetting to ack it.

						- Ted

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2008-07-19 14:49 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-07-12 13:57 [PATCH] libext2fs : Fix the return values for ino=0 in ext2fs_read_inode_full() if inode cache has been flushed Manish Katiyar
2008-07-15  5:10 ` Manish Katiyar
2008-07-19 14:49   ` Theodore Tso

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox