public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] proc: proc_get_inode should de_put when inode already initialized
@ 2009-02-23 21:21 Krzysztof Sachanowicz
  2009-02-23 23:25 ` Andrew Morton
  0 siblings, 1 reply; 4+ messages in thread
From: Krzysztof Sachanowicz @ 2009-02-23 21:21 UTC (permalink / raw)
  To: Linux Kernel Mailing List; +Cc: Marcin Pilipczuk, Linus Torvalds

de_get is called before every proc_get_inode, but corresponding de_put is 
called only when dropping last reference to an inode. This might cause 
something like
remove_proc_entry: /proc/stats busy, count=14496
to be printed to the syslog.

The fix is to call de_put in case of an already initialized inode in 
proc_get_inode.

Signed-off-by: Krzysztof Sachanowicz <analyzer1@gmail.com>
Tested-by: Marcin Pilipczuk <marcin.pilipczuk@gmail.com>
---
--- linux-2.6.29-rc6.orig/fs/proc/inode.c	2009-02-23 20:43:32.000000000 +0100
+++ linux-2.6.29-rc6/fs/proc/inode.c	2009-02-23 20:46:37.000000000 +0100
@@ -485,8 +485,10 @@ struct inode *proc_get_inode(struct supe
 			}
 		}
 		unlock_new_inode(inode);
-	} else
+	} else {
 	       module_put(de->owner);
+	       de_put(de);
+	}
 	return inode;
 
 out_ino:

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

* Re: [PATCH] proc: proc_get_inode should de_put when inode already initialized
  2009-02-23 21:21 [PATCH] proc: proc_get_inode should de_put when inode already initialized Krzysztof Sachanowicz
@ 2009-02-23 23:25 ` Andrew Morton
  2009-02-23 23:56   ` Krzysztof Sachanowicz
  2009-02-24  7:07   ` Alexey Dobriyan
  0 siblings, 2 replies; 4+ messages in thread
From: Andrew Morton @ 2009-02-23 23:25 UTC (permalink / raw)
  To: Krzysztof Sachanowicz
  Cc: linux-kernel, marcin.pilipczuk, torvalds, Alexey Dobriyan

On Mon, 23 Feb 2009 22:21:55 +0100
Krzysztof Sachanowicz <analyzer1@gmail.com> wrote:

> de_get is called before every proc_get_inode, but corresponding de_put is 
> called only when dropping last reference to an inode. This might cause 
> something like
> remove_proc_entry: /proc/stats busy, count=14496
> to be printed to the syslog.
> 
> The fix is to call de_put in case of an already initialized inode in 
> proc_get_inode.
> 
> Signed-off-by: Krzysztof Sachanowicz <analyzer1@gmail.com>
> Tested-by: Marcin Pilipczuk <marcin.pilipczuk@gmail.com>
> ---
> --- linux-2.6.29-rc6.orig/fs/proc/inode.c	2009-02-23 20:43:32.000000000 +0100
> +++ linux-2.6.29-rc6/fs/proc/inode.c	2009-02-23 20:46:37.000000000 +0100
> @@ -485,8 +485,10 @@ struct inode *proc_get_inode(struct supe
>  			}
>  		}
>  		unlock_new_inode(inode);
> -	} else
> +	} else {
>  	       module_put(de->owner);
> +	       de_put(de);
> +	}
>  	return inode;
>  
>  out_ino:

This code area looks quite different in linux-next, although the
changes there are removing proc_dir_entry.owner altogether and aren't
obviously targetted at fixing this bug.

Also...

It's unpleasing to have the de_get() inside the caller and the de_put()
inside the callee - it is better to have them both happening at the
same level.  If it is the case that "de_get is called before every
proc_get_inode", then perhaps that operation should simply be moved
into proc_get_inode().



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

* Re: [PATCH] proc: proc_get_inode should de_put when inode already initialized
  2009-02-23 23:25 ` Andrew Morton
@ 2009-02-23 23:56   ` Krzysztof Sachanowicz
  2009-02-24  7:07   ` Alexey Dobriyan
  1 sibling, 0 replies; 4+ messages in thread
From: Krzysztof Sachanowicz @ 2009-02-23 23:56 UTC (permalink / raw)
  To: Andrew Morton; +Cc: linux-kernel, marcin.pilipczuk, torvalds, Alexey Dobriyan

Tuesday 24 February 2009 00:25:55 Andrew Morton napisał(a):
> On Mon, 23 Feb 2009 22:21:55 +0100
>
> Krzysztof Sachanowicz <analyzer1@gmail.com> wrote:
> > de_get is called before every proc_get_inode, but corresponding de_put is
> > called only when dropping last reference to an inode. This might cause
> > something like
> > remove_proc_entry: /proc/stats busy, count=14496
> > to be printed to the syslog.
> >
> > The fix is to call de_put in case of an already initialized inode in
> > proc_get_inode.
> >
> > Signed-off-by: Krzysztof Sachanowicz <analyzer1@gmail.com>
> > Tested-by: Marcin Pilipczuk <marcin.pilipczuk@gmail.com>
> > ---
> > --- linux-2.6.29-rc6.orig/fs/proc/inode.c	2009-02-23 20:43:32.000000000
> > +0100 +++ linux-2.6.29-rc6/fs/proc/inode.c	2009-02-23 20:46:37.000000000
> > +0100 @@ -485,8 +485,10 @@ struct inode *proc_get_inode(struct supe
> >  			}
> >  		}
> >  		unlock_new_inode(inode);
> > -	} else
> > +	} else {
> >  	       module_put(de->owner);
> > +	       de_put(de);
> > +	}
> >  	return inode;
> >
> >  out_ino:
>
> This code area looks quite different in linux-next, although the
> changes there are removing proc_dir_entry.owner altogether and aren't
> obviously targetted at fixing this bug.
>
> Also...
>
> It's unpleasing to have the de_get() inside the caller and the de_put()
> inside the callee - it is better to have them both happening at the
> same level.  If it is the case that "de_get is called before every
> proc_get_inode", then perhaps that operation should simply be moved
> into proc_get_inode().

Yes, but unfortunately in proc_lookup_de() (fs/proc/generic.c) we have:
 391                        de_get(de);
 392                        spin_unlock(&proc_subdir_lock);
 393                        error = -EINVAL;
 394                        inode = proc_get_inode(dir->i_sb, ino, de);

So if we move de_get() into proc_get_inode(), we will also have to move 
spin_unlock there. Then we will have spin_lock in proc_lookup_de but 
spin_unlock in proc_get_inode...

Maybe my solution is not that bad, because usually de_put is called from 
proc_delete_inode(). Only if iget_locked() returns an already initialized 
inode we want de_put to be called in proc_get_inode. So the callee need not 
care about who will eventually call de_put.

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

* Re: [PATCH] proc: proc_get_inode should de_put when inode already initialized
  2009-02-23 23:25 ` Andrew Morton
  2009-02-23 23:56   ` Krzysztof Sachanowicz
@ 2009-02-24  7:07   ` Alexey Dobriyan
  1 sibling, 0 replies; 4+ messages in thread
From: Alexey Dobriyan @ 2009-02-24  7:07 UTC (permalink / raw)
  To: Andrew Morton
  Cc: Krzysztof Sachanowicz, linux-kernel, marcin.pilipczuk, torvalds

On Mon, Feb 23, 2009 at 03:25:55PM -0800, Andrew Morton wrote:
> On Mon, 23 Feb 2009 22:21:55 +0100
> Krzysztof Sachanowicz <analyzer1@gmail.com> wrote:
> 
> > de_get is called before every proc_get_inode, but corresponding de_put is 
> > called only when dropping last reference to an inode. This might cause 
> > something like
> > remove_proc_entry: /proc/stats busy, count=14496
> > to be printed to the syslog.
> > 
> > The fix is to call de_put in case of an already initialized inode in 
> > proc_get_inode.
> > 
> > Signed-off-by: Krzysztof Sachanowicz <analyzer1@gmail.com>
> > Tested-by: Marcin Pilipczuk <marcin.pilipczuk@gmail.com>
> > ---
> > --- linux-2.6.29-rc6.orig/fs/proc/inode.c	2009-02-23 20:43:32.000000000 +0100
> > +++ linux-2.6.29-rc6/fs/proc/inode.c	2009-02-23 20:46:37.000000000 +0100
> > @@ -485,8 +485,10 @@ struct inode *proc_get_inode(struct supe
> >  			}
> >  		}
> >  		unlock_new_inode(inode);
> > -	} else
> > +	} else {
> >  	       module_put(de->owner);
> > +	       de_put(de);
> > +	}
> >  	return inode;
> >  
> >  out_ino:
> 
> This code area looks quite different in linux-next, although the
> changes there are removing proc_dir_entry.owner altogether and aren't
> obviously targetted at fixing this bug.

->owner issue is independent of this leak, I'll rebase/edit patches as
needed.

> Also...
> 
> It's unpleasing to have the de_get() inside the caller and the de_put()
> inside the callee - it is better to have them both happening at the
> same level.  If it is the case that "de_get is called before every
> proc_get_inode", then perhaps that operation should simply be moved
> into proc_get_inode().

Well, yes, this sucks. But unlock_new_inode() will clear I_NEW state,
so after function returns, there is no way to distinguish.

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

end of thread, other threads:[~2009-02-24  7:01 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-02-23 21:21 [PATCH] proc: proc_get_inode should de_put when inode already initialized Krzysztof Sachanowicz
2009-02-23 23:25 ` Andrew Morton
2009-02-23 23:56   ` Krzysztof Sachanowicz
2009-02-24  7:07   ` Alexey Dobriyan

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