LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
* [patch] fuse: fix permission checking
@ 2008-02-15 10:23 Miklos Szeredi
  2008-02-15 20:35 ` Harvey Harrison
  2008-02-22 23:19 ` [stable] " Greg KH
  0 siblings, 2 replies; 8+ messages in thread
From: Miklos Szeredi @ 2008-02-15 10:23 UTC (permalink / raw)
  To: akpm; +Cc: linux-kernel, stable

This is for 2.6.25 and 2.6.24.y, but NOT for 2.6.23.y.

Thanks,
Miklos
----

From: Miklos Szeredi <mszeredi@suse.cz>

I added a nasty local variable shadowing bug to fuse in 2.6.24, with
the result, that the 'default_permissions' mount option is basically
ignored.

How did this happen?

 - old err declaration in inner scope
 - new err getting declared in outer scope
 - 'return err' from inner scope getting removed
 - old declaration not being noticed

-Wshadow would have saved us, but it doesn't seem practical for
the kernel :(

More testing would have also saved us :((

Signed-off-by: Miklos Szeredi <mszeredi@suse.cz>
---

Index: linux/fs/fuse/dir.c
===================================================================
--- linux.orig/fs/fuse/dir.c	2008-02-15 10:46:06.000000000 +0100
+++ linux/fs/fuse/dir.c	2008-02-15 11:05:46.000000000 +0100
@@ -906,7 +906,7 @@ static int fuse_permission(struct inode 
 	}
 
 	if (fc->flags & FUSE_DEFAULT_PERMISSIONS) {
-		int err = generic_permission(inode, mask, NULL);
+		err = generic_permission(inode, mask, NULL);
 
 		/* If permission is denied, try to refresh file
 		   attributes.  This is also needed, because the root

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

* Re: [patch] fuse: fix permission checking
  2008-02-15 10:23 [patch] fuse: fix permission checking Miklos Szeredi
@ 2008-02-15 20:35 ` Harvey Harrison
  2008-02-22 23:19 ` [stable] " Greg KH
  1 sibling, 0 replies; 8+ messages in thread
From: Harvey Harrison @ 2008-02-15 20:35 UTC (permalink / raw)
  To: Miklos Szeredi; +Cc: akpm, linux-kernel, stable

On Fri, 2008-02-15 at 11:23 +0100, Miklos Szeredi wrote:
> This is for 2.6.25 and 2.6.24.y, but NOT for 2.6.23.y.
> 
> Thanks,
> Miklos
> ----
> 
> From: Miklos Szeredi <mszeredi@suse.cz>
> 
> I added a nasty local variable shadowing bug to fuse in 2.6.24, with
> the result, that the 'default_permissions' mount option is basically
> ignored.
> 
> How did this happen?
> 
>  - old err declaration in inner scope
>  - new err getting declared in outer scope
>  - 'return err' from inner scope getting removed
>  - old declaration not being noticed
> 
> -Wshadow would have saved us, but it doesn't seem practical for
> the kernel :(
> 
> More testing would have also saved us :((

sparse would have saved you too.

Harvey


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

* Re: [stable] [patch] fuse: fix permission checking
  2008-02-15 10:23 [patch] fuse: fix permission checking Miklos Szeredi
  2008-02-15 20:35 ` Harvey Harrison
@ 2008-02-22 23:19 ` Greg KH
  2008-02-23  9:38   ` Miklos Szeredi
  2008-02-25 10:45   ` Miklos Szeredi
  1 sibling, 2 replies; 8+ messages in thread
From: Greg KH @ 2008-02-22 23:19 UTC (permalink / raw)
  To: Miklos Szeredi; +Cc: akpm, linux-kernel, stable

On Fri, Feb 15, 2008 at 11:23:47AM +0100, Miklos Szeredi wrote:
> This is for 2.6.25 and 2.6.24.y, but NOT for 2.6.23.y.
> 
> Thanks,
> Miklos
> ----
> 
> From: Miklos Szeredi <mszeredi@suse.cz>
> 
> I added a nasty local variable shadowing bug to fuse in 2.6.24, with
> the result, that the 'default_permissions' mount option is basically
> ignored.

When this goes into Linus's tree, can you let us know along with the git
commit id?

thanks,

greg k-h

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

* Re: [stable] [patch] fuse: fix permission checking
  2008-02-22 23:19 ` [stable] " Greg KH
@ 2008-02-23  9:38   ` Miklos Szeredi
  2008-02-23 19:08     ` Greg KH
  2008-02-25 10:45   ` Miklos Szeredi
  1 sibling, 1 reply; 8+ messages in thread
From: Miklos Szeredi @ 2008-02-23  9:38 UTC (permalink / raw)
  To: greg; +Cc: miklos, akpm, linux-kernel, stable

> On Fri, Feb 15, 2008 at 11:23:47AM +0100, Miklos Szeredi wrote:
> > This is for 2.6.25 and 2.6.24.y, but NOT for 2.6.23.y.
> > 
> > Thanks,
> > Miklos
> > ----
> > 
> > From: Miklos Szeredi <mszeredi@suse.cz>
> > 
> > I added a nasty local variable shadowing bug to fuse in 2.6.24, with
> > the result, that the 'default_permissions' mount option is basically
> > ignored.
> 
> When this goes into Linus's tree, can you let us know along with the git
> commit id?

I'd really like to see this in 2.6.24.3.  How much time is left?
Should I bypass Andrew and submit to Linus ASAP?

Thanks,
Miklos

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

* Re: [stable] [patch] fuse: fix permission checking
  2008-02-23  9:38   ` Miklos Szeredi
@ 2008-02-23 19:08     ` Greg KH
  2008-02-23 19:22       ` Andrew Morton
  0 siblings, 1 reply; 8+ messages in thread
From: Greg KH @ 2008-02-23 19:08 UTC (permalink / raw)
  To: Miklos Szeredi; +Cc: akpm, linux-kernel, stable

On Sat, Feb 23, 2008 at 10:38:59AM +0100, Miklos Szeredi wrote:
> > On Fri, Feb 15, 2008 at 11:23:47AM +0100, Miklos Szeredi wrote:
> > > This is for 2.6.25 and 2.6.24.y, but NOT for 2.6.23.y.
> > > 
> > > Thanks,
> > > Miklos
> > > ----
> > > 
> > > From: Miklos Szeredi <mszeredi@suse.cz>
> > > 
> > > I added a nasty local variable shadowing bug to fuse in 2.6.24, with
> > > the result, that the 'default_permissions' mount option is basically
> > > ignored.
> > 
> > When this goes into Linus's tree, can you let us know along with the git
> > commit id?
> 
> I'd really like to see this in 2.6.24.3.  How much time is left?
> Should I bypass Andrew and submit to Linus ASAP?

There will be a .24.4 soon afterward (week or so), so don't feel like
you have to rush.  Unless this is some kind of security issue?

thanks,

greg k-h

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

* Re: [stable] [patch] fuse: fix permission checking
  2008-02-23 19:08     ` Greg KH
@ 2008-02-23 19:22       ` Andrew Morton
  2008-02-23 19:40         ` Miklos Szeredi
  0 siblings, 1 reply; 8+ messages in thread
From: Andrew Morton @ 2008-02-23 19:22 UTC (permalink / raw)
  To: Greg KH; +Cc: Miklos Szeredi, linux-kernel, stable

On Sat, 23 Feb 2008 11:08:59 -0800 Greg KH <greg@kroah.com> wrote:

> On Sat, Feb 23, 2008 at 10:38:59AM +0100, Miklos Szeredi wrote:
> > > On Fri, Feb 15, 2008 at 11:23:47AM +0100, Miklos Szeredi wrote:
> > > > This is for 2.6.25 and 2.6.24.y, but NOT for 2.6.23.y.
> > > > 
> > > > Thanks,
> > > > Miklos
> > > > ----
> > > > 
> > > > From: Miklos Szeredi <mszeredi@suse.cz>
> > > > 
> > > > I added a nasty local variable shadowing bug to fuse in 2.6.24, with
> > > > the result, that the 'default_permissions' mount option is basically
> > > > ignored.
> > > 
> > > When this goes into Linus's tree, can you let us know along with the git
> > > commit id?
> > 
> > I'd really like to see this in 2.6.24.3.  How much time is left?
> > Should I bypass Andrew and submit to Linus ASAP?
> 
> There will be a .24.4 soon afterward (week or so), so don't feel like
> you have to rush.  Unless this is some kind of security issue?
> 

I'll be sending a bunch of fixes to Linus this weekend, including this patch.

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

* Re: [stable] [patch] fuse: fix permission checking
  2008-02-23 19:22       ` Andrew Morton
@ 2008-02-23 19:40         ` Miklos Szeredi
  0 siblings, 0 replies; 8+ messages in thread
From: Miklos Szeredi @ 2008-02-23 19:40 UTC (permalink / raw)
  To: akpm; +Cc: greg, miklos, linux-kernel, stable

> > On Sat, Feb 23, 2008 at 10:38:59AM +0100, Miklos Szeredi wrote:
> > > > On Fri, Feb 15, 2008 at 11:23:47AM +0100, Miklos Szeredi wrote:
> > > > > This is for 2.6.25 and 2.6.24.y, but NOT for 2.6.23.y.
> > > > > 
> > > > > Thanks,
> > > > > Miklos
> > > > > ----
> > > > > 
> > > > > From: Miklos Szeredi <mszeredi@suse.cz>
> > > > > 
> > > > > I added a nasty local variable shadowing bug to fuse in 2.6.24, with
> > > > > the result, that the 'default_permissions' mount option is basically
> > > > > ignored.
> > > > 
> > > > When this goes into Linus's tree, can you let us know along with the git
> > > > commit id?
> > > 
> > > I'd really like to see this in 2.6.24.3.  How much time is left?
> > > Should I bypass Andrew and submit to Linus ASAP?
> > 
> > There will be a .24.4 soon afterward (week or so), so don't feel like
> > you have to rush.  Unless this is some kind of security issue?
> > 
> 
> I'll be sending a bunch of fixes to Linus this weekend, including this patch.

Thanks.

Yes, this could have security implications, so the earlier, the better.

Miklos


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

* Re: [stable] [patch] fuse: fix permission checking
  2008-02-22 23:19 ` [stable] " Greg KH
  2008-02-23  9:38   ` Miklos Szeredi
@ 2008-02-25 10:45   ` Miklos Szeredi
  1 sibling, 0 replies; 8+ messages in thread
From: Miklos Szeredi @ 2008-02-25 10:45 UTC (permalink / raw)
  To: greg; +Cc: miklos, akpm, linux-kernel, stable

Hi Greg!

> On Fri, Feb 15, 2008 at 11:23:47AM +0100, Miklos Szeredi wrote:
> > This is for 2.6.25 and 2.6.24.y, but NOT for 2.6.23.y.
> > 
> > Thanks,
> > Miklos
> > ----
> > 
> > From: Miklos Szeredi <mszeredi@suse.cz>
> > 
> > I added a nasty local variable shadowing bug to fuse in 2.6.24, with
> > the result, that the 'default_permissions' mount option is basically
> > ignored.
> 
> When this goes into Linus's tree, can you let us know along with the git
> commit id?

It's now in Linus tree:

commit 1a823ac9ff09cbdf39201df37b7ede1f9395de83

Thanks,
Miklos

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

end of thread, other threads:[~2008-02-25 10:45 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-02-15 10:23 [patch] fuse: fix permission checking Miklos Szeredi
2008-02-15 20:35 ` Harvey Harrison
2008-02-22 23:19 ` [stable] " Greg KH
2008-02-23  9:38   ` Miklos Szeredi
2008-02-23 19:08     ` Greg KH
2008-02-23 19:22       ` Andrew Morton
2008-02-23 19:40         ` Miklos Szeredi
2008-02-25 10:45   ` Miklos Szeredi

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).