All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] nfsd: restrict rd_maxcount to svc_max_payload in nfsd_encode_readdir
@ 2018-05-07 13:01 Scott Mayhew
  2018-05-07 16:55 ` J. Bruce Fields
  0 siblings, 1 reply; 2+ messages in thread
From: Scott Mayhew @ 2018-05-07 13:01 UTC (permalink / raw)
  To: bfields, jlayton; +Cc: linux-nfs

nfsd4_readdir_rsize restricts rd_maxcount to svc_max_payload when
estimating the size of the readdir reply, but nfsd_encode_readdir
restricts it to INT_MAX when encoding the reply.  This can result in log
messages like "kernel: RPC request reserved 32896 but used 1049444".

Restrict rd_dircount similarly (no reason it should be larger than
svc_max_payload).

Signen-off-by: Scott Mayhew <smayhew@redhat.com>
---
 fs/nfsd/nfs4xdr.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/fs/nfsd/nfs4xdr.c b/fs/nfsd/nfs4xdr.c
index 1d048dd..cfe535c 100644
--- a/fs/nfsd/nfs4xdr.c
+++ b/fs/nfsd/nfs4xdr.c
@@ -3651,7 +3651,8 @@ nfsd4_encode_readdir(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4
 		nfserr = nfserr_resource;
 		goto err_no_verf;
 	}
-	maxcount = min_t(u32, readdir->rd_maxcount, INT_MAX);
+	maxcount = svc_max_payload(resp->rqstp);
+	maxcount = min_t(u32, readdir->rd_maxcount, maxcount);
 	/*
 	 * Note the rfc defines rd_maxcount as the size of the
 	 * READDIR4resok structure, which includes the verifier above
@@ -3665,7 +3666,7 @@ nfsd4_encode_readdir(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4
 
 	/* RFC 3530 14.2.24 allows us to ignore dircount when it's 0: */
 	if (!readdir->rd_dircount)
-		readdir->rd_dircount = INT_MAX;
+		readdir->rd_dircount = svc_max_payload(resp->rqstp);
 
 	readdir->xdr = xdr;
 	readdir->rd_maxcount = maxcount;
-- 
2.9.5


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] nfsd: restrict rd_maxcount to svc_max_payload in nfsd_encode_readdir
  2018-05-07 13:01 [PATCH] nfsd: restrict rd_maxcount to svc_max_payload in nfsd_encode_readdir Scott Mayhew
@ 2018-05-07 16:55 ` J. Bruce Fields
  0 siblings, 0 replies; 2+ messages in thread
From: J. Bruce Fields @ 2018-05-07 16:55 UTC (permalink / raw)
  To: Scott Mayhew; +Cc: jlayton, linux-nfs

Thanks, applying for 4.17 and stable.--b.

On Mon, May 07, 2018 at 09:01:08AM -0400, Scott Mayhew wrote:
> nfsd4_readdir_rsize restricts rd_maxcount to svc_max_payload when
> estimating the size of the readdir reply, but nfsd_encode_readdir
> restricts it to INT_MAX when encoding the reply.  This can result in log
> messages like "kernel: RPC request reserved 32896 but used 1049444".
> 
> Restrict rd_dircount similarly (no reason it should be larger than
> svc_max_payload).
> 
> Signen-off-by: Scott Mayhew <smayhew@redhat.com>
> ---
>  fs/nfsd/nfs4xdr.c | 5 +++--
>  1 file changed, 3 insertions(+), 2 deletions(-)
> 
> diff --git a/fs/nfsd/nfs4xdr.c b/fs/nfsd/nfs4xdr.c
> index 1d048dd..cfe535c 100644
> --- a/fs/nfsd/nfs4xdr.c
> +++ b/fs/nfsd/nfs4xdr.c
> @@ -3651,7 +3651,8 @@ nfsd4_encode_readdir(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4
>  		nfserr = nfserr_resource;
>  		goto err_no_verf;
>  	}
> -	maxcount = min_t(u32, readdir->rd_maxcount, INT_MAX);
> +	maxcount = svc_max_payload(resp->rqstp);
> +	maxcount = min_t(u32, readdir->rd_maxcount, maxcount);
>  	/*
>  	 * Note the rfc defines rd_maxcount as the size of the
>  	 * READDIR4resok structure, which includes the verifier above
> @@ -3665,7 +3666,7 @@ nfsd4_encode_readdir(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4
>  
>  	/* RFC 3530 14.2.24 allows us to ignore dircount when it's 0: */
>  	if (!readdir->rd_dircount)
> -		readdir->rd_dircount = INT_MAX;
> +		readdir->rd_dircount = svc_max_payload(resp->rqstp);
>  
>  	readdir->xdr = xdr;
>  	readdir->rd_maxcount = maxcount;
> -- 
> 2.9.5

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2018-05-07 16:55 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-05-07 13:01 [PATCH] nfsd: restrict rd_maxcount to svc_max_payload in nfsd_encode_readdir Scott Mayhew
2018-05-07 16:55 ` J. Bruce Fields

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.