linux-nfs.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: "J. Bruce Fields" <bfields@fieldses.org>
To: Kinglong Mee <kinglongmee@gmail.com>
Cc: dros@netapp.com, linux-nfs@vger.kernel.org
Subject: Re: [PATCH] nfsd: calculate the missing length of bitmap in EXCHANG_ID
Date: Thu, 12 Dec 2013 11:11:11 -0500	[thread overview]
Message-ID: <20131212161111.GD11521@fieldses.org> (raw)
In-Reply-To: <52A6C1B4.9030501@gmail.com>

On Tue, Dec 10, 2013 at 03:24:36PM +0800, Kinglong Mee wrote:
> commit 58cd57bfd9db3bc213bf9d6a10920f82095f0114
> "nfsd: Fix SP4_MACH_CRED negotiation in EXCHANGE_ID"
> miss calculating the length of bitmap for spo_must_enforce and spo_must_allow.

Good catch, thanks!  Looks like this was an oversight from
57266a6e916e2522ea61758a3ee5576b60156791 "nfsd4: implement minimal
SP4_MACH_CRED" where I changed the xdr but forgot to update this length
calculation.

But it doesn't look urgent.  I'll queue it up for 3.14.

--b.

> 
> Signed-off-by: Kinglong Mee <kinglongmee@gmail.com>
> ---
>  fs/nfsd/nfs4proc.c |  3 ++-
>  fs/nfsd/nfs4xdr.c  | 24 ++++++++++++++++--------
>  2 files changed, 18 insertions(+), 9 deletions(-)
> 
> diff --git a/fs/nfsd/nfs4proc.c b/fs/nfsd/nfs4proc.c
> index 419572f..7bac4bd 100644
> --- a/fs/nfsd/nfs4proc.c
> +++ b/fs/nfsd/nfs4proc.c
> @@ -1524,7 +1524,8 @@ static inline u32 nfsd4_write_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
>  static inline u32 nfsd4_exchange_id_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
>  {
>  	return (op_encode_hdr_size + 2 + 1 + /* eir_clientid, eir_sequenceid */\
> -		1 + 1 + 2 + /* eir_flags, spr_how, spo_must_enforce & _allow */\
> +		1 + 1 + /* eir_flags, spr_how */\
> +		4 + /* spo_must_enforce & _allow with bitmap */\
>  		2 + /*eir_server_owner.so_minor_id */\
>  		/* eir_server_owner.so_major_id<> */\
>  		XDR_QUADLEN(NFS4_OPAQUE_LIMIT) + 1 +\
> diff --git a/fs/nfsd/nfs4xdr.c b/fs/nfsd/nfs4xdr.c
> index a57e67d..817c99f 100644
> --- a/fs/nfsd/nfs4xdr.c
> +++ b/fs/nfsd/nfs4xdr.c
> @@ -3368,35 +3368,43 @@ nfsd4_encode_exchange_id(struct nfsd4_compoundres *resp, __be32 nfserr,
>  		8 /* eir_clientid */ +
>  		4 /* eir_sequenceid */ +
>  		4 /* eir_flags */ +
> -		4 /* spr_how */ +
> -		8 /* spo_must_enforce, spo_must_allow */ +
> -		8 /* so_minor_id */ +
> -		4 /* so_major_id.len */ +
> -		(XDR_QUADLEN(major_id_sz) * 4) +
> -		4 /* eir_server_scope.len */ +
> -		(XDR_QUADLEN(server_scope_sz) * 4) +
> -		4 /* eir_server_impl_id.count (0) */);
> +		4 /* spr_how */);
>  
>  	WRITEMEM(&exid->clientid, 8);
>  	WRITE32(exid->seqid);
>  	WRITE32(exid->flags);
>  
>  	WRITE32(exid->spa_how);
> +	ADJUST_ARGS();
> +
>  	switch (exid->spa_how) {
>  	case SP4_NONE:
>  		break;
>  	case SP4_MACH_CRED:
> +		/* spo_must_enforce, spo_must_allow */
> +		RESERVE_SPACE(16);
> +
>  		/* spo_must_enforce bitmap: */
>  		WRITE32(2);
>  		WRITE32(nfs4_minimal_spo_must_enforce[0]);
>  		WRITE32(nfs4_minimal_spo_must_enforce[1]);
>  		/* empty spo_must_allow bitmap: */
>  		WRITE32(0);
> +
> +		ADJUST_ARGS();
>  		break;
>  	default:
>  		WARN_ON_ONCE(1);
>  	}
>  
> +	RESERVE_SPACE(
> +		8 /* so_minor_id */ +
> +		4 /* so_major_id.len */ +
> +		(XDR_QUADLEN(major_id_sz) * 4) +
> +		4 /* eir_server_scope.len */ +
> +		(XDR_QUADLEN(server_scope_sz) * 4) +
> +		4 /* eir_server_impl_id.count (0) */);
> +
>  	/* The server_owner struct */
>  	WRITE64(minor_id);      /* Minor id */
>  	/* major id */
> -- 
> 1.8.4.2

  reply	other threads:[~2013-12-12 16:11 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-12-10  7:24 [PATCH] nfsd: calculate the missing length of bitmap in EXCHANG_ID Kinglong Mee
2013-12-12 16:11 ` J. Bruce Fields [this message]
2013-12-12 16:11   ` J. Bruce Fields

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=20131212161111.GD11521@fieldses.org \
    --to=bfields@fieldses.org \
    --cc=dros@netapp.com \
    --cc=kinglongmee@gmail.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).