From: "J. Bruce Fields" <bfields@fieldses.org>
To: David Jeffery <djeffery@redhat.com>
Cc: linux-nfs@vger.kernel.org
Subject: Re: [PATCH] lockd: protect nlm_blocked access in nlmsvc_retry_blocked
Date: Thu, 11 Jul 2013 17:01:12 -0400 [thread overview]
Message-ID: <20130711210112.GB1033@fieldses.org> (raw)
In-Reply-To: <20130710171903.GA30834@fury.redhat.com>
On Wed, Jul 10, 2013 at 01:19:50PM -0400, David Jeffery wrote:
> In nlmsvc_retry_blocked, the check that the list is non-empty and acquiring
> the pointer of the first entry is unprotected by any lock. This allows a rare
> race condition when there is only one entry on the list. A function such as
> nlmsvc_grant_callback() can be called, which will temporarily remove the entry
> from the list. Between the list_empty() and list_entry(),the list may become
> empty, causing an invalid pointer to be used as an nlm_block, leading to a
> possible crash.
>
> This patch adds the nlm_block_lock around these calls to prevent concurrent
> use of the nlm_blocked list.
Thanks! Looks like this bug probably originated from
f904be9cc77f361d37d71468b13ff3d1a1823dea "lockd: Mostly remove BKL from
the server" ?
Applying for 3.11.
--b.
>
> Signed-off-by: David Jeffery <djeffery@redhat.com>
>
>
> --- a/fs/lockd/svclock.c
> +++ b/fs/lockd/svclock.c
> @@ -951,6 +951,7 @@ nlmsvc_retry_blocked(void)
> unsigned long timeout = MAX_SCHEDULE_TIMEOUT;
> struct nlm_block *block;
>
> + spin_lock(&nlm_blocked_lock);
> while (!list_empty(&nlm_blocked) && !kthread_should_stop()) {
> block = list_entry(nlm_blocked.next, struct nlm_block, b_list);
>
> @@ -960,6 +961,7 @@ nlmsvc_retry_blocked(void)
> timeout = block->b_when - jiffies;
> break;
> }
> + spin_unlock(&nlm_blocked_lock);
>
> dprintk("nlmsvc_retry_blocked(%p, when=%ld)\n",
> block, block->b_when);
> @@ -969,7 +971,9 @@ nlmsvc_retry_blocked(void)
> retry_deferred_block(block);
> } else
> nlmsvc_grant_blocked(block);
> + spin_lock(&nlm_blocked_lock);
> }
> + spin_unlock(&nlm_blocked_lock);
>
> return timeout;
> }
> --
> 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
prev parent reply other threads:[~2013-07-11 21:01 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-07-10 17:19 [PATCH] lockd: protect nlm_blocked access in nlmsvc_retry_blocked David Jeffery
2013-07-11 21:01 ` 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=20130711210112.GB1033@fieldses.org \
--to=bfields@fieldses.org \
--cc=djeffery@redhat.com \
--cc=linux-nfs@vger.kernel.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;
as well as URLs for NNTP newsgroup(s).