All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] return ENOENT from ext3_link when racing with unlink
@ 2007-01-15 18:18 Eric Sandeen
  2007-01-16 22:01 ` Peter Staubach
  0 siblings, 1 reply; 4+ messages in thread
From: Eric Sandeen @ 2007-01-15 18:18 UTC (permalink / raw)
  To: linux-kernel Mailing List, ext4 development; +Cc: dmonakhov, alex, Al Viro

An update from the earlier thread, 
[PATCH] [RFC] remove ext3 inode from orphan list when link and unlink race

I think this is better than the original idea of trying to handle the race;
I've seen that the orphan inode list can get corrupted, but there may well
be other implications of the race which haven't yet been exposed.  I think
it's safer to simply return -ENOENT in this race window, and avoid other
potential problems.  Anything wrong with this?

Thanks for the comments suggesting this approach in the prior thread.

Thanks,

-Eric

---

Return -ENOENT from ext[34]_link if we've raced with unlink and
i_nlink is 0.  Doing otherwise has the potential to corrupt the
orphan inode list, because we'd wind up with an inode with a
non-zero link count on the list, and it will never get properly
cleaned up & removed from the orphan list before it is freed.

Signed-off-by: Eric Sandeen <sandeen@redhat.com>

Index: linux-2.6.19/fs/ext3/namei.c
===================================================================
--- linux-2.6.19.orig/fs/ext3/namei.c
+++ linux-2.6.19/fs/ext3/namei.c
@@ -2191,6 +2191,8 @@ static int ext3_link (struct dentry * ol
 
 	if (inode->i_nlink >= EXT3_LINK_MAX)
 		return -EMLINK;
+	if (inode->i_nlink == 0)
+		return -ENOENT;
 
 retry:
 	handle = ext3_journal_start(dir, EXT3_DATA_TRANS_BLOCKS(dir->i_sb) +
Index: linux-2.6.19/fs/ext4/namei.c
===================================================================
--- linux-2.6.19.orig/fs/ext4/namei.c
+++ linux-2.6.19/fs/ext4/namei.c
@@ -2189,6 +2189,8 @@ static int ext4_link (struct dentry * ol
 
 	if (inode->i_nlink >= EXT4_LINK_MAX)
 		return -EMLINK;
+	if (inode->i_nlink == 0)
+		return -ENOENT;
 
 retry:
 	handle = ext4_journal_start(dir, EXT4_DATA_TRANS_BLOCKS(dir->i_sb) +



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

* Re: [PATCH] return ENOENT from ext3_link when racing with unlink
  2007-01-15 18:18 [PATCH] return ENOENT from ext3_link when racing with unlink Eric Sandeen
@ 2007-01-16 22:01 ` Peter Staubach
  2007-01-16 22:07   ` Alex Tomas
  0 siblings, 1 reply; 4+ messages in thread
From: Peter Staubach @ 2007-01-16 22:01 UTC (permalink / raw)
  To: Eric Sandeen
  Cc: linux-kernel Mailing List, ext4 development, dmonakhov, alex, Al Viro

Eric Sandeen wrote:
> An update from the earlier thread, [PATCH] [RFC] remove ext3 inode 
> from orphan list when link and unlink race
>
> I think this is better than the original idea of trying to handle the 
> race;
> I've seen that the orphan inode list can get corrupted, but there may 
> well
> be other implications of the race which haven't yet been exposed.  I 
> think
> it's safer to simply return -ENOENT in this race window, and avoid other
> potential problems.  Anything wrong with this?
>
> Thanks for the comments suggesting this approach in the prior thread.
>
> Thanks,
>
> -Eric
>
> ---
>
> Return -ENOENT from ext[34]_link if we've raced with unlink and
> i_nlink is 0.  Doing otherwise has the potential to corrupt the
> orphan inode list, because we'd wind up with an inode with a
> non-zero link count on the list, and it will never get properly
> cleaned up & removed from the orphan list before it is freed.
>
> Signed-off-by: Eric Sandeen <sandeen@redhat.com>
>
> Index: linux-2.6.19/fs/ext3/namei.c
> ===================================================================
> --- linux-2.6.19.orig/fs/ext3/namei.c
> +++ linux-2.6.19/fs/ext3/namei.c
> @@ -2191,6 +2191,8 @@ static int ext3_link (struct dentry * ol
>
>     if (inode->i_nlink >= EXT3_LINK_MAX)
>         return -EMLINK;
> +    if (inode->i_nlink == 0)
> +        return -ENOENT;
>
> retry:
>     handle = ext3_journal_start(dir, EXT3_DATA_TRANS_BLOCKS(dir->i_sb) +
> Index: linux-2.6.19/fs/ext4/namei.c
> ===================================================================
> --- linux-2.6.19.orig/fs/ext4/namei.c
> +++ linux-2.6.19/fs/ext4/namei.c
> @@ -2189,6 +2189,8 @@ static int ext4_link (struct dentry * ol
>
>     if (inode->i_nlink >= EXT4_LINK_MAX)
>         return -EMLINK;
> +    if (inode->i_nlink == 0)
> +        return -ENOENT;
>
> retry:
>     handle = ext4_journal_start(dir, EXT4_DATA_TRANS_BLOCKS(dir->i_sb) +
>

Just out of curosity, what keeps i_nlink from going to 0 immediately
after the new test is executed?

    Thanx...

       ps

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

* Re: [PATCH] return ENOENT from ext3_link when racing with unlink
  2007-01-16 22:01 ` Peter Staubach
@ 2007-01-16 22:07   ` Alex Tomas
  2007-01-16 22:15     ` Peter Staubach
  0 siblings, 1 reply; 4+ messages in thread
From: Alex Tomas @ 2007-01-16 22:07 UTC (permalink / raw)
  To: Peter Staubach
  Cc: Eric Sandeen, linux-kernel Mailing List, ext4 development,
	dmonakhov, alex, Al Viro

>>>>> Peter Staubach (PS) writes:


 PS> Just out of curosity, what keeps i_nlink from going to 0 immediately
 PS> after the new test is executed?

i_mutex in vfs_link() and vfs_unlink()

thanks, Alex

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

* Re: [PATCH] return ENOENT from ext3_link when racing with unlink
  2007-01-16 22:07   ` Alex Tomas
@ 2007-01-16 22:15     ` Peter Staubach
  0 siblings, 0 replies; 4+ messages in thread
From: Peter Staubach @ 2007-01-16 22:15 UTC (permalink / raw)
  To: Alex Tomas
  Cc: Eric Sandeen, linux-kernel Mailing List, ext4 development,
	dmonakhov, Al Viro

Alex Tomas wrote:
>>>>>> Peter Staubach (PS) writes:
>>>>>>             
>
>
>  PS> Just out of curosity, what keeps i_nlink from going to 0 immediately
>  PS> after the new test is executed?
>
> i_mutex in vfs_link() and vfs_unlink()
>   

Ahhh...  Okie doke, thanx!

       ps


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

end of thread, other threads:[~2007-01-16 22:17 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-01-15 18:18 [PATCH] return ENOENT from ext3_link when racing with unlink Eric Sandeen
2007-01-16 22:01 ` Peter Staubach
2007-01-16 22:07   ` Alex Tomas
2007-01-16 22:15     ` Peter Staubach

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.