From: "J. Bruce Fields" <bfields@fieldses.org>
To: Julia Lawall <julia@diku.dk>
Cc: neilb@suse.de, linux-nfs@vger.kernel.org,
linux-kernel@vger.kernel.org, kernel-janitors@vger.kernel.org
Subject: Re: [PATCH] fs/nfsd/export.c: Adjust error handling code involving auth_domain_put
Date: Wed, 30 Jul 2008 13:24:52 -0400 [thread overview]
Message-ID: <20080730172451.GF12364@fieldses.org> (raw)
In-Reply-To: <Pine.LNX.4.64.0807252207160.1602@ask.diku.dk>
On Fri, Jul 25, 2008 at 10:08:09PM +0200, Julia Lawall wrote:
> From: Julia Lawall <julia@diku.dk>
>
> Once clp is assigned, it never becomes NULL, so we can make a label for it
> in the error handling code. Because the call to path_lookup follows the
> call to auth_domain_find, its error handling code should jump to this new
> label.
Yes, that looks correct to me; thanks! Applied.--b.
>
> The semantic match that finds this problem is as follows:
> (http://www.emn.fr/x-info/coccinelle/)
>
> // <smpl>
> @r@
> expression x,E;
> statement S;
> position p1,p2,p3;
> @@
>
> (
> if ((x = auth_domain_find@p1(...)) == NULL || ...) S
> |
> x = auth_domain_find@p1(...)
> ... when != x
> if (x == NULL || ...) S
> )
> <...
> if@p3 (...) { ... when != auth_domain_put(x)
> when != if (x) { ... auth_domain_put(x); ...}
> return@p2 ...;
> }
> ...>
> (
> return x;
> |
> return 0;
> |
> x = E
> |
> E = x
> |
> auth_domain_put(x)
> )
>
> @exists@
> position r.p1,r.p2,r.p3;
> expression x;
> int ret != 0;
> statement S;
> @@
>
> * x = auth_domain_find@p1(...)
> <...
> * if@p3 (...)
> S
> ...>
> * return@p2 \(NULL\|ret\);
> // </smpl>
>
> Signed-off-by: Julia Lawall <julia@diku.dk>
>
> ---
> fs/nfsd/export.c | 6 +++---
> 1 files changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/fs/nfsd/export.c b/fs/nfsd/export.c
> index 33bfcf0..9dc036f 100644
> --- a/fs/nfsd/export.c
> +++ b/fs/nfsd/export.c
> @@ -1023,7 +1023,7 @@ exp_export(struct nfsctl_export *nxp)
> /* Look up the dentry */
> err = path_lookup(nxp->ex_path, 0, &nd);
> if (err)
> - goto out_unlock;
> + goto out_put_clp;
> err = -EINVAL;
>
> exp = exp_get_by_name(clp, nd.path.mnt, nd.path.dentry, NULL);
> @@ -1090,9 +1090,9 @@ finish:
> exp_put(exp);
> if (fsid_key && !IS_ERR(fsid_key))
> cache_put(&fsid_key->h, &svc_expkey_cache);
> - if (clp)
> - auth_domain_put(clp);
> path_put(&nd.path);
> +out_put_clp:
> + auth_domain_put(clp);
> out_unlock:
> exp_writeunlock();
> out:
prev parent reply other threads:[~2008-07-30 17:25 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-07-25 20:08 [PATCH] fs/nfsd/export.c: Adjust error handling code involving auth_domain_put Julia Lawall
2008-07-30 17:24 ` J. Bruce Fields [this message]
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=20080730172451.GF12364@fieldses.org \
--to=bfields@fieldses.org \
--cc=julia@diku.dk \
--cc=kernel-janitors@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-nfs@vger.kernel.org \
--cc=neilb@suse.de \
/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