Linux NFS development
 help / color / mirror / Atom feed
From: "J. Bruce Fields" <bfields@fieldses.org>
To: Al Viro <viro-rfM+Q5joDG/XmaaqVzeoHQ@public.gmane.org>
Cc: linux-nfs@vger.kernel.org
Subject: Re: [PATCH 1/5] Safer nfsd_cross_mnt()
Date: Wed, 22 Apr 2009 14:06:41 -0400	[thread overview]
Message-ID: <20090422180641.GB9541@fieldses.org> (raw)
In-Reply-To: <E1LwNkj-0004WN-AZ@ZenIV.linux.org.uk>

On Tue, Apr 21, 2009 at 09:43:41PM +0000, Al Viro wrote:
> 
> AFAICS, we have a subtle bug there: if we have crossed mountpoint
> *and* it got mount --move'd away, we'll be holding only one
> reference to fs containing dentry - exp->ex_path.mnt.  IOW, we
> ought to dput() before exp_put().

OK.  So a dentry of its own doesn't hold any reference on its
filesystem?

--b.

> 
> Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
> ---
>  fs/nfsd/vfs.c |    9 +++++++--
>  1 files changed, 7 insertions(+), 2 deletions(-)
> 
> diff --git a/fs/nfsd/vfs.c b/fs/nfsd/vfs.c
> index ab93fcf..46e6bd2 100644
> --- a/fs/nfsd/vfs.c
> +++ b/fs/nfsd/vfs.c
> @@ -116,10 +116,15 @@ nfsd_cross_mnt(struct svc_rqst *rqstp, struct dentry **dpp,
>  	}
>  	if ((exp->ex_flags & NFSEXP_CROSSMOUNT) || EX_NOHIDE(exp2)) {
>  		/* successfully crossed mount point */
> -		exp_put(exp);
> -		*expp = exp2;
> +		/*
> +		 * This is subtle: dentry is *not* under mnt at this point.
> +		 * The only reason we are safe is that original mnt is pinned
> +		 * down by exp, so we should dput before putting exp.
> +		 */
>  		dput(dentry);
>  		*dpp = mounts;
> +		exp_put(exp);
> +		*expp = exp2;
>  	} else {
>  		exp_put(exp2);
>  		dput(mounts);
> -- 
> 1.5.6.5
> 
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-nfs" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

  reply	other threads:[~2009-04-22 18:06 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-04-21 21:43 [PATCH 1/5] Safer nfsd_cross_mnt() Al Viro
2009-04-22 18:06 ` J. Bruce Fields [this message]
2009-04-22 19:17   ` Al Viro
2009-04-22 19:20     ` J. Bruce Fields

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20090422180641.GB9541@fieldses.org \
    --to=bfields@fieldses.org \
    --cc=linux-nfs@vger.kernel.org \
    --cc=viro-rfM+Q5joDG/XmaaqVzeoHQ@public.gmane.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox