From: Jeff Layton <jeff.layton@primarydata.com>
To: Trond Myklebust <trond.myklebust@primarydata.com>
Cc: Bruce Fields <bfields@fieldses.org>, linux-nfs@vger.kernel.org
Subject: Re: [PATCH] SUNRPC: Fix locking around callback channel reply receive
Date: Wed, 12 Nov 2014 21:41:28 -0500 [thread overview]
Message-ID: <20141112214128.4fc43a49@synchrony.poochiereds.net> (raw)
In-Reply-To: <1415833444-48129-1-git-send-email-trond.myklebust@primarydata.com>
On Wed, 12 Nov 2014 18:04:04 -0500
Trond Myklebust <trond.myklebust@primarydata.com> wrote:
> Both xprt_lookup_rqst() and xprt_complete_rqst() require that you
> take the transport lock in order to avoid races with xprt_transmit().
>
> Signed-off-by: Trond Myklebust <trond.myklebust@primarydata.com>
> Cc: Bruce Fields <bfields@fieldses.org>
> ---
> net/sunrpc/svcsock.c | 27 ++++++++++++++++-----------
> 1 file changed, 16 insertions(+), 11 deletions(-)
>
> diff --git a/net/sunrpc/svcsock.c b/net/sunrpc/svcsock.c
> index 3f959c681885..f9c052d508f0 100644
> --- a/net/sunrpc/svcsock.c
> +++ b/net/sunrpc/svcsock.c
> @@ -1019,17 +1019,12 @@ static int receive_cb_reply(struct svc_sock *svsk, struct svc_rqst *rqstp)
> xid = *p++;
> calldir = *p;
>
> - if (bc_xprt)
> - req = xprt_lookup_rqst(bc_xprt, xid);
> -
> - if (!req) {
> - printk(KERN_NOTICE
> - "%s: Got unrecognized reply: "
> - "calldir 0x%x xpt_bc_xprt %p xid %08x\n",
> - __func__, ntohl(calldir),
> - bc_xprt, ntohl(xid));
> + if (!bc_xprt)
> return -EAGAIN;
> - }
> + spin_lock_bh(&bc_xprt->transport_lock);
> + req = xprt_lookup_rqst(bc_xprt, xid);
> + if (!req)
> + goto unlock_notfound;
>
> memcpy(&req->rq_private_buf, &req->rq_rcv_buf, sizeof(struct xdr_buf));
> /*
> @@ -1040,11 +1035,21 @@ static int receive_cb_reply(struct svc_sock *svsk, struct svc_rqst *rqstp)
> dst = &req->rq_private_buf.head[0];
> src = &rqstp->rq_arg.head[0];
> if (dst->iov_len < src->iov_len)
> - return -EAGAIN; /* whatever; just giving up. */
> + goto unlock_eagain; /* whatever; just giving up. */
> memcpy(dst->iov_base, src->iov_base, src->iov_len);
> xprt_complete_rqst(req->rq_task, rqstp->rq_arg.len);
> rqstp->rq_arg.len = 0;
> + spin_unlock_bh(&bc_xprt->transport_lock);
> return 0;
> +unlock_notfound:
> + printk(KERN_NOTICE
> + "%s: Got unrecognized reply: "
> + "calldir 0x%x xpt_bc_xprt %p xid %08x\n",
> + __func__, ntohl(calldir),
> + bc_xprt, ntohl(xid));
> +unlock_eagain:
> + spin_unlock_bh(&bc_xprt->transport_lock);
> + return -EAGAIN;
> }
>
> static int copy_pages_to_kvecs(struct kvec *vec, struct page **pages, int len)
Nice catch. It would also be good to pair this with a
lockdep_assert_held() call in xprt_lookup_rqst, but that could be added
in a separate patch.
Reviewed-by: Jeff Layton <jlayton@primarydata.com>
next prev parent reply other threads:[~2014-11-13 2:41 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-11-12 23:04 [PATCH] SUNRPC: Fix locking around callback channel reply receive Trond Myklebust
2014-11-13 2:41 ` Jeff Layton [this message]
2014-11-18 20:10 ` Bruce Fields
2014-11-18 20:14 ` Chuck Lever
2014-11-18 23:02 ` Trond Myklebust
2014-11-19 16:06 ` Trond Myklebust
2014-11-18 22:57 ` Trond Myklebust
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=20141112214128.4fc43a49@synchrony.poochiereds.net \
--to=jeff.layton@primarydata.com \
--cc=bfields@fieldses.org \
--cc=linux-nfs@vger.kernel.org \
--cc=trond.myklebust@primarydata.com \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.