diff mbox series

SUNRPC: Fix XPT_BUSY flag leakage in svc_handle_xprt()...

Message ID 20210825193314.354079-1-trond.myklebust@hammerspace.com (mailing list archive)
State New, archived
Headers show
Series SUNRPC: Fix XPT_BUSY flag leakage in svc_handle_xprt()... | expand

Commit Message

Trond Myklebust Aug. 25, 2021, 7:33 p.m. UTC
From: Trond Myklebust <trond.myklebust@hammerspace.com>

If the attempt to reserve a slot fails, we currently leak the XPT_BUSY
flag on the socket. Among other things, this make it impossible to close
the socket.

Fixes: 82011c80b3ec ("SUNRPC: Move svc_xprt_received() call sites")
Signed-off-by: Trond Myklebust <trond.myklebust@hammerspace.com>
---
 net/sunrpc/svc_xprt.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

Comments

Chuck Lever III Aug. 25, 2021, 7:51 p.m. UTC | #1
> On Aug 25, 2021, at 3:33 PM, trondmy@gmail.com wrote:
> 
> From: Trond Myklebust <trond.myklebust@hammerspace.com>
> 
> If the attempt to reserve a slot fails, we currently leak the XPT_BUSY
> flag on the socket. Among other things, this make it impossible to close
> the socket.
> 
> Fixes: 82011c80b3ec ("SUNRPC: Move svc_xprt_received() call sites")
> Signed-off-by: Trond Myklebust <trond.myklebust@hammerspace.com>
> ---
> net/sunrpc/svc_xprt.c | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
> 
> diff --git a/net/sunrpc/svc_xprt.c b/net/sunrpc/svc_xprt.c
> index 5f0d33ca4bdb..b3cff4077899 100644
> --- a/net/sunrpc/svc_xprt.c
> +++ b/net/sunrpc/svc_xprt.c
> @@ -975,7 +975,8 @@ static int svc_handle_xprt(struct svc_rqst *rqstp, struct svc_xprt *xprt)
> 		rqstp->rq_stime = ktime_get();
> 		rqstp->rq_reserved = serv->sv_max_mesg;
> 		atomic_add(rqstp->rq_reserved, &xprt->xpt_reserved);
> -	}
> +	} else
> +		svc_xprt_received(xprt);
> out:
> 	trace_svc_handle_xprt(xprt, len);
> 	return len;
> -- 
> 2.31.1

Looks correct. Bruce, perhaps you should pull this for 5.14-rc.
Linus says he expects to release 5.14-final this Sunday, fyi.

--
Chuck Lever
Bruce Fields Aug. 25, 2021, 8:37 p.m. UTC | #2
I wonder if this would explain
https://bugzilla.kernel.org/show_bug.cgi?id=213887.

On Wed, Aug 25, 2021 at 3:51 PM Chuck Lever III <chuck.lever@oracle.com> wrote:
>
>
>
> > On Aug 25, 2021, at 3:33 PM, trondmy@gmail.com wrote:
> >
> > From: Trond Myklebust <trond.myklebust@hammerspace.com>
> >
> > If the attempt to reserve a slot fails, we currently leak the XPT_BUSY
> > flag on the socket. Among other things, this make it impossible to close
> > the socket.
> >
> > Fixes: 82011c80b3ec ("SUNRPC: Move svc_xprt_received() call sites")
> > Signed-off-by: Trond Myklebust <trond.myklebust@hammerspace.com>
> > ---
> > net/sunrpc/svc_xprt.c | 3 ++-
> > 1 file changed, 2 insertions(+), 1 deletion(-)
> >
> > diff --git a/net/sunrpc/svc_xprt.c b/net/sunrpc/svc_xprt.c
> > index 5f0d33ca4bdb..b3cff4077899 100644
> > --- a/net/sunrpc/svc_xprt.c
> > +++ b/net/sunrpc/svc_xprt.c
> > @@ -975,7 +975,8 @@ static int svc_handle_xprt(struct svc_rqst *rqstp, struct svc_xprt *xprt)
> >               rqstp->rq_stime = ktime_get();
> >               rqstp->rq_reserved = serv->sv_max_mesg;
> >               atomic_add(rqstp->rq_reserved, &xprt->xpt_reserved);
> > -     }
> > +     } else
> > +             svc_xprt_received(xprt);
> > out:
> >       trace_svc_handle_xprt(xprt, len);
> >       return len;
> > --
> > 2.31.1
>
> Looks correct. Bruce, perhaps you should pull this for 5.14-rc.
> Linus says he expects to release 5.14-final this Sunday, fyi.
>
> --
> Chuck Lever
>
>
>
diff mbox series

Patch

diff --git a/net/sunrpc/svc_xprt.c b/net/sunrpc/svc_xprt.c
index 5f0d33ca4bdb..b3cff4077899 100644
--- a/net/sunrpc/svc_xprt.c
+++ b/net/sunrpc/svc_xprt.c
@@ -975,7 +975,8 @@  static int svc_handle_xprt(struct svc_rqst *rqstp, struct svc_xprt *xprt)
 		rqstp->rq_stime = ktime_get();
 		rqstp->rq_reserved = serv->sv_max_mesg;
 		atomic_add(rqstp->rq_reserved, &xprt->xpt_reserved);
-	}
+	} else
+		svc_xprt_received(xprt);
 out:
 	trace_svc_handle_xprt(xprt, len);
 	return len;