* [PATCH] nfsd: make calculate reserved space correctly
@ 2013-12-09 11:31 Kinglong Mee
2013-12-12 16:24 ` J. Bruce Fields
0 siblings, 1 reply; 3+ messages in thread
From: Kinglong Mee @ 2013-12-09 11:31 UTC (permalink / raw)
To: J. Bruce Fields; +Cc: linux-nfs
rpcsec_gss_oid is defined as below, So, must using XDR_LEN to calculate reserved space.
When len is not the multiples of 4, client will get bad data.
struct rpcsec_gss_oid {
unsigned int len;
u8 data[GSS_OID_MAX_LEN];
};
Signed-off-by: Kinglong Mee <kinglongmee@gmail.com>
---
fs/nfsd/nfs4xdr.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/fs/nfsd/nfs4xdr.c b/fs/nfsd/nfs4xdr.c
index b0b886e..a57e67d 100644
--- a/fs/nfsd/nfs4xdr.c
+++ b/fs/nfsd/nfs4xdr.c
@@ -3233,7 +3233,7 @@ nfsd4_do_encode_secinfo(struct nfsd4_compoundres *resp,
if (rpcauth_get_gssinfo(pf, &info) == 0) {
supported++;
- RESERVE_SPACE(4 + 4 + info.oid.len + 4 + 4);
+ RESERVE_SPACE(4 + 4 + XDR_LEN(info.oid.len) + 4 + 4);
WRITE32(RPC_AUTH_GSS);
WRITE32(info.oid.len);
WRITEMEM(info.oid.data, info.oid.len);
--
1.8.4.2
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] nfsd: make calculate reserved space correctly
2013-12-09 11:31 [PATCH] nfsd: make calculate reserved space correctly Kinglong Mee
@ 2013-12-12 16:24 ` J. Bruce Fields
2013-12-13 1:18 ` Kinglong Mee
0 siblings, 1 reply; 3+ messages in thread
From: J. Bruce Fields @ 2013-12-12 16:24 UTC (permalink / raw)
To: Kinglong Mee; +Cc: linux-nfs
On Mon, Dec 09, 2013 at 07:31:21PM +0800, Kinglong Mee wrote:
> rpcsec_gss_oid is defined as below, So, must using XDR_LEN to calculate reserved space.
> When len is not the multiples of 4, client will get bad data.
Looking at the definition of RESERVE_SPACE: first, it doesn't actually
advance any pointers, all it does is an overflow check, so there
shouldn't be data corruption unless we're at the end of a page (which
shouldn't happen here). Second, RESERVE_SPACE actually rounds up for
is, so we wouldn't hit that problem anyway.
Nevertheless, agreed that it's probably good practice to round up here
as well.
--b.
>
> struct rpcsec_gss_oid {
> unsigned int len;
> u8 data[GSS_OID_MAX_LEN];
> };
>
> Signed-off-by: Kinglong Mee <kinglongmee@gmail.com>
> ---
> fs/nfsd/nfs4xdr.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/fs/nfsd/nfs4xdr.c b/fs/nfsd/nfs4xdr.c
> index b0b886e..a57e67d 100644
> --- a/fs/nfsd/nfs4xdr.c
> +++ b/fs/nfsd/nfs4xdr.c
> @@ -3233,7 +3233,7 @@ nfsd4_do_encode_secinfo(struct nfsd4_compoundres *resp,
>
> if (rpcauth_get_gssinfo(pf, &info) == 0) {
> supported++;
> - RESERVE_SPACE(4 + 4 + info.oid.len + 4 + 4);
> + RESERVE_SPACE(4 + 4 + XDR_LEN(info.oid.len) + 4 + 4);
> WRITE32(RPC_AUTH_GSS);
> WRITE32(info.oid.len);
> WRITEMEM(info.oid.data, info.oid.len);
> --
> 1.8.4.2
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] nfsd: make calculate reserved space correctly
2013-12-12 16:24 ` J. Bruce Fields
@ 2013-12-13 1:18 ` Kinglong Mee
0 siblings, 0 replies; 3+ messages in thread
From: Kinglong Mee @ 2013-12-13 1:18 UTC (permalink / raw)
To: J. Bruce Fields; +Cc: linux-nfs
On 12/13/2013 12:24 AM, J. Bruce Fields wrote:
> On Mon, Dec 09, 2013 at 07:31:21PM +0800, Kinglong Mee wrote:
>> rpcsec_gss_oid is defined as below, So, must using XDR_LEN to calculate reserved space.
>> When len is not the multiples of 4, client will get bad data.
>
> Looking at the definition of RESERVE_SPACE: first, it doesn't actually
> advance any pointers, all it does is an overflow check, so there
> shouldn't be data corruption unless we're at the end of a page (which
> shouldn't happen here). Second, RESERVE_SPACE actually rounds up for
> is, so we wouldn't hit that problem anyway.
Yes.
>
> Nevertheless, agreed that it's probably good practice to round up here
> as well.
Thank you.
thanks,
Kinglong Mee
>
> --b.
>
>>
>> struct rpcsec_gss_oid {
>> unsigned int len;
>> u8 data[GSS_OID_MAX_LEN];
>> };
>>
>> Signed-off-by: Kinglong Mee <kinglongmee@gmail.com>
>> ---
>> fs/nfsd/nfs4xdr.c | 2 +-
>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/fs/nfsd/nfs4xdr.c b/fs/nfsd/nfs4xdr.c
>> index b0b886e..a57e67d 100644
>> --- a/fs/nfsd/nfs4xdr.c
>> +++ b/fs/nfsd/nfs4xdr.c
>> @@ -3233,7 +3233,7 @@ nfsd4_do_encode_secinfo(struct nfsd4_compoundres *resp,
>>
>> if (rpcauth_get_gssinfo(pf, &info) == 0) {
>> supported++;
>> - RESERVE_SPACE(4 + 4 + info.oid.len + 4 + 4);
>> + RESERVE_SPACE(4 + 4 + XDR_LEN(info.oid.len) + 4 + 4);
>> WRITE32(RPC_AUTH_GSS);
>> WRITE32(info.oid.len);
>> WRITEMEM(info.oid.data, info.oid.len);
>> --
>> 1.8.4.2
>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2013-12-13 1:19 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-12-09 11:31 [PATCH] nfsd: make calculate reserved space correctly Kinglong Mee
2013-12-12 16:24 ` J. Bruce Fields
2013-12-13 1:18 ` Kinglong Mee
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).